What some people get wrong about Rust safety

rustunsafememory-safetyfil-cziggopony

If you can't write some things in Rust without unsafe, then all its safety is just empty words? No: appropriate unsafe is a conscious, auditable opt-out of the compiler's guarantees, not a hole. And "safe" Java, C#, and Go are not even the same thing.

read more →

Escape The Implicit Hell

rustphilosophyprogramming-languages

JavaScript, PHP, Python, Ruby, TypeScript, Java, Go — they all share a dangerous trait: they hide complexity behind "developer experience." Here's why explicitness matters and how Rust forces you to face reality.

read more →

Supercharging PHP with Rust

rustphpffiextensions

PHP powers a massive chunk of the web — WordPress alone runs on 40% of websites. Yet mention PHP in certain circles and watch developers recoil. Here's how Rust can change that.

read more →

Building a Fuzzy Search Engine in Rust

rustsearchalgorithmsfuzzy-matching

I needed to search sanctions lists with messy, real-world queries. Typos, transliterations, concatenated names like "SADDAMHUSSEIN" — the works. What started as a Python prototype became two open-source Rust libraries and a search engine that processes 5,000+ queries in under 7 seconds.

read more →