frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Amtrak Bicycle Access

https://amtrak-bike-map.transittools.dev/
1•raybb•4m ago•0 comments

Tell HN: Wife used Chat GPT to set up her new biz domain, email, and website

1•jvanderbot•7m ago•0 comments

Wargamer's shed named UK Shed of the Year 2026

https://newatlas.com/tiny-houses/2026-shed-of-year-winner/
2•Gaishan•8m ago•0 comments

Neats and Scruffies

https://en.wikipedia.org/wiki/Neats_and_scruffies
1•Hooke•9m ago•0 comments

The auto industry is building for a past that's never coming back

https://www.wardsauto.com/news/the-auto-industry-is-building-for-a-past-thats-never-coming-back/8...
1•avonmach•10m ago•0 comments

Show HN: Aidress – open-source discovery and trust registry for agents

https://github.com/Aidress-ai/Aidress
1•mehulv24•10m ago•1 comments

How to secure Manticore Search with built-in authentication and authorization

https://medium.com/@s_nikolaev/how-to-secure-manticore-search-with-built-in-authentication-and-au...
1•snikolaev•16m ago•0 comments

How to export Claude chats to Markdown [video]

https://www.youtube.com/watch?v=eWCf5HGQYMQ
1•quysala12•20m ago•0 comments

America's Bet on AI – The winner takes it all. What if we lose?

https://foreignpolicy.com/2026/08/04/united-states-artificial-intelligence-race-china-openai-anth...
1•mapping365•20m ago•1 comments

Mysterious elephant deaths in Kenya raise questions around pesticides

https://www.bbc.com/news/articles/cx27p32jzj2o
1•ChrisArchitect•23m ago•0 comments

Rands Management Glossary

https://randsinrepose.com/glossary/
1•Garbage•25m ago•0 comments

OcuClaw: One Human, a Fleet of Agents

https://fly.io/customer-stories/ocuclaw/
3•lesenmiaoyu•25m ago•0 comments

America's obsession with whey protein has a delicious consequence: More cheese

https://www.nbcnews.com/business/consumer/americas-obsession-whey-protein-leading-cheese-rcna588939
2•bushwart•30m ago•0 comments

Disney Data Dump: What's the Best Day of the Week to Visit the Magic Kingdom?

https://touringplans.com/blog/disney-data-dump-whats-the-best-day-of-the-week-to-visit-the-magic-...
1•bariumbitmap•31m ago•0 comments

David Ellison: Here's Why You Can Trust Me with the News

https://www.nytimes.com/2026/08/04/opinion/david-ellison-paramount-warner-deal.html
1•aaronbrethorst•32m ago•1 comments

New museum find shows nature can't stop inventing seahorses

https://phys.org/news/2026-08-museum-nature-seahorses.html
1•MaxLeiter•33m ago•0 comments

The Investing Heavyweights That Backed Situational Awareness Before It Blew Up

https://www.wsj.com/finance/investing/the-investing-heavyweights-that-backed-situational-awarenes...
1•vdalal•37m ago•0 comments

Google AI Studio exposed. Drive Trash is fake

https://scored.co/c/News/p/1ATC9NarFD/google-drive-trash-is-just-a-vis/c
1•Bitu79•38m ago•1 comments

Dark Mode for Pinterest – Themes and Night Mode

https://www.sortpin.com/pinterest-dark-mode
1•trungpv1601•39m ago•0 comments

OpenAI's Unreleased Model Astra Solves Ten Major Open Mathematics Problems

https://thezvi.substack.com/p/openais-unreleased-model-astra-solves
1•paulpauper•39m ago•1 comments

Cyberpunk on 1GB of VRAM [video]

https://www.youtube.com/watch?v=H6uX-PI95ok
2•behnamoh•40m ago•0 comments

Roby Yonge

https://en.wikipedia.org/wiki/Roby_Yonge
2•petethomas•41m ago•1 comments

Hackerne.ws Cert Needs Updating

https://hackerne.ws
2•mproud•41m ago•2 comments

Ukrainian and Iran War Coalescence Discussion

https://open.spotify.com/episode/2Q6jmheUC8nTDDEH9xgL4h
1•silver92bullet•42m ago•0 comments

Designing a Query System

https://bal-e.org/speed/krabby/2026/query-system-design/
1•vinhnx•43m ago•0 comments

In-Terminal Jupyter Notebook for Agentic Data Science

https://www.reddit.com/r/ClaudeAI/comments/1vfv9a3/interminal_jupyter_notebook_for_agentic_data/
3•syumei•43m ago•2 comments

Cookies leaked to the wrong host: a URL parsing differential in tough-cookie

https://hackzero.ai/learn/tough-cookie-cookie-leak
1•cuaupadilla•46m ago•0 comments

Survey Statistics: structured MRP to smooth survey weights

https://statmodeling.stat.columbia.edu/2026/08/04/survey-statistics-structured-mrp-to-smooth-surv...
1•paulpauper•50m ago•0 comments

Economy in an automated post-scarcity society

https://qalamjadal.substack.com/p/economy-in-a-fully-automated-post
4•x0axz•51m ago•2 comments

Lunch With Freeman Dyson, in 196,883 Dimensions

https://mathshistory.st-andrews.ac.uk/Obituaries/Dyson_2_NY_Times/
2•paulpauper•52m 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?