Jasperav

Results 42 issues of Jasperav

I have seen it in more complex applications, but this is the easiest reproduction view: ``` @Composable fun ClusterItemConversation() { val x = remember { mutableIntStateOf(0) } LaunchedEffect(key1 = Unit)...

type: bug
triage me

See title, I have a basic view which displays a `CircularProgressIndicator` inside a `Clustering` block but it doesn't animate.

type: bug
triage me

See my SO question here: https://stackoverflow.com/questions/46574223/get-tap-event-for-uibutton-in-a-wheel-that-can-rotate Is it possible to make tappable UIButtons in the wedges? There is a +50 bounty on it right now.

enhancement

This is a reproduction project: https://github.com/Jasperav/WebsocketRust, this is main.rs: ``` use ws::{listen, connect}; use std::thread::{spawn, sleep}; use std::time::Duration; fn main() { run_ws(); connect("ws://127.0.0.1:3042", |c| { c.send(""); // Don't know why...

I am trying to convert Catalytic to the new API's but I am stuck while transforming these structs: https://github.com/Jasperav/Catalytic/blob/6b74c52a4926d5aee7034a2b545befcbb61b08b2/catalytic/src/query_transform.rs#L202: ``` pub struct Qv

waiting-on-author
QoL

When I run Scylla in docker, it run fine with this code: ``` pub async fn create_connection() -> Session { let session = SessionBuilder::new() .known_node("127.0.0.1:19042") .build() .await .unwrap(); session.use_keyspace("mykeyspace", false).await.unwrap();...

When https://github.com/scylladb/scylla-rust-driver/issues/385 is fixed

The ORM does not support TIMESTAMP and TIMEOUTs for inserts yet: https://docs.scylladb.com/getting-started/dml/#insert-statement. This can be implemented by following these steps: 1. Add the new method name in [query_ident.rs](https://github.com/Jasperav/scylla_orm/blob/master/scylla_orm_table_to_struct/src/query_ident.rs). The query...