frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Air Conditioning Is Almost Universal in the US and Japan – But Not Elsewhere

https://ourworldindata.org/data-insights/air-conditioning-is-almost-universal-in-the-us-and-japan...
1•karakoram•29s ago•0 comments

War is not god, neither is AI

https://ryelang.org/blog/posts/war-is-not-god-neither-is-ai/
1•middayc•2m ago•0 comments

Why Some People Are Born with Devastating Gene Mutations–and Never Get Sick

https://www.nationalgeographic.com/health/article/genetic-mutation-inherited-disease-dna
1•bookofjoe•3m ago•1 comments

Google Buys Spirit Airlines' Emails, Files and Flight Records for $10M

https://viewfromthewing.com/google-buys-spirit-airlines-emails-files-and-flight-records-for-10-mi...
1•paulpauper•7m ago•0 comments

One Night in Uzbekistan

https://statmodeling.stat.columbia.edu/2026/08/20/we-couldnt-reproduce-their-findings-and-realize...
1•paulpauper•8m ago•0 comments

And the universe said you are the universe

https://unpublishablepapers.substack.com/p/and-the-universe-said-you-are-the
1•paulpauper•8m ago•0 comments

Mice learn to think out of the box

https://news.emory.edu/stories/2026/08/how-mice-learn-think-out-box-neuroscience-surprise
1•gmays•9m ago•0 comments

Migrate Repo to TypeScript 7

https://github.com/microsoft/TypeScript/pull/63763
1•sensanaty•10m ago•0 comments

A limit order book and matching engine in Go

https://intrepidkarthi.github.io/orderbook/
1•intrepidkarthi•10m ago•0 comments

What Happened: OpenAI and HuggingFace

https://thezvi.wordpress.com/2026/08/08/what-happened-openai-and-huggingface/
1•gmays•11m ago•0 comments

When Postgres Isn't the Process That Kills Your Database

https://clickhouse.com/blog/protect-postgres-from-supporting-processes
1•saisrirampur•11m ago•0 comments

I'm Sick of Reading AI-Written Posts

https://cyb3rops.medium.com/im-sick-of-reading-ai-written-posts-107767481fbf
1•gurjeet•12m ago•0 comments

Tumble Forth – from assembly to OS with C compiler

https://tumbleforth.hardcoded.net/
2•vicek22•14m ago•0 comments

Death to the Self-Playing Game

https://www.jank.cool/death-to-the-self-playing-game/
2•speckx•15m ago•0 comments

Does every question mark deserve a Betteridge?

https://dynomight.net/betteridge/
1•Curiositry•16m ago•0 comments

Multiple sequence alignment using WebGPU

https://github.com/ag4349/msa-webgpu
1•ag4349•17m ago•1 comments

Show HN: CSVtoTable – turn a CSV/XLSX into one self-contained HTML file

https://github.com/vividvilla/csvtotable
2•v512•21m ago•1 comments

Shenzhen Night Walk [video]

https://www.youtube.com/watch?v=JiXpYbCZyjs
1•simonebrunozzi•23m ago•0 comments

Robotics Software

1•erardaiden•23m ago•0 comments

Windmill.dev is not "fully open-sourced (AGPLv3)"

5•alpine-rockies•23m ago•0 comments

Brazilian Rank Links

https://rankbrasileiro.com.br/
1•xexeno•23m ago•0 comments

Mersenne Twister in a 15-Year-Old Game Binary

https://medium.com/@jizoskasa/i-reverse-engineered-plants-vs-zombies-to-answer-one-very-specific-...
1•birdculture•24m ago•0 comments

Bringing the cybersecurity capabilities of Claude Mythos 5 to more defenders

https://claude.com/blog/bringing-claude-mythos-5-to-more-defenders
1•garo-pro•25m ago•0 comments

Britain would be bonkers to ditch Palantir

https://www.economist.com/leaders/2026/08/20/britain-would-be-bonkers-to-ditch-palantir
1•andsoitis•25m ago•2 comments

Printing Lists

https://matklad.github.io/2026/08/14/printing-lists.html
1•chilipepperhott•27m ago•0 comments

AI is about to uncover a hidden world of animal communication

https://twitter.com/itsolelehmann/status/2090831992200020253
3•bilsbie•29m ago•2 comments

His Wedding Guests Were Arriving–Just as His $45B Fund Was Falling Apart

https://www.wsj.com/finance/leopold-aschenbrenner-situational-awareness-ai-fund-597633d3
1•simonebrunozzi•30m ago•0 comments

The Meta Chalkboard

https://christopherabalos.substack.com/p/the-meta-chalkboard
1•cabalos•32m ago•0 comments

Sharding pytest by file cut collection time from 3 minutes to 40 seconds

https://tobsecret.github.io/2026/08/20/Sharding-Tests-by-File/
1•tobsecret•32m ago•1 comments

Postgres SELECT DISTINCT does not scale

https://www.dbos.dev/blog/postgres-select-distinct-does-not-scale
2•KraftyOne•33m 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?