For me it’s 7am-3:30pm and I do all my work between 7am and the daily at 9:30am. After that it’s just meetings and bullshitting on the internet. Everyone is satisfied with my work.
- 0 Posts
- 20 Comments
Pro tip: You don’t need the allowance of a stupid old man to do be baptized. It also doesn’t mean anything, so you can just not do it and care even less about the opinion of the stupid old man.
Ah, yes. Another weed meme of a person who clearly never consumed any weed.
Konlanx@feddit.deto
Memes@lemmy.ml•I just assumed he was like the character "The Knights Watch" from GoT
2·3 years agoNot the original commenter, but I think it’s a good ending fitting the show. It’s a drama and it ends in drama.
Konlanx@feddit.deto
196@lemmy.blahaj.zone•Fun fact: Lemmy supports up to 99 nested comments
77·3 years agoWell.

I wasn’t aware of what you are looking for specifically in a game.
I switched from Tarkov to Hunt a while ago and never looked back, so I like to recommend it to others.
Do you have a moment to talk about our lord and savior Hunt: Showdown?
The best extraction shooter out there.
It has zombies. It has wild west. It is balanced. It takes two shots to kill and two minutes to reload. Come to the Bayou!
It shouldn’t. Boring troll attempt.
When using current reddit UI, you need to log in to “verify you are over 18”.
When using old.reddit.com you can proceed with a simple click on “Confirm over 18”.
I’m a straight cis guy and I like the memes posted in this community. They are 99% wholesome and just asking for acceptance in meme format, which is nice.
Seems like feddit.de shows a lot of Blahaj stuff and that’s good.
Konlanx@feddit.deto
Programmer Humor@programming.dev•Which side are you? Javascript or Typescript
18·3 years ago(30,27): error TS7006: Parameter 'fuck' implicitly has an 'any' type.
Read a book! Best way to get the brain to calm down.
This is due to the default sorter in JavaScript sorting by the string value. The reason for that is that this won’t create errors at runtime. Since JavaScript does not have types, this is the safest way of sorting.
This works:
const unsorted = [1, 100000, 21, 30, 4] const sorted = unsorted.sort((a, b) => a - b)
Konlanx@feddit.deto
Memes@lemmy.ml•Ah yes, it's in the 30s. That sounds.... lovely? too warm?
442·3 years agoSame the other way around. I (european) regularly read about “100 degrees weather” somewhere in the US and my first thought always is “damn, that’s as hot as boiling water”.
Konlanx@feddit.deto
World News@lemmy.world•Nurse found guilty of murdering seven newborn babies at UK hospitalEnglish
1·3 years agodeleted by creator
It’s not. The default sorter does that, because that way it can sort pretty much anything without breaking at runtime. You can overwrite it easily, though. For the example above you could simply do it like this:
[3, 1, 10].sort((a, b) => a - b)Returns:
[]
JS !== Java
Try Javascript some day!
- We have truthy and falsy! Empty string or null? Yeah, that’s false!
- Of course we can parse a string to number, but if it’s not a number it’s NaN!
- null >= 0 is true!
- Assign a variable with =, test type equality with == and test actual equality with ===. You will NEVER use the wrong amount of = anywhere, trust me!
- Our default sort converts everything to string, then sorts by UTF-16 code. So yes, [1, 10, 3] is sorted and you are going to live with it.
- True + true = 2. You know I’m right.
Try Javascript today!
Konlanx@feddit.deto
World News@lemmy.world•Cocaine seized by customs in record 8-ton haulEnglish
292·3 years agoYes, 4 tons exactly.
That was very interesting. Thanks!