Feb 15 · 9 min read · What is Rust 🦀 I've been diving into Rust lately, and it has been quite an adventure. Rust runs as fast as C/C++ but catches many bugs before your code even runs. When I first started, something clicked for me pretty quickly: Rust isn't really hard...
Join discussion
Oct 4, 2025 · 5 min read · (for non-technical readers who want to understand why Rust is so strict about memory) 1. The Mystery of Memory Computers are excellent at remembering things, but not so great at cleaning up. Most programming languages hire a “cleaner”, a garbage col...
Join discussion
Sep 11, 2025 · 3 min read · Day 1 :- The goal for Day 1 was to get your environment set up and run your very first piece of Rust code. 1. Setting Up Your Workshop 🛠️ We installed the Rust toolchain using a tool called rustup. This is the official and recommended way to install...
Join discussion
Sep 8, 2025 · 3 min read · Learning Solana development wasn’t straightforward for me. And like most developers, useful resources for learning Solana development are not easy to collate, which is why I decided to share a roadmap to help you progress from zero knowledge to confi...
Join discussion
Jul 16, 2025 · 16 min read · super casual read. just enough to build real mental models. we are not doing procedural macros here (derive / attribute / function style). that will be a separate blog. here we focus on declarative macros (macro_rules!). why care? if you've ever wri...
Join discussion
Jul 5, 2025 · 1 min read · Printing Hello Rahul Simply write the code mentioned below fn main() { // from here the program starts and between two curly brackets whatever is written it contains execution part println!("Hello Rahul"); // printing Hello Rahul } //if used ...
Join discussionJul 3, 2025 · 2 min read · Pardon me for using low level english I initially started using rust 1 week ago. But the query is why did i start as the review of this language in the developer market is very bad. Also it takes a lot of time to learn which is mostly very vague stat...
Join discussionApr 6, 2025 · 2 min read · ✨ Introduction Welcome back to our Rust learning journey! In our last post, we explored control flow, functions, and ownership. Today, we dive into three powerful concepts that make Rust both flexible and type-safe: 🚀 Generics, Traits, and Implemen...
Join discussion
Mar 31, 2025 · 4 min read · Rust is a powerful systems programming language that enforces memory safety without a garbage collector. In this post, we will explore control flow (conditionals & loops), functions, and ownership concepts (move vs. borrowing). 🔍 Conditionals in Ru...
Join discussion