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.
I always do, I love having ligatures
Having ≠ looks much nicer then !=
“the 15 hours customers get free with premium equates to two audiobooks” Is the average audiobook really that short!
For eragon it would takes months to finish.
The hobbit is 10 hours.
Think most of the books I’ve listened to have been over that length, but I don’t use Spotify. Self hosting for the win. No time limits in prologue
For me it’s much easier to lock the phone by holding any volume and power then to remember the sequence needed to force power of the phone.
Clicking 5 times on power is probably faster, but I forgot that existed and if I’m trying to do something quickly essentially squeezing my phone is easier than trying to tap the correct side 5 times quickly under pressure. And much easier to me then trying to remember the force power off sequence and performing it without looking under stress.
Especially on the iPhone 15 pros there is now another button so getting the up down up power means finding the correct up button.
I’ve looked up that sequence numerous times when I’ve needed to force reboot and I still forget it half the time.
Can they force you to look at your phone though? Attention aware Face ID requires eyes ball on screen.
And as others have stated, holding volume up and power u til the iPhone vibrates locks the phone requiring the passcode.
Sure but holding volume up and power until the phone vibrates is a much faster and easier method and there is little worry you might accidentally call 911. It’s also easier to do without looking.
It has a countdown before calling with vibrations on every number.
🙄 sideloading alt store at least does not void your warranty.
Software in general won’t void your hardware warranty. That’s ridiculous.
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.
The automatic turning on is definitely a setting you would need to have turned on.
Do you have multiple Apple devices? You might have set them to mirror each other so they all share the same focus mode.
You might have created a shortcut that is attached to an automation to turn it on based on some trigger, (time, place) etc.
Or in the focus mode settings you can click on do not disturb and it should list how it is set up.
On the do not disturb settings page under focus, near the bottom is “on a schedule”.
You can have a time schedule, as well as a smart activation, where it tries to learn when to do it automatically.
For instance gaming focus has learned to turn on when o play a game for like 5 minutes.
If you turn those off and ensure you don’t have an automation in the shortcuts app that turns it on, you should be at only manual control.
I had this as well, it’s because the pinned version will still be pointing to the old version even after you agreed to upgrade.
You have to unpin the old version, and pin the new version.
Reallllly stupid upgrade from them.
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.
Search, I’m a programmer and frequently need clips of text I’ve used before, especially with some sap stuff I do. I don’t need to edit that much, but I do pin, tag, and label snippets a lot.
Sap backend data has a lot of “keys” related to my test user that I need repeatedly, the key for the user, the key for their position, the department, etc. and having them all in my clipboard is very practically.
For keeping copy paste stuff, I use a clipboard manager that lets me edit and pin and search the clip board history
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.
Anyone remember when Evernote added a limit to how many devices can be logged into your account on the free plan? I remember. I stopped using them immediately after that. Couldn’t be logged in on my computer, iPhone, and iPad.
Meanwhile Apple notes got much better so I just use that.
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.