Sunday, SUNDAY, SOMEDAY! Happy Laybor Daybor weekend, folks! Let's code some #Elixir and #Rustlang together today in a double-length stream https://twitch.tv/seanicuscode
Starts at 3:30PM CDT (https://everytimezone.com/s/b1042d0b) and will feature a very special guest, the inimitable @quinn!
#elixir #rustlang #myelixirstatus #webeamtogether #rustaceans
To be clear I mean this in the literal sense (its docs include contemporary slang and thus are still receiving updates) and not, like, sarcasm.
(Also uh, what hashtag do other #Rustaceans use anyways, #Rust obviously has some collision properties, but not sure I see a lot of #Rustlang either? or is that just fediverse being annoying ๐)
I have a question for any #Rustaceans - I currently have a utility that uses the #Go standard library "text/template" package. I am rewriting the utility in Rust. What library would provide similar functionality? I do not need much in the way of features. I will be taking user input and outputting files based on the command ran/the data provided. I'm looking at the #Handlebars port but I do not think I am understanding it entirely.
Hey web #rustaceans what frontend framework do you use? If any.
Boost for reach = sweet.
Alright #Rustaceans (#Rustacean #Rust),
`impl From<Another> for One` belongs in:
@EndlessMason This is something the #Rustaceans crow about sometimes in their quest to get everybody to port to their language: https://aws.amazon.com/blogs/opensource/sustainability-with-rust/
@philip @randomgeek @codinghorror Taking a broader view, I think #JavaScript, #PHP, and other still-developing multi-paradigm languages are all carcinizing at different rates. We just donโt know what the ideal converged evolution looks like yet.
(The fact that one recent language has an unofficial crab mascot is no indication thatโs the one, though. Sorry, #Rustaceans.)
But I don't hear similar things about JS, Java, or C++, even during the apogee of popularity for each of those languages.
It's like most people who really like their languages are still kinda measured in their praise, but #rustaceans are just nuts about #rust.
Of course, that could just mean that #rust really is that good, or maybe simply that it resolves a lot of pain points that current devs are feeling.
Hello #Rustaceans! I've been working on a simple encryption app written in Rust, having both GUI and CLI, and I'm looking for feedback. If you're interested in checking it out and giving suggestions for improvements, take a look at my code here: https://github.com/alexylon/Ferrocrypt. Any and all feedback is welcome! #Rust #RustLang #Encryption #OpenToSuggestions
#rustaceans #rust #rustlang #encryption #opentosuggestions
Tickets for our @rustnl event are going fast! Join us in Amsterdam on May 10 for great #rustlang talks and hang out with more than 200 fellow #rustaceans. https://2023.rustnl.org
When speaking out loud, do you pronounce it "mutt" or "mute"? What's the way that mist people say it?
RT @RustLondon_
We're back with our first meetup of the year! We're having a post-@RustNationUK Hack n Learn. This is a great opportunity to catch up with all the #rustaceans you met at the conference and learn together. ๐ฆ
https://www.meetup.com/rust-london-user-group/events/292729308/
#rustlang ๐ฆ
Hi #rustaceans! I need to profile #rustlang implementations and see which functions is taking the most of time, and see which type is the most allocated on Windows. Something like simply but for windows, any idea ?
All #rustnationuk talks are now available on our YouTube Channel.
What was your favourite talk? Reply below
https://youtube.com/watch?v=y4_a3ALa_20&list=PL1AoGvxomykTuOMzY5KrI4WiPCsIlYnAM
#RustNationUK #rustlang #rustaceans #rust #rustprogramming
God, I love #rust and #rustaceans. Got annoyed late last night with a lint (Clippy) error that proposed an incorrect fix. Filed an issue. Woke up, saw that someone had closed the issueโwith a fix committed to Clippy! (They even used my sample code in the test case for Clippy itself.)
If I made a backend in Rust, what should I make the frontend with? #rust #rustlang #rustaceans #react #yew
#rust #rustlang #rustaceans #react #yew
Hey y'all just out of curiosity, how many of you out there use rust at your current job? For bonus points, what do you use it for?
That's wonderful. It might be a good choice depending on your use case. But it is definitely a good challenge. It is a good language for any scalable and reliable apps.
Read this article:
โจ Building a Cloud Database from Scratch: Why We Moved from C++ to Rust
๐ "If you are considering whether to rewrite your production-level project in Rust, then please ask yourself the following questions"
The calm before the storm! Sad I couldnt make it tonight! Tomorrow we shall all gather as #Rustaceans! #RustNationUK #Rustlang
---
RT @RustLondon_
The @RustNationUK Pre-conference reception is in full swing. It's going to be a great week
#rustlang ๐ฆ
https://twitter.com/RustLondon_/status/1625930249866182678
#rustaceans #rustnationuk #rustlang
โจ Underscore expressions in Rust
Underscore `_`, a reserved identifier - Anything passed to into it will be ignored(But careful, it is not dropped)
๐ Underscore doesnt copy,move or borrow the value
๐ In the following code, we create String instance 'x'.We pass it to the underscore which does nothing than ignoring whatever we give. It does not move the ownership.
Ownership still remains with 'x' ๐ฑ
let x = String::new("Kernel");
let _ = x;
๐ Then what is the use?
๐ It will be useful in situation, when you are not interested in a certain value and ignore it.
For example:
fn main(){
let x = (21, "Parker");
let (age, _) = x; //Ignore the name, only want age from the tuple.
println!("age: {}", age);
}
Resources:
https://runrust.miraheze.org/wiki/Underscore
Underscore is not exactly "throw away" but rather it is exactly "don't bind to variable:
https://news.ycombinator.com/item?id=22449960
https://www.reddit.com/r/rust/comments/96zxge/underscore_does_not_bind_codechain/
#rustlang #rust #rustaceans #RustChallenge