Tootfinder

Opt-in global Mastodon full text search. Join the index!

@grifferz@social.bitfolk.com
2025-10-21 13:13:43

"How to Optimize Rust for Slowness" – Carl Kadie
#rustlang

@mgorny@social.treehouse.systems
2025-08-10 19:07:00

#RustLang is great and rock solid. That's why when you build the Rust compiler against LLVM with assertions enabled, it crashes on unmet assertions.

@mgorny@pol.social
2025-08-10 19:06:59

#RustLang jest wspaniały i stabilny. Dlatego jak się zbuduje kompilator na LLVM, które ma załączone asercje, to się wykrzacza na niespełnionych.

@niklaskorz@rheinneckar.social
2025-09-08 08:29:39

Some realtalk and call for help (thread): for a bit over a year, I've been somewhat regularly organizing the domestic #NixOS and #RustLang meetups in #Mannheim and

@chrysn@chaos.social
2025-10-01 11:32:12

Just released: embedded-io 0.7.{0,1}, along with its -async and -adapter siblings. These #RustLang crates help #embedded systems abstract over byte data input and output, similar to the standard library's io module.
If all goes as I hope, the embedded-io 0.7.x series can be followed compatibly …

@mgorny@social.treehouse.systems
2025-10-08 08:13:24

Sequoia PGP exemplifies everything that's wrong about #RustLang (don't mean this against Sequoia). It features a bunch of different CLIs, which is a reasonable design.
If Sequoia were written in C, these CLIs would probably be using some shared library. If Sequoia were written in Python, they would probably use a shared Python package. However, it's written in Rust, so every CLI is a huge binary with its own copy of subset of shared Sequoia code, built separately:
-rwxr-xr-x 1 root root 12M 10-08 06:36 /usr/bin/gpg-sq
-rwxr-xr-x 1 root root 4,7M 10-08 06:36 /usr/bin/gpgv-sq
-rwxr-xr-x 1 root root 21M 10-08 08:38 /usr/bin/sq
-rwxr-xr-x 1 root root 6,9M 10-08 08:38 /usr/bin/sqop
-rwxr-xr-x 1 root root 3,1M 10-08 08:32 /usr/bin/sqv

@mgorny@pol.social
2025-10-08 08:15:35

Sequoia PGP ukazuje wszystko to, co jest nie tak z #RustLang (nie czepiam się tu projektu Sequoia). Mamy kilka różnych binarek CLI, co ma sens.
Gdyby Sequoia była napisana w C, to najpewnie używałyby jakiejś biblioteki współdzielonej. Gdyby napisała była w Pythonie, to najpewniej mielibyśmy wspólną paczkę Pythona. Ale napisano ją w Ruście, więc każdy interfejs to odrębna, wielka binarka z włas…

@mgorny@social.treehouse.systems
2025-10-24 02:24:26

Who would have thought that creating a programming language for rapidly developing, deploying and abandoning lots of packages would have lead to this…
"Forking confusing: Vulnerable Rust crate exposes #uv #Python packager"
#RustLang #security

@beeb@hachyderm.io
2025-10-18 19:56:12

New article on the blog!
This time, it's about how I optimized an algorithm which turns byte offsets into line/column numbers and UTF-16 offsets.
Most of the performance improvement came from the use of SIMD to efficiently count ASCII characters.
#rust #RustLang #SIMD #optimization #blog