frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Praxos – Multiplayer AI

https://www.praxos.ai/
3•mogusian•8m ago•0 comments

European Commission Reaches Agreement

https://users.ox.ac.uk/~peter/humour/euroenglish.html
1•xiaoyu2006•10m ago•0 comments

Jev is an honest game changer

https://benbrady.dev/blog/jev-is-an-honest-game-changer/
2•pampas•13m ago•1 comments

Ask HN: Dead Internet

4•basilikum•14m ago•3 comments

Floci: Local AWS Emulator for Development, Testing, and CI

https://github.com/floci-io/floci
1•timeoperator•16m ago•0 comments

The Real-Time Volumetric Cloudscapes of Horizon – Zero Dawn

https://drive.google.com/file/d/1fGWj5Dg9FjOjK0Zo76J-ROnoLpiCepaU/view
1•jdanyow•16m ago•0 comments

Why So Much Money on "AI"?

https://www.rosshartshorn.net/stuffrossthinksabout/why_so_much_money_on_ai/
3•rossdavidh•20m ago•1 comments

What Palantir Actually Does

https://www.thediff.co/archive/forward-deployed/
2•alastair1646•21m ago•0 comments

A tiny macOS menu bar app that keeps your Mac awake with the lid closed

https://github.com/archestra-ai/nonappa
1•margotli•23m ago•0 comments

Strands harness: frontier performance with 28% lower token cost

https://strandsagents.com/blog/introducing-strands-harness/
1•ot•28m ago•0 comments

Accumulated Variance

https://vibingarcologies.substack.com/p/accumulated-variance
1•wilburforce•29m ago•0 comments

Lasso: AI Watermarks Change How Agents Act

https://techstrong.ai/features/lasso-ai-watermarks-change-how-agents-act/
1•CrankyBear•32m ago•0 comments

Show HN: WebGCM – a global climate model running in the browser on WebGPU

https://gcm.echorelay.net/
2•jlhawn•33m ago•0 comments

Lisse: Squircle JavaScript Library

https://corne.rs/
1•handfuloflight•34m ago•0 comments

Splitt – Group expense splitting, settle-up, no caps (iOS)

https://splitt.cash/
2•pryhazhanau•35m ago•0 comments

Synthesia Interactive Avatar API

https://www.synthesia.io/post/interactive-avatar-api-real-time-avatars
1•techietech•37m ago•0 comments

The Internet (1997 – 2021)

https://www.opte.org/the-internet
1•basilikum•38m ago•1 comments

Show HN: A Self-hosted Deferred Deep linking. Firebase dynamic link model

https://github.com/Newtdev/blynk-deferlink
1•NewtDev•38m ago•1 comments

Gold Steadies as Traders Weigh Inflation and Fed Hike Outlook

https://coinmarketcap.com/community/post/379486955/
1•joeymabia1•39m ago•0 comments

Teen Autopsy Marks Arrival of Deadly Drug Cychlorphine in San Francisco

https://www.nytimes.com/2026/09/14/us/san-francisco-autopsy-cychlorphine.html
2•bookofjoe•41m ago•1 comments

A Kansas girl ran off to join the circus and changed the tattoo world

https://www.npr.org/2026/09/16/nx-s1-5955615/a-kansas-girl-ran-off-to-join-the-circus-and-changed...
5•gmays•41m ago•0 comments

'Epigenetic' editing banishes hepatitis B virus

https://www.nature.com/articles/d41586-026-02981-9
6•sbulaev•41m ago•0 comments

Fly.io 2026 Pricing Update

https://fly.io/pricing-update/
1•bialyalibaba•43m ago•0 comments

macOS 26.4 silently enabled login keychain data protection

https://lapcatsoftware.com/articles/2026/9/5.html
3•chmaynard•45m ago•0 comments

Google CC, an AI agent built for families

https://blog.google/innovation-and-ai/models-and-research/google-labs/cc-expanding-to-groups/
3•hmokiguess•46m ago•0 comments

Ask HN: Why does it matter if no one reads your novel as long as the AIs do?

4•amichail•46m ago•15 comments

IA Agent Arthur – Developed an OfflineAIagent

https://x.com/AI_AGENT_ARTHUR
1•AIAGENTARTHUR•48m ago•0 comments

Building Software That Can Prove Agents Wrong

https://www.rafael.md/writing/building-software-that-can-prove-agents-wrong
1•rafaelcamaram•49m ago•0 comments

vLLM Architecture, Memory and Benchmarks Deep Dive

https://www.g-ftech.com/blog/vllm-throughput-deep-dive
2•gfactor_ai•49m ago•0 comments

CBP suspends all personal prescription importation Oct 22

https://www.personalimportation.org/advocacy
24•burnt-resistor•50m ago•3 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?