this post was submitted on 16 Jul 2023
700 points (92.3% liked)

Programmer Humor

32032 readers
1156 users here now

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

Rules:

founded 5 years ago
MODERATORS
 

No offence

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 1 year ago (1 children)

python in the same league as cpp, rust and c# is the real joke

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

it is a horribly slow, ugly language, with the most braindead scoping rules (apart from js, of course). The only fast parts of it are libraries written in other languages, because python itself is not up to the task for anything more than glueing code from other, better languages together.

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

Honestly JS seams saner then python, it's wierd but rather sane. The only really bad parts of JS are the type coercing == and =! operators which are very broken

For example "" == 0 and 0 == "0" are both true, but "0" == "" is false.

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

this is an unpopular opinion of mine, but I think lua is, in turn, a saner version of js. Apart from the 1-based indexing (which really isn't that big a deal imo). But I really love the stackful coroutines.