this post was submitted on 02 Oct 2023
1377 points (96.7% liked)

Programmer Humor

19315 readers
69 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 1 year ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] aleq 122 points 1 year ago (5 children)

Reasonable and sane behavior of cd. Just get into the habit of always using lower case names for files and directories, that's how our forefathers did it.

[–] [email protected] 90 points 1 year ago (1 children)

Yes, but this is the default on many distros, so for once the end user is not to blame

[–] MooseBoys 45 points 1 year ago (5 children)

Even worse, many components will ignore the XDG_DOWNLOAD_DIR var so even if you manually change it to $HOME/downloads (lower-case) it will often break things.

[–] Synthead 35 points 1 year ago (1 children)

Keep filling those bugs and stop complaining on random forums, kids

load more comments (1 replies)
[–] [email protected] 28 points 1 year ago (1 children)

Something something symlink Downloads to downloads

load more comments (1 replies)
load more comments (2 replies)
load more comments (4 replies)
[–] Sh1nyM3t4l4ss 91 points 1 year ago (12 children)

Use a shell with decent auto-completion. I have not been irritated by this in years.

[–] nogooduser 27 points 1 year ago (6 children)

Won’t autocomplete fail if you do “cd d” and then try the autocomplete?

Or is that what you mean by “decent” auto-completion?

[–] [email protected] 29 points 1 year ago

No, it will probably go to "Documents", and if you hit tab again it should go to "Downloads". (Assuming you have the normal default folders)

[–] [email protected] 25 points 1 year ago

bash's autocomplete fails (at least with default settings), but e.g. zsh can figure out what you mean

load more comments (4 replies)
[–] [email protected] 11 points 1 year ago (1 children)
load more comments (1 replies)
load more comments (10 replies)
[–] [email protected] 83 points 1 year ago (7 children)

You've come from Windows and have brought dangerous expectations.

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

MacOS has a case insensitive file system. It causes me untold grief

[–] sysadmin420 29 points 1 year ago* (last edited 1 year ago) (1 children)

Is a 40 year old it guy who love linux, wat

Macos is case insensitive?!

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

OSX offers both case sensitive and case insensitive filesystems

load more comments (11 replies)
load more comments (6 replies)
[–] Asswaterpirate 74 points 1 year ago (1 children)
load more comments (1 replies)
[–] HatFunction 59 points 1 year ago* (last edited 1 year ago) (2 children)

This is completely unrelated to the meme at hand, but the title just reminded me that for a while, Merriam-Webster mistakenly included the word "Dord" to mean density - because an editor misread the entry for "D or d" as an abbreviation of density.

Wikipedia

load more comments (2 replies)
[–] [email protected] 59 points 1 year ago (1 children)

This is a feature, not a bug

[–] Potatos_are_not_friends 31 points 1 year ago (7 children)

Right? I rather not have a computer automatically autocorrect.

load more comments (7 replies)
[–] [email protected] 51 points 1 year ago (6 children)

echo 'set completion-ignore-case On' >> ~/.inputrc

[–] [email protected] 15 points 1 year ago* (last edited 1 year ago) (1 children)

also idk does zsh do this automatically? don’t think i’ve ever had this problem except on legacy AF servers

i mean… unless you don’t tab complete, but then who doesn’t spam tab 30 times every keystroke?

load more comments (1 replies)
load more comments (5 replies)
[–] CodexArcanum 36 points 1 year ago* (last edited 1 year ago) (12 children)

I love how many people brought up the Turkish "I" as if everyone here is on the Unicode steering committee or just got jobs for Turkish facebook.

I, an English speaker, have personally solved the problem by not having a Turkish I in the name of my Downloads directory, or any other directory that I need to cd into on my computer. I'm going to imagine the Turks solve it by painstakingly typing the correct I, or limiting their use of uppercase I's in general.

In fact, researching the actual issue for more than 1 second seemingly shows that Unicode basically created this problem themselves because the two I's are just seperate letters in Turkic languages. https://en.m.wikipedia.org/wiki/Dotted_and_dotless_I_in_computing

If you nerds think this is bad try doing Powershell for any amount of time. It is entirely case-insensitive.

load more comments (12 replies)
[–] [email protected] 28 points 1 year ago* (last edited 1 year ago)
[–] [email protected] 27 points 1 year ago* (last edited 1 year ago)

So you type cd D tab and it brings you to Documents

[–] [email protected] 25 points 1 year ago

alias d="cd ~/Downloads"

[–] [email protected] 25 points 1 year ago (1 children)

using capital letters in file/directory names on Linux :|

[–] [email protected] 37 points 1 year ago* (last edited 1 year ago) (2 children)

It's a default on some distros, unfortunately, and changing it without updating the necessary env vars will break a bunch of stuff.

load more comments (2 replies)
[–] [email protected] 25 points 1 year ago* (last edited 1 year ago) (4 children)

Use Zsh or Fish and tab completion.

load more comments (4 replies)
[–] muntedcrocodile 22 points 1 year ago (4 children)

Doesn't fish basically fix this?

[–] [email protected] 58 points 1 year ago (2 children)

This is not a bug, it doesn't need to be fixed.

load more comments (2 replies)
[–] [email protected] 15 points 1 year ago (1 children)

You can set bash or zsh to case-insensitive tab completion as well.

load more comments (1 replies)
load more comments (2 replies)
[–] [email protected] 22 points 1 year ago (14 children)

I don't get it... "D" is a complete different character than "d" is.

It's like wondering why "file1" is not opened when I typed in "file2".

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

that's not how language works though, in human language (i know this can be confusing) d and D are the same letter just in different forms.

It's one thing to have case sensitivity in programs doing data manipulation, that makes sense because you don't want the program to accidentally use the wrong files without supervision.

But when you have an interactive prompt you know what you're doing, you can see if you entered the wrong directory, and you're generally going to be working in directories that you have yourself organized.

load more comments (1 replies)
load more comments (13 replies)
[–] [email protected] 20 points 1 year ago
[–] [email protected] 19 points 1 year ago (1 children)
[–] Moc 13 points 1 year ago

OP can definitely handle a bigger D

[–] [email protected] 17 points 1 year ago (14 children)
load more comments (14 replies)
[–] [email protected] 11 points 1 year ago (1 children)

I seems that I have triggered something, but keep that going, it’s quality content generation. 😬

[–] [email protected] 16 points 1 year ago (4 children)

Everyone on any Linux thread ever: you are a moron, obviously and you're doing it wrong. Why don't you install another distro, or better yet: modify and recompile your distro to match your desired experience, the code is open source ffs! What do you need? 4 years of work maybe? Come on.

load more comments (4 replies)
load more comments
view more: next ›