Hacker Newsnew | past | comments | ask | show | jobs | submit | elzbardico's commentslogin

Unfortunately, and now even more with GenAI, a lot of Open Source boils down to doing free Labor to rich capitalists get even more rich while making sure we kill a lot of small business our professional class could have started.

Nobody cares about the COP. It's over.

Why doing agents with go?

Python is way more ergonomic when dealing with text than go. Go's performance advantages are basically irrelevant in an AI agent, as execution time is dominated by inference time.


Go is pretty fantastic to write agents in; it has a very good and expansive standard library and a huge mess of third-party libraries. A lot of very basic things agents tend to want to do (make HTTP requests, manage SQLite databases) are very idiomatic in Go already. It's easy to express concurrency in Go, which is nice if you're running multiple context windows and don't want to serialize your whole agent on slow model calls. It's very fast and it compiles to binaries, which, depending on how you're deploying your agent, might be a big win or might not be.

Yes and I'll add that Go routines can model task queues in Go code easily - then schedule and cancel those task reliably using context cancellation and channels. All while being executed concurrently (or in parallel).

Go is the sweet spot in expressive concurrency, a compile time type system, and a strong standard library with excellent tooling as you mentioned.

My hope is that, similar to Ruby in web development, Python's mind share in LLM coding will be siphoned to Go.


Go, or Rust. Not here to fight language wars, but either of these two popular languages would be vastly better than Python.

Concurrency. Unless you’re happy stopping the world on llm io… Go excels at handling network calls and the like. It’s basically what agents are.

Because Go has stronger compile-time type safety than Python. And of course concurrency.

Fwiiw I noticed that colleagues using other languages like Java and JS with Claude Code sometimes get compile errors. I never get compile errors (anymore) with Go. The language is ideal for LLMs. Cant tell how CC is doing lately for Python.


Why not Go ? AI agents are not just scripts, they are the same as any other application that needs to scale. Java or Go, if application can perform better then it is always good to have an option.

There are Python bindings for the framework as well.

Personally I could see Go being quite nice to use if you want to deploy something as eg a compiled serverless function.

I'm assuming the framework behaves the same way regardless of language so you could test using Python first if you want and then move over to eg Go if needed.


100%, I don’t really get the justification for golang, today. But. Looking forward we can imagine a world of agents, agents everywhere , including embedded into systems that are built in go. So I guess it would be more suitable for that.

Wasn't the NYT that started this?

In my recollection, NYT started/popularized the whole "reportage as a interactive story with stuff moving as you scroll" on the web, but I think it was web developers wanting to emulate the Macbook/iPhone inertia scroll that started the whole "lets override scroll behaviour" trend.

The first I ever saw of it was the NYT story about the deadly avalanche at Stevens Pass in WA state. I liked it for that story but not so much for this product site.

https://www.nytimes.com/projects/2012/snow-fall/index.html#/...


Oh that does sound familiar. I think you’re right.

Apple certainly made it popular for product pages though.


Nike mainstreamed it, I think - https://onepagelove.com/nike-better-world

I absolutely hate stickers too. You're not alone.

I think that Slack may be partially responsible for that.

If I copy code from PyCharm or VS Code and paste it into fucking Microsoft Word, even spawn-of-Satan-MS-Word-for-Mac respects most of my formatting. Plenty of web text editors are also able to do that.

But Slack, "The King of Useless Features Nobody Asked For", can't bother themselves to implement such a useful feature for their primary market.


Code block is easy enough to create with ```. I've never have any issue with that.

Not the same, it is not just paste and forget, if you want syntax highlighting need to add a snippet.

Some people are too proud for their own good about their aesthetic choices in editor colors, typography and fonts.

I do enjoy seeing what themes others are using.

The current oligarchs plan on dispensing all together with the need for the blood of the young by replacing them with AI and robots.

I am surprised to see Palantir's CEO to say such a thing!

Of course. They're in the surveillance data analisys business and deeply care if China wins.

I don't care. I want LLMs to help with the boring stuff, the toil. It may not be as intelligent as Claude, but if it takes care of the boring stuff, and it is fast while doing it, I am happy. Use it surgically, do the top-down design, and just let it fill the blanks.

Give it a crack. It took a lot of iteration for it to write decent code. If you figure out differences in prompting technique, do share. I was really hoping for the speed to improve a lot of execution - because that’s genuinely the primary problem for me. Unfortunately, speed is great but quality wasn’t great for me.

Good luck. Maybe it’ll do well in some self-directed agent loop.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: