frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mythos escapes a secure sandbox [in test]

https://twitter.com/a_karvonen/status/2041589039955112119
1•marojejian•16s ago•1 comments

Llambada – make vibe-coded mini-apps and earn when paid users use them

https://www.llambada.com/
1•roody_wurlitzer•3m ago•0 comments

Apollo 11's journey to the moon, annotated [video]

https://www.youtube.com/watch?v=OCjhCL2iqlQ
1•lopespm•3m ago•0 comments

USD Purchasing Power in Real Time Since 2000

https://onedollar.today/
1•traviswingo•4m ago•0 comments

From Iran – an invitation to physicists to look at my paper about Alpha

https://www.researchgate.net/publication/396352740_Alpha_-_Emergent_The_Fine-Structure_Constant
3•pajuhaan•8m ago•1 comments

Scientists invented a fake disease. AI told people it was real

https://www.nature.com/articles/d41586-026-01100-y
1•EA-3167•8m ago•0 comments

What the heck is wrong with our AI overlords?

https://arstechnica.com/tech-policy/2026/04/what-the-heck-is-wrong-with-our-ai-overlords/
1•kyrofa•8m ago•0 comments

FundaAI: Building kids in Africa to engineers [video]

https://www.youtube.com/watch?v=XSUnIsMqUD8
1•emms21•9m ago•1 comments

Geo-Strategy #1: Iran's Strategy Matrix [video]

https://www.youtube.com/watch?v=xEEpOxqdU5E
1•bigyabai•11m ago•0 comments

Interpretability Findings on Claude Mythos Preview

https://twitter.com/jack_w_lindsey/status/2041588505701388648
2•jbegley•16m ago•0 comments

Sports bets on prediction markets ruled to be "swaps," exempt from state laws

https://arstechnica.com/tech-policy/2026/04/sports-bets-on-prediction-markets-ruled-to-be-swaps-e...
3•nradov•17m ago•0 comments

GPT 5.4 in practice – Stinks?

1•sjt-at-rev•18m ago•0 comments

Do the math: How much Trump's Iran war will cost you at the pump

https://responsiblestatecraft.org/gas-prices-iran-war/
2•j_levy187•19m ago•0 comments

Insights on Software Engineering, AI and DevOps Job Openings – April 2026

https://corvi.careers/blog/global_software-engineering_jobs_april_2026/
1•sp1982•19m ago•0 comments

A free model beats Opus but the method is locked behind 13 psychological trials

https://github.com/NEGUMai/katoy-game
1•mugenai•19m ago•0 comments

RnBulkTools – Free Bulk Background Removal with API

https://rnbulktools.top/
1•RaduNerd•20m ago•1 comments

Show HN: Alap – turn any link into a menu of destinations

https://alap.info
1•buckydigital•22m ago•0 comments

Proxypunch: P2P Gaming Without Port Forwarding

https://github.com/delthas/proxypunch
1•RandomGerm4n•22m ago•0 comments

Nedster – An open-source, local-first coding agent that verifies its own work

https://github.com/unrealumanga/Nedster
2•h2u2•25m ago•1 comments

Move Detroit

https://www.movedetroit.com/program
3•rmason•26m ago•0 comments

Lichess and Take Take Take Sign Cooperation Agreement

https://lichess.org/@/Lichess/blog/lichess-and-take-take-take-sign-cooperation-agreement/DZS0S0Dy
1•hyperbovine•29m ago•0 comments

Mcpnest

https://www.mcpnest.io/
1•malasartes•34m ago•1 comments

Bitcoin and Quantum Computing

https://nehanarula.org/2026/04/03/bitcoin-and-quantum-computing.html
16•nehan•35m ago•7 comments

Show HN: Custom Podcast Summarizer

1•jprorok•36m ago•0 comments

Cold Email Grader, check it out

https://getautocrm.com/tools/email-grader
1•BrendanSF•36m ago•0 comments

Death of the IDE?

https://addyo.substack.com/p/death-of-the-ide
1•robenkleene•36m ago•0 comments

Protecting against TPM interposer attacks

https://lwn.net/SubscriberLink/1064685/c29938fbf06e9d09/
1•Velocifyer•37m ago•0 comments

Anthropic's Project Glasswing sounds necessary to me

https://simonwillison.net/2026/Apr/7/project-glasswing/
5•simonw•37m ago•1 comments

The Design Index – A "Bloomberg Terminal" for Design Systems

https://thedesignindex.co/
1•prashaant•39m ago•0 comments

Social Impact Hackathon for Latinamerica

https://hack.indies.la/
1•jdiaz97•42m ago•0 comments
Open in hackernews

Hot-reload for your database schema with MooseStack

https://github.com/514-labs/moosestack
1•satyampsoni•1h ago

Comments

satyampsoni•1h ago
Frontend developers take hot-reload for granted. Edit a component, the browser updates in milliseconds. No restart, no deploy, no waiting.

Data engineers have the opposite experience. Change a schema, and you're running a migration script, restarting a connector, hoping nothing downstream breaks, manually verifying the column appeared.

Hot-reload for schemas should work like this: you edit a type definition in your IDE, and within seconds the database table has the new column, the streaming topic reflects the change, and the API validates against the updated schema. No commands. No migrations to write. No connectors to restart.

This is what moose dev does. You change a TypeScript interface, the infrastructure updates while the dev server is running. Add a field — column appears. Remove a field — migration runs. Change a type — the pipeline adjusts.

The implementation is straightforward in principle: the schema definition is the source of truth, and the runtime continuously reconciles infrastructure state against it. The interesting engineering is making reconciliation fast enough to feel like hot-reload rather than a deployment.

Would love to know your feedbacks