ThirdConsul

u/ThirdConsul@lemmy.zip
1 posts · 421 comments

Recent posts

Recent comments

Same.

Cachy is my intro to linux distro world and so far I love it. I spent an hour to set it up, then a day to host all that I wantrd, then maybe... 30 minutes maintenance since April?

My only gripe is that I don't know the Linux too well, so I sometimes struggle with it - e. g. I selfhost on my minipc a dedicated Satisfactory server ans I had to turn off wifi power protection mode (or smthing like that) to have stable ping.

I am pretty sure that this is something that Linux could've detected for me and asked me "hi, I've noticed you have regular long term many sources incoming/outgoing sessions, with your wifi power settings the connection quality might be suffering".

on It’s beautiful · c/GetBetter · 2 pts · 2d

Then the family story goes at the bottom, with perforations so you can tear it off and toss it out

Stop you gorgeous creature, I don't want to fall in love with you, I don't even know you.

conceal

I think you might've made a typo here, did you mean concede?

Yes, you give up if you want to talk to them. What else csn you do. Ten year campaign to switch everyone?

You think building an EV is straightforward?

While I don't necessarily agree or disagree on the broadsr point, building EVs is straigthforward, albeit a shitton of EV parts are still manually crafted before they arrive in the "dark factories" for the final assembly (or after, dealers choice).

Last time I checked a Xiaomi dark factory was utlising like a 1k sub components production lines from all over China delivering shit.

Pure function = no side effects, no internal state. If you run a pure function twice with the same input, it will give the same output.

Example of pure function

(a,b) => a+b

Example of inpure function

let c;

(a, b) => {
   c++;
   return a+b;
}