frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

CRusTTY: A pedagogical C interpreter with time-travel debugging capabilities

https://github.com/aicheye/crustty
1•varun_ch•13s ago•0 comments

SigilJS – Runtime Types for JavaScript

https://github.com/antistructured/sigiljs
1•antistructured•1m ago•1 comments

The Vibe to Production Pipeline

https://bandarra.me/posts/vibe-to-production
1•andreban•3m ago•0 comments

The Evolution of Lego Sorting (2001)

https://news.lugnet.com/storage/?n=707
1•fifilura•3m ago•0 comments

Rails Testing on Autopilot: Building an Agent That Writes What Developers Won't

https://mistral.ai/news/rails-testing-on-autopilot-building-an-agent-that-writes-what-developers-...
1•pember•3m ago•0 comments

Distributed Python dataframes and machine learning with Livebook and Elixir

https://dashbit.co/blog/distributed-python-livebook
1•tosh•4m ago•0 comments

I emailed 70 consulting partners. No replies. What it taught me

https://willem720055.substack.com/p/i-emailed-70-consulting-partners
2•anqer•4m ago•1 comments

Hotpatching goes default in Windows Autopatch whether you like it or not

https://www.theregister.com/2026/03/11/microsoft_hotpatching/
1•Bender•5m ago•0 comments

ICO fines Police Scotland over data-sharing debacle in gross misconduct case

https://www.theregister.com/2026/03/11/ico_fines_police_scotland_over/
3•Bender•6m ago•0 comments

Autopen

https://en.wikipedia.org/wiki/Autopen
1•thunderbong•7m ago•0 comments

Idempotent Slices with Applications to Code-Size Reduction

https://arxiv.org/abs/2603.09726
1•matt_d•9m ago•0 comments

A Message to Our Customers

https://www.stryker.com/us/en/about/news/2026/a-message-to-our-customers-03-2026.html
3•LostMyLogin•10m ago•0 comments

Binance sues WSJ, panicked by gov't probes into sanctioned crypto transfers

https://arstechnica.com/tech-policy/2026/03/binance-sues-wsj-over-report-sparking-government-prob...
4•xoa•11m ago•0 comments

Is launching a product on here a thing

3•charliewehan10•12m ago•2 comments

Iran tells world to get ready for oil at $200 a barrel

https://www.reuters.com/world/middle-east/combatants-mideast-war-trade-more-air-strikes-iran-clam...
4•geox•13m ago•1 comments

Apple Studio Displays have 128 GB of storage

https://www.macrumors.com/2026/03/11/studio-display-internal-storage-128gb/
2•dabinat•13m ago•0 comments

Designing AI agents to resist prompt injection

https://openai.com/index/designing-agents-to-resist-prompt-injection
1•surprisetalk•13m ago•0 comments

Code reviews do find bugs

https://entropicthoughts.com/code-reviews-do-find-bugs
1•fanf2•16m ago•0 comments

Anthropic GAAP revenue only $5B -not $19B

https://www.reuters.com/commentary/breakingviews/anthropic-gives-lesson-ai-revenue-hallucination-...
1•GorbachevyChase•16m ago•0 comments

The Anthropocentric Blind Spot

https://langmodelle.substack.com/p/the-anthropocentric-blind-spot
1•datanality•18m ago•0 comments

Show HN: Hyper – A stupidly non-corporate voice AI app for IRL conversations

https://apps.apple.com/us/app/hyper-ai-for-real-talk/id6760206718
7•shainvs•18m ago•1 comments

//go:fix inline and the source-level inliner

https://go.dev/blog/inliner
2•commotionfever•18m ago•0 comments

Rust is slowly but surely eating PostgreSQL: Deep dive into Neon, and more

https://kerkour.com/rust-eating-postgres
3•amatheus•18m ago•0 comments

Industry reports point to potential farm waste energy boom amid federal scrutiny

https://www.thenewlede.org/2026/02/biogas-rng-farm-digester-potential/
1•PaulHoule•18m ago•0 comments

Guess I was wrong about Kubernetes. Blame geopolitics

https://www.robinosborne.co.uk/2026/03/10/guess-i-was-wrong-about-kubernetes-blame-geopolitics/
2•donutshop•19m ago•0 comments

OpenRCA benchmark – Improving Claude's root cause analysis accuracy by 12 pp

https://relvy.ai/blog/relvy-improves-claude-accuracy-by-12pp-openrca-benchmark
5•behat•19m ago•0 comments

Show HN: Social Media, Reset

3•novateg•20m ago•0 comments

'Black rain' in Tehran – what are the health effects?

https://www.nature.com/articles/d41586-026-00800-9
3•saikatsg•21m ago•0 comments

You Can't Waymo to Tahoe – Yet

https://sfstandard.com/2026/03/10/can-t-waymo-tahoe/
2•standardUser•21m ago•0 comments

PostTrainBench: How well can AI agents post-train language models?

https://posttrainbench.thoughtfullab.com/
2•pr337h4m•21m ago•0 comments
Open in hackernews

How to Compile Your DB Migrations into Your Binary Using Goose

https://playtechnique.io/blog/compiled-goose-migrations.html
2•gwynforthewyn•9mo ago

Comments

gwynforthewyn•9mo ago
Figuring out the technique for this involved reading a number of github issues, so I tried to make it as simple as possible to see what the 2 step process is to be able to compile your migrations.

The benefit of this approach with migrations is being able to use golang itself to figure out if a migration should run e.g. you can check an environment variable to see if you're in the dev environment and if you are then you could run a migration to populate your seed data.