frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Five-year-old Nvidia A100 servers sell for up to $82k in China

https://www.tomshardware.com/pc-components/gpu-drivers/five-year-old-nvidia-a100-servers-triple-i...
1•logickkk1•59s ago•0 comments

Undermining the Market

https://fee.org/articles/undermining-the-market/
1•WaitWaitWha•1m ago•0 comments

Disguised Russian banking apps topped US App Store again

https://9to5mac.com/2026/06/23/second-disguised-russian-banking-app-tops-the-app-store-this-month/
1•freedomben•2m ago•0 comments

Show HN: ccMarvin – Just Email with AI

https://ccmarvin.com
1•stopman•4m ago•0 comments

How Remote Work Has Helped a Generation of Working Parents

https://www.nytimes.com/2026/06/21/upshot/remote-work-parents-mothers.html
1•karakoram•4m ago•2 comments

Introduction to Making Makefiles

https://www.jfranken.de/homepages/johannes/vortraege/make.en.html
1•pillmillipedes•5m ago•0 comments

Brazilian judge sentences parents to prison for homeschooling their daughters

https://adfinternational.org/news/brazilianjudge-sentences-parents-to-prison-for-homeschooling-th...
2•like_any_other•5m ago•1 comments

The emergence of the web data infrastructure layer for AI

https://www.technologyreview.com/2026/06/24/1139202/the-emergence-of-the-web-data-infrastructure-...
1•Brajeshwar•5m ago•0 comments

Computer use in Gemini 3.5 Flash

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-computer-use-...
1•swolpers•5m ago•0 comments

Show HN: DBOSify – Drop-in Temporal replacement built on Postgres

https://github.com/dbos-inc/dbosify-py
1•KraftyOne•6m ago•1 comments

2026 EuroLLVM Developers' Meeting Talks

https://www.youtube.com/playlist?list=PL_R5A0lGi1ABJTIK5_5MkvHDb12mUmpSz
1•matt_d•6m ago•0 comments

A way to detect AWS/Terraform drift

https://infraviewer.site
1•Fofryf•6m ago•0 comments

Utah's largest solar and battery storage project is officially online

https://electrek.co/2026/06/24/utahs-largest-solar-battery-storage-project-is-officially-online/
1•Bender•9m ago•0 comments

Chinese supercomputer tops US models in global ranking

https://www.cnn.com/2026/06/24/tech/china-tops-world-supercomputer-ranking-intl-hnk
1•i4i•10m ago•0 comments

Ask HN: What would you most like to see improved in the Claude Code interface?

1•davidbjaffe•10m ago•1 comments

Show HN: Follow the Thread – a calmer, typographic way to read Wikipedia

https://read.filteredctrl.com
1•khaki_pine•10m ago•0 comments

Indian-App-Food-Stress

https://github.com/ATUERK73/IndiaApp-Food-Stress-Indicator
1•atuerk11•10m ago•1 comments

Windage – free browser remake of Scorched Earth

https://windage.online/
1•cuckovic•11m ago•0 comments

Fwupd 2.0.21 Brings Fixes for More Than 250 Potential Security Issues

https://www.phoronix.com/news/Fwupd-2.0.21-Released
1•Bender•12m ago•0 comments

Rust Commercial Network Launches to Bring Commercial Rust Users Together

https://rustfoundation.org/media/rust-commercial-network-launches-to-bring-commercial-users-of-ru...
3•thesuperbigfrog•13m ago•0 comments

Ebola confirmed in France: Officials report first case of eye-bleeding disease

https://www.dailymail.com/health/article-15925635/Ebola-virus-confirmed-France-doctor-tests-posit...
1•Bender•13m ago•0 comments

LLM Research Is Fake

https://www.quoin.ai/
1•quoinai•13m ago•0 comments

Security Is Inherently Political

https://blog.miloslavhomer.cz/security-is-a-political-problem/
1•ArcHound•15m ago•1 comments

Flock CEO: "They're Gonna Enforce Immigration No Matter What Flock Does"

https://ipvm.com/reports/flock-ceo-immigration
3•jhonovich•19m ago•2 comments

Ubisoft co-founder Claude Guillemot dies in plane crash

https://techcrunch.com/2026/06/21/ubisoft-co-founder-claude-guillemot-dies-in-plane-crash/
8•randycupertino•20m ago•0 comments

Where might we find life in our solar system?

https://www.nationalgeographic.com/science/article/where-might-we-find-life-in-our-solar-system
2•bookofjoe•21m ago•1 comments

Cerebras CEO says margin forecast misunderstood as stock plummets after earnings

https://www.cnbc.com/2026/06/24/cerebras-cbrs-stock-earnings.html
5•mikhael•21m ago•0 comments

Microsoft's quantum computing technology called into question, again

https://www.reuters.com/legal/government/microsofts-quantum-computing-technology-called-into-ques...
2•tartoran•21m ago•0 comments

Trump cancels bipartisan housing bill, reiterates demand for SAVE America Act

https://www.cbsnews.com/news/trump-signs-housing-bill-capitol/
6•mikhael•22m ago•1 comments

Raspberry Pi and the EU Cyber Resilience Act

https://www.raspberrypi.com/news/raspberry-pi-and-the-eu-cyber-resilience-act/
2•Brajeshwar•22m 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?