712
submitted 1 year ago by [email protected] to c/[email protected]

No offence

you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 23 points 1 year ago

Someone tried to learn python and failed.

[-] [email protected] 5 points 1 year ago

He mixed up spaces and tabs, threw the keyboard out the window.

Python is nice.

[-] [email protected] 1 points 1 year ago

Well, to be fair, Matz (the Ruby creator) called Python a toy language.

[-] [email protected] 2 points 1 year ago
[-] [email protected] 1 points 1 year ago

That's correct. I don't think anyone would seriously call Python that today.

[-] [email protected] 0 points 1 year ago* (last edited 1 year ago)

One of us has spent the last three months trying to help their client untangle their massive python monolith that makes all their in house engineers quit.

Python is a good language for writing a data processing script, not for building a large piece of software.

[-] [email protected] 2 points 1 year ago

It sounds like the issue was devs creating a crappy monolith, not the language itself.

[-] [email protected] 1 points 1 year ago

Python is an overall robust language that allows you to do basically whatever you want, and does it pretty well. You can even use C extensions if you want to get peak performance.

The two domains that I believe Python cannot easily work with, are IoT where the interpreter would be a bit too cumbersome for a low-power system, and web programming, where it would still underperform Javascript and Webassembly (even though I am guessing that with a better webassembly support of the browsers, it would be possible to reach a rather efficient interpreter in-browser that would at least reach performances similar to javascript, if not better. And even if slower, the better syntax and lack of absurd rules would be a clear advantage on JavaScript).

[-] [email protected] 1 points 1 year ago

even though I am guessing that with a better webassembly support of the browsers

Considering V8 overcame python in benchmarks nearly a decade ago, I'm not sure even some miraculous webassembly environment would put python faster than javascript in the browser of all places.

V8 does not quite compete with the big guns in the space (C, Rust, Go), but now that it's only 2-4x slower than C++, it's created this niche of "almost hardcore fast" for javascript that is just unlikely to be dethroned any time soon.

People fail to quite get how many leaps and bounds V8 has taken in the last 10-12 years. Javascript's reputation of being "scripting language slow" is simply no longer the case and hasn't been for an entire Era in software terms. Reasonably-written Javascript is now often faster than heavily-tuned Python, and well-written javascript is faster than reasonably-written C++. It's not necessarily fair (like comparing modern solar to nuclear, with the absurd amount of money that's gone into solar research), but I don't see it changing any time soon.

[-] [email protected] 0 points 1 year ago* (last edited 1 year ago)

better syntax

Lol I was listening and intently considering what you had to say until this 
  point.
[-] [email protected] 0 points 1 year ago

Defending javascript syntax is not really a valid thing. Even js devs admit it.

[-] [email protected] 1 points 1 year ago* (last edited 1 year ago)

Is it perfect? No. Is it inherently better than a language that mistakenly thinks that whitespace is more readable than braces? Yes.

White space delimiting is awful and near impossible to scan in yaml config files, let alone a real programming language.

this post was submitted on 16 Jul 2023
712 points (92.4% liked)

Programmer Humor

32024 readers
566 users here now

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

Rules:

founded 5 years ago
MODERATORS