frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Medical AI scores high on exams but stumbles on real patient care

https://www.medicaleconomics.com/view/medical-ai-scores-high-on-exams-but-stumbles-on-real-patien...
1•SVI•2m ago•0 comments

The Great Intermediary Panic

https://www.minid.net/2013/1/23/the-great-intermediary-panic
1•meerita•3m ago•0 comments

The Algorithm California Said Didn't Exist

https://reclaimthenet.org/the-algorithm-california-said-didnt-exist
1•Cider9986•4m ago•0 comments

Longevity medicine's do-or-die moment

https://www.axios.com/2026/06/18/longevity-medicine-critical-moment
1•evo_9•4m ago•0 comments

Distro Fighter

https://distrofighter.com/
1•Wingy•4m ago•0 comments

Show HN: Self-Hostable Company Brain

https://www.npmjs.com/package/@connectai/selfhost
1•jthorare•5m ago•1 comments

Oligarchy is worse than you think

https://www.youtube.com/watch?v=4S25FfbFw4M
1•penguin_booze•5m ago•0 comments

Self-Improving Agents Still Need Humans

https://goose-docs.ai/blog/2026/06/17/self-improving-agents-need-humans/
1•dosinga•5m ago•0 comments

Why Meta Suddenly Loves the Kids Online Safety Act

https://reclaimthenet.org/why-meta-suddenly-loves-the-kids-online-safety-act
3•Cider9986•6m ago•0 comments

The Increasing Scarcity of Helium [2015]

https://priceonomics.com/the-increasing-scarcity-of-helium/
2•bookofjoe•7m ago•0 comments

Show HN: Pagecast – Publish Markdown/HTML Reports to Cloudflare Pages

https://github.com/Amal-David/pagecast
2•amaldavid•8m ago•0 comments

Mars Is Spending Millions to Give M&M's a MAHA Makeover

https://www.wsj.com/business/mars-is-spending-millions-to-give-m-ms-a-maha-makeover-2fa1bb88
1•Cider9986•8m ago•0 comments

Software is the only path to hardware

https://www.trackr.bar/
1•jonaskamner•8m ago•0 comments

Don't Blame Plunging Birthrates on Phones

https://www.nytimes.com/2026/06/18/opinion/iphones-birthrate-decline.html
1•xnx•9m ago•1 comments

The Interplanetary Sciences Program

https://www.relativityspace.com/interplanetary
1•amir•9m ago•0 comments

You don't understand, prices can't go down

https://geohot.github.io//blog/jekyll/update/2026/06/18/prices-cant-go-down.html
1•greyface-•10m ago•1 comments

Surprising Usefulness of Amazon's Quick Desktop

https://www.theregister.com/ai-and-ml/2026/06/18/committed-skeptic-finds-himself-warming-to-new-a...
1•macleginn•10m ago•0 comments

GSA Auctions

https://gsaauctions.gov/auctions/home
1•skogstokig•10m ago•0 comments

Intro to Peridot

https://www.indiehackers.com/post/intro-to-peridot-562XB6ljULDoYc99KTG2
1•mawrtini•11m ago•0 comments

Squidbleed (CVE-2026-47729)

https://blog.calif.io/p/squidbleed-cve-2026-47729
4•quyleanh•12m ago•0 comments

Stop making swap partitions–use swap files instead

https://gist.github.com/joshenders/c4960cec9c63a7b7d68ffa9543356c43
2•jenders•14m ago•0 comments

Lambda vs. Step Functions Execution Time

https://builder.aws.com
1•mlhpdx•15m ago•0 comments

Show HN: Browser calls with live translation in the speaker's cloned voice

https://whisperbridge.app
1•priyanshu-mit•16m ago•0 comments

The smartphone's days are numbered. Meet the device that could come next

https://fortune.com/2026/05/18/smartphones-days-numbered-ai-wearable-devices/
2•rmason•18m ago•1 comments

Eltif Reporting in Five Languages

https://igorsabol.ch/writing/eltif-five-languages/
1•mstkllah•19m ago•0 comments

Show HN: I Made TTSC, TypeScript v7 ToolChain for Plugins Like Typia

https://github.com/samchon/ttsc
1•autobe•19m ago•0 comments

Show HN: Prompt Fusion Using Dags and OpenRouter

https://twitter.com/MarcioK/status/2066975451193454726
1•Marciok•20m ago•0 comments

Glados for Claude

https://github.com/prosecutorpotato/glados-claude-plugin
2•Divisibly3•22m ago•0 comments

How Aspiring Autocrats Exit

https://www.journalofdemocracy.org/online-exclusive/how-aspiring-autocrats-exit/
1•mooreds•22m ago•0 comments

Show HN: After years as data engineer, I built the tool I wish my colleagues had

2•salterisp•23m 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?