Building a simple AI chatbot using Rust and Ollama

08.03.2024 - 11m read - rust async ai llm ollama llama2

In this post, we'll build a simple AI chatbot, leveraging a locally running LLM, using Rust and Ollama.


Using CRDTs to build collaborative Rust web applications

23.02.2024 - 68m read - rust crdt

In this post, I’ll show how to build a simple web app leveraging CRDTs for keeping consistent state between all clients.


Using Cap'n Proto with Rust

09.08.2023 - 27m read - rust capnproto serialization rpc

Cap'n Proto is a binary serialization and RPC system optimized for performance. In this article, we'll take a look at how we can use it within Rust.


Build a full-stack TypeScript app using tRPC and React

30.06.2023 - 36m read - typescript trpc react

In this post, I’ll show how to use tRPC to build a full-stack TypeScript app.


Writing webpack plugins in Rust using SWC for faster builds

21.06.2023 - 21m read - rust webpack swc

In this post, I’ll show how to use SWC for writing Webpack plugins in Rust.


How to build a WebSocket server with Rust

12.05.2023 - 26m read - rust web websocket

In this post, I’ll show how implement a WebSocket server with Rust.


Create an async CRUD web service in Rust with warp

09.05.2023 - 40m read - rust async crud warp

In this post, I’ll show how to implement an async CRUD Rust web application using Warp.


Concurrent programming in Rust with Crossbeam

22.12.2022 - 27m read - rust concurrency crossbeam

In this post, I’ll show how to use Crossbeam for concurrent programming in Rust.


Fleet: A build tool for improving Rust’s Cargo

20.08.2022 - 9m read - rust build fleet

In this post, I’ll show how to improve Rust build times using Fleet.


Understanding String and &str in Rust

12.08.2022 - 16m read - rust string str

In this post, I’ll go into the differences between String and &str in Rust.