sfba.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for the San Francisco Bay Area. Come on in and join us!

Server stats:

2.4K
active users

#rust

328 posts243 participants16 posts today

The #Rust crate `csv` has a very clever design.

It parses CSV one byte at a time using a state machine. It has only a few states, none of which have any associated data, so it uses its configuration (delimiter character, quote character, etc) to populate a big table of what to do in every possible combination of state and input byte.

In theory, that is very fast.

I wonder…would it be faster still, if the state machine was generated at compile time by a proc macro?

I think I found something weird & scary with `#[target_feature]`. Is this expected?

This feels like it should *at minimum* trigger a lint. How am I supposed to know whether trait impls added extra safety preconditions — especially when using `dyn/impl Trait` and/or an unsealed trait?

Nice new milestone for #embedded #Rust development: defmt 1.0 has been released. The crate enables logging for microcontrollers without text or number formatting on the device – instead, the device sends numbers of interned strings to the host, which composes log messages.
1.0 is not only a stable release, but also enables logging #CBOR data into diagnostic notation on the host.

In the backyard of the “Amsterdam Museum” (formerly known as “Hermitage”) you can find some ‘metal beasts’, made by artist “Junk-Art”. 🐀 ⚙️⛓️

The sculptures are handmade, sustainable, and the material they use is steel. It’s including sources such as bolts, gears, all sorts of motor parts, horseshoes and metal scraps. ♻️

#Amsterdam #metalbeast #rat #metal #junkart #neerlandiaplein #exhibition #photo #urbanart #mokum #noir #xxx #art #scrap #gears #bnw #photography #concretejungle #scrapmetal #parts #industrial #animal #artiseverywhere #streetphotography #steel #bolts #beeld #rodent #museum #museo #arte #artwork #motorparts #blackandwhite #horseshoes #recycling #recycle #rusty #escultura #sculpture #rust

I'm using Rust's Macroquad crate to make a small game, and so far it is exactly the right level of abstraction for this project.

(Bevy is great, but its more than what I need for this project)/

I especially like that because it isn't opinionated, it gives me the chance to build my own game loop and ECS so I better understand how more sophisticated game engines (like bevy) work.

I'm really looking forward to deploying this to WASM and trying out mobile support.