this post was submitted on 28 Jan 2025
1674 points (99.6% liked)

Programmer Humor

20188 readers
462 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
[–] [email protected] 209 points 1 day ago (2 children)

honestly - while a Mac is certainly less painful to use than winshit, putting rubbish files recursively into each(!!) accessed folder, on all thumbdrives ever inserted, that's something Jobs deserves to burn in hell for.

[–] [email protected] 50 points 1 day ago* (last edited 1 day ago) (2 children)

You'd want that, but a lot of programs do that, both in Windows and Linux.

e.g. The .directory files with the [Desktop Entry] spec by freedesktop.org
Dolphin has the option to enable/disable the feature

[–] [email protected] 15 points 1 day ago (1 children)

today I learned - using Linux at home since 2005ish and I have never had an auto-file generated on any USB attached drives of mine...

[–] [email protected] 2 points 1 day ago

I have manually made .directory files (using a bash script) to set icons on folders.

It feels good when programs let you know what they intend on doing.

[–] [email protected] 45 points 1 day ago (1 children)

FWIW Dolphin only does it if the filesystem doesn't provide a way to add that metadata directly to the directory and you change the view configuration for that directory away from your standard configuration. Which is how the standard describes to do it. (Some file managers incorrectly add those .directory files to every directory you visit.)

A mac will add a .DS_Store file to any directory just by breathing on it.

[–] [email protected] 8 points 1 day ago

Well, those are different specifications. Apple(who wants everything for themselves) vs FDO(whose main goal seems to be interoperability)

[–] [email protected] 20 points 1 day ago (2 children)

I am not familiar with MacOS, but that seems like a nightmare. What is the purpose of these files?

[–] [email protected] 54 points 1 day ago (1 children)

the macos file browser, Finder, lets you set a background for a folder, move file icons around to arbitrary positions, other shenanigans. in order for this to work across systems on removable storage media and network mounts, they have this.

[–] [email protected] 2 points 19 hours ago (1 children)

Why not make the file when a change is made like with windows desktop.ini files?

[–] [email protected] 2 points 17 hours ago

I don't think the code is available for people to figure out whether there's a reason or if it's completely arbitrary.

[–] [email protected] 18 points 1 day ago (1 children)

Iirc they're indexes for the system wide search feature, Spotlight

[–] [email protected] 23 points 1 day ago (2 children)

Is there a valid reason not to store that [[anywhere else]], ideally in Spotlight's data?

[–] [email protected] 2 points 1 day ago

In Unixy environments like Mac and Linux the application can't always know what the mountpoint of a drive is so it's not always obvious which root folder to put those index/config files in if it's a portable drive or network drive. Some mountpoints are standard per each OS, but not everything sticks to the standard.

[–] [email protected] 9 points 1 day ago

Maybe. There are many ways to move files and directories around without using Finder, at which point all indexed data about those files and directories will be stale. Forcing something as core as mv to update Spotlight would be significantly worse, I think. By keeping the .DS_Store files co-located with the directory they index, moving a directory does not invalidate the index data (though moving a file without using Finder still does). Whether retaining indexing on directory moves is a compelling enough reason to force the files everywhere is probably dependent on whether that's a common enough pattern among workflows of users, and whether spotlight performance would suffer drastically if it were reliant on a central store not resilient against such moves.

So, it's probably a shaky reason at best.