• 0 posts
  • 25 comments
Joined 2 years ago
Cake day: July 22nd, 2024
  • I feel like many programmers (or their management) have grown ignorant to resource limitations over the past decade or so.

    Obviously there is good examples like many linux distros running well on 4GB RAM and the like, but when it comes to windows, websites and proprietary programs, they gobble up insane amounts of RAM to provide almost the same functionality as in 2010.

  • I know it is a bit of a silly answer but here we go:

    My brother had installed a game-boy emulator on the family PC when my parents had prohibited gameboys from the house. My older siblings bought some though and hid them, but i was too young for that. (They also didn’t tell me).

    Anyways, so at the time Pokémon Ruby and Sapphire was the hot shit. I played Ruby on the emulator and i loved it. There was just one problem. The “nebula” animation that is transparent in the gameboy version was solid in the emulator. When i entered a cave i had to find a way to pass it blindly. This was before we had proper internet access at home, so i couldn’t look up the cave layout.

    I had to gave up after the second gym or so. When i got older and my grandma bought me a gameboy, i played Ruby like crazy as i finally could progress.

  • My uncle. Very smart very neuronal. He knows the entire Internet, can you imagine? the entire internet. Like the mails of Crooked Hillary Clinton, that crook. You know what stands in that Mails? my uncle knows. He makes the best code. The most beautiful code. No one has ever seen code like it, but for him, he’s a genius, like i am, i have inherited all his genius genes. It is very easy. He makes the best code. Sometimes he calls me and asks me: you are even smarter than i am. Can you look at my code?

  • I had a discussion the other day, where people were not happy with lemmy instances not handing data over to google. They argument was that we should do everything so lemmy can be found more easily, as the only goal is to “win” against reddit.

    Unfortunately in that discussion people were not interested in using Lemmy and the Fediverse at large to create a positive vision of the internet. They just wanted to stick it to one corporation they don’t like. I don’t like reddit either, but i think we should thrive for a Fediverse that upholds decentralization, open source and non commercialization of social interactions. All the large Internet corporations want to create the opposite and have been quite successful so far.

  • Naah. There is plenty of Gen X, Y, Z who know and plenty of Millenials who dont.

    Its just if you wanted to “do stuff with computers” you had to develop some understanding back then.

    Today you can “do stuff” like gaming much easier out of the box. So not everyone who “does stuff” knows his way around.

    In the office most colleagues of all generations just know how to do their specific things, mostly in MS Office products.

  • I think we are looking at this from different angles. I think you are looking at the programmer perspective, and i am looking at the end-user perspective, who uses a GUI file explorer.

    In the case of a GUI file explorer the search handles the case insensitivity. So for me using Dolphin in KDE if i have two files:

    TEST.txt and test.txt, if i type “tes” on my keyboard, i will be given the uppercase one first. if i type “te” again, it jumps to the next fitting entry, which is test.txt. If i put “test” or “TEST” in the search bar, i will get back both results.

    I see why a strictly case insensitive file system makes it easier for programmers down the line to not have to handle the different cases explicitly in their program anymore.

  • Mostly Windows, and construction industry. So projects generate anywhere from a few hundred to up to a hundred thousand files.

    Everyone has their own filesystem, and then you often have one formal and multiple informal exchange platforms. You still have people throwing around stuff in E-Mails too.

    It is a mess. But in this mess i didn’t come acrosse people complaining they couldnt find a file because of the letters case yet.

    I see that it could be different for programmers, but i dont see that apples solution of treating upper and lowercase as identical name is the solution there, rather than working with explicit file naming conventions in the program.