A comparison of mutation testing tools for Go, Rust, Python, and TypeScript, covering setup, test framework integration, and diff-based optimization techniques for each language.
A comparison of sorting algorithms used in the standard libraries of 5 major programming languages. Covers recent major updates including Timsort, Powersort, driftsort, and pdqsort.
When you want to copy an array in Rust, what is actually the fastest approach? The short answer is: just use `clone_from_slice`.
I wanted to try Actix-web, so I implemented the Diesel Getting Started guide using Actix-web.
I wanted to format code inside Markdown, so I built a tool for it.
Set up a Jupyter environment for Rust and enable completions with rust-analyzer.
Cross-compiling and uploading binaries on Release with GitHub Actions and cross
When implementing operators for structs, the code gets very long without macros, so I'll summarize how to use macros for this purpose.
I implemented a LinkedList in Rust.
I discovered that Rust actually has a pandas-like crate, so I put together a comparison of corresponding operations. No guarantees these are optimal solutions.