Lukáš Kúšik
Lukáš Kúšik
> try This https://colab.research.google.com/drive/1mfVX0783BEOHk4lfbP6Z2W0svxbz431u > just run and some url will be displayed open it > based on codeserver.dev This is an alternative way to run VSCode, no? I was...
Hello, thank you for your message and sorry for late answer. Unless you had something else on your mind, the problem is that the reverse proxy itself would have to...
Hello and sorry for late answer, I haven't taken a deep look into Kubernetes yet, but my understanding is that it should be more powerful than swarm, so I don't...
If you get Ansible to talk to the VMs and ensure they can form a swarm between them, it should work. However, as I said in the readme, since I...
If you'd like a predefined list of them, together with [this wikipedia page](https://en.wikipedia.org/wiki/Metering_mode) I would say: - Default - equivalent to null on the setMeteringAreas(), use default device implementation -...
> What you'd get with SQLite cache is offline mode but scrolling performance is most likely going to be unafected because jetpack compose already works from the ViewModel repository that...
All right, I have come up with something that seems to work. Here's a very crude code for an Android's Paging3 PagingSource: ```kotlin class ApolloPagingSource( private val pageQueryFactory: (limit: Int?,...
I did not. I hoped either this would get fixed, or I would migrate to the new v10 and try there.
For your first concern, I think the `@Route` annotated Screen composables may be telling enough to document the code, at least for a simple case like my example, where you...
```kotlin // Old generated extension public fun NavGraphBuilder.login(content: @Composable () -> Unit): Unit { route(LoginRoute, DefaultRouteTransition) { content() } } // New generated extension public fun NavGraphBuilder.login(navHost: NavHostController, onLogin: ()...