frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nemotron 3 Ultra is open weight and open data [video]

https://www.youtube.com/watch?v=D8LIIvQVGS4
1•TheJCDenton•1m ago•0 comments

The First AI QFT Textbook

https://www.math.columbia.edu/~woit/wordpress/?p=15735
1•jjgreen•4m ago•0 comments

Data centers consumed 264B gallons of water as drought hits nearly 63% of US

https://www.barchart.com/story/news/2339834/ai-data-centers-water-consumption-breaks-264-billion-...
1•yogthos•4m ago•0 comments

Compression and Intelligence [video]

https://www.youtube.com/watch?v=l6DKRf-fAAM
2•2bird3•5m ago•0 comments

Painting that made Turner's name gets second public showing since 1799

https://www.thetimes.com/culture/art/article/painting-turner-abergavenny-bridge-rcvx8hglh
1•bookofjoe•6m ago•1 comments

Investing Is Compression

https://arxiv.org/abs/2604.10758
1•lisper•7m ago•0 comments

The Zebra v4.4.1 Chronicles: Independent Audit

https://github.com/Alex74SjS3/THE-ZCASH-ZEBRA-v4.4.1-CHRONICLES
1•Alex74-SjS3•11m ago•0 comments

Spyro the Dragon returns with a new game after almost two decades

https://www.theguardian.com/games/2026/jun/07/spyro-the-dragon-returns-with-a-new-game-after-almo...
1•TechTechTech•14m ago•0 comments

Thoughts on starting new projects with LLM agents

https://eli.thegreenplace.net/2026/thoughts-on-starting-new-projects-with-llm-agents/
2•zdw•14m ago•0 comments

VibeOS: First ever AI-native operating system

https://vibeos.sh/
1•doener•16m ago•0 comments

Flock Safety Price List [pdf]

https://www.omniapartners.com/suppliers-files/E-J/Flock_Safety/Contract_Documents/R250203/5_29_20...
2•ourmandave•18m ago•0 comments

A Portrait of the Software Engineer, 2031

https://jamesjboyer.substack.com/p/a-portrait-of-the-software-engineer
1•aesthetics1•18m ago•0 comments

Ask HN: Is Facebook registration procedure broken?

2•stefanos82•19m ago•0 comments

I built a sentiment analyzer for Hacker News (as an MCP server)

https://mcpize.com/mcp/sentiment-analyzer
1•Lord_Dontavious•20m ago•0 comments

VibeOS – Hallucinated Operating System [video]

https://www.youtube.com/watch?v=z3pV6FHvcgM
2•doener•21m ago•0 comments

Academics set out vision for planetary survival

https://www.theguardian.com/environment/2026/jun/04/world-inequality-lab-equality-academics-plane...
4•worik•24m ago•0 comments

The future is controlled by companies who control the physical bottlenecks of AI

https://silicon-frontier.com/research/silicon-control
1•momentmaker•24m ago•0 comments

Why are there so many canines in fine art?

https://www.theatlantic.com/magazine/2026/07/the-dogs-gaze-thomas-w-laqueur/687312/
1•prismatic•25m ago•0 comments

Got a job, dropped this for 3 months – MaskOps, Polars PII masking in Rust

https://github.com/fcarvajalbrown/MaskOps
1•fcarvajalbrown•26m ago•0 comments

1D Image Tokenizers and Autoregressive Models for Dynamic Resolution Generations

https://arxiv.org/abs/2604.24885
1•PaulHoule•28m ago•0 comments

Expert Selections in MoE Transformer Models Reveal Almost as Much as Text

https://arxiv.org/abs/2602.04105
3•busserweiser•29m ago•0 comments

Small modular nuclear reactor reaches criticality in first test

https://arstechnica.com/science/2026/06/first-us-test-of-modular-reactor-reaches-criticality/
1•NedCode•29m ago•0 comments

NEC PC Engine LT Recap and LCD Bias Fix (Necromancy)

https://hitmanmcc.com/entry/pc-engine-lt-necromancy
1•zdw•31m ago•0 comments

The spelling error made 200B times a day (2025)

https://nbailey.ca/post/spelling-error/
2•NaOH•32m ago•0 comments

The US Only Has One Political Party [video]

https://www.youtube.com/watch?v=GUVf6DkDkgA
1•joe_mamba•33m ago•0 comments

Show HN: Claude Code on Slack/Discord/Telegram for flat $20/mo – no API bills

https://lobsteady.com
1•jvalansi•34m ago•0 comments

How much do amd64 microarchitecture levels help in Go?

https://lemire.me/blog/2026/06/06/how-much-do-amd64-microarchitecture-levels-help-in-go/
1•zdw•35m ago•0 comments

Why add an agent skill to a CLI that has a context command?

https://www.andreagrandi.it/posts/why-add-agent-skill-cli-context-command/
2•andreagrandi•40m ago•0 comments

Robotics Has a Stiffness Problem

https://hasalmon.medium.com/the-stiffness-problem-part-1-ed44c68e56b6
4•E-•40m ago•0 comments

Where tf is the Excalidraw markup table?

https://larkmatter.substack.com/p/where-the-fck-is-the-excalidraw-markup
2•jlarks32•42m ago•0 comments
Open in hackernews

Ask HN: What's the best way to deploy container-based apps for a small project?

1•pxheller•1y ago
Hi HN,

For the last couple of months I've been working on a side project I'd now finally like to publish.

I developed and packaged everything into a few small docker containers (2 python apps, 1 postgres db, and 1 db cleanup script in another container. I'll likely also add some reverse proxy like Nginx or Caddy) and run it locally using docker-compose, with all secrets in a .env file (although I could use docker secrets)

I thought about either using a managed Kubernetes service from a provider like DigitalOcean, or setting up a vServer from scratch with the help of some online guides and ChatGPT/Claude (as I don't have a lot of infrastructure experience).

What is your guys go-to-stack? Any recommendations that are relatively simple (or well-documented) to setup while still being cost-efficient and easy to scale? What are your experiences with services like dokku or dokploy?

Re scaling: I also considered using an external Postgres provider, allowing me to scale the "worker" services horizontally when needed.

Asked here because I'm sure it might be relevant for others, too. Thanks in advance!

Comments

austin-cheney•1y ago
I wrote a Nodejs application to do this for me. It’s a personal project that serves as a dashboard for spawning web servers and docker compose instances. I am the only user of it so it’s probably not stable. The UI displays in a browser.

https://github.com/prettydiff/webserver

huksley•1y ago
My experience:

- Dokku - too much shell scripting and you forget all the commands you typed after 1 year.

- Dokploy - you need to install it on your host. So it makes it difficult to switch to a bigger host.

So now I am actively developing a new platform which solves all this - DollarDeploy.

It makes it easy to deploy app from GitHub repo to the server of your choice, and automatically generate HTTPs cert, manage hosts, backups etc for $1/app/month.

Would be nice if you give it a try and provide feedback!

byrnedo•1y ago
If you want, give skate a try ( https://github.com/skateco/skate ). I built it out of the frustration of having to learn the custom deploy syntax of all these other alternatives, instead it uses kubernetes manifests and is multi host.