You will find yourself being that next person when you haven’t touched the code for a week and come back to add something and are like wtf.
You will find yourself being that next person when you haven’t touched the code for a week and come back to add something and are like wtf.
German/american Toddler when they see a black sofa
But I’ve never heard the first name said so say it like couch-y
There’s a game called something like “oh no the farmer is gone” which is about programming a little robot to harvest the fields and the programming is built directly into the game
I always do, I love having ligatures
Having ≠ looks much nicer then !=
And that’s why we use temurin
If it’s late then it’s free and that sounds pretty late to me
Ebooks, audiobooks, music, could all work in that realm
I don’t think it even played in my country so…. How do they want me to buy it exactly…
It looks like Linux support is going to be actually actively looked at again soon with playnite 11, so there is still hope
https://github.com/JosefNemec/Playnite/issues/59#issuecomment-1083572073
I use playknight, though I still don’t buy from epic.
Play knight gives me an overview of all humble keys I haven’t used as well as gog, steam, epic, etc.
Just helps me make sure I don’t buy a game on sale that I own
Think California specifically made a law that whatever the sign up method is there must also exist that method for cancellation.
Laws against bs.
It’s more language dependent than ide. Go for instance makes unused variables a compiler error (I believe) which means ides mark it as red immediately.
Ts/js can have eslint rules against unused variables but they will still usually compile or just run directly anyway.
Java doesnt error but can be set to warn you on them.
Abap doesn’t care and won’t tell you.
Your mileage will vary.
Oh I don’t know that one, what’s it do?
Not everyone learns :x
Referencing is the term that is being conflated.
Enough people apparently find this funny here. Not everyone needs to find every bit of comedy funny.
I mean programmers is a pretty big audience. Sure this probably would pan at a comedy open mike night but it’s literally on programmer humor.
And using concept outside its normal concept or conflating two concepts is pretty standard humor.
The bug is in the library of a library that the library owns. They fixed it and published it in the library of the library but the library hasn’t been updated in 2 months.
From what I read of the portal64 project it did require owning the original (or having a copy of it) because it patches the assets from the base game.
RCS would be a good solution if the standards committee wasn’t so held back by not adding an official end to end encryption method. Probably telecoms not wanting to give up the data mining.
Await is usually there either because the performance doesn’t matter and the legibility is much higher with it, and/or because there are a series of asynchronous actions that depend on each other and await lets you write them as if they are sync because related to each other they are.