pulpulbasso.dev·Nov 26, 2024#2 Daily Rabbit Holes: Diving Deeper into Rust, V8, and the JavaScript™️ SagaUnfortunately, today I had very little time to dive into interesting topics. I spent some time on a side project (which I’ll probably write about in the coming days), worked on my day job, and did some sports. Still, my focus remains on Deno, Rust, a...34 readsDaily Rabbit HolesRust
pulpulbasso.dev·Nov 25, 2024#1 Daily Rabbit Holes: Rusty V8, Node.js and DenoThis series is essentially a notebook where I document the things I learn online during my limited free time—usually early in the morning or late at night. Today’s rabbit hole started with Deno Deploy, which powers serverless functions for services l...79 readsDaily Rabbit HolesRust
Sundeeep Dasarisundeeep.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...28 readsRust 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...rust 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...100 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...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 ...Rust
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...Rust
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...3 likes·87 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 ...6 likes·43 readsRust