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. kenjac+Uv[view] [source] 2026-01-26 22:01:53
>>behnam+sj
Has anyone tried creating a language that would be good for LLMs? I feel like what would be good for LLMs might not be the same thing that is good for humans (but I have no evidence or data to support this, just a hunch).
◧◩◪
3. 999900+5I[view] [source] 2026-01-26 23:04:22
>>kenjac+Uv
I want to create a language that allows an LLM to dynamically decide what to do.

A non dertermistic programing language, which options to drop down into JavaScript or even C if you need to specify certain behaviors.

I'd need to be much better at this though.

◧◩◪◨
4. branaf+FL[view] [source] 2026-01-26 23:24:40
>>999900+5I
You're describing a multi-agent long horizon workflow that can be accomplished with any programming language we have today.
◧◩◪◨⬒
5. 999900+ZR[view] [source] 2026-01-27 00:01:39
>>branaf+FL
I'm always open to learning, are there any example projects doing this ?
◧◩◪◨⬒⬓
6. branaf+RX[view] [source] 2026-01-27 00:43:56
>>999900+ZR
The most accessible way to start experimenting would be the Ralph loop: https://github.com/anthropics/claude-code/tree/main/plugins/...

You could also work backwards from this paper: https://arxiv.org/abs/2512.18470

◧◩◪◨⬒⬓⬔
7. 999900+LZ[view] [source] 2026-01-27 00:58:08
>>branaf+RX
Ok.

I'm imagining something like.

"Hi Ralph, I've already coded a function called GetWeather in JS, it returns weather data in JSON can you build a UI around it. Adjust the UI overtime"

At runtime modify the application with improvements, say all of a sudden we're getting air quality data in the JSON tool, the Ralph loop will notice, and update the application.

The Arxiv paper is cool, but I don't think I can realistically build this solo. It's more of a project for a full team.

[go to top]