Your browser has basic features? I’m impressed.
- 0 Posts
- 32 Comments
One of the absolute worst choices in the Chromium browser world.
kattenluik@feddit.nlto Firefox@lemmy.ml•Finally back down to 14 tabs, still too embarrassed to show anyone1·1 year agoAre you sure they’re not just under inactive tabs?
On rolling release distros you should always read (or at least skim) over what’s being updated and if it may impact you.
kattenluik@feddit.nlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish52·2 years agoNot to mention a lot of massive companies also use it at every part of the stack, Rust is good at it all and it is beautifully and perfectly suited for tasks like these.
kattenluik@feddit.nlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish1·2 years agoExactly! The other wrapper enum I named (Option) is the same kind of concept but with
Some(value)
andNone
.
kattenluik@feddit.nlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish1·2 years agoHere’s some examples written on my phone:
match result { Ok(bool_name) => whatever, Err(error_type) => whatever, } if let Ok(bool_name) = result { whatever } if result.is_ok() { whatever } let whatever = result.unwrap_or_default(); let whatever = result?;
And there’s many other awesome ways to use a Result including turning it into an Option or unwrapping it unsafely. I recommend you just search “Rust book” on your search engine and browse it. Here’s the docs to the Result enum.
kattenluik@feddit.nlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish4·2 years agoIt’s a great and probably the best error system I’ve seen, instead of just throwing errors and having bulky try catch statements and such there’s just a result type.
Say you have a function that returns a boolean in which something could error, the function would return a Result<bool, Error> and that’s it. Calling the function you can choose to do anything you want with that possible Error, including ignoring it or logging or anything you could want.
It’s extremely simple.
kattenluik@feddit.nlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish5·2 years agoYou don’t with Rust either.
kattenluik@feddit.nlto Linux@lemmy.ml•Steam not launching games - no idea what to do [Solved]11·2 years agoDefinitely use a generic distro like Mint next time!
kattenluik@feddit.nlto Linux@lemmy.ml•Steam not launching games - no idea what to do [Solved]1·2 years agoThat really sucks lol, I was hoping you’d be on Mint or something. Did you install using Ubuntu’s app store thing that uses the awful snaps?
I’m guessing the normal Steam package installs the drivers for you seeing as I can’t find a guide that shows you how to install them on the same page as installing Steam.
kattenluik@feddit.nlto Linux@lemmy.ml•Steam not launching games - no idea what to do [Solved]1·2 years agoI don’t know what distro you’re using but you should just search the package name plus your distro name on the web to see what’s actually up.
I know that it’s called nvidia-driver-libs-i386 on Debian.
kattenluik@feddit.nlto Linux@lemmy.ml•Steam not launching games - no idea what to do [Solved]1·2 years agoIt quite literally just tells you to install those graphics drivers, and you should.
Did a quick search and ksnip seems to be the only fully featured option. Watershot seems nice.
But also looking into it, Flameshot seems to have full support for Wayland so I’m not sure why you’re saying it doesn’t?
kattenluik@feddit.nlto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Where to find flac and other lossless file typesEnglish1·2 years agoRED isn’t worth it compared to the other one since everything will trickle down to OPH anyways, RED has a very mean test and will hate you for searching anything at all.
kattenluik@feddit.nlto Linux@lemmy.ml•What distros have you tried and thought, "Nope, this one's not for me"?5·2 years agoFor the record, Arch breaking at all is probably entirely on you.
kattenluik@feddit.nlto Linux@lemmy.ml•What distros have you tried and thought, "Nope, this one's not for me"?14·2 years agoThey didn’t do any of those things and apt upgrade does not lag on any system I know of.
Raspberry pi’s are never worth it compared to most other things.
kattenluik@feddit.nlto Privacy@lemmy.ml•What is a privacy friendly application that you'd love to have, but no one has developed yet?3·2 years agoThey answered your question in their comment already?
You can’t tell me what to do!