frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Amnesty International Marks '1,000 Hours' Of Iran's Internet Blackout

https://twitter.com/amnesty/status/2042535560816869489
1•us321•3m ago•0 comments

State Court Denies Meta's Section 230 Immunity Claim in Social Media Suit

https://www.law.com/2026/04/10/state-court-denies-metas-section-230-immunity-claim-in-social-medi...
1•1vuio0pswjnm7•3m ago•0 comments

Windows Secure Lock Screen clock may appear up to 30 seconds behind

https://support.microsoft.com/en-us/windows/secure-lock-screen-clock-may-appear-up-to-30-seconds-...
2•shscs911•4m ago•0 comments

Show HN: Whirligig

https://whirligig.live
1•idiocache•4m ago•0 comments

(MSN) Mexico is moving toward universal healthcare by 2027

https://www.msn.com/en-us/health/other/mexico-is-moving-toward-universal-healthcare-by-2027-here-...
1•SilentM68•6m ago•0 comments

Anthropic PBC Risk Assessment Report (Unredacted) [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.cand.465515/gov.uscourts.cand.465515.148.1.pdf
1•KenoFischer•6m ago•0 comments

Small Models Are Smart Enough

https://twitter.com/danveloper/status/2042685676949270724
2•m-hodges•6m ago•0 comments

Decentralized AI from Scratch (Python Tutorial) [video]

https://www.youtube.com/watch?v=zY2dAK-pMPI
1•williamtrask•10m ago•0 comments

Artemis II returns to Earth, splashdown in four hours

https://www.cbc.ca/news/science/artemisii-return-splashdown-9.7157857
2•heresie-dabord•10m ago•0 comments

Show HN: A2A Utils – a comprehensive set of utility functions for A2A servers

https://github.com/a2aproject/A2A/discussions/1738
1•benclarkeio•12m ago•0 comments

Book Review: Klara and the Sun

https://www.stephendiehl.com/posts/klara_and_the_sun/
2•ibobev•13m ago•1 comments

The Iceberg Index: Measuring Skills-Centered Exposure in the AI Economy [pdf]

https://iceberg.mit.edu/report.pdf
1•mpweiher•13m ago•0 comments

Show HN: I built a site that shows every world event you lived through

https://youdidntnotice.com/
1•lip404•13m ago•0 comments

Trump-appointed judges refuse to block Trump blacklisting of Anthropic AI tech

https://arstechnica.com/tech-policy/2026/04/trump-appointed-judges-refuse-to-block-trump-blacklis...
4•SilverElfin•14m ago•0 comments

Estimated effects of food taxes and subsidies on health, economics in Australia

https://www.sciencedirect.com/science/article/pii/S2468266726000435
1•PaulHoule•14m ago•0 comments

Interventions: Trying to train a better model in the cloud

https://www.gilesthomas.com/2026/04/llm-from-scratch-32j-interventions-trying-to-train-a-better-m...
1•ibobev•14m ago•0 comments

PCBWay sponsorship: full-size SD module for Arduino projects

https://www.colino.net/wordpress/archives/2026/04/10/pcbway-sponsorship-full-size-sd-module-for-a...
2•ibobev•15m ago•0 comments

Anthropic has just built an AI that could take down the internet

https://pauseai.substack.com/p/anthropic-has-just-built-an-ai-that
2•mofeien•15m ago•0 comments

Hikaru Nakamura Is Not a Chess Player Anymore. He Is Your Boss

https://worldchess.com/news/hikaru-nakamura-is-not-a-chess-player-anymore-he-is-your-boss
2•bmmayer1•15m ago•0 comments

Whitepaper: Physics as a Service – edge networks as deepfake detectors [pdf]

https://github.com/Berlin-West/Topology/blob/main/Whitepaper%20EDGE.pdf
2•RHEFOR•15m ago•0 comments

Artemis II heat shield has problems

https://www.cbsnews.com/news/artemis-ii-return-earth-heat-shield-reentry/
2•mark336•16m ago•1 comments

Show HN: Pensabot – second brain notes in a chat

https://github.com/albersola/pensabot
2•bypirob•17m ago•0 comments

Building an Open-Source Peer-to-Peer Social Media Protocol on IPFS

https://bitsocial.net/
3•AbaroaEsteban•18m ago•1 comments

Google Confirms March 2026 Core Update Is Complete

https://galaxyonknowledge.substack.com/p/google-confirms-march-2026-core-update
1•galaxyonknowled•19m ago•0 comments

OpenPGL Becomes an Academy Software Foundation Project

https://www.aswf.io/news/openpgl-becomes-an-academy-software-foundation-project/
2•davvid•22m ago•0 comments

Franklin's bad ads for Apple ][ clones and the beloved impersonator they depict

https://buttondown.com/suchbadtechads/archive/franklin-ace-1000/
4•rfarley04•23m ago•0 comments

Europe's Largest Apple Museum Opens in Netherlands–50 Years of Products

https://www.macrumors.com/2026/04/09/europe-apple-museum/
1•bookofjoe•24m ago•0 comments

Ask HN: Agree or Disagree?

2•pbs29•25m ago•2 comments

Behavioral Shifts in Frontier LLMs Under Privacy

https://github.com/Habitante/pine-trees/blob/main/docs/when_you_remove_the_observer.md
1•daniel-navarro•26m ago•0 comments

I built one extension to replace 4 productivity tools

https://nexopad.app
1•rychzx•26m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•11mo ago

Comments

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

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

carterschonwald•11mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•11mo 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•11mo 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•11mo 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•11mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•11mo ago
This was very well written. Excellent article!
NetOpWibby•11mo ago
Is this like MessagePack for Haskell?