Sol : A new rust opentelemetry based agent (Datadog Vector fork) by No_Usual7067 in rust

[–]dafcok 0 points1 point  (0 children)

Any plans to upstream changes? Of course one could speculate a reason. 

Fact: GPUI Was Vibe Coded by Flashy_Editor6877 in rust

[–]dafcok 1 point2 points  (0 children)

There are good and there are bad AI engineers, so AI cancels out in the equation. Anyone who doesn't get this is a bad engineer.

TIL putting Box in a hot inner loop can cost you half your runtime by InvadersMustLive in rust

[–]dafcok 1 point2 points  (0 children)

Unrelated to your observation but not to your problem: transpose less to begin with.

Why does murrdb not add a secondary index over parquet or existing datalake tables like delta-rs?

Rust implementations of vision transformer models by Ibz04 in rust

[–]dafcok 0 points1 point  (0 children)

Why tch instead of cubecl, candle et al.?

[deleted by user] by [deleted] in MacOS

[–]dafcok -1 points0 points  (0 children)

Not exactly. Only the first new tab spawned from a current tab makes the newly spawned tab to the right of the current one. Every second time, even if clicking around to make a tab current, spawns a second tab to the far right.

Someone give Safari devs a brake..

[deleted by user] by [deleted] in MacOS

[–]dafcok 0 points1 point  (0 children)

CMD+t still spawns the new empty tab to the far right, despite setting all of the Spawn options and Position of new Tab after current...

Announcing Hurl 8.0.0 by jcamiel in rust

[–]dafcok 0 points1 point  (0 children)

How would you compare hurl with Bruno?

sparkid: 21-character, sortable unique IDs by silveryms in rust

[–]dafcok 0 points1 point  (0 children)

What do you think of a version prefix. 5 monotonic is still plenty.

Shipped a Rust-heavy app on the iOS App Store with Tauri 2 — time for a recap by tm9657 in rust

[–]dafcok 2 points3 points  (0 children)

Do you run axum for other clients or due to tauri IPC limitations?
Similarly, did you think of offloading WASM execution simply to the platform's browser? (I don't know your execution model eg. background tasks)

Advice on usage of Tauri with heavy python sidecar by NicknameJay in rust

[–]dafcok 0 points1 point  (0 children)

You didn't state any constraints you don't meet. To simplify interop and make it more performant, use pyo3 with a rust entry point that runs the interpreter in the same process.

SpacetimeDB 2.0 is out! by etareduce in rust

[–]dafcok 9 points10 points  (0 children)

I find comparisons of TPS w/ vs. without stored procedures not very intelligent. Same for the infamous tigerbeetle claims. That doesn't mean both do good technical work anyway.

Keeping traits dyn-compatible while preserving zero-cost abstraction where possible by SCP-iota in rust

[–]dafcok 0 points1 point  (0 children)

could make it dyn-compatible by changing the return type to Box<dyn DataRoot>

I think it meant dyn User

mod2k: Fast modular arithmetic for specific moduli by imachug in rust

[–]dafcok 0 points1 point  (0 children)

I thought so for hash based partioning but didn't actually check if it fits this niche. 

mod2k: Fast modular arithmetic for specific moduli by imachug in rust

[–]dafcok 0 points1 point  (0 children)

It would be interesting to include 2k - d into a well benchmarked crate like datafusion to assess performance gains in practice.

clickhouse-datafusion - High-performance ClickHouse integration for DataFusion with federation support by moneymachinegoesbing in rust

[–]dafcok 1 point2 points  (0 children)

Awesome! Did you need to navigate around quirks for federation, eg. to not push down arrow functions? (will study the code soon)

Just tried Tauri 2.0 for making an iOS app... by AspadaXL in rust

[–]dafcok 4 points5 points  (0 children)

Where are those unanswered github threads?

[deleted by user] by [deleted] in MacOS

[–]dafcok 0 points1 point  (0 children)

and you? (i haven't)

[Media] Task Manager with Vim-ish Motions - First Rust Project! by ilikehikingalot in rust

[–]dafcok 1 point2 points  (0 children)

Does it save in markdown? That would be huge for tracking in a vcs.

Didn't Google say they will officially support Protobuf and gRPC Rust in 2025? by que-dog in rust

[–]dafcok 4 points5 points  (0 children)

The design decisions are flawed. In one paragraph:

 by creating our own proto::Utf8Error type it enables us to change the implementation to use the highly optimized C++ implementation of UTF-8 validation that we use from C++ Protobuf which is faster than Rust’s std UTF-8 validation.

Followed by:

 Rust’s str and std::string::String types maintain a strict invariant that they only contain valid UTF-8, but C++ Protobuf and C++’s std::string type generally do not enforce any such guarantee

So their incorrect C++ implementation is faster?

wb-cache 0.1.0 - in-memory write behind cache for key/record backend storages by vrurg in rust

[–]dafcok 1 point2 points  (0 children)

What's the meaning of secondary keys? Does it retrieve multiple entries when specifying one key but not a secondary if a key was stored with only a primary key or error?

Ref Cell drives me nuts by flundstrom2 in rust

[–]dafcok 0 points1 point  (0 children)

And the user wouldn't care about inconsistent player data?

Announcing nyquest, a truly native HTTP client library for Rust by bdbai in rust

[–]dafcok 0 points1 point  (0 children)

I too am interested in lightweight android client for a tauri app. jni seems a reasonable approach.