no-std Rust and others

ugly code Perfect code doesn’t guarantee success if you haven’t solved a real problem for real people. Pursuing elegance in a vacuum leads to abandoned side projects or frameworks nobody uses. By contrast, clunky but functional code often comes with just the right compromises for quick iteration. And that in turn means a lot of messy code powers products that people love — something that’s a far bigger challenge. Are you shipping a product and racing to meet user needs? Or are you building a reusable library or framework meant to stand the test of time? ...

February 20, 2025 · 3 min · un01s

rustup

Update rust $ rustc --version rustc 1.78.0 (9b00956e5 2024-04-29) $ rustup update $ rustc --version rustc 1.81.0 (eeb90cda1 2024-09-04) Start to play with Tauri: node.js + rust => GUI App. There are examples of deno and tauri. Another interesting thing is WebUI in C with WebSocket, that uses browser as the GUI.

September 7, 2024 · 1 min · un01s

Rust on esp32

Start to look at the toolchain for Rust on ESP32 family modules. After some googling, here is the first result. Clearly the toolchain is working in its early stage. $ cargo build OK. Both espflash and espmonitor are working. Reference: Rust on ESP32 rust esp32 std demo

January 11, 2022 · 1 min · un01s