Rust doesn’t belong in the Linux Kernel

Due to some recent Rust drama in the Linux kernel I’ve decided to explain in detail why the Rust ideology simply isn’t compatible with the Linux way. Read more

Similar

I hotreload Rust and so can you

Hotreloading allows one to change the behavior of a program while it is running. Unlike a plugin system it is strictly a dev tool. Usually rust game devs limit their hotreloading to data files. This is pretty useful already! It lets one reload graphic as... (more…)

Read more »

A fast port scanner in 100 lines of Rust

To write a fast port scanner, a programming language requires: A Good I/O model, not to eat all the resources of the system. High-level abstractions and a good packaging system to isolate low-level code and reuse it easily. To be type and memory safe, be... (more…)

Read more »