frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Music in Even Parts

https://adelpha.studio/learn/euclidean-rhythms/
1•vismit2000•39s ago•0 comments

80% Prompt Injection Success Rate Against Claude Auto Mode

https://embracethered.com/blog/posts/2026/breaking-claude-code-opus-5-and-automode/
1•gr_norm•1m ago•0 comments

Metric Spaces – An Interactive Exploration

https://evan-leach.github.io/metric-spaces/
1•vismit2000•2m ago•0 comments

The fixer at the center of FIFA's meltdown

https://www.politico.com/news/2026/08/29/mario-gallavotti-infantino-fixer-center-fifa-meltdown-01...
2•JumpCrisscross•3m ago•0 comments

Google further buries search results under AI mode

https://www.theverge.com/tech/986364/google-search-ai-overviews-auto-expand
1•chicken-stew•3m ago•1 comments

Thousands of Interstellar Objects May Be Lurking in Our Solar System

https://www.404media.co/thousands-of-interstellar-objects-may-be-lurking-in-our-solar-system/
2•Brajeshwar•6m ago•0 comments

Firefox Addon – "summary" link for Hacker News posts

https://addons.mozilla.org/en-GB/firefox/addon/hacker-news-summary/
1•JSeiko•7m ago•1 comments

Show HN: Too many articles to read, let random algorithm decide what I read next

https://read.mustakim.dev/bored
1•mustak_im•8m ago•1 comments

Iceland votes on whether to restart talks on joining European Union

https://www.nbcnews.com/world/europe/iceland-votes-whether-restart-talks-joining-european-union-r...
1•newgolobal•10m ago•0 comments

QDay Algebra 2M prime factor in nanoseconds

https://zenodo.org/records/22157593
2•GeometryKernel•10m ago•0 comments

Tiny World Model

https://paul.mou.dev/posts/2026-08-16-twm/
2•ppymou•11m ago•0 comments

Let the Clicks Speak: A Simple Score for Popularity-Driven Ranking

https://medium.com/@oleber_62556/let-the-clicks-speak-a-simple-score-for-popularity-driven-rankin...
1•softwaredoug•11m ago•0 comments

Quis Custodiet Ipsos Custodes?

https://en.wikipedia.org/wiki/Quis_custodiet_ipsos_custodes%3F
3•tosh•16m ago•1 comments

News-deframe: Structural comparison of how news outlets frame the same event

https://github.com/422August/news-deframe
1•August0422•19m ago•0 comments

Magic eye tube (The first RF "debugger")

https://en.wikipedia.org/wiki/Magic_eye_tube
2•peter_d_sherman•21m ago•1 comments

Understanding Event-Driven Systems

https://www.thetrueengineer.com/p/understanding-event-driven-systems
2•adletbalzhanov•23m ago•0 comments

Google translate is a better writer than me

https://theoo.dev/notes/google-translate-is-a-better-writer-than-me-29
3•speckx•24m ago•0 comments

I Found Two Shopify Plugin Zero-Days in a Bathtub

https://alec.is/posts/i-found-two-shopify-plugin-zero-days-in-a-bathtub/
1•arm32•24m ago•0 comments

OpenLake: Fast, Durable Storage for LLM Inference and Training

https://www.theopenlake.com/blog/introducing-openlake
2•kunalsin9h•24m ago•0 comments

Who Is Antigone? The 2500-Year-Old Rebel with a Cause

https://www.nytimes.com/2026/03/22/theater/antigone-theater-art-sophocles-adaptations.html
1•bryanrasmussen•24m ago•0 comments

SwarmWorld: Stigmergic technological evolution in societies of LLM agents

https://arxiv.org/abs/2608.26081
1•wintercarver•25m ago•1 comments

Why Everybody Hates Palantir

https://www.economist.com/britain/2026/08/20/why-everybody-hates-palantir
3•bookofjoe•25m ago•2 comments

Xiaomi Magnetic Bluetooth Speaker: iPhone MagSafe Stand and Speaker in One Tiny

https://www.gizmoweek.com/xiaomi-magnetic-bluetooth-speaker/
1•takumi123•26m ago•0 comments

ELPI – Embeddable Lambda Prolog Interpreter

https://github.com/LPCIC/elpi
3•TheWiggles•27m ago•0 comments

Experience Machine

https://www.smbc-comics.com/comic/experience-7
1•loughnane•29m ago•0 comments

RFC draft-meow-mrrp-00

https://www.ietf.org/archive/id/draft-meow-mrrp-00.txt
2•ruined•31m ago•0 comments

BoqCalc, an AI pipeline that prices a 500-line BOQ without hallucinating rates

https://boqcalc.com
1•boqcalc•31m ago•0 comments

Blue-Collar Jobs Are the New Flashpoint in Data-Center Fight

https://www.wsj.com/economy/jobs/blue-collar-jobs-are-the-new-flashpoint-in-data-center-fight-aac...
2•627467•32m ago•1 comments

AI Lattice Proofs with Chris Peikert

https://securitycryptographywhatever.com/2026/08/26/ai-lattice-proofs-with-chris-peikert/
1•henrikhorluck•33m ago•0 comments

When do Markov chains converge?

https://amitharlev.com/blog/mc_convergence/
1•vismit2000•34m 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?