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
Jesper Bisgaardjespermb.hashnode.net·Sep 6, 2022FeaturedCreate MineSweeper in RustFor the next exercise, I want to create the classic game MineSweeper in Rust. Microsoft MineSweeper was included in Windows 3.11 and was a copy of another game Mined-Out. You can check the wiki page here. Credit due, much of this is based on this vid...Erin Haynes and 1 other are discussing this2 people are discussing thisDiscuss·58 likes·454 readsrust lang
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
Wilfred Almeidawilfredalmeida.hashnode.net·Apr 17, 2023Rusly: Rust URL Shortener System DesignRusly is a URL shortener built using the Rocket framework in Rust. Checkout RuslyCheckout the Rusly GitHub repo This blog lays out the system design thought process I used while designing and developing the system. Read about the Rust syntactical dev...Discuss·1 like·144 readsRust
rex chenrex818.hashnode.net·Apr 17, 2023Learning Rust's Ownership and Borrowing: Learn from the Book "Rust in Action"In Rust, every variable has ownership, which defines when the variable can be used and modified. When ownership of a variable is transferred, its lifetime is also transferred. This allows Rust to check ownership and lifetimes of code at compile-time ...DiscussRust
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 14, 2023Rust: Control FlowIn structured programming, control flow statements are used to specify the order in which a program's instructions should be executed. There are three types of control flow statements in structured programming: Sequential: This type of control flow ...DiscussRust LanguageRust
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 13, 2023Rust: OverviewRust is a programming language that is fast, safe, and efficient. Its purpose is to help developers write programs that run quickly and work well with other programs. Rust has features that make it easy to write code that can run on different types o...Discuss·5 likes·30 readsRust LanguageRust
vasanth kumaritsparser.hashnode.net·Apr 11, 2023Why engineers 💖 rustIt has been six years now Rust is been loved by developers all over the world (via StackOverflow) As a programming language, Rust has gained much popularity in recent years. Its design emphasizes safety, performance, and concurrency, making it a grea...Discuss·10 likes·48 readsRustRust
Caroline Nyakio Mainanyakio.hashnode.net·Apr 9, 2023Understanding the Key Differences Between Arrays and Vectors in RustWhen I first started learning Rust, one concept that initially confused me was the distinction between arrays and vectors. Weird right? As a newcomer to the language, it was challenging to understand when to use one over the other and how they functi...Discuss·3 likes·34 readsRust
Caroline Nyakio Mainanyakio.hashnode.net·Apr 9, 2023A Handy Rust Cheat Sheet for Beginners1. Variables and Data Types Declare a variable (immutable by default): let variable_name = value; Declare a mutable variable: let mut variable_name = value; Specify a data type: let variable_name: data_type = value; Common data types: I...Discuss·5 likes·27 readsrust beginner
Omar Hiariapollolabsblog.hashnode.net·Apr 5, 202358 Rust Resources Every Learner Should Know in 2023Last year, I set out to learn Rust mainly for applying it to embedded systems. Back then I also shared an aggregation of all that learning material I came across in the post "35 Rust Learning Resources Every Beginner Should Know in 2022". Ever since ...Discuss·16 likes·4.1K readsRust
Kelvin Oritsetimeyinkelvinsekx.hashnode.net·Apr 2, 2023Rust Strings, the complete overviewEverything in Rust Programming Language could look like an overdo, or complex, except they are only a myth about the language. In all sincerity, things in real life are usually not black and white, but gray. Strings aren't an exception. Strings are a...Discuss·3 likes·50 readsRust
Kelvin Oritsetimeyinkelvinsekx.hashnode.net·Mar 29, 2023FeaturedHello Rust for First TimersFor the past 5 years in a row, Rust has topped the Most Loved Programming (MLP) Languages according to StackOverflow Survey. This category of languages is usually robust, intentional, and simple. They give developers who use them some superpowers tha...Discuss·33 likes·476 readsRust