[-] noli@programming.dev 7 points 7 months ago

Also surely a lot of people would know tar -Create Ze Vucking File and/or tar -Xtract Ze Vucking File

[-] noli@programming.dev 6 points 7 months ago

Funny story actually. After year 1 I was in peak condition, year 2 was normal, year 3 I gained weight. Year 1 I worked slowest and year 3 fastest. I just became way more efficient :p

[-] noli@programming.dev 7 points 7 months ago

Running is not as extreme as you think, a lot of it is just carrying on the momentum of the truck after you jump off, other tham that it's mostly just brisk walking.

The heavy stuff depends, regulations typically impose a limit on weight but a lot of people don't follow it. You learn to use proper lifting form quite quickly though or you'll get a hernia

Src: did it for 3years as student job

[-] noli@programming.dev 7 points 10 months ago

Nope, IaaS. With a VPS you are in charge of everything except for the hardware. PaaS the only thing you're in charge of is your code.

[-] noli@programming.dev 6 points 11 months ago

"Your secret is safe with my indifference" - Taliesin Jaffe

[-] noli@programming.dev 6 points 1 year ago

Alternatively, get good, consistently win games against people who are worse, stop coping and you'll get to the rank you deserve.

There is no such thing as elo hell, if you're consistently outperforming your direct opponent you will win more games than you lose against people of your MMR and you will climb. "Elo hell" is just a coping mechanism for people who can't admit they're bad

[-] noli@programming.dev 5 points 1 year ago

Also being able to analyze any program and guarantee it will stop

[-] noli@programming.dev 6 points 1 year ago

I had to translate this to german to understand... and I'm not even german

[-] noli@programming.dev 7 points 1 year ago

JS was a mistake.

[-] noli@programming.dev 7 points 1 year ago

Actually I'm not so sure. That honestly sounds like it could lead to several significant issues, such a

[-] noli@programming.dev 5 points 1 year ago* (last edited 1 year ago)

I am dumb. The more things I need to think about when reading code that is not the logic of the code, the worse it is. Any time I have to spend thinking about the peculiarities of the way the language handles something is time wasted.

I'll give a very simple example, think like you're trying to find a bug. Assume we're in a dynamic language that allows implicit conversion like this. We can write our code very "cleanly" as follows:

if(!someVar) doSomething();

-> ok, now we gotta check where someVar's value is last set to know what type of data this is. Then I need to remember or look up how those specific types are coerced into a bool.

When trying the same code in a statically typed language that doesn't do implicit coercion that code will fail to run/compile so probably you'll have something like this:

if(someVar.length() == 0) doSomething();

-> this time I can just look at the type of someVar to see it's a string and it's clear what the condition actually means.

The second option is both easier to read and less bug prone even without the type system. It takes maybe 3 seconds longer to type, but if your productivity in coding is that limited by typing speed then I envy you

[-] noli@programming.dev 6 points 1 year ago

Depends on your eslint config, but yeah that's an option.

view more: ‹ prev next ›

noli

joined 1 year ago