On top of that they’re still paying using their time (and power).
On top of that they’re still paying using their time (and power).
On rolling release distros you should always read (or at least skim) over what’s being updated and if it may impact you.
That doesn’t sound like it’d help
It’s harder to do in some countries, in the Netherlands there’s basically nothing to adopt and there’s plenty free puppies to get that were just randomly born.
Sometimes you do, you don’t stop being a parent after your child turns 18. You can still try and help them especially if you think something this simple has been done wrong. Shaming your child online because of how they load the dishwasher is just stupid.
Then you’re probably teaching wrong.
three paragraphs and yet you didn’t say anything lol
It’s not one or the other, you get both words and actions.
There is only one shampoo in the US that I have found that doesn’t make my hair insanely oily and split. The shampoo “etc” stuff is insanely wrong.
Not 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.
Exactly! The other wrapper enum I named (Option) is the same kind of concept but with Some(value)
and None
.
Here’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.
It’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.
You don’t with Rust either.
That’s where the keyword imagine comes in.
deleted by creator
This is genuinely my worst fear and I hate this statement.
The answer to your “argument” is by the definition of identity it definitely could be, but this doesn’t matter much does it? The reason I called you unreasonable is because you seem like you’ve very clearly made up your mind and as such there’s no point talking to you especially with your seemingly bad intentions.
life is not this complicated dude, you’re unreasonable.
You can’t tell me what to do!