frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Natural Independence Incentives

https://www.jefftk.com/p/natural-independence-incentives
1•luu•3m ago•0 comments

Successful first‑stage recovery of the Zhuque‑3 rocket

https://www.reddit.com/r/SpaceXLounge/comments/1vs6mqr/successful_firststage_recovery_of_the_zhuq...
2•pinewurst•9m ago•0 comments

Building high-performance flat 2D arrays in Rust (SIMD, L1 Cache)

https://developerlife.com/2026/07/14/build-high-performance-flat-2d-arrays-in-rust/
1•nazmulidris•10m ago•0 comments

Market Close data in an easy to read email

https://www.theclose.email/
2•mattmerrick•12m ago•1 comments

Show HN: MatrAIx – simulate users before reality (Survey/Chat/Web/App)

https://github.com/MatrAIx-ai/MatrAIx-Persona-8B
3•YuexingHao•13m ago•0 comments

Whistleblower Arturo Béjar leads testimony in landmark trial against Meta

https://www.npr.org/2026/08/19/nx-s1-5936648/meta-trial-arturo-bejar-whistleblower-testimony
1•newsomix9xl•14m ago•0 comments

Zuckerberg encouraged growth over child safety, ex-Meta executive testifies

https://www.reuters.com/legal/litigation/former-meta-engineer-resumes-testimony-landmark-trial-ov...
3•thm•16m ago•0 comments

Micron and the Myth of American Memory

https://www.culpium.com/p/micron-and-the-myth-of-american-memory
1•gmays•21m ago•0 comments

Do We Still Need Database Management Tools When AI Can Write SQL?

http://johnli.work/posts/do-we-still-need-database-management-tools-when-ai-can-write-sql/
1•cloudcanalx•24m ago•0 comments

Editing Text with a MIDI Controller

https://www.sharpoblunto.com/News/2026/08/19/tuning-text
1•mrsharpoblunto•24m ago•1 comments

Evaluating DeepSeek V4 Pro 0813 on Hack the Box Challenges

https://theaq.blog/2026/08/18/evaluating-deepseek-deepseek-v4-pro-0813-on-hack-the-box-challenges...
1•indigodaddy•27m ago•0 comments

The box that built globalisation

https://www.ft.com/content/b88c3466-4525-4e16-b3fe-e10e713a2025
1•thm•29m ago•0 comments

California lawmakers call for crackdown on wildfire betting

https://ktla.com/news/california/california-lawmakers-crackdown-on-wildfire-betting
2•madihaa•30m ago•0 comments

Show HN: AI agents can now safely write to your CRMs

https://www.archron.app/
1•rjimena•31m ago•0 comments

Show HN: Tempo Checker – Real-time disposable email detection API

https://tempo-checker.rami-dev.com/
1•rami-dev•34m ago•0 comments

Ask HN: How do I get Fable to acknowledge me?

2•bridgettegraham•37m ago•3 comments

How Claude's Watermark Works

https://instavm.io/blog/how-claudes-watermark-works
3•mkagenius•38m ago•0 comments

Show HN: HN Notify

https://hnnotify.org
2•jermaustin1•48m ago•0 comments

Copycat

https://en.wikipedia.org/wiki/Copycat_(software)
2•m-hodges•49m ago•0 comments

Microdramas boom in a shrinking Hollywood as studios chase a TikTok audience

https://www.reuters.com/business/media-telecom/microdramas-boom-shrinking-hollywood-studios-chase...
2•petethomas•56m ago•3 comments

Serum 2 Synthesizer plugin gets Linux support

https://synthanatomy.com/2026/08/xfer-records-serum-2-super-popular-wavetable-synth-gets-massive-...
2•thm•58m ago•0 comments

The Life and Times of Maxis, Part 3: The Sims

https://www.filfre.net/2026/08/the-life-and-times-of-maxis-part-3-the-sims/
1•doppp•1h ago•0 comments

Comparing Qwen3.8 Max and Fable 5 on UI

https://blog.kilo.ai/p/qwen38-max-just-passed-claude-fable
1•iamcoder18•1h ago•1 comments

T-Mobile 'chopped a cable' to expel Chinese hackers from its network

https://techcrunch.com/2026/08/19/t-mobile-chopped-a-cable-to-expel-chinese-hackers-from-its-netw...
3•TMWNN•1h ago•0 comments

Bongard Problems

https://matthodges.com/posts/2026-08-19-bongard-problems/
2•m-hodges•1h ago•0 comments

The Sun Never Sets on the Ant Empire (2019)

https://sqonline.ucsd.edu/2019/05/the-sun-never-sets-on-the-ant-empire/
1•thunderbong•1h ago•0 comments

I wanted to talk to a turbine, so I spent 18 years building NthDimension

https://syscon.gr/blog/20260820.html
2•ariadnep•1h ago•0 comments

The Rats Terrorizing Everyone in Gaza

https://www.thenation.com/article/world/rats-gaza-vermin-crisis/
3•petethomas•1h ago•0 comments

Ask HN: What are folks using as the storage engine for their context graphs?

1•mercurialsolo•1h ago•1 comments

Why Outdoor EV Charger Displays Are More Complicated Than They Look

https://duobond-display.com/news/display-interfaces-system-integration/521.html
2•Todorov•1h ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•1y ago

Comments

nine_k•1y ago
> Introducing the ‘packed’ data format, a binary format that allows using data as it is, without the need for a deserialisation step. A notable perk of this format is that traversals on packed trees is proven to be faster than on ‘unpacked’ trees: as the fields of data structures are inlines, there are no pointer jumps, thus making the most of the L1 cache.

That is, a "memory dump -> zero-copy memory read" of a subgraph of Haskell objects, allowing to pass such trees / subgraphs directly over a network. Slightly reminiscent of Cap'n Proto.

90s_dev•1y ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•1y ago
They mention this in the article.
spockz•1y ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•1y ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•1y ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•1y ago
> the serialised version of the data is usually bigger than its in-memory representation

I don’t think this is common. Perhaps for arrays of floats serialized as JSON or something. But I can’t think of a case where binary serialization is bigger. Data types like maps are necessarily larger in memory to support fast lookup and mutability.

nine_k•1y ago
I suppose all self-describing formats, like protobuf, or thrift or, well, JSON are bigger than the efficient machine representation, because they carry the schema in every message, one way or another.
IsTom•1y ago
If you use a lot of sharing in immutable data it can grow a lot when serializing. A simple pathological example would be a tree that has all left subtrees same as the right ones. It takes O(height) space in memory, but O(2^height) when serialized.
gitroom•1y ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•1y ago
This was very well written. Excellent article!
NetOpWibby•1y ago
Is this like MessagePack for Haskell?