#programming-blogs
Read more stories on Hashnode
Articles with this tag
What are they and how do they work? · On this post I intend to walk down memory lane a bit to understand what exactly are Smart Pointers? Where do they...
unique_ptr, shared_ptr, and weak_ptr · In modern C++ programming, memory management is a crucial aspect of writing efficient, maintainable, and bug-free...
A Practical Approach I’ve been writing C++ on and off professionally for maybe 10 years now, and started to use Rust about 2 to 3 years ago. Here I’d...
On this blog post I am going to talk about Macros, well Rust Macros · On this blog post I am going to talk about Macros, well Rust Macros, not the type...
Serde is a generic framework for serializing and deserializing Rust data structures efficiently. · use serde::{Serialize, Deserialize}; /// Represents...