frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Toad Medicine Boom Was Built on a Myth

https://www.bloomberg.com/news/articles/2026-07-31/what-is-5-meo-dmt-the-god-molecule-and-the-per...
1•wslh•1m ago•1 comments

Ask HN: What's Next for LLMs?

1•apatheticonion•3m ago•0 comments

What if I can just do it faster than talking to you?

https://sundaylettersfromsam.substack.com/p/what-if-i-can-just-do-it-faster-than
1•thedreammachine•5m ago•0 comments

Show HN: Atomadic- Zero-LLM Sub-200us MCP Action Interlock (Storefront Restored)

https://atomadic.tech/orchard.html
1•Atomadic•5m ago•0 comments

'The language of Pokémon is universal': fans are still catching after 30 years

https://www.theguardian.com/games/2026/aug/02/the-language-of-pokemon-is-universal-why-fans-are-s...
2•tzmlab•13m ago•1 comments

Hey everyone, wanted to share something I built in case it helps someone here

https://foliumcv.com/
1•nahuelgiudizi•22m ago•1 comments

RFK Jr tells US families to vaccinate children against measles amid outbreak

https://www.theguardian.com/us-news/2026/aug/02/rfk-jr-measles-vaccination
5•doener•24m ago•1 comments

The Challenge of Recovering SpaceX's Starship at Sea [video]

https://www.youtube.com/watch?v=0i0hpJ0Hqj4
2•sbuttgereit•29m ago•0 comments

Attio – Next Gen CRM

https://attio.com
2•flurly•29m ago•0 comments

Cooked: A DIY Manifesto (2013) [pdf]

https://foodwriting.ua.edu/wp-content/uploads/2021/10/Cooked-exerpt.pdf
3•geneticdrifts•30m ago•0 comments

The diabolical world of convincing AI thirst traps

https://www.vox.com/culture/492604/ai-deepfake-gay-influencers-tiktok-thirst-traps
7•nabbed•30m ago•1 comments

Why Were the Dabaos Late?

https://www.crowdsupply.com/baochip/dabao/updates/why-were-the-dabaos-late
4•mananaysiempre•33m ago•1 comments

Crypto miners are stealing power in Southeast Asia

https://www.dw.com/en/how-crypto-miners-are-stealing-power-in-southeast-asia/a-78175364
3•tchalla•34m ago•0 comments

Europe Is a Country

https://www.noelmaurer.com/p/europe-is-a-country
3•barry-cotter•39m ago•0 comments

Study of 2M newborns shows refusing vitamin K shot led to higher bleeding risk

https://medicalxpress.com/news/2026-07-million-newborns-vitamin-shot-higher.html
2•Gaishan•39m ago•0 comments

New spinning drone hides in plain sight

https://news.northwestern.edu/stories/2026/07/new-spinning-drone-hides-in-plain-sight
8•defrost•43m ago•1 comments

Show HN: Blanked – Compare tech hiring processes by role and company

https://www.blanked.work/
2•mustafak99•47m ago•0 comments

Reaping Without Sowing

https://tjoresearchnotes.wordpress.com/2026/08/02/reaping-without-sowing/
2•mathgenius•47m ago•0 comments

Show HN: Shitty – fast terminal. Memory-unsafe and faster than yours

https://github.com/pg83/shitty
20•pshirshov•49m ago•1 comments

Show HN: I'm 16 y/o and Built the only AI Agent for Hardware and Software Dev

https://github.com/spikonado/sprocket
3•amronos•50m ago•1 comments

Show HN: DRM-CLI – open-source release manager for MSSQL/PostgreSQL/Oracle

https://github.com/dband-drm/drm-cli
2•dband-drm•54m ago•0 comments

A causal history can exist locally everywhere and globally nowhere

https://zenodo.org/records/21606970
2•groverbennett•59m ago•0 comments

Wireless Transec Taxonomy

https://transec-taxonomy.pages.dev
2•belabartok39•1h ago•0 comments

Supply and Demand Is Not What Most People Think

https://shonczinner.substack.com/p/supply-and-demand-is-not-what-most
4•paulpauper•1h ago•0 comments

Bitcoin cold-wallet attack spreads to 4,500 addresses as losses near $89M

https://www.coindesk.com/tech/2026/08/02/bitcoin-cold-wallet-attack-spreads-to-4-500-addresses-as...
15•rbanffy•1h ago•3 comments

Wham! 10 Days in China [video]

https://www.youtube.com/watch?v=P7oAaJqqv8w
2•sxzygz•1h ago•0 comments

What Else Do We Lose When People Give Up Booze?

https://www.nytimes.com/2026/08/01/style/what-else-do-we-lose-when-people-give-up-booze.html
8•bookofjoe•1h ago•2 comments

AI poster wins Ohio State Fair contest

https://www.ohiostatefair.com/p/get-involved/arts/poster-contest
57•AlexAplin•1h ago•27 comments

Negative social ties as risks for faster aging, inflammation, and multimorbidity

https://pmc.ncbi.nlm.nih.gov/articles/PMC12933095/
7•davidbarker•1h ago•1 comments

Mention of Synon, the real inventors of Rapid Application Development, in 1986 [pdf]

http://archive.computerhistory.org/resources/access/text/2017/06/102726714-05-05-acc.pdf
2•jambalaya8•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?