frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Heisuke Hironaka Has Died

https://japannews.yomiuri.co.jp/society/general-news/20260319-317449/
1•pfortuny•1m ago•1 comments

Commission presents proposal for EU Inc. – a single legal entity for Europe

https://ec.europa.eu/commission/presscorner/home/en
1•earcar•2m ago•0 comments

Securing digital assets against future threats

https://www.technologyreview.com/2026/03/16/1134287/securing-digital-assets-against-future-threats/
1•joozio•3m ago•0 comments

Prevalence of Alpha-Synuclein Seeding in Olfactory Mucosa Following SARS-CoV-2

https://www.researchsquare.com/article/rs-8855629/v1
1•luu•5m ago•0 comments

Store birth date in systemd for age verification

https://github.com/systemd/systemd/pull/40954
1•sadeshmukh•7m ago•0 comments

Speeding at higher speeds does not save time by a lot

https://old.reddit.com/r/SipsTea/comments/1rwbzoe/speeding_at_higher_speeds_does_not_save_time_by_a/
1•taubek•14m ago•0 comments

Nvidia's AI-Powered Photorealistic Gaming Technology Roasted as 'AI Slop'

https://www.forbes.com/sites/conormurray/2026/03/17/nvidias-ai-powered-photorealistic-gaming-tech...
1•helsinkiandrew•16m ago•0 comments

Infinitely many primes end in a 7

https://hidden-phenomena.com/articles/dirichlet
2•vismit2000•22m ago•0 comments

Does anyone know which company has the best tool battery technology?

1•Lohin•24m ago•0 comments

Reducing features to increase privacy, is this is good move?

1•eddiejaoude•25m ago•1 comments

The Riemann hypothesis (or, how to earn $1M)

https://hidden-phenomena.com/articles/rh
1•vismit2000•26m ago•0 comments

Cities: Skylines 2 boss says they overestimated Unity's capabilities

https://www.pcgamer.com/games/sim/cities-skylines-2-boss-says-they-completely-overestimated-the-u...
1•tietjens•28m ago•0 comments

DOGE staffer who flagged grants for 'DEI' struggles to define the term [video]

https://www.youtube.com/watch?v=WpbGF7l-t2w
1•thelastgallon•28m ago•0 comments

Is Math Art? Werner Herzog Says Yes

https://news.artnet.com/art-world/werner-herzog-brooklyn-public-library-pi-day-2754957
1•cafebeen•28m ago•0 comments

Why Tech Bros Are Now Obsessed with Taste

https://www.newyorker.com/culture/infinite-scroll/why-tech-bros-are-now-obsessed-with-taste
1•achow•29m ago•1 comments

Tools Written on the Uxn VM

https://100r.ca/site/projects.html
2•anonzzzies•30m ago•0 comments

Is Hacker News losing interest in startups?

https://hntrends.net/words/startup
2•kleiba•32m ago•1 comments

EpsteinBench: We Brought Epstein's Voice Back but Got More Than We Wanted

https://morgin.ai/articles/epsteinbench-we-brought-epsteins-voice-back.html
1•dilutedh2o•36m ago•1 comments

ahsohtoa: Structure-of-Array Synthesis in C++20

https://github.com/celtera/ahsohtoa
1•tosh•37m ago•0 comments

Skills Are Docs

https://passo.uno/skills-are-docs/
1•theletterf•37m ago•0 comments

Show HN: Liteparse, an OSS universal fast document parser by LlamaParse team

https://github.com/run-llama/liteparse
1•pierre•38m ago•1 comments

Construct's official 3D model object

https://www.construct.net/en/blogs/construct-official-blog-1/introducing-constructs-1900
1•AshleysBrain•39m ago•0 comments

Arc Cancer Treatment Framework

https://arood.ai/console/arc/cancer
1•moutasimalali•39m ago•1 comments

Border-shape: The future of the non-rectangular web

https://una.im/border-shape
2•twalichiewicz•40m ago•0 comments

Twilio inadvertently recharged dormant accounts for $20

https://status.twilio.com/incidents/7wr0lk70fcpj
2•rezonant•40m ago•1 comments

The Anglosphere is increasingly miserable

https://www.economist.com/graphic-detail/2026/03/19/the-anglosphere-is-increasingly-miserable
1•decimalenough•40m ago•0 comments

Everyone Gets an Agent

https://heynavii.substack.com/p/everyone-gets-an-agent
1•saurabhpalan•41m ago•0 comments

Thailand Is Sleepwalking into a Demographic Crisis

https://www.grantthornton.co.th/insights/thailand-is-sleepwalking-into-a-crisis-a-demographic-cri...
1•alephnerd•41m ago•0 comments

Code4z VS Code PL/I Language Extension Preprocessor Support – By Azat Satklyčov

https://medium.com/modern-mainframe/code4z-vs-code-pl-i-language-extension-preprocessor-support-9...
1•rbanffy•42m ago•0 comments

Mystery AI model revealed to be Xiaomi's following suspicions it was DeepSeek V4

https://www.reuters.com/business/media-telecom/mystery-ai-model-has-developers-buzzing-is-this-de...
1•gostsamo•58m ago•0 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?