frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Thunderbird: Fluent Windows 11 Design

https://github.com/Deathbyteacup/fluentbird
164•skipnup•3d ago•81 comments

Linux Reaches 5% Desktop Market Share in USA

https://ostechnix.com/linux-reaches-5-desktop-market-share-in-usa/
704•marcodiego•4h ago•380 comments

cppyy: Automatic Python-C++ Bindings

https://cppyy.readthedocs.io/en/latest/
45•gjvc•2h ago•10 comments

Show HN: Improving RAG with chess Elo scores

https://www.zeroentropy.dev/blog/improving-rag-with-elo-scores
14•ghita_•1h ago•2 comments

AWS open-sourced Postgres active-active replication extension

https://github.com/aws/pgactive
98•ForHackernews•6h ago•24 comments

Shipping WebGPU on Windows in Firefox 141

https://mozillagfx.wordpress.com/2025/07/15/shipping-webgpu-on-windows-in-firefox-141/
222•Bogdanp•8h ago•70 comments

Cloudflare 1.1.1.1 Incident on July 14, 2025

https://blog.cloudflare.com/cloudflare-1-1-1-1-incident-on-july-14-2025/
386•nomaxx117•11h ago•237 comments

What's Happening to Reading?

https://www.newyorker.com/culture/open-questions/whats-happening-to-reading
14•Kaibeezy•3d ago•9 comments

Altermagnets: The first new type of magnet in nearly a century

https://www.newscientist.com/article/2487013-weve-discovered-a-new-kind-of-magnetism-what-can-we-do-with-it/
3•Brajeshwar•20m ago•1 comments

Pascal's Scams (2012)

http://unenumerated.blogspot.com/2012/07/pascals-scams.html
37•walterbell•3d ago•25 comments

Tilck: A Tiny Linux-Compatible Kernel

https://github.com/vvaltchev/tilck
214•chubot•11h ago•38 comments

Show HN: I gave Claude a sundial and it built a calendar

https://github.com/jlumbroso/passage-of-time-mcp
4•lumbroso•36m ago•1 comments

I'm Switching to Python and Actually Liking It

https://www.cesarsotovalero.net/blog/i-am-switching-to-python-and-actually-liking-it.html
94•cesarsotovalero•7h ago•132 comments

Ukrainian hackers destroyed the IT infrastructure of Russian drone manufacturer

https://prm.ua/en/ukrainian-hackers-destroyed-the-it-infrastructure-of-a-russian-drone-manufacturer-what-is-known/
379•doener•7h ago•245 comments

Chain of thought monitorability: A new and fragile opportunity for AI safety

https://arxiv.org/abs/2507.11473
4•mfiguiere•52m ago•0 comments

MARS.EXE → COM (2021)

https://chaos.if.uj.edu.pl/~wojtek/MARS.COM/
87•reconnecting•4d ago•28 comments

GPUHammer: Rowhammer attacks on GPU memories are practical

https://gpuhammer.com/
219•jonbaer•15h ago•74 comments

Show HN: DataRamen, a Fast SQL Explorer with Automatic Joins and Data Navigation

https://dataramen.xyz/
27•oleksandr_dem•3h ago•26 comments

Denver's Deepest Dinosaur

https://pubs.geoscienceworld.org/uwyo/rmg/article/60/1/1/657560/Denver-s-deepest-dinosaur
6•gmays•1h ago•3 comments

Show HN: BloomSearch – Keyword search with hierarchical bloom filters

https://github.com/danthegoodman1/bloomsearch
5•dangoodmanUT•2d ago•0 comments

Atopile – Design circuit boards with code

https://atopile.io/atopile/introduction
19•poly2it•3d ago•4 comments

LLM Daydreaming

https://gwern.net/ai-daydreaming
129•nanfinitum•13h ago•82 comments

Six Years of Gemini

https://geminiprotocol.net/news/2025_06_20.gmi
174•brson•12h ago•93 comments

Show HN: Shoggoth Mini – A soft tentacle robot powered by GPT-4o and RL

https://www.matthieulc.com/posts/shoggoth-mini
535•cataPhil•23h ago•101 comments

Reflections on OpenAI

https://calv.info/openai-reflections
627•calvinfo•22h ago•337 comments

NIST ion clock sets new record for most accurate clock

https://www.nist.gov/news-events/news/2025/07/nist-ion-clock-sets-new-record-most-accurate-clock-world
328•voxadam•23h ago•111 comments

Where's Firefox going next?

https://connect.mozilla.org/t5/discussions/where-s-firefox-going-next-you-tell-us/m-p/100698#M39094
282•ReadCarlBarks•18h ago•429 comments

