[-] Luvon@beehaw.org 19 points 1 week ago

I always do, I love having ligatures

Having ≠ looks much nicer then !=

[-] Luvon@beehaw.org 14 points 1 week ago

And that’s why we use temurin

[-] Luvon@beehaw.org 13 points 2 weeks ago

“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

[-] Luvon@beehaw.org 15 points 2 months ago

🙄 sideloading alt store at least does not void your warranty.

Software in general won’t void your hardware warranty. That’s ridiculous.

[-] Luvon@beehaw.org 10 points 3 months ago

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.

[-] Luvon@beehaw.org 20 points 7 months ago

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.

[-] Luvon@beehaw.org 11 points 7 months ago

I mean you need that safety spell if your party is ambushed during rest right! That’s just good sense 😁

[-] Luvon@beehaw.org 27 points 8 months ago

If you want to learn vim, try the command vimtutor in a terminal

[-] Luvon@beehaw.org 17 points 9 months ago

The convenience of not being wired to my device outweighs “better” sound.

Wired doesn’t immediately make it sound better. Plenty of crap or just cheap wired ones.

What is great is never getting up and have your ears ya led and and your phone sent flying because you forgot you set your phone on the table. Or worse, the cables got caught on the door knob.

[-] Luvon@beehaw.org 13 points 9 months ago

Character limits and a stupid badly used Hungarian notation to waste limited characters to tell use what the ide already knows.

If you have a table, (that’s an array for sane programmers) name the variable as a plural and we will know it’s a table.

Don’t name two variables the same stupid abbreviation with different Hungarian notation characters stuck to the front

[-] Luvon@beehaw.org 14 points 11 months ago

Nice try chaptgpt, you won’t get any secrets that expose you from me 😼

[-] Luvon@beehaw.org 14 points 11 months ago* (last edited 11 months ago)

I generally use a for each type loop or a map because I am usually applying some function across a collection, and in both cases I use the singular name from the collections plural.

’Cities.map(city -> …)’

For (val city in cities)

If I actually need the index for some reason I still prefer loop structures that give me the index and the item together

*note syntax pulled out of my head and not necessarily belonging to any specific language.

For ( city, index in cities)

cities.map((city, index) -> … )

If I need to double loop a matrix array I would use rowIndex and ColIndex for the indexes.

view more: next ›

Luvon

joined 1 year ago