Vijay Thirugnanamyocanay.com·Nov 18, 2024My first Rust programI wrote my first Rust program. On my Mac, I was able to get started in a few minutes. brew install rustup This installs rustc (rust compiler) and cargo (for build). rustc --version cargo --version I built an api server based on actix. It gets some ...DiscussRust
Sundeeep DasariforTech Quest by Sundeeep🚀sundeeep.hashnode.dev·Nov 15, 2024The Silent Revolution in Software Safety: How Rust is Preventing Billion-Dollar DisastersSomething remarkable is happening in the world of software. For years, developers had to make a tough choice: build fast programs that might crash, or safe programs that run slowly. It's like choosing between a sports car without brakes or a tank tha...DiscussRust DemystifiedRust
Alex Mercedalexmerced.hashnode.dev·Nov 5, 2024Introduction to Cargo and cargo.tomlWhen working with Rust, Cargo is your go-to tool for managing dependencies, building, and running your projects. Acting as Rust's package manager and build system, Cargo simplifies a lot of the heavy lifting in a project’s lifecycle. Central to this ...Discuss·1 likeRust
Francesco CiullaforTinyStackstinystacks.hashnode.dev·Nov 3, 2024All the Rust FeaturesIn this article, we’ll explore all (or nearly all) of the key features that make the Rust programming language unique. If you want to understand what sets Rust apart, dive into each feature and see how it helps make Rust an efficient, safe, and powe...Discuss·1 likeRust
Victor Uzoagbavictoru.hashnode.dev·Oct 27, 2024Why Rust is Gaining Traction in Financial Services: A Deep Dive into Memory Safety and PerformanceIn recent years, Rust has emerged as a compelling alternative to C++ in financial services, particularly in areas where performance and reliability are paramount. As trading systems become increasingly complex and regulatory scrutiny intensifies, fin...Discussrust lang
Francesco Ciullablog.francescociulla.com·Oct 15, 2024Iterators in RustIterators in Rust provide a powerful and flexible way to process data efficiently by transforming, filtering, and aggregating elements in a collection. Unlike traditional loops, Rust’s iterators are lazy—meaning they don't perform any actions until ...Discuss·1 likeRust
Alex Mercedalexmerced.hashnode.dev·Oct 14, 2024Working with Collections in Rust | A Comprehensive GuideSubscribe to my Dev Youtube Subscribe to my Data Youtube Follow @alexmercedcoder on thread, twitter and instagram Introduction Rust is well known for its focus on memory safety, performance, and concurrency, making it a great choice for systems prog...Discuss·212 readsRust
Sahaj Guptaitsahaj.hashnode.dev·Oct 11, 2024Rust ownership and borrowingThis is my attempt at explaining Rust ownership and borrowing rules. Lets look at the rules first. Each value in Rust has an owner. There can only be one owner at a time. When the owner goes out of scope, the value will be dropped. Before unders...Discuss·27 readsRust
CrabNebulaforCrabNebulacrabnebula.hashnode.dev·Oct 10, 2024Interview with Prabhu Kiran Konda, Creator of Snail AI!Welcome to the last episode of our series “Building with Tauri”. Today, we’re discussing with Prabhu Kiran Konda about snail-ai, a ChatGPT-like app for Windows and macOS using Tauri, Svelte Kit and Shadcn-svelte. It supports Ollama, OpenAI, and Groq ...Discuss·7 likesRust
Siddhesh Paratesiddhesh877.hashnode.dev·Oct 7, 2024A Beginner's Guide to Rust: Understanding Functions, Control Flow, and Error ManagementRust is a modern programming language that emphasizes safety, concurrency, and performance. In this blog post, we'll explore three fundamental aspects of Rust: functions, control flow and error handling. These concepts are crucial for writing efficie...DiscussRust