frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ukraine hits Moscow refinery again

https://www.reuters.com/world/europe/russia-attacks-kyiv-with-missiles-local-authorities-say-2026...
1•JumpCrisscross•3m ago•0 comments

Show HN: Automatically Validate Python Packages

https://pypi.org/project/validatedata/
1•EdwardK1•6m ago•1 comments

Maslul – Smart LLM router – one call, the right model

https://github.com/iliatankelevich/maslul
1•iliatankelevich•9m ago•0 comments

I Hate Compilers

https://xeiaso.net/notes/2026/anubis-wasm-vendor-binary/
7•xena•16m ago•0 comments

Introducing Vercel Connect

https://vercel.com/blog/introducing-vercel-connect
3•MaxLeiter•17m ago•0 comments

The Teachers Getting $50k Bonuses Thanks to a Meta Data Center

https://www.wsj.com/us-news/education/the-teachers-getting-50-000-bonuses-thanks-to-a-massive-met...
3•tzury•18m ago•0 comments

Cursor and SpaceX: In search of a complete loop

https://kwokchain.com/2026/04/23/cursor-and-spacex-in-search-of-a-complete-loop/
3•jxmorris12•20m ago•0 comments

SF landlord killed tenant to clear Sunset home for sale, lawsuit alleges

https://sfstandard.com/2026/06/17/lawsuit-alleges-sf-landlord-killed-tenant-clear-home-sale/
3•arkadiyt•22m ago•0 comments

Ask HN: I miss Fable, anyone else does?

2•vrinda13•22m ago•0 comments

Amazon S3 Annotations

https://aws.amazon.com/blogs/aws/amazon-s3-annotations-attach-rich-queryable-context-directly-to-...
3•jacobwg•23m ago•0 comments

Ask HN: What's a prompt you've written that you're genuinely proud of?

4•akashwadhwani35•28m ago•1 comments

Show HN: Attagram, a tiny printer that gives kids a magical daily digest

https://www.attagram.com/
3•mvkel•30m ago•1 comments

Eve from Vercel

https://vercel.com/eve
4•MehrdadKhnzd•34m ago•1 comments

Bet on Centaurs

https://ajkprojects.com/bet-on-centaurs.html
2•ashleynewman•39m ago•0 comments

The Leading Deepfake Expert No Longer Trusts His Own Eyes

https://www.nytimes.com/2026/06/14/us/ai-deepfake-hany-farid.html
2•gmargari•42m ago•1 comments

Sigil – tamper-evident audit and signed scopes for LLM prompts

https://github.com/mr-gl00m/sigil
2•mr_gl00m•45m ago•0 comments

GitSwitcher – a macOS menu bar app for switching Git identities

https://www.botworker.org/
1•easonxia•48m ago•0 comments

Vulnerability Disclosure: Stealing Emails via Firefox's AI Features

https://insinuator.net/2026/06/vulnerability-disclosure-stealing-emails-via-firefoxs-ai-features/
5•_____k•49m ago•1 comments

Show HN: I built a tool which turns any website into promo video in minutes

https://www.clickcast.tech/
1•modulusme•52m ago•1 comments

An event-driven AI pipeline using FastAPI, Redpanda, and Docker

https://github.com/Infodatamatrix/AIKafkaPipelineDemo
1•infodatamatrix•52m ago•0 comments

Cervical cancer mortality trends following HPV vaccination in England, 2001–24

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)00918-9/fulltext
3•asplake•58m ago•1 comments

BBC to axe Radio 4's The World Tonight after more than 50 years

https://www.theguardian.com/media/2026/jun/17/bbc-boss-compulsory-redundancies-cuts
7•mellosouls•1h ago•2 comments

YaFF – High-performance C++ serialization library

https://github.com/yandex/yaff
1•Hixon10•1h ago•0 comments

The Next Computing Revolution May Come from Stacking Chips Like Skyscrapers

https://scitechdaily.com/the-next-computing-revolution-may-come-from-stacking-chips-like-skyscrap...
1•g-b-r•1h ago•0 comments

'Most famous tree in the world': Sherwood Forest's 1000-year-old Major oak dies

https://www.theguardian.com/environment/2026/jun/18/most-famous-tree-world-sherwood-forest-ancien...
9•mellosouls•1h ago•0 comments

GLM-5.2 is probably the most powerful text-only open weights LLM

https://simonwillison.net/2026/Jun/17/glm-52/
4•lumpa•1h ago•0 comments

Simpler, older version of Stonehenge found three miles from famous site

https://www.bbc.co.uk/news/articles/clyxw8550y8o
3•mellosouls•1h ago•2 comments

Interesting Google AI Results

https://www.google.com/search?q=nvm
2•throwaway_7678•1h ago•2 comments

SteamOS Linux 3.8 released as stable

https://store.steampowered.com/news/app/1675200/view/697641379212298072
25•jrepinc•1h ago•1 comments

Privacy-Preserving Age Verification–and Its Limitations [pdf]

https://www.cs.columbia.edu/~smb/papers/age-verify.pdf
1•wmf•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?