frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Microsoft-backed UK tech unicorn Builder.ai collapses into insolvency

https://www.ft.com/content/9fdb4e2b-93ea-436d-92e5-fa76ee786caa
1•mmarian•13s ago•0 comments

Show HN: What if Vintage and Modern got together

https://www.jaydip.me/
1•jdsane•1m ago•0 comments

I made a system to abolish subscriptions

https://www.joinares.com/
2•JonanJ•7m ago•0 comments

At Google I/O, everything is changing and normal and scary and chill

https://www.platformer.news/google-io-2025-ai-everything-everywhere/
1•spenvo•13m ago•0 comments

Astronomy: Time Is an Angle

https://oliverkwebb.github.io/articles/astronomy-angles/
1•oliverkwebb•14m ago•0 comments

Show HN: Toffu AI is a Vibe Marketing agent

https://toffu.ai
1•orarbel1•17m ago•0 comments

Teen swimmer caught in rip current rescued by drone [video]

https://www.youtube.com/watch?v=CdGxAbDFQDQ
1•handfuloflight•29m ago•0 comments

Build with Jules, your asynchronous coding agent

https://blog.google/technology/google-labs/jules/
1•badmonster•30m ago•1 comments

Code Improvement Practices at Meta

https://arxiv.org/abs/2504.12517
2•Gigacore•30m ago•0 comments

Relume

https://www.relume.io/
1•handfuloflight•32m ago•0 comments

Ask HN: Trivial things that you have weirdly strong opinions about

1•kaycebasques•37m ago•0 comments

Magnus Carlsen forced into a draw by more than 143000 people playing against him

https://apnews.com/article/chess-magnus-carlsen-match-world-freestyle-grandmaster-963a977765fa02d05a14d701666dfcd7
5•namanyayg•37m ago•0 comments

Good Design Comes from Looking, Great Design Comes from Looking Away

https://www.chrbutler.com/good-design-comes-from-looking-great-design-comes-from-looking-away
2•MBCook•37m ago•0 comments

A broken thruster jeopardized Voyager 1, but engineers executed a remote fix

https://www.npr.org/2025/05/20/nx-s1-5403501/voyager-thruster-nasa-interstellar
3•namanyayg•37m ago•1 comments

Waymo says it reached 10M robotaxi trips, doubling in five months

https://www.cnbc.com/2025/05/20/waymo-ceo-tekedra-mawakana-10-million.html
3•carbocation•38m ago•0 comments

The Agentic Web and Original Sin

https://stratechery.com/2025/the-agentic-web-and-original-sin/
1•VignuB•40m ago•0 comments

AI could keep us dependent on natural gas for decades to come

https://www.technologyreview.com/2025/05/20/1116272/ai-natural-gas-data-centers-energy-power-plants/
1•kawera•40m ago•0 comments

AI in Search: Going beyond information to intelligence

https://blog.google/products/search/google-search-ai-mode-update/
1•ruidlopes•40m ago•0 comments

You Won't Learn This in School: Disabling Kernel Functions in Your Process(2009)

https://chadaustin.me/2009/03/disabling-functions/
1•rolph•44m ago•0 comments

The data center boom in the desert

https://www.technologyreview.com/2025/05/20/1116287/ai-data-centers-nevada-water-reno-computing-environmental-impact/
1•gnabgib•46m ago•0 comments

Gemma 3n

https://deepmind.google/models/gemma/gemma-3n/
1•mromanuk•49m ago•1 comments

Firebase MCP Server

https://firebase.blog/posts/2025/05/firebase-mcp-server/
2•LyalinDotCom•49m ago•0 comments

Ask HN: Are AI Agents a Lie?

2•David1238•50m ago•3 comments

The unlikely rise of the Indian space program [video]

https://www.youtube.com/watch?v=8jQzwxS8vxA
1•namanyayg•50m ago•0 comments

Windows ML: The future of machine learning development on Windows

https://blogs.windows.com/windowsdeveloper/2025/05/19/introducing-windows-ml-the-future-of-machine-learning-development-on-windows/
2•T-A•52m ago•0 comments

A Secret Trove of Rare Guitars Heads to the Met

https://www.newyorker.com/magazine/2025/05/26/a-secret-trove-of-rare-guitars-heads-to-the-met
15•bookofjoe•53m ago•3 comments

Show HN: Interactive AI vibe analysis and edit agent for connected data

https://www.trynexus.io
1•nikhilpil•53m ago•0 comments

New Microbe Discovered Aboard Chinese Space Station

https://www.newsweek.com/new-microbe-chinese-space-station-2074452
2•freedomben•54m ago•0 comments

Adreno Control Panel for Devices with Snapdragon X Elite

https://www.qualcomm.com/developer/blog/2025/05/introducing-adreno-control-panel-snapdragon-x-elite-2025-1-beta
1•xgdgsc•55m ago•0 comments

Wolfspeed prepares to file for bankruptcy within weeks

https://www.reuters.com/business/wolfspeed-prepares-file-bankruptcy-within-weeks-wsj-reports-2025-05-20/
3•jand•59m ago•0 comments
Open in hackernews

Show HN: First AppServer built for deploying containerized apps

https://clace.io/
1•ajayvk•6h ago

Comments

ajayvk•6h ago
I have been building https://github.com/claceio/clace, an appserver for deploying containerized apps. Docs are at https://clace.io/.

There are many deployment tools focussed on simplifying containerized apps deployment. Most of them are built as wrappers on top of Nginx/Traefik/Caddy etc. Clace is a single binary which implements a web server and an app server. This allows Clace to implement features like OAuth and atomic updates which are not possible for other solutions. Clace focuses on making it easy for teams to deploy Streamlit/Gradio/FastHTML type apps with no config required.

Clace has a imperative CLI and it has a declarative GitOps interface. For example https://github.com/claceio/clace/blob/main/examples/utils.st... is a config which defines seven apps. Using Starlark (python like) for config allows easy config without the YAML insanity.

Running a command like

   clace sync schedule --approve --promote github.com/claceio/clace/examples/utils.star
is all it takes to setup full GitOps, starting a background sync which creates new apps and updates existing apps with three way merge.