frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Maintaining a Music Library, Ten Years On

https://brianschrader.com/archive/maintaining-a-music-library-ten-years-on/
1•sonicrocketman•34s ago•0 comments

The Julius Learning Sub Agent

https://julius-d061c216.mintlify.dev/docs/data-connectors/learning-system
1•zachperkel•1m ago•0 comments

Don't use us-east-1, or 'Why didn't ngrok go down in last week's AWS outage?'

https://ngrok.com/blog/dont-use-us-east-1/
1•lbrito•2m ago•0 comments

China's era of rapid oil fuels growth appears to be at an end

https://www.iea.org/commentaries/oil-demand-for-fuels-in-china-has-reached-a-plateau
1•JumpCrisscross•2m ago•0 comments

Chibi Izumi: phased DAG-planning dependency injection for Python

https://github.com/7mind/izumi-chibi-py
1•pshirshov•5m ago•0 comments

Thoughts on Cursor 2.0 and Cursor Compose

https://simonwillison.net/2025/Oct/29/cursor-composer/
2•azhenley•6m ago•0 comments

Writing an LLM from scratch, part 25 – instruction fine-tuning

https://www.gilesthomas.com/2025/10/llm-from-scratch-25-instruction-fine-tuning
1•gpjt•7m ago•0 comments

TheWhisper: High-Performance Speech-to-Text

https://github.com/TheStageAI/TheWhisper
2•ashvardanian•7m ago•0 comments

Why Foundation Models in Pathology Are Failing

https://rewire.it/blog/why-foundation-models-in-pathology-are-failing-and-what-comes-next/
2•timini•8m ago•0 comments

Shiraoi: Where the first arrows of the last war fell (2009)

https://spikejapan.wordpress.com/2009/09/26/373/
1•oregoncurtis•9m ago•0 comments

Google delivered their first-ever $100B quarter

https://twitter.com/sundarpichai/status/1983627221425156144
2•amrrs•14m ago•1 comments

France Wants a Bitcoin Reserve, to Buy 2% of Bitcoin Supply

https://bitcoinmagazine.com/news/france-proposes-national-bitcoin-reserve
1•janandonly•14m ago•0 comments

Michigan startup transforms brewery waste into revenue streams

https://www.mlive.com/news/kalamazoo/2025/10/michigan-startup-transforms-brewery-waste-into-reven...
1•rmason•16m ago•0 comments

RustyFlow: LLM built on pure Rust language

https://github.com/cekim7/RustyFlow
1•cekim7•16m ago•1 comments

The AI divide roiling video-game giant Electronic Arts

https://www.businessinsider.com/inside-ai-divide-roiling-video-game-giant-electronic-arts-2025-10
4•rwmj•17m ago•2 comments

Business Services Will Transform Affordable Private Schools

https://medium.com/ai-in-education-flourish-style/business-services-will-transform-affordable-pri...
1•rmason•17m ago•0 comments

Backpressure in Distributed Systems

https://blog.pranshu-raj.me/posts/backpressure/
4•andection•17m ago•0 comments

What's wrong with Agile Frameworks (2019)

https://yusufaytas.com/whats-wrong-with-agile-frameworks/
5•richardbrown•20m ago•0 comments

Claude Skills, anywhere: making them first-class in Codex CLI

https://www.robert-glaser.de/claude-skills-in-codex-cli/
2•youngbrioche•21m ago•0 comments

Fast frequency reconstruction using DL for event recognition in ring laser data

https://arxiv.org/abs/2510.03325
1•PaulHoule•22m ago•0 comments

One mountain town hopes AI can help it fight wildfires

https://www.theverge.com/report/809348/ai-fire-detection-vail-hpe-smart-city-platform
1•fleahunter•23m ago•0 comments

It Looks Like a Desert, but It Has Lakes

https://www.youtube.com/watch?v=biGJ_5t30Lk
1•ijidak•24m ago•0 comments

Adding Customizable Frame Contrast to KDE Plasma

https://akselmo.dev/posts/frame-contrast-settings/
1•todsacerdoti•24m ago•0 comments

Built a new open-source sandbox that can run locally

3•tmclemore•26m ago•0 comments

Stories I will not write

https://www.lord-enki.net/stories.html
1•flancian•26m ago•0 comments

Developing a web server with C and FastCGI

https://jsloop.net/2025/10/27/developing-a-web-server-with-c-and-fastcgi
2•todsacerdoti•29m ago•0 comments

Defiance.org

https://www.defiance.org
8•alwillis•32m ago•0 comments

Building Production Apps with Deno Fresh 2

https://brettchalupa.com/blog/building-with-deno-fresh-2
1•brettcodes•33m ago•1 comments

How U.S. Billionaires Stack Up with the Rest of the World

https://www.wsj.com/business/billionaire-wealth-us-world-comparison-0120988a
2•bookofjoe•34m ago•4 comments

Apple: Pico-Banana-400K: A Large-Scale Dataset for Text-Guided Image Editing

https://www.arxiv.org/pdf/2510.19808
2•7777777phil•36m ago•0 comments
Open in hackernews

Ask HN: Thoughts on /etc/hosts instead of DNS for production applications?

3•notepad0x90•2h ago
Hi HN,

"It's always DNS" is a theme we're all familiar with when it comes to outages. I understand why DNS is critical for most users. But for applications that are managed/deployed using an "Infrastructure as Code" system, where changes can, and should always be pushed in a way that treats the changes the same way code changes are treated (Devops and all that), is there any harm with using /etc/hosts files everywhere?

That way name-to-ip association changes benefit from IaC, and DNS related instabilities are minimized. Of course, I am assuming the name-to-ip association is under the control of the system's engineers to begin with, for every other use case DNS can and should still be used.

Why aren't cloud providers and FAANGs doing this already, where saving costs by eliminating things like DNS request traffic and CPU cycles is encouraged?

Comments

JohnFen•1h ago
That's how it was done on the internet before DNS was developed. It's also how I still do it for a lot of the machines on my home network. As you note, it's faster and reduces network traffic.

You do give up some good stuff, though. Load-balancing can be more tricky, for instance. And if any of the machines change their IP addresses, or you add new machines to the network, then you have to distribute a new hosts file to all of the machines that aren't using DNS.

notepad0x90•1h ago
> And if any of the machines change their IP addresses, or you add new machines to the network

That should (TM) only happen as part of your IaC process anyways, the code/task you have that changes the IP should also change the hosts files everywhere.