Documenting what you're willing to support (and not)

https://rachelbythebay.com/w/2025/07/07/support/
66•zdw•3d ago•24 comments

Pixel Piranhas

https://rybakov.com/blog/pixel_piranhas/
31•spython•3d ago•11 comments

To be a better programmer, write little proofs in your head

https://the-nerve-blog.ghost.io/to-be-a-better-programmer-write-little-proofs-in-your-head/
412•mprast•22h ago•152 comments
Open in hackernews

Run LLM Agents as Microservices with One-Click Deployment

https://agentainer.io/
6•cyw•11h ago

Comments

cyw•11h ago
We are working on Agentainer, a platform to make deploying and managing LLM-based agents as microservices feel effortless — especially for developers who don’t want to wrestle with infrastructure. This isn’t a pitch. we're sharing a pain we’ve run into hard, and we want to know if others are feeling it too. We’ve built agents using AutoGen, LangChain, and custom setups to monitor APIs, automate tasks, or manage systems autonomously. But running these in production? It’s a mess.

Most cloud platforms are designed for stateless apps or short-lived functions — not long-running agents that need to:

- Stay alive for hours or days

- Recover from crashes without losing context

- Expose secure APIs for integrations

- Scale up when demand spikes

- Persist state across redeploys

Dealing with Dockerfiles, Kubernetes, and manually wiring Redis/PostgreSQL eats up too much time — time we'd rather spend improving the agent’s logic.

Agentainer is our attempt to fix this. It’s a platform that gives agents the runtime treatment they deserve. Highlights:

- One-click deployment: Upload your code or Docker image, no YAML or infra scripts. (oh, and we designed it in a way where other AI agent can do it as well!)

- Lifecycle management: Start, stop, pause, resume, and auto-recover — via UI or API.

- Persistent state: Redis (runtime), Postgres (config), with automatic rehydration.

- Per-agent secure APIs: Each agent gets its own REST/gRPC endpoint with token auth and usage logging.

- Scaling and cloning: Horizontal scaling with optional memory cloning.

- Logs and metrics: Real-time logs, crash history, uptime, Prometheus-backed metrics.

What makes Agentainer uniquely flexible is that we expose the entire platform through APIs. This means not just you, the developer, but also your own developer agent can programmatically deploy, monitor, or retire other agents. Want a planning agent that spins up task-specific agents on demand? That’s a first-class use case. We’re building toward a world where autonomous agents can coordinate and manage infrastructure without human input — and Agentainer is designed with that architecture in mind.

We are applying to YC and would love unfiltered feedback from anyone who’s run agents in production:

1. What’s the hardest part of deploying or scaling agents for you?

2. What infrastructure or tooling would actually make your life easier?

3. What debugging/monitoring features would save your sanity?

Honest takes are super welcome. If this idea feels useful — or totally off-base — we’d love to hear why.

Note: Agentainer doesn’t provide any LLM models or reasoning frameworks. We’re infra-only — you bring your own agent code, and we handle the deployment, state, scaling, and API exposure.

andsoitis•11h ago
> We’re building toward a world where autonomous agents can coordinate and manage infrastructure without human input — and Agentainer is designed with that architecture in mind.

While it can manage infrastructure, how would it know what to manage toward? And would it know how to adapt when the business or other context changes?

cyw•11h ago
That’s a great point — and you’re absolutely right.

Agentainer isn’t responsible for determining what to manage or why — it's not an orchestration brain or planner itself. It’s designed to enable that level of automation by giving agents the tools to act. Think of it more like the runtime and control plane that an intelligent planning agent (built by the developer) can use to execute its decisions.

So for example, if you’ve built a supervisor agent that analyzes workloads and spins up child agents to handle different tasks — Agentainer provides the infrastructure APIs to make that possible (create, monitor, terminate, etc.), but it’s up to you (or your planner agent) to define the logic based on business rules, goals, and evolving context.

We’re not building AGI — we’re just trying to remove the DevOps wall for people building toward that vision.

mdaniel•11h ago
I guess you get a pass because it's not formally a Show HN but I detest launches that are "join our mailing list" because (a) seems like fishing for interest in vaporware (b) a spam risk when you sell my details if the product doesn't materialize

> Made with for developers

If that were true, you wouldn't have a template website that used the GitHub icon to point to just github.com instead of your repo or org. The whole site just seems autogenerated. I'm aware that's the popular accusation of late, but I don't mean it in the AI wrote it way, I mean the $(npx create-generic-business-site) way

gardnr•10h ago
This is a cool idea that is not ready to share yet. Please consider writing your own comments on HN in the future.