Sergei Bulgakov

Results 58 comments of Sergei Bulgakov

Currently we could map a StateFlow like this, to have a view only of the needed "portion" of the initial elements: ``` val main = MutableStateFlow(emptyList()) val onlyFirst = main.mapLatest...

I'm using this variant: . It's pretty handy but requires testing and discussions with the author. Please join!

By the way, can it be a workaround to just create multiple "backups" of the same folder targeting different destinations? Sorry if it's already discussed, the thread is quite long...

Hi! I've just checked: 1.3.50 and 1.3.60 – the same error text. If I run on Linux, no errors are printed.

I've investigated a bit. There is a difference in System classpath appending: https://github.com/jboss-javassist/javassist/blob/1c4e31b9677d020a1e89aeebc6686396f9e6c68a/src/main/javassist/ClassPoolTail.java#L250-L255 With static agent, this code is executed in `Thread[main,5,main]` and its `cl` is `ClassLoaders$AppClassLoader`. With dynamic agent,...

Thanks! I think at least there should be a clear message describing possible reasons why this is happened and how one can try to solve it.

@lizpostudio > Is it possible to implement functionality as if user pressed "back button" in browser? You can always do something like `window.history.back()` in JS source set (). I'm not...

I've checked `joml`. Have I understood right that they use a letter `c` for those immutable interfaces? So the concept is clear for me. It will be great if we...