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.
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
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…
Think California specifically made a law that whatever the sign up method is there must also exist that method for cancellation.
Laws against bs.
Lemon bars 🤤
Graphic audio sells cds as well as direct downloads of mp3s or m4bs chapterized, or even flacc for a surcharge.
They do dramatized audiobook recordings with full casts, music, sound effects, etc.
They are very good
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.
1blocker has so far been pretty good at keeping up with YouTube’s changes on iOS on the iPhone on safari. Safari on iOS has allowed full extensions for several years now.
Oh I don’t know that one, what’s it do?
Not everyone learns :x
I remember this being discussed when Apple first announced it because developers have to hand off graphics to the os so the os can do the divested rendering specifically because Apple didn’t want individual apps to be able to gather data about where users are looking.
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.
Good notes has an option to revert to v5 and I haven’t had any issues so far staying on v5.
I thought they also had a one time purchase option for v6 but it’s been awhile since I looked.
They did the switch better then notability tried to do. Notability tried to switch otp users to their new plane after a grace period of a year. They caved to backlash and added a legacy plan for older purchasers.
React is miles ahead of a bunch of much older frameworks businesses still use. I have projects being built new right now that use ui5 from sap. We have projects with spring boot with the templates in jsp.
I would much prefer a react project to ui5 or jsp. And businesses with long running projects tend not to like using frameworks that don’t have at least ten years of usage and thus some proven surviveability unfortunately.
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.