this post was submitted on 01 Feb 2025
1138 points (99.3% liked)

Programmer Humor

20251 readers
1718 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 64 points 16 hours ago* (last edited 14 hours 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.

[–] frezik@midwest.social 11 points 9 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".

[–] Localhorst86@feddit.org 50 points 12 hours 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.

[–] JackbyDev@programming.dev 1 points 3 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.

[–] riodoro1@lemmy.world 24 points 11 hours ago (1 children)

Such a microsoft thing to do.

[–] The_Decryptor@aussie.zone 8 points 7 hours ago* (last edited 6 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.

[–] pixelscript@lemm.ee 12 points 11 hours 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. :/

[–] qjkxbmwvz@startrek.website 17 points 15 hours ago* (last edited 15 hours 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 14 hours 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

[–] Sonotsugipaa@lemmy.dbzer0.com 2 points 12 hours ago

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

[–] ikidd@lemmy.world 12 points 15 hours ago

As is right and proper.

[–] MooseTheDog@lemmy.world 5 points 14 hours ago (4 children)

Least favorite part of linux honestly

[–] asdfasdfasdf@lemmy.world 9 points 8 hours ago (1 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.

[–] Appoxo@lemmy.dbzer0.com 0 points 4 hours ago

Passwords ≠ Filesystems

[–] SaharaMaleikuhm@feddit.org 22 points 12 hours ago (1 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.

[–] ahornsirup@feddit.org 2 points 10 hours 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 13 hours 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 10 hours ago

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

[–] qjkxbmwvz@startrek.website 3 points 13 hours ago

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

[–] SmoothLiquidation@lemmy.world 5 points 15 hours ago

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