this post was submitted on 01 Feb 2025
1242 points (99.1% liked)

Programmer Humor

20251 readers
1208 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] atx_aquarian@lemmy.world 69 points 1 day ago* (last edited 1 day ago) (6 children)

Fun fact, though: Linux is the only case-sensitive one.

Edit: I feel silly for forgetting that it's all about the choice of FS. If anyone needs anything from me, I'll be in the corner, coloring.

[–] Localhorst86@feddit.org 54 points 1 day ago (3 children)

From a technical standpoint, the windows NTFS filesystem is designed inherently case sensitive, just windows doesn't allow creating case sensitive files.

Connecting an NTFS drive to linux, you can create two separate files readme.txt and Readme.txt.

Using windows, you can see both files in the filesystem, but chances are most (if not all) software will struggle accessing both files, opening readme.txt might instead open Readme.txt or vice versa.

[–] riodoro1@lemmy.world 25 points 1 day ago (1 children)

Such a microsoft thing to do.

[–] The_Decryptor@aussie.zone 11 points 21 hours ago* (last edited 20 hours ago)

NTFS was designed back in the mid 90s, when the plan was to have the single NT kernel with different subsystems on top of it, some of those layers (i.e. POSIX) needed case sensitivity while others (Win32 and OS/2) didn't.

It only looks odd because the sole remaining subsystem in use (Win32) barely makes use of any of the kernel features, like they're only just now enabling long file paths.

[–] JackbyDev@programming.dev 3 points 17 hours ago

You're correct. I once was trying to rename a file in Windows in a git repository that had a wrong capitalization. It was tricky.

[–] pixelscript@lemm.ee 13 points 1 day ago

For a few years now, Windows has had the capability of marking certain directories as case-sensitive. So you can have a mixed-case-sensitivity filesystem experience now. Yeah. :/

[–] frezik@midwest.social 12 points 23 hours ago

I once ran into a bug in an Arduino program where it wouldn't compile. The author blamed my "broken environment". Turned out, he had included "arduino.h" instead of the correct "Arduino.h".

[–] qjkxbmwvz@startrek.website 18 points 1 day ago* (last edited 1 day ago) (1 children)

Although you can use case insensitive filesystems with Linux, and case sensitive filesystems with macOS. I believe the case sensitivity is a function of the specific filesystem


but yeah, practically, the root for Linux is always case sensitive, and APFS ~~ain't~~ is only if you ask it to be ( https://support.apple.com/lv-lv/guide/disk-utility/dsku19ed921c/mac ).

[–] paperplane@lemmy.world 13 points 1 day ago (1 children)

When case insensitivity is the default I always wonder how many apps unknowingly rely on that due to typos somewhere. I encountered this once while porting a Windows/macOS app to Linux that someone imported a module with the wrong case and nobody noticed

VS Codium did that at some point, it probably still does but I haven't checked

[–] ikidd@lemmy.world 12 points 1 day ago

As is right and proper.

[–] MooseTheDog@lemmy.world 6 points 1 day ago (4 children)

Least favorite part of linux honestly

[–] asdfasdfasdf@lemmy.world 13 points 22 hours ago (3 children)

Hard disagree. I don't understand why anyone would want case insensitive.

Am I the only one who doesn't go around mindlessly capitalizing letters? Do people find it too difficult to capitalize things?

Do you want case insensitive passwords too?

If I type X I mean X and only X. Uppercase letters are different letters, just like X and Y are different letters.

[–] CallMeButtLove@lemmy.world 1 points 3 hours ago

It's less about me randomly capitalizing letters and more about me not remembering whether or not what I'm looking for had capitals or not.

[–] Appoxo@lemmy.dbzer0.com 2 points 18 hours ago

Passwords ≠ Filesystems

[–] MooseTheDog@lemmy.world -2 points 13 hours ago
[–] SaharaMaleikuhm@feddit.org 25 points 1 day ago (2 children)

Case-insensitive filesystems are for maniacs. They are only causing trouble. Ever had two folders with the same name but different capitalization in windows? You see both, but whichever you click it will always open the same one, while the other can't be accessed. Psychopath behavior.

[–] MooseTheDog@lemmy.world 2 points 13 hours ago (2 children)

In my decades of IT work I have literally never seen this to be an issue. To myself or others.

[–] PokerChips@programming.dev 1 points 6 hours ago (1 children)

Your username is 3 words. At a quick glance maybe they are 3 directories. I guess I have to use another command to find out.

[–] MooseTheDog@lemmy.world 1 points 4 hours ago
[–] ahornsirup@feddit.org 3 points 1 day ago

That's because NTFS isn't case-insensitive. If it was there'd be no two folders. Windows is a case-insensitive operating system running on a case-sensitive file system. It's pretty clear Microsoft wanted case sensitivity and then realised how much legacy software that'd break.

[–] Trainguyrom@reddthat.com 12 points 1 day ago (1 children)

Makes changing the case of a file/folder a lot easier though. Windows you have to rename it to something else then rename it again just to change case but Linux you can just...rename it. It's a small thing but it's something

[–] stebo02@lemmy.dbzer0.com 1 points 1 day ago

is this bug really impossible to fix just because the file system is case insensitive?

[–] qjkxbmwvz@startrek.website 3 points 1 day ago

You can turn it off, at least for ext4: https://lwn.net/Articles/784041/

On MacOS you get a choice when you format the drive.