frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

India's 'Cockroach' Protesters Declare Rare Victory over Government

https://www.nytimes.com/2026/07/25/world/asia/india-education-minister-resigns-cockroach-protests...
1•thunderbong•1m ago•0 comments

We built the new fastest API for GLM-5.2

https://www.baseten.co/blog/how-we-built-the-new-fastest-api-for-glm-52/
1•philipkiely•2m ago•0 comments

Show HN: Raise a virtual pet with your friend/partner

https://dandan.schols.io
1•chaidhat•10m ago•0 comments

Google ignored my site for 13 weeks, so I audited everyone who outranks me

https://getqrcodepro.com/blog/google-ranking-evidence
1•benbuilds•18m ago•0 comments

An ESP32 based plane radar for my desk

https://blog.ktz.me/esp32-plane-radar/
1•alexktz•18m ago•0 comments

Lessons from Building My Own Products as a Freelance Engineer

https://www.mazin.sd/blog/lessons-from-building-my-own-products-as-a-freelance-engineer
1•maz225•19m ago•0 comments

Four Proposals to Improve Fuel Economy Standards (2021)

https://epic.uchicago.edu/area-of-focus/four-proposals-to-improve-fuel-economy-standards/
1•bariumbitmap•22m ago•0 comments

Show HN: Rules that stop AI coding agents from breaking working code

https://github.com/avenna01-ceo/claude-code-survival-kr
1•gaiinmaster•23m ago•0 comments

Show HN: I enhanced the UX for TemplatesOn, what do you think?

https://templateson.com
1•maz225•30m ago•0 comments

Multiple LLMs trying to reach a consensus

https://trekhleb.dev/blog/2026/yesbrainer/
1•trekhleb•31m ago•0 comments

Show HN: I mapped every US golf course – 18k courses, free, no signup

https://golfcoursebrowser.com/
3•rickmf•31m ago•0 comments

What Colorado consumers should know about the cyclospora outbreak

https://source.colostate.edu/cyclospora-outbreak-safety-symptoms/
1•mooreds•31m ago•0 comments

Ajay Kumar on running MCP in production [audio]

https://www.getreadyforagents.com/podcast/ajay-kumar-mcp-in-production-ediy/
1•mooreds•32m ago•0 comments

When You Build the Wrong Thing

https://remotesynthesis.com/posts/when-you-build-the-wrong-thing/
2•mooreds•34m ago•0 comments

Show HN: What 180k words look like as a temporal knowledge graph (Oz series)

https://synaptale.com/graph?ch=100
2•ald0r•35m ago•0 comments

Do People Swallow 8 Spiders a Year While They Sleep? (2014)

https://www.scientificamerican.com/article/fact-or-fiction-people-swallow-8-spiders-a-year-while-...
1•thunderbong•38m ago•0 comments

How Many Bits Can an Adapter Write? Capacity and Memorization of LoRA

https://arxiv.org/abs/2607.21351
1•sbulaev•46m ago•0 comments

Dartmouth Workshop on Artificial Intelligence (1956)

https://en.wikipedia.org/wiki/Dartmouth_workshop
1•d_silin•51m ago•0 comments

1209X Agentic Engineering

https://twitter.com/psdimov/status/2081179527884034259
2•pdcd•51m ago•0 comments

Sally the Robot Was Coming to a New York School. Then the Plug Was Pulled

https://www.nytimes.com/2026/07/25/nyregion/robot-school-new-york-salamanca.html
2•apparent•53m ago•1 comments

Show HN: Fitter – declarative web-data extraction,running in the browser also

https://pxyup.github.io/fitter/
3•pyxru•55m ago•1 comments

NYU Stern pricing expert: The hidden 'AI tax' hitting your next phone

https://fortune.com/2026/07/24/apple-ai-memory-chip-price-increases/
2•1vuio0pswjnm7•1h ago•1 comments

Show HN: ZWPlayer – Free player with interactive annotations and subtitle search

https://www.zwplayer.com/
2•logicplayer•1h ago•0 comments

Scottish tax hike for high earners backfires with loss of £22M

https://www.thetimes.com/uk/scotland/article/scottish-tax-high-earners-22m-3sb2k3wns
3•ivewonyoung•1h ago•0 comments

The hidden cost of AI: Why your town is negotiating with Amazon and Microsoft

https://fortune.com/2026/07/23/hobart-amazon-data-center-community-benefits/
1•1vuio0pswjnm7•1h ago•1 comments

An automated website audit tool using Gemini and n8n

https://www.aiwebsitecritic.com/
1•brayden_jones•1h ago•0 comments

Alien World Chemistry Found Inside Meteorite That Struck New Jersey Home

https://www.seti.org/news/alien-world-chemistry-found-inside-meteorite/
1•spzx•1h ago•0 comments

Space Oddity; Review of Slobodian and Tarnoff's "Muskism"

https://www.nybooks.com/articles/2026/07/23/space-oddity-muskism-slobodian-tarnoff/
1•1vuio0pswjnm7•1h ago•0 comments

AI Can Now Design Drugs in Seconds; We Still Can't Tell You If They Work

https://philippdubach.com/posts/ai-can-now-design-drugs-in-seconds-we-still-cant-tell-you-if-they...
1•TEHERET•1h ago•0 comments

Forer Effect

https://www.skepdic.com/forer.html
2•8organicbits•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?