frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Confessions of a 'Professional' Narcissist Influencer

https://nymag.com/intelligencer/article/diagnosed-narcissists-npd-disorder-coaching-hustle-influe...
2•rendx•2m ago•0 comments

LinkedIn will soon use your data to train AI. Here's what you can do to opt out

https://proton.me/blog/linkedin-ai-training
2•LopRabbit•3m ago•0 comments

We vs It: How AI is shifting power from humans to models

https://bisi.org.uk/reports/artificial-intelligence-power-dynamics-who-controls-ai
1•BigVan•4m ago•0 comments

Oracle's Ellison joins Musk and Zuckerberg in controlling platforms billions see

https://boingboing.net/2025/09/22/oracles-ellison-joins-musk-and-zuckerberg-in-controlling-platfo...
3•KittenInABox•5m ago•0 comments

Unsupervised Instance Segmentation with Superpixels

https://arxiv.org/abs/2509.05352
1•PaulHoule•5m ago•0 comments

Aposd-vs-clean-code: A discussion between John Ousterhout and Robert Martin

https://github.com/johnousterhout/aposd-vs-clean-code
1•Bogdanp•6m ago•0 comments

The Cost of Progressive Rollout

https://surfingcomplexity.blog/2025/09/13/the-hidden-trade-offs-of-fine-grained-progressive-rollo...
1•ijidak•7m ago•0 comments

Amiberry-Lite is an optimized Amiga emulator for ARM and RISC-V platforms

https://github.com/BlitterStudio/amiberry-lite
1•doener•9m ago•0 comments

Show HN: Spatialbound – Turn any location into an interactive 3D playgrounds

https://www.spatialbound.com
2•mibrahimSB•9m ago•1 comments

Bring your Launchpad back in MacOS26+

https://github.com/RoversX/LaunchNext
1•amazonhut•12m ago•0 comments

The Illusion of Diminishing Returns: Measuring Long Horizon Execution in LLMs

https://arxiv.org/abs/2509.09677
1•speckx•12m ago•0 comments

Tech Report: Winning CRS from Team Atlanta (DARPA AIxCC)

https://arxiv.org/abs/2509.14589
13•tsgates•12m ago•0 comments

Tenants Seek to Unionize One Private Equity Firm's Entire Housing Portfolio

https://www.bloomberg.com/news/articles/2025-09-22/capital-realty-group-tenants-seek-to-unionize-...
1•petethomas•14m ago•0 comments

Wake Forest University goes tuition free for families making less than 200k/year

https://news.wfu.edu/2025/09/17/wake-forest-university-will-be-tuition-free-for-admitted-students...
1•kogus•14m ago•2 comments

New Olympic calendar likely because of climate change

https://www.bbc.com/sport/athletics/articles/c5yj0wyje7lo
1•campuscodi•15m ago•0 comments

Vogte: Agentic TUI for Go projects with LLM integration

https://github.com/piqoni/vogte
1•amazonhut•18m ago•0 comments

SEAL Showdown

https://showdown.scale.com/showdown
1•ej88•19m ago•0 comments

Printer Tracking Dots

https://en.wikipedia.org/wiki/Printer_tracking_dots
1•tomas789•22m ago•1 comments

CADBase for engineers and designers updated to v0.3

1•mnnxp•23m ago•0 comments

We built it: Real-time analytics for Stripe Billing

https://stripe.com/blog/how-we-built-it-real-time-analytics-for-stripe-billing
1•jbott•23m ago•0 comments

Salt AI raises $10M for health workflow platform

https://www.axios.com/pro/biotech-deals/2025/09/22/salt-ai-raises-10m-health-care-workflow-platform
1•fcpguru•27m ago•0 comments

Ask HN: Should I hurry while doing Take Home projects or submit a bit hazily

1•rootsudo•29m ago•0 comments

Learning Moments with Blink: The OAuth2 Refresh Grant [video]

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

Show HN: KaniTTS – Ultra Fast and Expressive TTS Model

https://huggingface.co/spaces/nineninesix/KaniTTS
1•defoemark•30m ago•0 comments

Tri Dao: The End of Nvidia's Dominance, Why Inference Costs Fell

https://youtu.be/xlSaoP0b90A?si=EC8pwiIVNmDw1iGe
1•amrrs•31m ago•0 comments

Services: Universal Building-Blocks for Operations

https://rework.com/architecture
1•vuonghtt•31m ago•0 comments

Solving an equation using a Puiseux series

https://www.johndcook.com/blog/2025/09/21/mollweide-for-high-latitudes/
2•ibobev•33m ago•0 comments

Hard Work Is a Virtue

https://lemire.me/blog/2025/09/21/hard-work-is-a-virtue/
3•ibobev•33m ago•0 comments

Intel's Panel Self Refresh (PSR) Feature

https://www.4rknova.com//blog/2022/09/01/intel-panel-self-refresh
2•ibobev•33m ago•0 comments

New analysis of underwater videos shows octopuses are 'incredible multitaskers'

https://www.nbcnews.com/science/science-news/new-analysis-underwater-videos-shows-octopuses-are-i...
2•chapulin•34m ago•0 comments
Open in hackernews

Show HN: Devbox – Ephemeral containers for clean dev environments

https://devbox.ar0.eu/
2•TheRealBadDev•1h ago
I've been frustrated with dependency hell and clutter on my VPS from dev, so I built Devbox: a lightweight, open-source CLI tool that spins up isolated development environments using Docker. Each project runs in its own container, but your code stays in simple flat folders on the host machine—no messing with volumes or sync issues. Environments are disposable, so you can nuke and recreate them without losing your work.

Key features:

- Instant setup: `devbox init my-project` and you're in a fresh env with `devbox shell`.

- Configurable via JSON: Define packages, services, and more in a `devbox.json` file. Share it in your repo for reproducible setups—teammates just run `devbox up`.

- Docker-in-Docker by default: Build and run containers inside your env without extra config.

- Host-friendly: Edit code directly on your machine; the container handles the runtime.

- Templates for quick starts: Built-ins for Python, Node.js, Go, web dev, etc.

- Advanced options: Port mapping, env vars, resource limits, and even mounting your dotfiles.

It's FOSS (MIT license), Linux-focused (Debian/Ubuntu, or WSL2 on Windows), and super easy to install: `curl -fsSL https://devbox.ar0.eu/install.sh | bash`.

Check out the launch page and docs at https://devbox.ar0.eu, or the repo at https://github.com/itzCozi/devbox. I'd love some feedback, stars, or contributions to help grow this into a solid community tool!