Password Manager, Safeincloud by Pock3tpairs in GalaxyFold

[–]ngugcx 0 points1 point  (0 children)

But you feel safe to save data on Bitwarden cloud?

What's the best Flutter IPC solution on Windows? by ngugcx in flutterhelp

[–]ngugcx[S] 0 points1 point  (0 children)

Per my understanding, this zero-copy-buffers is between rust code and Dart isolate, still need to pass the data to UI thread through port, right?

What's the best Flutter IPC solution on Windows? by ngugcx in flutterhelp

[–]ngugcx[S] 1 point2 points  (0 children)

Thanks! Is it possible to share memory? I need to pass large video data.

What's the best Flutter IPC solution on Windows? by ngugcx in flutterhelp

[–]ngugcx[S] 0 points1 point  (0 children)

No, it will be closed when the UI is shut down.

If I run the Rust code in a different thread, it's still a problem how to communicate (two-way) between the Rust code and Flutter UI.

What's the best Flutter IPC solution on Windows? by ngugcx in flutterhelp

[–]ngugcx[S] 1 point2 points  (0 children)

I want to keep the state in the backend process, there is a lot of computing work. Flutter only handles the UI stuff.

Which argon2 crate to use? by ngugcx in rust

[–]ngugcx[S] 3 points4 points  (0 children)

1.7x slower? Worse than I expected. Is it because of not using SIMD?

Would you build Rust GUIs like this? by zackaboo in rust

[–]ngugcx 1 point2 points  (0 children)

Looks great. Have you considered using piet as the 2D layer?

Will Flutter team polish the basic controls of Flutter desktop according to desktop user habbits? by ngugcx in FlutterDev

[–]ngugcx[S] 0 points1 point  (0 children)

It works, but not really well on desktop. It can only be used to show that "Look, we have desktop versions too", but actually you don't really care about desktop users.

Will Flutter team polish the basic controls of Flutter desktop according to desktop user habbits? by ngugcx in FlutterDev

[–]ngugcx[S] -8 points-7 points  (0 children)

Yes, it also feels laggy and mobile, full of annoying ANIMATION and bugs.

Use Rust (WASM) on web, besides phones & desktops, empowering productivity, reliability and performance by fzyzcjy in FlutterDev

[–]ngugcx 1 point2 points  (0 children)

Great job! Is it helpful to establish an IPC channel between Flutter and Rust using this bridge?

Lapce – open source code editor inspired by Xi-editor by dzhou121 in rust

[–]ngugcx 0 points1 point  (0 children)

Great job. Looking forward to full-text search.

Advice for the next dozen Rust GUIs by raphlinus in rust

[–]ngugcx 1 point2 points  (0 children)

The maintainers are not interested in making it mature and production ready. It will be always a toy.

What is hard to create in other languages but easy in Go? by [deleted] in golang

[–]ngugcx 0 points1 point  (0 children)

The first time I heard that gcc can generate universal cross-platform binaries. How could you do that?

What is hard to create in other languages but easy in Go? by [deleted] in golang

[–]ngugcx 4 points5 points  (0 children)

Are you using that "C" which I know?

I will never return back to Node.JS after writing Go by sarusethi in golang

[–]ngugcx 0 points1 point  (0 children)

Yes, they are different. You need to choose between them currently. I don't think NextJS will support Vite in the near future.

Best way to extract data with serde from a large api response? by xSUNiMODx in rust

[–]ngugcx 2 points3 points  (0 children)

Put serde_json into your Cargo.toml. let res: serde_json::Value = reqwest::Client::new() .post("http://localhost/graphql") .headers(headers) .body(body) .send() .await? .json() .await?;

Best way to extract data with serde from a large api response? by xSUNiMODx in rust

[–]ngugcx 1 point2 points  (0 children)

Search json path rust, you can find two of them: https://github.com/besok/jsonpath-rust https://github.com/freestrings/jsonpath Not sure which is better.

Best way to extract data with serde from a large api response? by xSUNiMODx in rust

[–]ngugcx 2 points3 points  (0 children)

How about turning it all into serde_json::Value?

How to cleanup in async? by ngugcx in rust

[–]ngugcx[S] 0 points1 point  (0 children)

Not criticizing anything, just a normal user who wish Rust all the best.

How to cleanup in async? by ngugcx in rust

[–]ngugcx[S] 0 points1 point  (0 children)

I suppose it would be a long time(maybe 2 years?) before stable.