zlacker

[return to "ChatGPT Containers can now run bash, pip/npm install packages and download files"]
1. behnam+sj[view] [source] 2026-01-26 20:58:52
>>simonw+(OP)
I wonder if the era of dynamic programming languages is over. Python/JS/Ruby/etc. were good tradeoffs when developer time mattered. But now that most code is written by LLMs, it's as "hard" for the LLM to write Python as it is to write Rust/Go (assuming enough training data on the language ofc; LLMs still can't write Gleam/Janet/CommonLisp/etc.).

Esp. with Go's quick compile time, I can see myself using it more and more even in my one-off scripts that would have used Python/Bash otherwise. Plus, I get a binary that I can port to other systems w/o problem.

Compiled is back?

◧◩
2. jacque+uK[view] [source] 2026-01-26 23:17:55
>>behnam+sj
> But now that most code is written by LLMs

Is this true? It seems to be a massive assumption.

◧◩◪
3. fooker+ZO[view] [source] 2026-01-26 23:44:21
>>jacque+uK
By lines of code, almost by an order of magnitude.

Some of the code is janky garbage, but that’s what most code it. There’s no use pearl clutching.

Human engineering time is better spent at figuring out which problems to solve than typing code token by token.

Identifying what to work on, and why, is a great research skill to have and I’m glad we are getting to realistic technology to make that a baseline skill.

◧◩◪◨
4. jacque+wP[view] [source] 2026-01-26 23:47:33
>>fooker+ZO
Well, you will somehow have to turn that 'janky garbage' into quality code, who will do that then?
◧◩◪◨⬒
5. fooker+0S[view] [source] 2026-01-27 00:01:44
>>jacque+wP
For most code, this never happens in the real world.

The vast majority of code is garbage, and has been for several decades.

◧◩◪◨⬒⬓
6. pharri+Lb1[view] [source] 2026-01-27 02:32:10
>>fooker+0S
So we should all work to become better programmers! What I'm seeing now is too many people giving up and saying "most code is bad, so I may was well pump out even worse code MUCH faster." People are chasing convenience and getting a far worse quality of life in exchange.
◧◩◪◨⬒⬓⬔
7. fooker+Uc1[view] [source] 2026-01-27 02:43:30
>>pharri+Lb1
I disagree, most code is not worth improving.

I would rather make N bad prototypes to understand the feasibility of solving N problems than trying to write beautiful code for one misguided problem which may turn out to be a dead end.

There are a few orders of magnitude more problems worth solving than you can write good code for. Your time is your most important resource, writing needlessly robust code, checking for situations that your prototype will never encounter, just wastes time when it gets thrown away.

A good analogy for this is how we built bridges in the Roman empire, versus how we do it now.

[go to top]