frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Ecosystem

https://claude.com/ecosystem
1•geoffbp•41s ago•0 comments

GPT-5.6 Preview System Card

https://deploymentsafety.openai.com/gpt-5-6-preview
1•e2e4•1m ago•0 comments

A German AI publisher rewrites Hacker News posts and strips the sources

https://christopher-helm.com/die-dunkle-seite-der-ki-im-journalismus-1-500-ki-texte-im-eilverfahr...
1•chelm•1m ago•0 comments

GitHub DeepSeek-AI/DeepSpec

https://github.com/deepseek-ai/DeepSpec
1•geoffbp•1m ago•0 comments

A Farmer Arrested for Going 5 Seconds over His Time Limit at Data Center Meeting

https://www.gadgetreview.com/arrest-him-the-moment-police-handcuffed-a-farmer-for-going-5-seconds...
1•spenvo•1m ago•0 comments

Recursive self improvement for human skills

1•rando77•3m ago•0 comments

DIY your own open-source Robot Vacuum

https://twitter.com/dfrobotcn/status/2070852143964139763
1•Noghartt•7m ago•0 comments

Voting with Feet

https://maxmautner.com/2026/06/25/voting-with-feet.html
1•mslate•7m ago•0 comments

Videogenr.com

https://videogenr.com/en
1•kilincarslan•8m ago•1 comments

Open handoff: Thought Tree, a markup/spec idea for modular LLM workflows

https://github.com/RobertBateman/thoughttree-framework
1•xavier1764•11m ago•0 comments

Quora and mass AI poisoning: An organized crime AI spam ring

https://tacit.livejournal.com/687903.html
2•AndrewDucker•14m ago•0 comments

US Government allows Anthropic limited release of Mythos/Fable models

https://www.cnn.com/2026/06/26/tech/anthropic-mythos-release
1•alonp99•21m ago•0 comments

United Auto Workers Vote to Divest from Israel in Historic Victory – Truthout

https://truthout.org/articles/united-auto-workers-vote-to-divest-from-israel-in-historic-victory/
2•abdelhousni•27m ago•1 comments

Show HN: DiagramIDE – Diagrams as Source Files

https://diagramide.axk.sh
1•xlii•30m ago•0 comments

Ask HN: Why did you learn Chinese?

3•alonsovm44•32m ago•0 comments

macOS Tahoe update breaks using external display in clamshell mode

https://discussions.apple.com/thread/256305994?sortBy=rank
2•paulbjensen•33m ago•2 comments

More than a month into DR Congo Ebola outbreak, doctors warn epidemic will last

https://www.france24.com/en/africa/20260626-dr-congo-patients-cured-doctors-warn-outbreak-far-con...
1•mooreds•35m ago•0 comments

Show HN: As Music Theory – Test your sheet music sight reading speed

https://www.asmusictheory.com/tools/sight-reading-speed
1•gb2d_hn•36m ago•0 comments

'Aren't the Organs a Silver Lining?'

https://longreads.com/2026/05/19/fentanyl-opioids-organ-donation-arizona-oneill/
2•mooreds•37m ago•0 comments

2026 April Unemployment Rate by US Metropolitan Statistical Area

https://fred.stlouisfed.org/graph/?m=1wm8j
1•mooreds•39m ago•0 comments

FieldStation42: Broadcast and Cable TV Simulator

https://github.com/shane-mason/FieldStation42
1•klaussilveira•41m ago•0 comments

The Intergalactic Fermi Problem

https://www.centauri-dreams.org/2026/06/24/the-intergalactic-fermi-problem/
1•olvy0•44m ago•0 comments

Naples Outpaces Milan as Southern Italy Drives Economic Growth

https://www.bloomberg.com/news/features/2026-06-26/apple-s-naples-outpost-boosts-southern-italy-s...
2•theanonymousone•45m ago•0 comments

Wikipedia's Cofounder Has Been Banned from Wikipedia

https://www.gadgetreview.com/wikipedias-cofounder-has-been-banned-from-wikipedia
5•RickJWagner•46m ago•0 comments

Show HN: BootProof – the run button that can't lie (boots any repo, signs proof)

https://github.com/bootproof/bootproof
1•bootproof•46m ago•0 comments

EU Commission HQ forced to shut down air-conditioning amid heatwave

https://www.politico.eu/article/eu-commission-heatwave-hq-forced-shut-down-air-conditioning-europe/
1•bushwart•47m ago•0 comments

Spinel on Rails

https://intertwingly.net/blog/2026/06/19/Spinel-on-Rails.html
1•bornelsewhere•50m ago•0 comments

Multifolio – Take Back Your Phone

https://multifolio.en.uptodown.com/android
1•Scalios•51m ago•0 comments

Code Is Free Speech

https://hoffmang9.github.io/free-speech/the-history-code-is-free-speech.html
3•tehlike•53m ago•0 comments

We took all of GitLab and turned it into a Graph DB

https://twitter.com/michaelangelo_x/status/2068091594159333538
2•michaelangeloio•54m 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?