frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Disappearance of the Public Bench

https://placesjournal.org/article/the-disappearance-of-the-public-bench/
2•cainxinth•1m ago•0 comments

This Month in Redox – April 2026

https://www.redox-os.org/news/this-month-260430/
1•ladyanita22•3m ago•0 comments

Number of tokens shouldn't be the only metric

https://johnjwang.com/post/2026/05/06/tokens-shouldnt-be-the-only-metric/
1•johnjwang•4m ago•0 comments

Audio-only minimal pair trainer using ABX methodology for language acquisition

https://minimalpairs.co
1•michealbingham•5m ago•1 comments

Designing AI for Strategy Games Through Modding

https://anbeeld.com/articles/designing-ai-for-strategy-games-through-modding
2•nateberkopec•10m ago•0 comments

I found a bug in the reality lattice

https://osf.io/5ubr7
1•KIHO_LEE•12m ago•0 comments

Syncweb, Literate Programming Meets Unison

https://github.com/aryx/syncweb
1•tmseidman•13m ago•0 comments

Google Chrome downloads 4GB AI model to your device without permission

https://www.tomshardware.com/tech-industry/cyber-security/google-chrome-silently-downloads-4gb-ai...
1•vednig•13m ago•0 comments

Untangling Entanglement: Does Science Support Physicalism?

https://sopathaye.substack.com/p/untangling-entanglement-does-science
1•sopathaye•19m ago•0 comments

AI-Induced Cognitive Atrophy

https://notesbylex.com/on-ai-induced-cognitive-atrophy
1•lexandstuff•22m ago•0 comments

VLC, FFmpeg, Video Codecs, Assembly Programming (Lex Fridman Podcast)

https://www.youtube.com/watch?v=nepKKz-MzFM
1•SweetSoftPillow•26m ago•0 comments

Judge Halts Colorado AI Law After xAI First Amendment Challenge

https://reclaimthenet.org/judge-halts-colorado-ai-law-after-first-amendment-challenge
4•bilsbie•31m ago•0 comments

Macro

https://macro.com
2•skogstokig•32m ago•0 comments

Sting's eye-watering fortune that his 6 kids won't be inheriting

https://www.hellomagazine.com/us/900095/sting-eye-watering-fortune-kids-will-not-inherit/
1•wslh•33m ago•0 comments

AI evaluation startup Braintrust confirms breach

https://techcrunch.com/2026/05/06/ai-evaluation-startup-braintrust-confirms-breach-tells-every-cu...
3•zachdotai•34m ago•0 comments

ReleaseJet – the release notes tool for repos with many customers

https://github.com/makisp/releasejet
2•PaulHoule•37m ago•0 comments

Omega-3 supplements may be linked to faster cognitive decline in seniors

https://medicalxpress.com/news/2026-05-omega-supplements-linked-faster-cognitive.html
1•brandonb•37m ago•1 comments

VirtualGL

https://virtualgl.org
2•NexRebular•38m ago•0 comments

SQLite Is a Library of Congress Recommended Storage Format

https://sqlite.org/locrsf.html
3•whatisabcdefgh•39m ago•0 comments

Show HN: I wrote a flight simulator in my own programming language

https://github.com/navid-m/flightsim
3•pizza_man•39m ago•2 comments

AI, Computer Literacy, and the New Divide

https://blog.vaxry.net/articles/2026-aiIsABitDifferent
2•tertle950•40m ago•2 comments

Rails Security, AI, and IBB

https://tenderlovemaking.com/2026/05/06/rails-security-ai-and-ibb/
1•riffraff•41m ago•0 comments

Firm solar and storage costs fall to $54/MWh, says IRENA

https://www.pv-magazine.com/2026/05/06/firm-solar-and-storage-costs-fall-to-54-mwh-says-irena/
4•epistasis•41m ago•0 comments

Solod v0.1: Go ergonomics, practical stdlib, native C interop

https://antonz.org/solod-v0-1/
1•jicea•42m ago•0 comments

"Would It Matter If I Told You I'm Pope Leo?"

https://www.thelettersfromleo.com/p/would-it-matter-if-i-told-you-im
1•pella•46m ago•1 comments

CSG: Why the Largest Military IPO in European History Is Combusting

https://hntrbrk.com/csg/
2•yread•47m ago•0 comments

It's time to test all adults for lipoprotein(a)

https://www.lipidjournal.com/article/S1933-2874(26)00126-1/fulltext
2•brandonb•51m ago•1 comments

Claude Code wire trace reveals 13,000 words base prompt

https://twitter.com/dominiek/status/2052119211644760473
4•dominiek•51m ago•1 comments

Agile Is Dead. Long Live Agile

https://amoebaunlimited.substack.com/p/agile-is-dead-long-live-agile
3•bryanking•53m ago•0 comments

CrustAI – Private local AI assistant

https://github.com/DaveSimoes/CrustAI
2•DaveHN_2026•54m 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?