frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ben Sasse on Faith, Family, and Facing Death [audio]

https://www.econtalk.org/ben-sasse-on-faith-family-and-facing-death/
1•mooreds•52s ago•0 comments

Tiny drones are powered by sound

https://actu.epfl.ch/news/these-tiny-drones-are-powered-by-sound-2/
1•simonebrunozzi•5m ago•0 comments

Jane Street took $15B hit in July tied to Situational Awareness

https://www.reuters.com/business/finance/jane-street-took-15-billion-hit-july-tied-situational-aw...
1•paulpauper•6m ago•0 comments

A mother has spent years caring for her special-needs child

https://www.washingtonpost.com/health/2026/08/16/she-spent-years-caring-her-child-with-disabiliti...
1•paulpauper•7m ago•0 comments

Worse Is Better Considered Harmful

https://cs.stanford.edu/people/eroberts/cs201/projects/2010-11/WorseIsBetter/index.php/Main_Page....
1•so-cal-schemer•7m ago•1 comments

Stock Market Bargains Are Hiding in This Overlooked Place

https://www.wsj.com/finance/stocks/stock-market-bargains-are-hiding-in-this-overlooked-place-6239...
1•paulpauper•7m ago•0 comments

ASCII City Update: Interiors, Elevation and Skyscrapers [video]

https://www.youtube.com/watch?v=UCKEDWowc0o
1•galleywest200•10m ago•1 comments

Companies that buy and sell your data are not following CA’s strict privacy laws

https://hai.stanford.edu/news/companies-that-buy-and-sell-your-data-are-not-following-californias...
1•hhs•10m ago•0 comments

Free Brain-Computer Interface in Udemy

https://www.reddit.com/r/PiEEG_club/comments/1vvq6j7/5_free_eegbci_courses_join_the_new_1020_acad...
1•Christiangmer•13m ago•0 comments

Digital amnesia: Taking screenshots makes you more likely to forget information

https://www.binghamton.edu/news/story/6397/digital-amnesia-taking-screenshots-makes-you-more-like...
1•hhs•16m ago•1 comments

Quiet on set. How AI transformed China's microdrama scene

https://www.cnn.com/2026/08/22/style/short-drama-ai-china-intl-hnk
1•T-A•17m ago•0 comments

Stelm – A BYOC canvas for AWS infra

https://stelm.dev/
1•tredex•17m ago•0 comments

Europe Is Building an Impossible Fusion Reactor [Ben Miles] [video]

https://www.youtube.com/watch?v=bPUAKW1Dyek
2•mdp2021•19m ago•0 comments

Netscape's Rise and Fall: A Browser Wars History

https://medium.com/@gp2030/netscapes-rise-and-fall-a-browser-wars-history-8546e3b52092
1•Bluestein•21m ago•1 comments

How much is crawling your content worth to an AI bot?

https://insights.som.yale.edu/insights/how-much-is-crawling-your-content-worth-to-an-ai-bot
1•hhs•21m ago•0 comments

MiniMax M3 Medium hits 73.17% F1 on DeepSearchQA, near GPT-5 High

https://huggingface.co/datasets/youdotcom/minimax-m3-deepsearchqa-skill-eval
1•EdwardIrby•21m ago•0 comments

People vs. the AI Overlords

https://anarc.at/blog/2026-08-18-people-vs-ai-overlords/
1•edward•24m ago•0 comments

From Mega-Machines to Mega-Algorithms (2015)

https://thenewinquiry.com/from-mega-machines-to-mega-algorithms/
1•measurablefunc•24m ago•0 comments

Mysterious Astroturf Group Popped Up to Defend the Paramount Merger

https://theintercept.com/2026/08/21/paramount-merger-warner-discovery-david-ellison-antitrust/
3•mukmuk•26m ago•0 comments

The Biblical myth of the CREATION of EVE, the first woman

https://medium.com/freedomofthought/the-biblical-myth-of-the-creation-of-eve-the-first-woman-0f2d...
1•raynchad•27m ago•0 comments

Follow live the open training of a 535B (23B activated) LLM

https://twitter.com/percyliang/status/2090918065634684997
1•ggcr•29m ago•1 comments

436× faster exact state updates with a disk-backed incremental Merkle tree

https://github.com/yangofzeal/Hkd_merkle
1•msyang2004_82•30m ago•0 comments

Show HN: Structo – Claude Code for short form writing

https://structo.redbeardlab.com/
2•siscia•30m ago•0 comments

Optical Earth – Earth as the human eye would see it

https://www.opticalearth.com/
3•afterglowreader•31m ago•1 comments

Ordinary agent tool calls can create shadow delegation

https://niyikiza.com/posts/agents-to-agents/
2•niyikiza•32m ago•0 comments

Microscheme: A functional programming language for the Arduino

https://ryansuchocki.github.io/microscheme/
2•so-cal-schemer•42m ago•1 comments

NanoGPT Speedrun Frontier

https://www.primeintellect.ai/research/nanogpt-speedrun
3•stared•42m ago•0 comments

Pre-Scheme: a Scheme for low-level programming

https://prescheme.org/
2•so-cal-schemer•43m ago•1 comments

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

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

China recovers rocket stage on land for the first time

https://apnews.com/article/china-space-rocket-reuse-land-7280ab07f29771e2034a917ff679e1a6
4•root-parent•44m 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?