frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Unofficial List of Siri Commands

https://github.com/extratone/siri
1•ryan-ca•3m ago•0 comments

Businesses can claim refunds for tariffs declared unconstitutional

https://apnews.com/article/tariff-refund-trump-customs-08861f153801156d213c30c4e2f6a683
1•geox•4m ago•0 comments

The great Scouse pasty war

https://www.livpost.co.uk/the-great-scouse-pasty-war/
1•DamonHD•7m ago•0 comments

NASA working on 'Big Bang' upgrade to keep the Voyagers alive for longer

https://www.theregister.com/2026/04/20/voyager_big_bang_upgrades/
2•beardyw•9m ago•0 comments

The Interpretive Advantage [video]

https://www.youtube.com/watch?v=-6no6N3i9Tg
1•tosh•11m ago•0 comments

Anthropic's in-house philosopher thinks Claude gets anxious

https://twitter.com/itsolelehmann/status/2045578185950040390
1•thdr•12m ago•0 comments

Prometheus Exporter for RDMA (RoCE) NIC Statistics in Linux

https://github.com/yuuki/rdma_exporter
1•y_uuki•18m ago•0 comments

Convert WebP to JPG Online Free

https://www.wps.com/tools/webp-to-jpg/
1•jakemorgan•19m ago•1 comments

Eyelash-Filter

https://www.ailabtools.com/eyelash-filter
1•minimk•21m ago•0 comments

Discovering Prince, Ten Years Later

https://www.anildash.com/2026/04/20/prince-ten-years/
1•Tomte•22m ago•0 comments

Why Honcho solved my agent memory problem

https://geerttheys.substack.com/p/why-honcho-finally-solved-my-agent
1•toadi•23m ago•0 comments

Cheap Batteries Are Taking over the Power Grids

https://www.bloomberg.com/news/features/2026-04-19/cheap-batteries-are-taking-over-the-world-s-po...
2•epistasis•27m ago•0 comments

Off Grid: mobile AI with GUFF files or an API endpoint

https://github.com/alichherawalla/off-grid-mobile-ai
1•gasull•27m ago•0 comments

AI Researchers' Views on Automating AI R&D and Intelligence Explosions

https://arxiv.org/abs/2603.03338
4•ironyman•33m ago•0 comments

PostgreSQL MVCC, Byte by Byte

https://boringsql.com/posts/postgresql-mvcc-byte-by-byte/
3•radimm•35m ago•0 comments

The Melancholy of Subculture Society

https://gwern.net/subculture
1•navigate8310•41m ago•0 comments

The power shift: Why the future of the electric grid will be software-defined

https://www.redhat.com/en/blog/power-shift-why-future-electric-grid-will-be-software-defined
1•salkahfi•41m ago•0 comments

Proving open source is ready for the industrial edge

https://www.redhat.com/en/blog/proving-open-source-ready-industrial-edge
2•salkahfi•44m ago•1 comments

Hook It Up to the Machine

https://blog.jim-nielsen.com/2026/hook-it-up-to-the-machine/
1•srijan4•48m ago•1 comments

Vale Observability Metrics

https://www.withcaer.com/c/vale/
1•tosh•48m ago•0 comments

A Thought on Bias, Power, and Decision Making

https://neerajkarimpuzha.wordpress.com/2026/04/20/when-right-vs-wrong-isnt-really-about-truth-a-t...
1•neeraj_r•53m ago•0 comments

Spiderman Phishing as a Service kit explained (again)

https://kindssecurity.com/glossary/what-is-spiderman-phishing-kit
1•paulwalkerSEC•55m ago•0 comments

Atomic Design

https://atomicdesign.bradfrost.com/
2•intelkishan•55m ago•0 comments

Is It Down or Is It Just You?

https://is-it-up.netlify.app/
1•ninjahawk1•55m ago•0 comments

FreeCloud: Use your excess web hosting space as your own cloud drive, with sync

https://freecloud.wiki
2•Hilliard_Ohiooo•1h ago•0 comments

Show HN: Real time Apple Notes sync to cloud

https://sublimated.com/sublimated/landing.md
1•podviaznikov•1h ago•0 comments

Burn Slim: Targeted Weight Support? [pdf]

https://fsc.org/sites/default/files/webform/problem_with_unacceptable_activi/_sid_/BurnSlim1Revie...
1•TajSteel•1h ago•0 comments

French prosecutors summon Elon Musk, alleging X child abuse images, deepfakes

https://apnews.com/article/france-x-investigation-elon-musk-summoned-fad2e1d2eab45b0b86d6cd70bbee...
4•MilnerRoute•1h ago•0 comments

What Agent Orchestration Changes

https://www.viktorcessan.com/what-agent-orchestration-actually-changes/
1•saikatsg•1h ago•0 comments

Flagship: feature flags built for the age of AI

https://blog.cloudflare.com/flagship/
1•gpi•1h 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?