this post was submitted on 10 Aug 2026
-40 points (10.0% liked)

Programming

28057 readers
447 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

I mean by useless is it's so slow you can't make games or even big projects for GUI, only you can do is AI/ML, Data Science, and basic stuff. I think Rust is better because of its speed and language capabilities?

you are viewing a single comment's thread
view the rest of the comments
[–] Dookieman12@piefed.social 15 points 1 day ago (2 children)

Saying one programming language is better than another is ignorant; it's like arguing a screwdriver is better than a wrench.

Each language has their strengths and weaknesses that make them better at some tasks and worse at other. Python's strength is ease of development. Performance isn’t a big concern if you just want to quickly develop the app you want.

Rust might be more performant, but if development takes twice as long and the app only runs once or a few times, that benefit is unrealized.

[–] username_1@discuss.tchncs.de -2 points 1 day ago (2 children)

Please point at the strengths of BASIC and Forth over, let's say, C++.

[–] anton@lemmy.blahaj.zone 3 points 7 hours ago

Forth is powerful while still being very easy to interpret. This makes it a great bootstrapping step.
It's also used as a scripting language in some embedded system, it might be telescopes but I'm not sure. While forth wouldn't be my first choice there, I don't want to be able to crashed the device because I have hot swapped in a binary, compiled with the wrong flags.

[–] Solemarc@lemmy.world 4 points 1 day ago

You can finish learning basic or Fortran. You will still be learning cpp in a decade.

[–] CarlLandry357@lemmy.world -3 points 1 day ago (1 children)

"Python’s strength is ease of development"

That's what I usually see with Python. I think that's the reason people should choose it.

"Performance isn’t a big concern if you just want to quickly develop the app you want."

You're correct with that, but if your project is to make a touch screen app for fast food restaurant, now you're wrong because of Python's performance.

[–] Piatro@programming.dev 5 points 1 day ago (1 children)

Python is very much "good enough" for that kind of environment. The touch screen drivers on the other hand, yes, should probably be rust/c.

[–] CarlLandry357@lemmy.world -1 points 1 day ago

Yeah, I've heard C is used for this kind of stuff, maybe also rust.