Stanislaw Baranski

Results 18 comments of Stanislaw Baranski

I don't know if it worked before. But on my Linux machine, with the play/pause functional key, it works.

Here is workaround: Create Extensions.kt file, and paste there this aliases: ```kotlin inline fun androidx.fragment.app.Fragment.toast(message: CharSequence): Toast? { return activity?.toast(message) } inline fun androidx.fragment.app.Fragment.toast(message: Int): Toast? { return activity?.toast(message) }...

I generated some random base32 string and used it in my Google auth and in credentials.rb ```rb ➜ robotito-1.0.0 cat config/credentials.rb # Robo-TiTO connects to Jabber using these settings. BOT_LOGIN...

Same problem here. Any fixes ?

I'm not sure what happened, but for me the solution was to reboot

@android10 You are right, it's implementation detail. But, I was curious if you chose Dagger2 purposely in this project, if it's the **clean** way of DI. @crjacinro It was very...

@Zhuinden from the documentation > The by viewModel() function lazily calls the ViewModel class instance and bind it to internal ViewModels factory. And here is also implementation ```kotlin fun LifecycleOwner.getViewModelByClass(...

> Try with `check_similar=False`. > > ```python > ids, failed_indexes = db.add_many( > imgs=imgs, > names=names, > check_similar=False > ) > ``` Well, it's not necessary what I need, but...

> @shhossain I have a folder of images containing multiple faces in each image so how can i extract only unique faces and save them in another folder using this...

@weaming did you solve the issue? I'm having the same problem. It seems like the binaries you use to interact with standard Lotus node are incompatible with this modified Lotus...