Trending

#LearningRust

Latest posts tagged with #LearningRust on Bluesky

Latest Top
Trending

Posts tagged #LearningRust

Preview
Panic at unreachable · Issue #6159 · gfx-rs/wgpu Description Panic at an unreachable in wgpu-core/src/device/global.rs, line 1859: unreachable!("Fallback system failed to choose present mode. This is a bug. Mode: {:?}, Options: {:?}", config.pres...

#rust ggez app i'm writing crashes when I'm on my laptop, but works when I use it with the docking station (which I don't have with me on the train to Nürnberg). Some unresolved wgpu bug: github.com/gfx-rs/wgpu/...

Time to work on something else, I guess...
#learningRust #programming

0 0 0 0

Rust Devs —
At some point, you stop chasing the newest crates, async runtimes, and frameworks…
and start mastering ownership, lifetimes, and borrow checking.
That’s when growth stops looking exciting —
and starts looking real.

#RustLang #SystemsProgramming #LearningRust

2 0 0 0
Preview
Gathering Rust Exploring the Rust programming language through creating a log extractor for the Magic The Gathering: Arena online card game.

I started learning Rust recently and, as an exercise, built a tool to parse MTG Arena logs. Read about it in my blog article Gathering Rust 👉 www.newresalhaider.com/post/gatheri... #RustLang #MTG #LearningRust #Programming #DevBlog

3 1 0 0

Some common cargo commands:

- cargo build -> produces the binary
- cargo run -> produces and runs the binary
- cargo check -> It skips the step of producing the binary, thus, much faster than cargo build and still checks for errors.

#Rust #LearningRust

0 0 0 0
Post image

#LearningRust day 3

----------------------------------------------
Some basic concepts from the book:

“Rust is an ahead-of-time compiled language, meaning you can compile a program and give the executable to someone else, and they can run it even without having Rust installed.”

0 0 1 0
Video

#LearningRust day 2

Installing #Rust

The recommended way is to install rustup from the command line or terminal. I'm using MacOS so I was tempted to see if an installation through #brew was available.

0 0 1 0

Just wrapped up another Rust project—Minigrep, a command-line file search tool! Feeling accomplished and excited for the next challenge!
😇 If you’re learning Rust, I highly recommend tackling this—it’s a great way to level up!
#RustLang #Coding #SystemsProgramming #LearningRust #Minigrep #DevJourney

1 0 0 0
Post image

#LearningRust Day 1

I searched Google "What's the best way to learn #Rust". After spending about 10 minutes searching across different sites and Reddit posts, I'll focus on using two resources:

- The Rust Programming Language
- Rustlings

0 0 1 0
Post image

#learningrust today

2 0 1 0

Being able to open a local doc site for the dependencies of your Rust project with `cargo doc --open` 👨🏻‍🍳 😘 #rust #learningrust

0 0 0 0
    match (client_id, client_secret) {
        (Ok(client_id), Ok(client_secret)) => {
            // Both are successful
            println!("Client ID: {}", client_id);
            println!("Client Secret: {}", client_secret);
        }
        (Err(e), _) => {
            // Handle error from get_client()
            println!("Error fetching client ID: {}", e);
        }
        (_, Err(e)) => {
            // Handle error from get_client_secret()
            println!("Error fetching client secret: {}", e);
        }
    }

match (client_id, client_secret) { (Ok(client_id), Ok(client_secret)) => { // Both are successful println!("Client ID: {}", client_id); println!("Client Secret: {}", client_secret); } (Err(e), _) => { // Handle error from get_client() println!("Error fetching client ID: {}", e); } (_, Err(e)) => { // Handle error from get_client_secret() println!("Error fetching client secret: {}", e); } }

I need to skeet this. I'm loving the pattern matching feature in Rust. It's cool you can `match` on multiple things like this. #rust #learningrust

2 0 0 0
Original post on infosec.exchange

That’s it, our short tour of my favorite resources for #LearningRust is finished… It’s now time to start your own project or pick up an open source project you like and contribute to it!

Stay tuned to the @hnsec blog for the third installment of our #OffensiveRust series, in which I’ll […]

0 2 0 0
Original post on infosec.exchange

Happy new year!

If you have followed my previous advice while #LearningRust, you should be ready for one of my favorite learning resources.

“Learn Rust With Entirely Too Many Linked Lists” is a fun and entertaining read on the intricacies of #Rust (and linked lists) by the same author of the […]

0 2 0 0
Original post on infosec.exchange

Now that you have learned the basics of the language and have set up your IDE, you’re ready to tackle some practical exercises as the next step in #LearningRust.

I especially recommend Rustlings, a collection of small exercises to get you used to reading and writing #Rust code […]

1 2 0 0
Original post on infosec.exchange

Theory is important, but I’m a strong believer in getting your hands dirty (i.e., writing your own code) as soon as possible! To make this a pleasant experience when #LearningRust, you should pick up the IDE that is best for you.

After some experimentation, I settled with RustRover by […]

0 1 1 0
Original post on infosec.exchange

If you aren’t familiar with how computers work under the hood, I recommend to start #LearningRust with Rust in Action, a perfect book for beginners.

It’s a hands-on guide that introduces the #Rust programming language by exploring systems programming concepts and techniques. It goes beyond […]

1 2 0 0
Cover of Programming Rust book

Cover of Programming Rust book

Let’s get our journey started with the best book for #LearningRust dedicated to beginners that I’ve found out there.

Programming Rust 2nd Edition is, in my opinion, even better than the official Rust Book. It covers all you need to know (and then some) to […]

[Original post on infosec.exchange]

3 2 0 0
Original post on infosec.exchange

2025 is just around the corner. If #LearningRust is among your New Year’s resolutions, I’ve got you.

Following my ongoing #Rust series on the @hnsec blog (https://security.humanativaspa.it/tag/rust/ and adding something along the way, in the next days I’ll recommend the learning resources […]

2 5 0 0

Hello everyone
I’m new here (thanks to tsoding). I'm diving deep into the world of RustLang and exploring everything about programming.
Looking forward to connecting with fellow devs, sharing knowledge, and learning!
#OpenSource #SoftwareEngineering #LearningRust #programming

7 0 1 0
Post image

Spring is unfolding in Seoul, and I’m soaking it all in from Yeouido Hangang Park, with the Han River in view. Currently diving into another book on the Rust language - eager to master it and integrate this powerful tool into future projects at Webmobix. #LearningRust #SeoulSpring #TechReads

0 0 0 0