frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Reinforcement learning towards broadly and persistently beneficial models

https://alignment.openai.com/beneficial-rl/
1•jawiggins•1m ago•0 comments

Hackers Found a Back Door into the American Living Room

https://www.wsj.com/tech/cybersecurity/how-hackers-found-a-back-door-into-the-american-living-roo...
1•rawgabbit•2m ago•0 comments

Connecting Peripherals to Atari 8-bit Computers

https://www.goto10retro.com/p/connecting-peripherals-to-atari-8
1•rbanffy•2m ago•0 comments

All Tomorrow's Parties

https://ethanmarcotte.com/wrote/all-tomorrows-parties/
1•wassimans•3m ago•0 comments

CEOs: How to Not Screw Up Your AI Memo

https://www.callercallsback.com/p/ceos-heres-how-to-not-screw-up-your
1•ohjeez•6m ago•0 comments

Transgenic hookworm secretes anti-tetrodotoxin human single chain antibody

https://www.nature.com/articles/s41467-026-73447-9
2•phront•9m ago•0 comments

Netflix Viewing Activity

https://www.netflix.com/login?nextpage=https%3A%2F%2Fwww.netflix.com%2Fviewingactivity
1•meken•10m ago•0 comments

Setting Up a New Windows Laptop in 2026

https://matthewquerzoli.com/blog/18-06-2026-setting-up-a-new-windows-laptop-in-2026
1•Quiza12•11m ago•1 comments

Zero-Touch OAuth for MCP

https://blog.modelcontextprotocol.io/posts/enterprise-managed-auth/
1•niyikiza•13m ago•0 comments

The software industry: annealing, but wrong

https://apenwarr.ca/log/20260531
1•sebg•14m ago•0 comments

SubQ – a sub-quadratic LLM built for multi-million token reasoning

https://subq.ai/
2•modinfo•14m ago•0 comments

Shape Suffixes – Good Coding Style

https://medium.com/@NoamShazeer/shape-suffixes-good-coding-style-f836e72e24fd
1•sebg•17m ago•0 comments

How will AI make moral decisions for you and me?

https://knowablemagazine.org/content/article/technology/2026/what-shapes-ai-moral-decisions
1•knowablemag•21m ago•0 comments

The ancient book of wisdom at the heart of every computer (2014)

https://www.theguardian.com/books/2014/mar/21/ancient-book-wisdom-i-ching-computer-binary-code
1•mot2ba•21m ago•0 comments

Documenting Architecture Decisions (2011)

https://www.cognitect.com/blog/2011/11/15/documenting-architecture-decisions
1•ramoz•22m ago•1 comments

Ask HN: Are companies still hiring data scientists?

1•ivaivanova•22m ago•0 comments

Show HN: Sycloop – An AI marketplace that closes multi-party barter loops

https://sycloop.com
1•HELENENDORFSKY•23m ago•0 comments

How Tool Search Works and How It Saves Tokens

https://chaliy.name/blog/how-tool-search-works/
1•chalyi•24m ago•0 comments

AI to Automate Brain Diagnoses

https://radiologyai.com/
2•DarkContinent•25m ago•0 comments

Peter Thiel is actively convincing billionaires to abandon the Giving Pledge

https://fortune.com/2026/03/16/peter-thiel-giving-pledge-billionaire-philanthropy-backlash/
3•mgh2•25m ago•0 comments

Who's Actually Running That Robot?

https://www.bostonglobe.com/2026/06/18/opinion/demo-videos-robots-autonomous/
1•johncoatesdev•28m ago•0 comments

A beautiful and parametric particles simulation

https://sand-morph.up.railway.app/flux-lab
1•echohive42•28m ago•0 comments

Show HN: Pagecord Spotlight – discover trending independent posts on Pagecord

https://pagecord.com/spotlight
2•lylo•30m ago•1 comments

SE Radio 725: Danny Yang and Sam Goldman on the Pyrefly Type Checker

https://se-radio.net/2026/06/se-radio-725-danny-yang-and-sam-goldman-on-the-pyrefly-type-checker/
1•matt_d•32m ago•0 comments

Fencing Tournament Management is Brought to 2026

https://parrypost.dev/
1•mpelli•33m ago•0 comments

Lettera, a native, refined Markdown editor for macOS

https://lettera.md/
1•FinnLobsien•36m ago•0 comments

Show HN: I built a free API cost calculator after a $340 surprise invoice

https://apicalculators.com/
1•chnbydigi•40m ago•0 comments

Preschoolers search semantic networks in broader more variable ways than adults

https://osf.io/preprints/psyarxiv/qpj6n_v2
2•sebg•41m ago•0 comments

Drug-Free Immunotherapeutic Biomimetic Nanoparticles for Treating Breast Cancer

https://pubs.acs.org/doi/10.1021/acsnano.5c18774
1•wslh•42m ago•0 comments

The Lorem Ipsum Mystery [video]

https://www.youtube.com/watch?v=kL1PDqzqhM4
1•latexr•45m ago•0 comments
Open in hackernews

Show HN: bote - A fast, modern and low-memory approach to processing a big JSON

https://github.com/jankdc/bote
3•jankdc•1h ago

Comments

jankdc•1h ago
Hi HN :)

Long time lurker here.

As the title states, I made a library to process and validate a massive JSON in Node.js where using JSON.parse() means saying hello to OOM.

It came from an unfortunate situation at work where we had no control over the data and can't change the format to something that's easy to stream. Therefore, processing it meant dealing with a high memory footprint in our pods, which I thought was a bit wasteful, since we only really needed some parts of the data and we didn't need to load the whole thing in memory. There are JSON streaming libraries available but it wasn't really to my taste (e.g. SAX-style, callbacks) and it doesn't flow how I like my code to look.

I left that job 6 months ago but the idea still lingered so after loads of mistakes with parsing, SIMD, binary encodings, FFI performance hits and general API design, I've finally arrived at something I'm proud of. I'll write a blog about the journey at some point since I think it's interesting.

It's at pre-1.0 at the moment and would really appreciate feedback. I've tried to really hard to minimize the API surface to make it simple. Please have a look.

Disclaimer:

I wrote this with the help of AI but made sure I was on the wheel before pushing code. Granted, there were times I just went LGTM like a Friday morning PR but those usually come back to bite you so I try not to.