Kirill Rakhman

Results 68 comments of Kirill Rakhman

@FerronN Awesome! I think it's working. Now off to figuring out how to make OpenCV work...

I have the same issue. I need to place a `...` inside a localized text.

The schema for `onAuthRequired` is rather complicated ```json { "name": "onAuthRequired", "type": "function", "description": "...", "parameters": [ { "type": "object", "name": "details", "properties": { ... } }, { "type": "function",...

Use `collection?.forEach {}` if the collection is nullable. Prefer `for` over `forEach` if you need to use `break`. As `continue` can be emulated by `return@forEach`, using it in either is...

Good point. Function references obviously lend themselves very well to being used with `forEach`.

~~I'm in favor of putting the `=` sign on the new line.~~ I changed my mind. I'm in favor of putting the `=` sign on the same line and the...

I went through my project and replaced usages of ``` kotlin fun foo() = expression.call() ``` with ``` kotlin fun foo() = expression.call() ``` I find this style to be...

Not sure I agree. What's the benefit.

When I make a change to a Java file, the tasks run correcty but the activity still prints the old value, meaning Kotlin changes are ignored.