Each time the Arch update breaks, I'll eat a snack.
💻 Unix - Infosec - OSS enthusiast 🚲 2 wheels and “640cc should be enough for everyone” ☔ Something wrong with me ? feel offended ? that was probably not on purpose: Please turn Internet off then on again… Plant trees 🌳 ecosia.co/app?referrer=friends-6y7plf
💻 Unix - Infosec - OSS enthusiast 🚲 2 wheels and “640cc should be enough for everyone” ☔ Something wrong with me ? feel offended ? that was probably not on purpose: Please turn Internet off then on again… Plant trees 🌳 ecosia.co/app?referrer=friends-6y7plf
When you love systemd so much every aspect of your life has a unit file
lemmy.world is gone. who wants to sword fight?
Hiring Now Data Entry Assistant
The average life of a keyboard
Possible source (also extended video): www.youtube.com/watch?v=MlUlAPBBP2E
Backend developer & Software Engineer Also likes anime, sci-fi, beer and mexican food, and not always talk about himself using the third person form.
Backend developer & Software Engineer Also likes anime, sci-fi, beer and mexican food, and not always talk about himself using the third person form.
Peak of technology which was going to replace all of us
Microsoft: Fully Automating Supply Chain Attacks since 2026!
x.com/agilejebrim/status/2047567975515902091
(Not me, just providing the source)
Look at the way he writes for loops too smh
In the light of recent news regarding DLSS5...
WaaS (2026-04-22)
No More Spreadsheet APIs
I was told this place was about programming humors
tech never works for long
When your partner asks where you learned that
might be a form of Jevons Paradox
Summoners
rust blasphemy
made in gimp, with <3
Context for actual rust programmersI was having massive beef with the rust compiler yesterday, every cargo check takes 20 seconds.
And then look at the three functions below, only one of them are Send, if you know why, please let me know.
(Note: value that is not Send cannot be held across an await point, and Box is not Send)
rs async fn one() { let res: Result<(), Box> = do_stuff(); if let Err(err) = res { let content = err.to_string(); let _ = do_stuff(content).await; } } async fn two() { let res: Result<(), Box> = do_stuff(); let content = if let Err(err) = res { Some(err.to_string()) } else { None }; drop(res); if let Some(content) = content { let _ = do_stuff(content).await; } } async fn three() { let content = { let res: Result<(), Box> = do_stuff(); if let Err(err) = res { Some(err.to_string()) } else { None } }; if let Some(content) = content { let _ = do_stuff(content).await; } }