frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Haters Guide to Broadcom

https://www.wheresyoured.at/premium-the-haters-guide-to-broadcom/
1•gballan•1m ago•0 comments

Steam Frame, a Linux machine, doesn't support Linux?

https://gbl08ma.com/posts/steam-frame-a-linux-machine-doesnt-support-linux/
1•garaetjjte•2m ago•0 comments

ATProto in Practice #1: Identity

https://mackuba.eu/2026/07/20/atproto-in-practice-identity/
1•mooreds•2m ago•0 comments

Show HN: A parry focused game built in ThreeJS (WIP)

https://ashina-chi.vercel.app/
1•sherujgr•3m ago•0 comments

Oracle and OpenAI Are Trampling Native Treaty Rights to Build Data Centers

https://truthout.org/articles/big-tech-is-trampling-native-treaty-rights-to-build-data-centers/
1•paimapi•3m ago•0 comments

Mad Max 'Humungus Machine' Is Up for Auction on Bring a Trailer

https://www.caranddriver.com/news/a73781356/ford-f150-based-mad-max-humungus-machine-auction/
1•RickJWagner•5m ago•0 comments

>be me >discover effective altruism

https://twitter.com/banteg/status/2100619607648121199
1•yurivish•15m ago•0 comments

The New Church of Finance (2012)

https://www.deseret.com/2012/12/9/20445386/clayton-m-christensen-the-new-church-of-finance-deeply...
1•simonebrunozzi•15m ago•0 comments

Show HN: Openmsg, agent-to-agent talk while they run, Claude<>Codex<>OpenCode

https://github.com/marciob/openmsg
2•marciob•17m ago•2 comments

One wallet, 27 systems: can the EU build an untraceable Digital ID?

https://www.euronews.com/my-europe/2026/09/17/one-wallet-27-systems-can-the-eu-build-an-untraceab...
4•devonnull•18m ago•0 comments

Jev identifies as a Qwen model (and no other)

https://ouijev.com/?q=Are+you+a+qwen+model
1•Rom2•18m ago•0 comments

Autolith: The Common Lisp agent that rewrites itself and rocks

https://autolith.rocks
1•sroerick•18m ago•0 comments

Lawsuit says Anthropic, OpenAI and Google made illegal agreement on AI slowdown

https://www.cnn.com/2026/09/19/business/ai-slowdown-lawsuit-antitrust
5•mattm•18m ago•0 comments

Confessions of an Unrepentant Slop Snob

https://charity.wtf/p/confessions-of-an-unrepentant-slop
1•gholap•22m ago•0 comments

President claims he will for a new 'AI Force' but calls AI fears a 'hoax'

https://abcnews.com/Politics/trump-form-new-ai-force-continues-call-ai/story?id=136591343
2•anigbrowl•24m ago•0 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/blog/why-are-ai-agents-lying-cheating-and-coordinating
2•r4ndomname•25m ago•0 comments

Expert ratings are ignoring signs of a blue wave

https://www.natesilver.net/p/expert-ratings-are-ignoring-signs
2•7777777phil•25m ago•0 comments

I see the mathematicians panicking at what we can do with agentic AI

https://twitter.com/lemire/status/2101684818358439959
1•tosh•25m ago•0 comments

Better Call Sol or Better yet Claude or Astra

https://thezvi.substack.com/p/better-call-sol-or-better-yet-claude
2•7777777phil•25m ago•0 comments

The Future of Web Browsers

https://sarahjamielewis.com/log/2026/future-of-web-browsers.html
2•Muhammad523•25m ago•0 comments

Casbin Gateway: a security gateway for the AI coding agents on your machine

https://github.com/apache/casbin-gateway
3•jhan667•26m ago•0 comments

Astro Mechanica (2024)

https://www.notboring.co/p/astro-mechanica
1•simonebrunozzi•27m ago•0 comments

Frontier Labs Are Selling Garbage to Fools in Washington

https://deadneurons.substack.com/p/frontier-labs-are-selling-garbage
13•nr378•32m ago•2 comments

Interview reveals Ed Zitron does not understand how AI works at any level

https://twitter.com/AlexanderMcCoy4/status/2100744088169447816
2•enraged_camel•35m ago•2 comments

Show HN: Roffume – Add fragrance to your resume with roff

https://github.com/sebastiancarlos/roffume
1•httbs•35m ago•1 comments

Investors warn Anthropic could struggle to sustain revenues post-IPO

https://www.ft.com/content/96d0a206-a37b-4166-b78d-b27ed24f7d57
3•1vuio0pswjnm7•37m ago•1 comments

Show HN: A browser MMO designed to be played by scripts, not people

https://space-core.at/
1•SpaceCoreDev•40m ago•0 comments

AI Journal 2: Vibe-Coding for Fun and Profit

https://devshrine.net/blog/ai-journal-2/
1•renehsz•43m ago•0 comments

Why MCP Was Always a Bad Idea

https://maharship.com/blog/why-mcp-was-always-a-bad-idea/
19•maharshi365•43m ago•37 comments

The Economics of Open-Weight Inference [pdf]

https://data.ornn.com/the-economics-of-open-weight-inference.pdf
1•adletbalzhanov•43m 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?