Format/BlogSeries

- Hello > Building a search engine from scratch, in Rust: introduction: Have you ever wondered how search engines work under the hood? I'm not talking about vector search or anything fancy, but just the good old search engines that could really find what we would look for…
- Building a search engine from scratch, in Rust: part 1

- Build A Web + Desktop Application With Rust | by Kofi Otuo | Mar, 2025 | Medium: What if you could build a blazing-fast web app and a native desktop application — using a single codebase, with no JavaScript, but the safety guarantees of Rust? As developers, we’ve all felt the…
- Build A Web + Desktop Application With Rust: I | by Kofi Otuo | Mar, 2025 | Level Up Coding

- Solving the ABA Problem in Rust with Tagged Pointers: Solving the ABA Problem in Rust: Tagged Pointers with Versioning
- Epoch Adventures: Breaking Free from ABA in Concurrent Rust

- Building a DNS Server in Rust: Part 1 of 2: Learn how to build a DNS server in Rust from scratch. Explore the DNS protocol, create a simple server, and handle DNS queries with ease.

- Nine Pico PIO Wats with Rust (Part 1) | Towards Data Science: Raspberry Pi programmable IO pitfalls illustrated with a musical example
- Nine Pico PIO Wats with Rust (Part 2)

- Optimization adventures: making a parallel Rust workload 10x faster with (or without) Rayon | Blog | Guillaume Endignoux: In a previous post, I’ve shown how to use the rayon framework in Rust to automatically parallelize a loop computation across multiple CPU cores.Disappointing...
- Optimization adventures: making a parallel Rust workload even faster with data-oriented design (and other tricks)

- Ferrostar: Building a Cross-Platform Navigation SDK in Rust (Part 1) | Stadia Maps: The first in a series of technical blog posts covering cross-platform mobile development in Rust.
- Ferrostar: Building a Cross-Platform Navigation SDK in Rust (Part 2 - iOS Packaging)

- Async Rust in Three Parts:
- Async Rust, Part One: Futures
- Async Rust, Part Two: Tasks
- Async Rust, Part Three: IO

- Serde Trait - Part 1: Overview | My blog: Serde for trait objects - Part 1: Overview
- Serde for trait objects - Part 2: Serialization
- Serde for trait objects - Part 3: Deserialization

- Beyond multi-core parallelism: faster Mandelbrot with SIMD: Optimizing your code is a valuable addition to multi-core parallelism. In this article, we’ll see an example using SIMD.
- Using portable SIMD in stable Rust

- CppCon - C++/Rust Interop: Using Bridges in Practice | Tyler Weaver:
- Rust/C++ Interop Part 1 - Just the Basics
- Rust/C++ Interop Part 2 - CMake
- Rust/C++ Interop Part 3 - Cxx
- Rust/C++ Interop Part 4 - Binding to a C++/CMake/Conan Project

- Mastering Dependency Injection in Rust: Crafting a Custom Container - chesedo: Learn how to implement a custom Dependency Injection (DI) container in Rust. This comprehensive guide covers various dependency types, lifetimes, and advanced patterns, providing a solid foundation for building modular and testable Rust applications.
- Mastering Dependency Injection in Rust: Despatma basics
- Mastering Dependency Injection in Rust: Despatma with Lifetimes

- Sqlx4k - Introduction to the Kotlin native and FFI (Part 1) | :: exploration and stuff ::: Introduction Recently, I began experimenting with the Kotlin Native platform. I initiated a new repository and attempted to create a simple project utilizing the ktor libraries. The purpose of the project was to recreate a small service that integrates some basic libraries and compile it to a native target (macosArm64 in my case). The service aimed to offer support for: Dependency injection HTTP server Database access (PostgreSQL) Additionally, RabbitMQ support (though it isn’t a priority for now) In this first article of the series, I aim to describe how I ended up writing “low-level” code (FFI between Kotlin and Rust) and also to highlight the importance of native compatibility in Kotlin Native.
- Sqlx4k - Introduction to the Kotlin native and FFI (Part 2)

- Build your own SQLite, Part 1: Listing tables: As developers, we use databases all the time. But how do they work? In this series, we'll try to answer that question by building our own SQLite-compatible database from scratch. Source code examples will be provided in Rust, but you are encouraged t...
- Build your own SQLite, Part 2: Scanning large tables
- Build your own SQLite, Part 3: SQL parsing 101
- Build your own SQLite, Part 4: reading tables metadata
- Build your own SQLite, Part 5: Evaluating queries

- Tutorial: Implementing JSON parsing (Rust) | David's Software: Learn the fundamentals of parsing by implementing JSON parsing from scratch
- Tutorial: Writing a JSON Parser (Rust) - Part 2/2

- Making games play themselves with Rust Part 1: Screen Interaction: An introduction to automated gaming!
- Making games play themselves with Rust Part 2: Parsing the Game State
- Making games play themselves with Rust Part 2.5: Proof by Exhaustive Search

- Part 0: Designing a Language without a Parser · Thunderseethe's Devlog: Designing a language, types first
- Part 1: Bidirectional Constraint Generation
- Part 2: Tying up Type Inference
- Part 3: Rowing Afloat Datatype Boats
- Part 4: TypeChecking Top Level Functions
- Part 5a: Lowering Our AST to Escape the Typechecker
- Part 5b: Escaping the Typechecker, an Implementation
- Part 6a: Lowering Row Types, Evidently
- Part 6b: The Types of Lowered Rows
- Part 6c: The Heart of Lowered Rows
- Part 7: Lowering Top Level Items