frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A History of Software Publishing Corporation

https://www.computerchronicles.blog/transcript-a-history-of-software-publishing-corporation/
1•arbayi•1m ago•0 comments

ATProto Permissioned Data Proposal Draft

https://github.com/bluesky-social/proposals/pull/94
2•danabramov•1m ago•0 comments

A modern CLI for Java projects

https://github.com/sachahjkl/jav
1•sachahjkl•2m ago•1 comments

I automated my job (and it made me a better leader)

https://github.blog/developer-skills/github/i-automated-my-job-and-it-made-me-a-better-leader/
2•chmaynard•3m ago•0 comments

Linux Foundation Is Pursuing Trusted Identity Infrastructure for AI Agents

https://www.linuxfoundation.org/press/linux-foundation-announces-intent-to-launch-agent-name-serv...
1•agulaya24•3m ago•0 comments

How to find AI-conservative companies to work for?

1•tossitawayplz•5m ago•1 comments

German Rail Service Suspended Due to Radio Interference

https://www.bluewin.ch/en/news/german-rail-service-suspended-due-to-radio-interference-li.3295297
12•sva_•11m ago•0 comments

Old Man's Journey

https://store.steampowered.com/app/581270/Old_Mans_Journey/
1•doener•12m ago•0 comments

All train services in Germany halted after train radio communications disruption

https://english.news.cn/20260624/65f1b6192cd947e28849776a5aef05c6/c.html
16•sva_•16m ago•3 comments

Lobu: Build AI teammates that watch and act

https://lobu.ai/
1•handfuloflight•19m ago•0 comments

Expert-aware quantisation: near-Q4 quality at near-Q2 size?

https://martinalderson.com/posts/expert-aware-quantisation/
1•martinald•19m ago•0 comments

How to Increase Your Luck Surface Area (2010)

https://www.codusoperandi.com/posts/increasing-your-luck-surface-area
2•chistev•21m ago•0 comments

No AI Co-Authors. A Manifesto

https://no-ai-coauthors.dev
7•zethraeus•21m ago•3 comments

Key activities for sustainable engineering team

https://blog.incrementalforgetting.tech/p/key-activities-for-sustainable-engineering
2•mooreds•21m ago•0 comments

Closing the Loop: What to Do After a Design Critique Ends

https://www.nngroup.com/articles/after-design-critique/
1•mooreds•22m ago•0 comments

Pg_graphwright: A Postgres knowledge-graph index that inherits row-level-SEC

https://github.com/hoofader/pg_graphwright
2•hoofader•22m ago•0 comments

A new novel parser architecture is being put into Oxc (Reported 2-3x Speedup)

https://twitter.com/boshen_c/status/2069379302987014616
1•wseagar•26m ago•0 comments

Memiry Check-In Agents

https://memiry.com
1•sammykao•26m ago•0 comments

Svoxx.com

https://svoxx.com/int/en
1•kilincarslan•27m ago•1 comments

Brussels Clears €76M German Chip Subsidy for Munich

https://fivetakes.news/eu-approves-76-million-german-state-aid-for-quantumdiamonds-gmbhs-munich-s...
1•mmeirovich•28m ago•0 comments

4 years as a content writer working with AI

https://www.getibex.com/blog/4-years-as-a-content-writer-working-with-ai
1•f3b5•28m ago•1 comments

When is an AI agent's approval prompt a security boundary?

https://gist.github.com/NikosRig/b4330ceb780fe22bf3c14f38d7d90795
1•nrig•29m ago•0 comments

Halvar's Guide to Entrepreneurship

https://thomasdullien.github.io/guides/entrepreneurship/
1•Darkstryder•30m ago•0 comments

Visualizing multi-dimensional array shapes recursively

https://arrayvis.netlify.app/
1•biraj-rocks•30m ago•1 comments

Anthropic gives Claude a permanent seat in your Slack channels

https://thenewstack.io/anthropic-claude-tag-slack/
1•r_singh•31m ago•1 comments

SovietRxiv: Rediscovering the Soviet scientific archive, in English

https://sovietrxiv.org
1•SUPERustam•33m ago•0 comments

UN commission of inquiry says Israel committing genocide by targeting children

https://www.bbc.com/news/articles/c0jy96w6pw2o
3•lorecore•34m ago•3 comments

New car registrations: +4% year-to-date; battery-electric 20% market share [pdf]

https://www.acea.auto/files/Press_release_car_registrations_May_2026.pdf
1•haunter•34m ago•1 comments

Quartz Crystals: The Heartbeat of Our Digital World

https://www.arkcrystals.com/blogs/articles/quartz-crystals-the-heartbeat-of-our-digital-world
1•andrewstuart•35m ago•0 comments

Show HN: Foundation models that predict patient response in clinical trials

https://atlasdiscovery.bio/clinical-trial-response-prediction
1•shaamilkarim•37m 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?