Opaque UUIDs (f47ac...) make logs & APIs a guessing game. MTI gives you human-readable, type-safe IDs like user_01h45....
Globally unique, K-sortable, and way clearer for debugging. 🦀🚀
Grab it: crates.io/crates/mti
Toss a ⭐: github.com/GovCraft/mti
Opaque UUIDs (f47ac...) make logs & APIs a guessing game. MTI gives you human-readable, type-safe IDs like user_01h45....
Globally unique, K-sortable, and way clearer for debugging. 🦀🚀
Grab it: crates.io/crates/mti
Toss a ⭐: github.com/GovCraft/mti
github.com/Govcraft/mail-laser
github.com/Govcraft/mail-laser
github.com/GovCraft/act...
github.com/GovCraft/act...
github.com/Govcraft/rus...
github.com/Govcraft/rus...
"🕎 Happy Hanukkah, World!",
"🌟 Joyous Kwanzaa, World!",
"✨ Happy Holidays, Everyone!"]
.iter()
.for_each(|message| println!("{}", message));
#rustlang #helloworld #spreadlove
"🕎 Happy Hanukkah, World!",
"🌟 Joyous Kwanzaa, World!",
"✨ Happy Holidays, Everyone!"]
.iter()
.for_each(|message| println!("{}", message));
#rustlang #helloworld #spreadlove
Syzygy: Dual Code-Test C to Rust Translation using LLMs and Dynamic Analysis!
Result: We successfully translated Zopfli, a C compression library with ~3000 LoC to Safe Rust with test-based validation
syzygy-project.github.io
#CodingLife #rust
#CodingLife #rust
Example:
❌ "How do I shrink a file for email?"
✅ "I need to send a large file to a coworker."
Tip: Share the full story. Context = better solutions! 🚀
Example:
❌ "How do I shrink a file for email?"
✅ "I need to send a large file to a coworker."
Tip: Share the full story. Context = better solutions! 🚀
Peeked into Day 16 and pretty sure Dijkstra's waiting for me. I'll tackle him tomorrow—this weekend's a wrap. 🥱
Peeked into Day 16 and pretty sure Dijkstra's waiting for me. I'll tackle him tomorrow—this weekend's a wrap. 🥱
Missed finishing Part Two for Day 12 and Day 15. Need to start earlier—or maybe tackle it the night before. Frustrating, but onward! 🦀
Missed finishing Part Two for Day 12 and Day 15. Need to start earlier—or maybe tackle it the night before. Frustrating, but onward! 🦀
Part 1? Nailed it with a quick and dirty approach. Part 2? Let’s just say Google’s quantum chip wouldn’t have solved it before the universe ends. Buckled down, thought it through, and shipped the final solution: 99 lines of #rust, 78 without tests. 🦀💡
Part 1? Nailed it with a quick and dirty approach. Part 2? Let’s just say Google’s quantum chip wouldn’t have solved it before the universe ends. Buckled down, thought it through, and shipped the final solution: 99 lines of #rust, 78 without tests. 🦀💡
github.com/GovCraft/vtt
github.com/GovCraft/vtt
Taking a break from Day 8 to post Day 7. Optimized using perf, criterion & heaptrack till I tired of it. They're getting more fun to think through! Code runs fast; could be cleaner but, meh...you get what you pay for. 🤷🏽
github.com/rrrodzilla/a...
Taking a break from Day 8 to post Day 7. Optimized using perf, criterion & heaptrack till I tired of it. They're getting more fun to think through! Code runs fast; could be cleaner but, meh...you get what you pay for. 🤷🏽
github.com/rrrodzilla/a...
Solution evolution:
>6s runtime 🐢 - Vec/HashSet => poor cache & full-sized data types
0.65s 🐇 - Parallel with Rayon => still memory heavy
0.071s 🚀 - Bit-packing, small ints, better locality + parallel ~100x faster 🦀
github.com/rrrodzilla/a...
Solution evolution:
>6s runtime 🐢 - Vec/HashSet => poor cache & full-sized data types
0.65s 🐇 - Parallel with Rayon => still memory heavy
0.071s 🚀 - Bit-packing, small ints, better locality + parallel ~100x faster 🦀
github.com/rrrodzilla/a...