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
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
Rajni RetheshforMiddleware - Be Productive, Not Busy!middlewarehq.com·Oct 7, 2024Rust Dora Metrics: High Demand, Smooth Deployments, But Can They Handle the Pressure?For years, cyber attackers have taken advantage of vulnerabilities caused by a lack of “memory safety” in software. To tackle this issue at its core, major players like Google and Microsoft are turning to Rust in droves. Google, in particular, has ma...Discuss100 Days of Dora Metrics Case StudiesRust
Francesco Ciullablog.francescociulla.com·Sep 21, 2024Why might Rust be a smart choice for developers today?Why might Rust be a smart choice for developers today? Video Version Rust was recently added to the Linux kernel, the first new language in nearly 30 years, endorsed by Linus Torvalds himself. It’s gaining traction for its focus on safety and relia...Discuss·1 likeRust
Pulkit Govranipulkitgovrani.hashnode.dev·Aug 29, 2024Functions in RustThe main function present in code is an entry point for the compiler, so it is compulsory to have one main function in code. We use fn keyword to declare functions in Rust. The functions follow snake case conventional style for naming i.e, where all ...DiscussRust
Kartik Sangalkartik-devops.hashnode.dev·Aug 23, 2024Chapter - 1Installation We will download rust through -> rustup (a command line tool for managing Rust versions and associated tools) To install the Rust on the Linux: $ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh To check the version of th...DiscussRust
Francesco Ciullablog.francescociulla.com·Aug 3, 2024Getting familiar with Rust's SyntaxSo, you've decided to learn Rust. Good choice! Rust is an awesome language that combines the power of systems programming with modern language features, and it can be used for Web Development and blockchain. However, when learning Rust, one of the b...Discuss·3 likes·83 readsRust
Soham Panchalsohamdesu.hashnode.dev·Jul 28, 2024Real life example use case of macros in Rust: Declarative macrosWhat are macros? Macros in rust are the way of writing the code of requirement, with the code itself. That's confusing, right? Basically talking, it gives us the power of generating the context suitable code whenever and wherever we would need it in ...Discuss·6 likes·43 readsRust
Harold Lippinharoldrippin.hashnode.dev·Jul 6, 2024[Rust] Variables part 4A variable is a named storage that a program can manipulate.Simply put, variables help programs store values.Variables in Rust are associated with a specific data type.The data type determines the size and layout of the variable's memory, the range o...Discuss·53 readsRust Rust
Harold Lippinharoldrippin.hashnode.dev·Jun 24, 2024[Rust] Data Types part 3A data type system represents the different types of values supported by a language.It allows for code hints and automated documentation while validating the values provided before they are stored or manipulated by the program and verifying that the ...Discuss·32 readsRust