Anam Ansarianamansari062.hashnode.net·Feb 8, 2023🦀 Rust Series 02: CLI GameWhat to expect? In this blog, we will build a CLI Game, "Rock-Paper-Scissor". I have tried to cover basic Rust in this blog through this project. We will also go through some Cargo commands and usage. Before we get started why not install Rust first...Discuss·63 likes·372 readsRust SeriesRust
Anam Ansarianamansari062.hashnode.net·Feb 22, 2023🦀 Rust Series 03: Supermarket Billing System - Part 1What to expect? The first project I built when I joined college was Supermarket Billing System in C++. This blog pays tribute to the old curious me and will dive into core Rust Concepts. In the first part of the Supermarket Billing System, we will co...Discuss·45 likes·248 readsRust SeriesRust
Anam Ansarianamansari062.hashnode.net·Mar 1, 2023🦀 Rust Series 04: Supermarket Billing System - Part 2What to expect? In Part 1 of the Supermarket Billing System, we used inquire crate to create options. We also read and displayed the product list using serde and structs. In this part, we will finally code the logic for taking and placing orders. We ...Discuss·20 likes·161 readsRust SeriesRust
Chiranjeevi Tirunagarivchiranjeeviak.hashnode.net·Mar 29, 2023Simplest Hello World Ever (in RUST)Introduction If this is not your first "Hello World" tutorial, then you probably already know how they start. Creating a file. Writing main function (in some languages). Writing print statement with "Hello World". Run it and claps 👏👏👏. This ...Discuss·10 likes·83 readsRust SeriesRust
Sriyansh Shivamsonichere.hashnode.net·Mar 25, 2023Setup Rust on WindowsRust is a famous systems programming language that prioritises performance, dependability, and security. Setting up a Rust development environment on Windows can be difficult, but with the methods below, you should be up and running in no time. Inst...DiscussRust
Anam Ansarianamansari062.hashnode.net·Mar 1, 2023🦀 Rust Series 04: Supermarket Billing System - Part 2What to expect? In Part 1 of the Supermarket Billing System, we used inquire crate to create options. We also read and displayed the product list using serde and structs. In this part, we will finally code the logic for taking and placing orders. We ...Discuss·20 likes·161 readsRust SeriesRust
Anam Ansarianamansari062.hashnode.net·Feb 22, 2023🦀 Rust Series 03: Supermarket Billing System - Part 1What to expect? The first project I built when I joined college was Supermarket Billing System in C++. This blog pays tribute to the old curious me and will dive into core Rust Concepts. In the first part of the Supermarket Billing System, we will co...Discuss·45 likes·248 readsRust SeriesRust
Anam Ansarianamansari062.hashnode.net·Feb 8, 2023🦀 Rust Series 02: CLI GameWhat to expect? In this blog, we will build a CLI Game, "Rock-Paper-Scissor". I have tried to cover basic Rust in this blog through this project. We will also go through some Cargo commands and usage. Before we get started why not install Rust first...Discuss·63 likes·372 readsRust SeriesRust
Victor Andersonndu.hashnode.net·Dec 7, 2022Rust The Programming Langauge.Intro So the Rust programming langauge has been around for far back as 2010. I recently went through the basics and found it fun to dive even further in. To be honest I've been loving the experience and today I'll be spelling out what I know about th...Discuss·2 likes·67 readsprogramming languages
Shreyas K Sthemissingsemicolon.hashnode.net·Sep 22, 2022Cargo - Intro to Rust Package ManagerPackage Manager The package manager is a collection of related programs which helps in automating the process of installing, obtaining and upgrading artifacts. In a programming language ecosystem, a package manager is a developer-focused tool which a...Discuss·67 readsRustyCargo
Charles ChegeforSolana To The Moonchewingglass.hashnode.net·Jun 22, 2022Understanding the data storage of Solana Program Derived AddressesDecentralized applications need to store data immutable onchain. Solana is no different, that’s why we get Program Derived Addresses (PDAs). Creating a PDA is done through system_instruction::SystemInstruction::CreateAccountWithSeed which derives the...Discuss·77 readsRust, Solana, Web3