frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kestrel – I built a 900 KB macOS browser because Chrome ate my 8 GB Mac

https://github.com/bishosilwal/kestrel-browser
1•bisho_silwal•7m ago•0 comments

ISO 24495 [pdf]

https://cdn.standards.iteh.ai/samples/78907/d194fac21d6a45f38bfcfec9657f7498/ISO-24495-1-2023.pdf
1•saikatsg•9m ago•0 comments

Show HN: Zuse" One agent coordinating 20 Linear issues in worktrees

https://www.zuse.sh/
1•swarajbachu•10m ago•0 comments

Show HN: Sol-Luna Orchestrator – let Codex decide whether to delegate

https://www.npmjs.com/package/sol-luna-orchestrator
1•mahadansar•12m ago•0 comments

Markdown Without the Split Screen

https://medium.com/@chris.ahrweiler/markdown-without-the-split-screen-36627b3d7a55
1•docjojo•13m ago•0 comments

Show HN: Open sourcing MonsterWriter, piece by piece

https://www.monsterwriter.com/open-source.html
1•WolfOliver•14m ago•1 comments

Why aren't my two Cortex-A9 cores cache coherent?

https://thejpster.org.uk/blog/blog-2026-08-22/
2•signa11•20m ago•0 comments

Unitree G1 vs. Human: This Robot Learned Tennis by "Watching" Amateurs [video]

https://www.youtube.com/watch?v=fLp-75h-Bn8
1•mgh2•22m ago•0 comments

Steve French (SMB3/CIFSFS Linux kernel maintainer) has died

https://www.phoronix.com/news/SMB3-CIFS-Maintainer-Change
1•starkparker•22m ago•0 comments

The Asymptote of Reality: The Hard Limit of Multimodal Models

https://medium.com/@lizka.k/the-asymptote-of-reality-the-hard-limit-of-multimodal-models-c68a1a09...
1•lizakatz•27m ago•0 comments

Stalking the Wily Hacker: 40 years later – Cliff Stoll [video]

https://www.youtube.com/watch?v=656058JxTM0
2•EvanAnderson•29m ago•1 comments

Extraterritoriality

https://en.wikipedia.org/wiki/Extraterritoriality
1•peter_d_sherman•39m ago•0 comments

The only floating national park [video]

https://www.bbc.com/reel/video/p0nb7pnb/watch
1•koolhead17•39m ago•0 comments

Show HN: Ditdah – A Morse App for the Terminal

https://encse.github.io/ditdah/
1•encse•46m ago•0 comments

Opportunity Cost in Strategy Games

https://blog.idleverse.gg/opportunity-cost-in-strategy-games/
1•jonbaer•47m ago•0 comments

Unlocking hidden revenue streams with market models

https://www.technologyreview.com/2026/08/20/1142070/unlocking-hidden-revenue-streams-with-market-...
3•joozio•48m ago•0 comments

Fast is better than slow

https://dubroy.com/blog/fast-is-better-than-slow/
1•fagnerbrack•49m ago•0 comments

Show HN: 2048bid.lol – Rank your product by playing 2048

https://2048bid.lol/
2•voladd•50m ago•0 comments

Ask HN: What websites do you visit daily to stay informed?

6•chistev•53m ago•2 comments

Show HN: Leaderbid – Pay to Rank Leaderboard

https://leaderbid.lol
3•docuru•58m ago•0 comments

What Makes Australia Australia?

https://walkingtheworld.substack.com/p/what-makes-australia-australia
4•Michelangelo11•1h ago•0 comments

Simulating the Information Horizon in Chaos

https://github.com/rayrrr21/Structure-of-Reality
2•rayrrrr•1h ago•0 comments

Show HN: SubtitleGenerator - Fix subtitles with a low-confidence review queue

https://subtitlegenerator.app
2•mujia•1h ago•0 comments

Postgres 19: What's new in Monitoring?

https://clickhouse.com/blog/postgres-19-monitoring-whats-new
2•saisrirampur•1h ago•0 comments

James Munkres (1930-2026)

https://www.douglassfh.com/obituary/james-munkres
2•pykello•1h ago•0 comments

Eliminating Branches in C++ Loops

https://www.yagiz.co/eliminating-branches-in-cpp-loops
2•mfiguiere•1h ago•0 comments

Wi-Fi 8 is the first wireless upgrade in years that isn't chasing speed

https://www.xda-developers.com/wi-fi-8-first-wireless-upgrade-years-isnt-chasing-speed-home-netwo...
46•taubek•1h ago•28 comments

China joins Europe in scrapping Windows for Linux

https://www.zdnet.com/article/china-drops-windows-for-linux/
2•dotcoma•1h ago•0 comments

The market is underpricing memory bandwidth

https://tradestie.com/news/the-market-is-underpricing-memory-bandwidth-20260823/
3•abhiphull•1h ago•0 comments

Download Embabi Games

https://egyapk.com/games/embabi-games/
2•l33tcy•1h 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?