Top
Best
New

Posted by indigodaddy 1 day ago

If AI writes your code, why use Python?(medium.com)
887 points | 936 commentspage 11
pmarreck 18 hours ago|
Exactly. Why would you not use the language at the pareto-optimal max for speed and restrictiveness, given the use-case?
shevis 20 hours ago||
Because you still have to read the code AI writes. I would argue it’s even more important than ever for code to be human readable.
Havoc 1 day ago||
I use a mix of both to try and leverage their advantages.

Rust in most cases, especially for back end.

Python when it's low risk (say monitoring dashboard or similar API heavy) or plays to python strengths (e.g. ML/AI - everything ML seems to be python).

ngrislain 1 day ago||
100%, I’ve been writting: Rust, Haskell and Lean 4 with great success with AI. E.g. https://github.com/typednotes/hale
cauliturtle 1 day ago||
IMO, just use the language your know it well. It might be a little bit off topic, if you are going multiple platforms development now, such as backend, ios and android, will you go native now? or use cross platform languages? :D
infinite_spin 1 day ago||
For me, whether it's AI or my own handcrafted artisanal code, the choice of language comes down to what has the least friction. This means I turn to vite/react for a lot of frontend requirements, and that the backend will be in nodejs or python, because those are easier for me to debug than writing an equivalent application in C++ or Rust.
level09 1 day ago||
I find it fuunny how "code readability" was the killer feature when humans had to maintain the code, and is suddenly negotiable now that they don't.

Pre-AI bias is slowly dying.

jlnthws 1 day ago||
Why not use AI to speed up the Python runtime? V8 showed what focused engineering can do for JavaScript, and Astral showed how much room there is to improve Python tooling. The same tricks may not apply directly, but AI could definitely accelerate the work.
kx_x 1 day ago||
AI/ML stuff: Python

Personal: Rust/Go based on criticality of being able to glean code quickly, or memory usage, etc

mountainriver 1 day ago|
This is it
suncemoje 18 hours ago|
I still like to understand the code, components, and structure if it’s something that will run in production
More comments...