Und wer gar nix wird, wird Betriebswirt.
Und wer gar nix wird, wird Betriebswirt.
Because I’m not used to entering dates in month/day/year order.
This is disgusting. Who enters dates in month/day/year order?
Why were you married to your mom?
Or every fabric woven out of that wool slowly turns the wearer mad or into a follower of the patreon.
^But mooom this sweater is sooooo fluffy^
Just choose shitting blood four times, easy
YOU’RE GETTING THERE. TALKING IS LIKE WHISPERING JUST LOUDER. KEEP PRACTICING
This project is a functioning satire of emerging AI engineering trends.
It is not a joke. It just isn't funny.
Sweet treats are made of this
Maybe it’s the CEO’s second place, so they can extract some more money from the studio?
'bout three fiddy
just try your best, try everything you can
You can get some chesscum by eating the white squares and pieces on the board. That’s why white is considered to have an edge, because white usually sacrifices a pawn, which can then be eaten by the player.
I was trying to get you to question the believe that lazyness is an evolutionary trait. Like the post you replied to said: Find the root cause of your lazyness.
Because it’s almost always not an evolutionary trait, it’s avoiding negative emotions. As you said: Doing dishes (bad) -> do nothing (good) But, with boredom, this would result in this: Doing dishes (bad) -> do nothing (good) -> boredom (bad)
Thus, we get negative emotions again. But we can avoid the final negative emotions by lying on the couch and spending energy looking at a screen. And our chain looks like this: Doing dishes (bad) -> looking at screen (good)
Because being bored is hard. If you want to see how hard it is, decide to just stare at a blank wall for the next 30min-1h instead and watch your brain fight this decision as hard as it can.
Thus saying “I’m lazy” and “being lazy is an evolutionary trait” results in “I can’t do anything about me being lazy”. And that is an easy way to avoid having to face and work through those negative emotions.
So then, which stimuli do you get and don’t get that make you lazy and, for example, stop you from doing the dishes?
If lazyness is an evolutionary trait to conserve energy, why do we get bored (pushing us to spend energy) once we do so?
Languages like Java or C++ have Exceptions, which are errors, that are not explicitly mentioned in the function signature. Meaning, you might need to handle an exception you didn’t even know existed. And if you don’t, your program will just crash when these exceptions occur.
In Rust all errors are explicitly mentioned and part of the return type. Because of this Rust has a lot of ways to quickly handle an error. One of those ways is “Trust me, bro” (or .unwrap()), which converts the combined error/success return type into just a success type, causing the program to crash if it actually was an error, restoring the more unsafe behavior of other languages.