frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Smallest QR Code Is So Tiny It's Invisible to the Human Eye

https://www.sciencealert.com/worlds-smallest-qr-code-is-so-tiny-its-invisible-to-the-human-eye
1•rendx•38s ago•0 comments

Show HN: Foundations Chat, macOS AI chat built on Apple's local models

https://codeeverywhereca.github.io/foundations-chat/
1•coevcan•2m ago•0 comments

A curious phenomenon called 'Etak' (2024)

https://maphappenings.com/2024/04/11/story-of-etak/
1•giancarlostoro•4m ago•0 comments

The limited utility of the phrase "GNU/Linux" (2022)

https://seirdy.one/posts/2022/12/09/limited-utility-gnu-linux/
1•LorenDB•5m ago•0 comments

Show HN: Sun – Realtime voice agent for group conservation not just turn taking

https://www.getsun.io/
2•anand_pattern•6m ago•1 comments

A semantic Code Search CLI but with grep filters

https://github.com/lightonai/next-plaid
1•raphaelty•10m ago•1 comments

Swarming, spinning microrobots can manipulate their surroundings

https://news.cornell.edu/stories/2026/02/swarming-spinning-microrobots-can-manipulate-their-surro...
1•geox•18m ago•0 comments

I'm Sorry This New Artist Sucks [video]

https://www.youtube.com/watch?v=eKxNGFjyRv0
1•thunderbong•21m ago•0 comments

Show HN: I Get IT – Why My GitHub Repos, and Websites Get Zero Traction

https://useviralize.com
1•jcrosbz•22m ago•1 comments

Opponent Modeling Wins 2× Faster Than Stockfish

https://blog.lukesalamone.com/posts/winning-faster-than-stockfish/
1•salamo•23m ago•0 comments

Personal token: share equity in your lifetime upside

https://github.com/homan9/personal-token/blob/main/whitepaper.md
1•koopuluri•27m ago•0 comments

Future of Devtools and Moats

https://ravivyas.com/2026/03/01/dev-tools-and-moats
2•ravivyas•28m ago•1 comments

Piezoelectric gel to regenerate lost bone (e.g. periodontitis)

https://oralbiolife.com/
1•camebeforeagain•28m ago•1 comments

Show HN: Orcv: If tmux was built for window management on macOS in 2026

https://github.com/jasonjmcghee/orcv
1•jasonjmcghee•30m ago•1 comments

Show HN: I used LLMs to build a compression tool that beats xz on x86_64 ELFs

4•mohsen1•30m ago•3 comments

Vibe Knowing

https://idiallo.com/blog/large-language-models-make-us-feel-smarter
1•foxfired•30m ago•0 comments

How Nanotech Made an Old Leukemia Drug 22,000x Stronger

https://www.medscape.com/viewarticle/how-nanotech-made-old-leukemia-drug-22-000x-stronger-2026a10...
1•wjb3•35m ago•1 comments

Show HN: Aver – A Git-native Markdown-based tracker for knowledge setwardship

https://github.com/dentm42/aver
1•dentm42•35m ago•1 comments

AI Now Has Its Own Cursor

https://clawdcursor.com/
1•AmrDabb•38m ago•0 comments

FOMC Insight Engine: semantic search over Fed archives

https://causalityineconomics.com/fomc_archive
2•jez•39m ago•0 comments

Which State Governs the Internet's Fine Print

https://tostracker.app/analysis/governing-law
1•tldrthelaw•40m ago•0 comments

Customer Intelligence Protocol

https://github.com/Cole-Cant-Code/CIP-Customer-Intelligence-Protocol
1•ColeW•40m ago•1 comments

Show HN: YourFinanceWORKS – Open-source financial management with AI

https://www.yourfinanceworks.com
1•snowsky•40m ago•0 comments

Show HN: Leyoda – Shareable startup cards with analytics

https://leyoda.eu
1•whitehatd•42m ago•1 comments

Show HN: BeatCanvas – A browser-based demoscene visualizer for SoundCloud

https://beatcanvas.net/
1•fsrc•43m ago•1 comments

A U.S. scholarship thrills a teacher in India. Then came soul-crushing questions

https://www.npr.org/2026/03/01/g-s1-104772/teacher-india-school-patriarchy-fulbright
4•aanet•45m ago•1 comments

Most common fields of study, from 1970 to now

https://flowingdata.com/2026/02/19/fields-of-study-ranked-by-bachelors-degrees-since-1970/
3•gmays•45m ago•0 comments

Show HN: ClawShield – Open-source security proxy for AI agents (Go, eBPF)

https://github.com/SleuthCo/clawshield-public
1•sleuthco•46m ago•1 comments

Quarkdown: Markdown with Superpowers

https://quarkdown.com/
2•amichail•49m ago•0 comments

Show HN: Remoat – Control Antigravity from your phone via Telegram

https://github.com/optimistengineer/remoat
3•optimistengr•50m ago•1 comments
Open in hackernews

JSON-up: Stop scattering "if" checks for old JSON formats across your codebase

https://github.com/Nano-Collective/json-up
2•mrspence•1h ago

Comments

mrspence•1h ago
If you've ever stored JSON locally and had the schema change over time, you know the pain of trying to keep it up-to-date as your application changes. You end up with defensive checks everywhere, or data that silently breaks when the shape changes underneath you.

I've faced this problem a few times lately, so I built json-up to handle this with a migration chain. Define versioned steps with Zod schemas, and the library walks your data forward from whatever version it's at, validating at each step with full TypeScript inference.

Zero runtime deps, works with Zod v3 and v4, and three distinct error types for precise failure handling.

Have a poke around!