frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Have you noticed any changes in the way people communicate now we have chatbots?

1•totetsu•22s ago•0 comments

The Breaks – A Breaking Encyclopedia

https://thebreaks.org/index.html
1•bryanrasmussen•3m ago•0 comments

Mom-as-a-Service

https://www.momasaservice.com/
1•edest28build•6m ago•1 comments

PowerContext, Context for work that humans and agents hand off and continue

https://github.com/oceanbase/powercontext
1•jinqueeny•12m ago•0 comments

Microsoft AI Publishes Its Humanist AI Code of Conduct

https://microsoft.ai/code-of-conduct/
1•CoderLim110•13m ago•0 comments

Volkswagen Mission Efficiency Sets 3 World Records

https://autoindiadaily.in/car-news/volkswagen-mission-efficiency-revealed/
1•snikolaev•14m ago•1 comments

XProtect behavioral flop: the Golden Gasp

https://melomac.com/posts/xprotect-behavioral-flop-the-golden-gasp/
1•lladnar•16m ago•0 comments

Show HN: Daemon OS – An intelligence layer for infrastructure

https://daemon-os.lebarionellison.workers.dev
1•lellison1•22m ago•0 comments

We are all Product Engineers now

https://seldo.com/posts/we-are-all-product-engineers-now/
4•vinhnx•23m ago•0 comments

The Hardness of 4-to-1 Games with Perfect Completeness

https://eccc.weizmann.ac.il/report/2026/179/
1•momeara•23m ago•0 comments

Purely Functional Operating Systems

https://eighty-twenty.org/2022/06/23/henderson-functional-operating-systems-1982
1•vinhnx•23m ago•0 comments

DeepMind's new genome 'atlas' charts effects of all 9B human gene mutations

https://www.nature.com/articles/d41586-026-02835-4
1•jonbaer•24m ago•0 comments

METR Anthropic Network

https://twitter.com/kevinnbass/status/2099621874279817638
3•andrewljohnson•24m ago•0 comments

One Pass to Parse Them All: Fused Parallel CSV Processing [pdf]

https://www.vldb.org/pvldb/vol19/p3579-ellmann.pdf
1•cpard•25m ago•0 comments

India's Dedicated Freight Corridor's last mile challenge

https://finshots.in/archive/the-dedicated-freight-corridors-last-mile-challenge/
1•vismit2000•37m ago•0 comments

Mouse

https://github.com/mousedev/mouse-harness/tree/main
2•Aeroi•37m ago•0 comments

CrofAI Is an OpenRouter Wrapper

https://kendell.dev/blog/crofaifalse/
1•wut42•39m ago•0 comments

Internet Guestbooks: The Rise, Decline, and Afterlife

https://curiouxify.com/internet-guestbooks/
1•mastazi•39m ago•0 comments

An open-source interactive 3D PC Anatomy explore what's inside a computer

https://pc-anatomy.vercel.app/
1•Zeruxe•39m ago•1 comments

Does Scaling Web-Video Pre-Training Help Real Robots Do Real Work?

https://www.rhoda.ai/research/scaling-web-video-pretraining
2•gmays•40m ago•0 comments

The Physical Agent Harness: a portable interface to persistent agents

https://rashidazarang.com/c/the-physical-agent-harness
2•rashidae•42m ago•0 comments

Air Force secretary acknowledges the US has weapons in space

https://abcnews.com/Politics/air-force-secretary-acknowledges-us-weapons-space/story?id=136437923
2•SanjayMehta•43m ago•0 comments

World AI Cooperation Organization

https://en.wikipedia.org/wiki/World_Artificial_Intelligence_Cooperation_Organization
1•soundworlds•44m ago•1 comments

Show HN: Day week calendar app inspired by the French Revolutionary calendar

https://github.com/OlegIGalkin/tendayweekcalendar
1•cantouch•46m ago•0 comments

US-China AI strategic planning

https://sinocism.com/p/us-china-strategic-ai-dialogue-said
2•neptunetriton•47m ago•0 comments

The harms of short-form video on the brain are starting to show

https://www.theguardian.com/commentisfree/2026/sep/14/zuckerberg-short-form-video-cognitive-harm
2•pizzaiolo•55m ago•0 comments

I worked at Google DeepMind. You should listen to the warnings about AI

https://www.theguardian.com/technology/2026/sep/14/google-deepmind-ai-warnings
5•gibspaulding•56m ago•1 comments

The Rise of the Forward Deployed Engineer – and How to Do the Job Right

https://www.latent.space/p/forward-deployed-engineer-best-practices
1•yarapavan•58m ago•0 comments

Exploring mathematics with your computer (1993)

https://archive.org/details/exploringmathema0000enge
1•vismit2000•1h ago•0 comments

Why is nobody signing up even though I launched an unlimited plan on my website?

2•petebay•1h ago•2 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?