frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Unpacking the deceptively simple science of tokenomics

https://www.theregister.com/2026/03/07/ai_inference_economics/
1•samizdis•38s ago•0 comments

The Tocharian *klewos: nom-klyu

https://old.reddit.com/r/IndoEuropean/comments/geyjva/the_tocharian_klewos_nomklyu/
1•joebig•2m ago•1 comments

LeadsFromURL – AI finds buyer-intent conversations on Reddit from your URL

https://leadsfromurl.com
1•lolzenom•4m ago•1 comments

lsgit: List Git Repositories

https://github.com/itinance/lsgit
1•mpweiher•7m ago•0 comments

What it's like being an airline pilot when missiles start crossing flight path

https://www.theguardian.com/world/2026/mar/06/divert-turn-back-or-fly-around-what-its-like-to-be-...
1•bookofjoe•9m ago•1 comments

Show HN: Zmod codemod toolkit, 8x faster

https://github.com/NaamuKim/zmod
1•oss-luke•11m ago•0 comments

Linux 7.0 File-System Benchmarks

https://www.phoronix.com/review/linux-70-filesystems
1•wasting_time•12m ago•0 comments

IMs Come, IMs Go

https://mov.im/blog/debacle/76bf90a4-5f59-4962-92db-6cd859f42ec9
1•upofadown•17m ago•0 comments

Show HN: iQWEB – a diagnostic engine for website performance issues

https://iqweb.ai
1•david_iqlabs•18m ago•1 comments

I built 225 programmatic SEO pages – Google indexed 18%

https://arnjen.com/blog/programmatic-seo-225-pages-google-indexed-18-percent
1•Arnjen•19m ago•2 comments

AI Copyright Truth

https://faircoding.com/ai/
1•dryark•20m ago•0 comments

Show HN: I couldn't scale my YouTube channels, so I built Shortgram

https://shortgram.com/
1•mister_tars•21m ago•0 comments

Attention Should Cost a Penny

https://www.sebs.website/why-attention-should-cost-a-penny
2•Incerto•22m ago•1 comments

CloakShare – Open-source DocSend alternative with video streaming (MIT)

https://github.com/cloakshare/cloakshare
1•GrimLabs•22m ago•1 comments

Ask HN: Which third-party Mac apps feel indistinguishable from Apple apps?

1•fahadbuilds•22m ago•1 comments

AI Liability Insurance Arrives

https://cacm.acm.org/news/ai-liability-insurance-arrives/
1•sohkamyung•23m ago•0 comments

US economy sheds 92,000 jobs in February in sharp slide

https://www.ft.com/content/6542bd0c-59ca-493b-ab5d-2d69e4e00cae
2•doener•24m ago•0 comments

Get your Eurosky account now

https://www.eurosky.tech/signup
1•doener•29m ago•2 comments

Beyond Dunbar: Civilization Was Right to Move Beyond the Village

https://indyjohar.substack.com/p/beyond-dunbar-civilization-was-right
1•asplake•30m ago•0 comments

Show HN: Simple Stripe analytics dashboard – MRR, churn, LTV on one page

1•solofoundr•32m ago•0 comments

Serverless for Your Servers

https://pennyproxy.com
1•frectonz•33m ago•0 comments

VW Dealers Revolt over Plan to Sell a New Brand of SUV Directly to Consumers

https://www.wsj.com/business/autos/volkswagen-car-sales-dealership-lawsuit-9566873d
2•impish9208•33m ago•1 comments

Ask HN: Anthropic account suspended, anyone reinstated?

2•kashunstva•34m ago•0 comments

Running the Andquot;Reflections on Trusting Trust&Quot; Compiler

https://queue.acm.org/detail.cfm
1•joozio•35m ago•0 comments

The Golden Age of Those Who Can Pull It Off

https://capocasa.dev/the-golden-age-of-those-who-can-pull-it-off
1•rainmaking•36m ago•0 comments

Show HN: Awesome Voice Typing

https://github.com/primaprashant/awesome-voice-typing
1•primaprashant•37m ago•0 comments

Apple's latest product is a game-changer

https://www.thestreet.com/technology/apples-latest-product-is-a-game-changer
1•01-_-•47m ago•0 comments

GPS jamming is emerging as an increasingly prevalent, troubling, weapon of war

https://www.cnn.com/2026/03/06/science/gps-jamming-ships-planes-iran-war
1•giuliomagnifico•47m ago•0 comments

Anthropic, Cypherpunks, and the Bomb: 3 Rounds of Technologists vs. the State

https://github.com/qudent/crypto-protocol-wars-case-study/tree/main
1•qudent•48m ago•0 comments

$1k and the difficult future that AI has left for many

3•01-_-•49m ago•1 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

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

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

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