frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Remove Filler LLM Comments

1•HNIsUnusable•45s ago•0 comments

NATO allies thwart Russian undersea cable sabotage operation

https://www.euronews.com/my-europe/2026/09/10/nato-allies-successfully-thwart-russian-undersea-ca...
1•delichon•2m ago•0 comments

Autonomous Tesla Cybercabs Hit the Streets of New York City

https://gothamist.com/news/autonomous-tesla-cybercabs-hit-the-streets-of-new-york-city
2•geox•4m ago•0 comments

Timeline: The September 11 terrorist attacks

https://millercenter.org/remembering-september-11/september-11-terrorist-attacks
1•GaryBluto•7m ago•0 comments

Terrorism designation has global consequences for open internet

https://www.article19.org/resources/usa-terrorism-designation-has-global-consequences-for-open-in...
1•robtherobber•8m ago•0 comments

GTFS is a community-driven open standard for rider-facing transit information

https://gtfs.org/
1•Bluestein•10m ago•0 comments

Following complaints, Dyson is withdrawing its $500 toothbrush from sale

https://www.numerama.com/tech/2330911-apres-de-nombreux-signalements-dyson-retirerait-deja-de-la-...
2•matthieu_bl•12m ago•0 comments

How to Write an Effective Software Design Document

https://refactoringenglish.com/excerpts/write-an-effective-design-doc/
1•birdculture•12m ago•0 comments

NPM extends recovery-code security holds to all accounts

https://github.blog/changelog/2026-09-09-npm-extends-recovery-code-security-holds-to-all-accounts/
1•soheilpro•14m ago•0 comments

Show HN: What happened to 14,229 launches from Show HN, YC and Product Hunt

https://www.buildorskip.com
1•skr007•14m ago•0 comments

2nd mathematician is accusing OpenAI of being dishonest about training data

https://qz.com/openai-mathematician-training-data-dishonesty-andreas-thom-091026
2•jacquesm•14m ago•0 comments

2001: The Tale of an American Peter Rabbit (2026)

https://medium.com/@solidi/2001-the-tale-of-an-american-peter-rabbit-3e9927c91b2a
1•biscuits1•14m ago•0 comments

A preview of the future Intel Architecture documentation

https://intel.github.io/SDM/announcement/2026/08/20/announce-preview.html
1•AndrewDucker•16m ago•0 comments

The dawn of formalized mathematics [video]

https://www.youtube.com/watch?v=zp6WleEjHUg
1•Thom2503•17m ago•0 comments

Show HN: Browse PC Parts on Amazon.com without distractions

https://findpcpart.com/products?category_key=cpu
1•findpcpart•18m ago•0 comments

AI boom helps drive surprise UK growth in July

https://www.bbc.co.uk/news/articles/cq5xjlvn71lo
1•gste•18m ago•0 comments

(Re)Building an AI-Ready Data Universe at BlaBlaCar

https://medium.com/blablacar/building-an-ai-ready-data-universe-at-blablacar-cb15fbc42020
1•matthieu_bl•22m ago•0 comments

Serving LLMs on Tenstorrent Hardware: Inside the vLLM TT Plugin

https://vllm.ai/blog/2026-09-07-vllm-tt-plugin
1•ankitg12•23m ago•0 comments

Bad benchmarks and evals: Senior SWE-Bench, napkin math, and winter tires

https://danluu.com/exercise-7/
1•luu•27m ago•0 comments

The Death of Shame Is Tearing Us Apart

https://www.newyorker.com/news/fault-lines/the-death-of-shame-is-tearing-us-apart
2•Michelangelo11•27m ago•0 comments

EXXOGEN: First-principles quantum molecular recognition (now on Crunchbase)

https://www.google.com/url?q=https%3A%2F%2Fwww.crunchbase.com%2Forganization%2Fexxogen&sa=D&sntz=...
1•kisnorbert•28m ago•1 comments

Large language models pass three-party Turing test, outscoring actual humans

https://www.pnas.org/doi/10.1073/pnas.2524472123
2•maxloh•34m ago•0 comments

Ask HN: How realistic is a modern-day era NLU

1•ramon156•37m ago•0 comments

Open Letter about the Mathathon

https://docs.google.com/document/d/1IL0b2oG2KvvSnxn_DuXsNxuHaCefDJ9hNY1k9BP3kKQ/view?pli=1&tab=t.0
2•YeGoblynQueenne•37m ago•0 comments

Ghostarchive is a free-to-use archiving website

https://ghostarchive.org/about.html
1•Bluestein•43m ago•0 comments

Build your own custom benchmark

https://artificialanalysis.ai/optima
1•prathje•44m ago•1 comments

De-Anglicizing Programming

https://program.toile-libre.org/DP/index.htm
2•dmabboux•46m ago•5 comments

The centre tracking South Korea's stalkers in real time

https://www.theguardian.com/world/ng-interactive/2026/sep/11/app-tracks-south-korea-stalkers-in-r...
3•nzlend•49m ago•1 comments

Nvidia Nemotron VoiceChat on Apple Silicon: Full-Duplex Speech with Tools

https://blog.ivan.digital/nvidia-nemotron-voicechat-on-apple-silicon-full-duplex-speech-with-tool...
2•aufklarer•51m ago•0 comments

Base84 deserves a place in file names

https://00f.net/2026/09/09/base84/
1•kevvok•51m ago•1 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?