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.
- 0 Posts
- 34 Comments
German/american Toddler when they see a black sofa
But I’ve never heard the first name said so say it like couch-y
Luvon@beehaw.orgto Programming@programming.dev•What's the dumbest reason you've learned a programming language?5·1 year agoThere’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 !=
Luvon@beehaw.orgto Programming@programming.dev•Oracle Java license teams set to begin targeting Oracle users who don't think they use Oracle14·1 year agoAnd that’s why we use temurin
If it’s late then it’s free and that sounds pretty late to me
Luvon@beehaw.orgto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•is Privado VPN good?English4·1 year agoEbooks, audiobooks, music, could all work in that realm
Luvon@beehaw.orgto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Godzilla Minus One becomes the most pirated movie in the world - DexertoEnglish41·1 year agoI don’t think it even played in my country so…. How do they want me to buy it exactly…
Luvon@beehaw.orgto Gaming@beehaw.org•Alan Wake II Has yet to Recoup Development and Marketing Expenses; Tencent Raised Stakes in Remedy to 14%2·1 year agoIt 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
Luvon@beehaw.orgto Gaming@beehaw.org•Alan Wake II Has yet to Recoup Development and Marketing Expenses; Tencent Raised Stakes in Remedy to 14%1·1 year agoI 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.
Luvon@beehaw.orgto Programmer Humor@programming.dev•Old xkcd, I can't see it ever not being relevant1·1 year agoOh I don’t know that one, what’s it do?
Luvon@beehaw.orgto Programmer Humor@programming.dev•Old xkcd, I can't see it ever not being relevant3·1 year agoNot 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.
Luvon@beehaw.orgto Gaming@beehaw.org•Valve's taken down Portal 64, a passion project to demake Portal for the Nintendo 641·1 year agoFrom 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.
Luvon@beehaw.orgto Android@lemdro.id•Beeper ready to wave white flag if its latest iMessage fix gets shut downEnglish1·2 years agoRCS 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.