Vladimir Ulianitsky

Results 30 issues of Vladimir Ulianitsky

I've implemented a ruby library that uses the user-agents.json.gz and found that sometimes there is an extra quote(s) in userAgent, like this: `"userAgent": "\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36...

Kernel fails to start. I have ijava 1.3.0, jupyter core 4.5.0 and java 10 installed.

**Describe the bug** It's not possible to install mruby-3.2.0 with embedded plugin, but asdf one works fine **To Reproduce** ``` vladimir@np940x5n:~$ RTX_DEBUG=1 RUST_BACKTRACE=full rtx install [email protected] [DEBUG] rtx::config: Files: ~/.config/rtx/config.toml...

bug

Is there any way - or intent to add it - to create a binding for a generic class like [`Optional`](https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html) and have `Result` as a [return value type](https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html#get--) or...

Default implementation for `TryFromJavaValue` looks like the following: ```rust #[automatically_derived] impl< 'env: 'borrow, 'borrow, > ::robusta_jni::convert::TryFromJavaValue for RubyModule { type Source = ::robusta_jni::jni::objects::JObject

Why do methods like `convert_byte_array`, `byte_array_from_slice`, `new_direct_byte_buffer` work with `u8`, not with `i8`, aka `jbyte`?

Shouldn't these be `unsafe`, as there are no `is_instance_of`/`is_assignable_from` checks inside?

And it also would be great to use async operations to not to freeze UI (now it freezes when you switch between tracks so I assume the track is fully...

enhancement

``` JsonPath.new("$..[?(@.price == 8.95 || @.price == 8.99)].title").on(json) => ["Sayings of the Century", "Moby Dick", "Sayings of the Century", "Moby Dick"] JsonPath.new("$..[?(@['price'] == 8.95 || @['price'] == 8.99)].title").on(json) Traceback (most...