this post was submitted on 02 Oct 2023
1751 points (98.0% liked)

Programmer Humor

32175 readers
1154 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] lud@lemm.ee 43 points 1 year ago (5 children)

Or bash.

So incredibly annoying too read.

There's a glorious project out there that will compile a special typed language into sh compatible script code. The idea is solid, but reading the resulting script files make me want to go back to reading C++ templates.

[–] Hazzia@discuss.tchncs.de 9 points 1 year ago (2 children)

I know that there are use cases for [ ] over [[ ]]. There have to be. Why in god's name would [ ] exist if there wasn't a reason to use it over [[ ]]? I'm obviously the one in the wrong by only ever using [[ ]], because [ ] would definitely be better in some type of situations that I'm just not seeing clearly. Right???

[–] hisbaan@lemm.ee 11 points 1 year ago (2 children)

I believe the reason is that bash is backwards compatible with sh and sh only has [ ], not [[ ]]

[–] float@feddit.de 6 points 1 year ago

[ is a binary (sometimes a symlink) in /usr/bin. It's /usr/bin/[ 🤓

[–] Number358@lemmy.world 5 points 1 year ago (2 children)

Solution: fuck backwards compatibility and use fish

Fish might be good for interactivity, but in terms of scripting, just go straight to python. It's not worth it.

[–] Cysioland@lemmygrad.ml 3 points 1 year ago

Fish is starting to get more POSIX compliant as of late, the error redirect is no longer ^ /dev/null but 2>/dev/null

[–] AffineConnection@lemmy.world 2 points 1 year ago

[[ is not a POSIX shell feature.

[–] twelvefloatinghands@lemmy.world 8 points 1 year ago (1 children)

So many footguns. Use python in place of bash.

[–] Rooki@lemmy.world 0 points 1 year ago (4 children)

tbh i would rather use assembly than python.

[–] herr@lemmy.world 11 points 1 year ago* (last edited 1 year ago) (1 children)

Absolutely wild take, the two are used in completely different contexts

[–] Rooki@lemmy.world 0 points 1 year ago

python if you want to f*ck every developer that comes after you and the other if want to make a small script yes. Still would choose bash tbh.

[–] twelvefloatinghands@lemmy.world 1 points 1 year ago (1 children)

Python has its flaws for sure (I'm getting pretty fed up with the lack of required type notation, myself), but my point here is that bash is even worse:

[–] Rooki@lemmy.world 0 points 1 year ago (1 children)

Bash is still better than python - Change my mind

[–] twelvefloatinghands@lemmy.world 1 points 1 year ago (1 children)
[–] Rooki@lemmy.world 1 points 1 year ago (1 children)

Because f*ck python lol. Its just bad

Throw me a bone here. Is there like an existing reasons it sucks or do you just hate snakes?

[–] dylanTheDeveloper@lemmy.world 1 points 1 year ago (1 children)

Assembly is torture because it has too much math in it

[–] Rooki@lemmy.world 2 points 1 year ago

But its less math than python. You dont have to role the dice if the error message is logical or not

[–] lud@lemm.ee 1 points 1 year ago (1 children)

Wouldn't it make more sense to code in c++ or something and compile to assembly?

How much more efficient than a compiler are one really?

[–] Rooki@lemmy.world 1 points 1 year ago

Yeah even that i would do, rather to do anything in python ;D

[–] palordrolap@kbin.social 3 points 1 year ago (1 children)

Perl calls to you. Admire its beauty.

[–] seth@lemmy.world 0 points 1 year ago* (last edited 1 year ago) (1 children)

cries in hours spent trying to walk through pretty but obtuse JAPHs

[–] palordrolap@kbin.social 4 points 1 year ago

Perl's unreasonable effectiveness for creating write-only code was part of the joke.

[–] CoderKat@lemm.ee 1 points 1 year ago

Bash is so bad. I literally use it every day and have written many Bash scripts, yet I'm constantly having to search for how to do things in it because syntax is so bizarre and difficult to remember. Need to do a for loop over lines in a file? You can bet I'm googling the syntax for it. I have a general idea for what it looks like and know what to search for, but no way in hell can I write it correctly in the first few tries.

String manipulation is the absolute worst. Have fun getting to learn the unreadable syntax of most sed and awk programs (the only thing most people have memorized is find and replace). Stuff like "split a string of comma separated ints and add them up" are way harder in Bash than in Python, despite the fact I often need to do stuff like that in Bash. Well, in the terminal anyway. Sometimes I'll just use Python, but Python's weakness is executing programs and getting their output, which is nowhere near as convenient as it is in Bash.

Side note, isn't it weird that for a language where flags like --foo bar are so commonly used, there's no built in or standard tools for accessing flags?