Bountied questions
6 questions with bounties
-4
votes
0
answers
262
views
+50
Force all network activity in my app to go through a specific DNS server [closed]
To circumvent censorship, I want to force all network activity in my app to use a specific DNS server (e.g Quad9) through DoH, instead of using the system DNS.
I'm currently using OkHttp with the ...
12
votes
0
answers
933
views
+100
Create .xcappdata from ios simulator
I know how to download files *.xcappdata from iOS device and use it during test and running simulation.
There is a similar feature for downloading data from iOS simulator?
Now I manually copy/...
1
vote
1
answer
150
views
+200
show recomposition counts disabled for ConstraintLayout having composeview - Android Studio Ladybug
I'm facing issue "show recomposition counts" is disabled (No source information found).
I have a ConstraintLayout having multiple ComposeViews and using - Android Studio Ladybug
Things I ...
0
votes
1
answer
193
views
+100
Can't capture every emittion from StateFlow when testing with Turbine
I'm trying to test my viewmodels that exposes a public StateFlow via stateIn operator:
class HomeViewModel @Inject constructor(...) : ViewModel() {
private val _uiState: MutableStateFlow<State&...
3
votes
1
answer
2k
views
+50
Throttler blocking others IPs
I have a nestjs application that uses throttler to limit the number of requests the application can receive before returning 429.
As it says in the documentation, it blocks by IP: npmjs.com/package/@...
2
votes
1
answer
586
views
+100
Is it possible to use local SQLite3 file with FileSystemAPI and WebAssembly in a web app?
Considering that:
Browser's File System API enables web apps to write on local files, without subsequent asks for permissions.
WebAssembly can run a native SQLite3 client.
It's possible to create a ...