frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Multi-agent coding feels like pre-GitHub development

https://github.com/motif-Labs/motif
1•merthdotxyz•2m ago•0 comments

Laya "System 1" Code Intelligence for AI Agents

https://github.com/leonardoventurini/scs
1•leonardovb•2m ago•0 comments

Full iPhone 4 'Antennagate' Q&A Video Surfaces After 16 Years – MacRumors

https://www.macrumors.com/2026/09/24/iphone-4-antennagate-qa-video-surfaces/
1•absqueued•7m ago•0 comments

Jamie Beaton might end up the world's most educated person

https://www.nytimes.com/2026/09/15/style/he-might-end-up-the-worlds-most-educated-person.html
1•bookofjoe•7m ago•1 comments

Vitvm: Git for VM State

https://github.com/numinous-technology/vitvm
1•joshkolo•9m ago•0 comments

Docker releases cloud sandboxes, enabling safe agentic workloads in the cloud

https://www.docker.com/c/sbx-promo/
3•pheonixblade9•9m ago•0 comments

Gmux: Tmux for GPUs

https://github.com/numinous-technology/gmux
1•joshkolo•10m ago•0 comments

Platform-Independent SIMD in Go

https://go.dev/blog/simd-experiment
1•tkhattra•10m ago•0 comments

Protecting our knowledge of human genetic diversity

https://projecttimestamper.org/blog/human-genomes/
1•arthuredelstein•11m ago•0 comments

Show HN: Jev-pilot – Jev picks Claude Code's effort, model and skill per prompt

https://github.com/Akramovic1/jev-pilot
1•akramovic•11m ago•0 comments

Preventive Software Maintenance

https://poolp.org/posts/2026-08-13/preventive-software-maintenance/
1•vcoisne•13m ago•0 comments

4% of Sessions, 65% of the Bill: 30 Days of Claude Code Telemetry

https://www.promptarmor.com/resources/claude-cost-and-risk-otel-findings
2•sarelta•17m ago•0 comments

Back and shoulder surgery is often worse than useless

https://www.economist.com/leaders/2026/09/24/back-and-shoulder-surgery-is-often-worse-than-useless
2•burntcaramel•17m ago•0 comments

Software-only quantum tool, it breaks RSA-2048 live

https://dtec9.com
1•DTec•18m ago•0 comments

Danish Health Minister summoned over secret Wegovy court proceedings

https://www.dr.dk/nyheder/indland/ida-auken-bliver-indkaldt-i-samraad-i-hemmelig-novo-sag
2•sfjailbird•19m ago•1 comments

Which AI model is best for coding? A hands-on comparison

https://flaviocopes.com/ai-coding-models/
1•ibobev•20m ago•0 comments

C74-6502 Overview

https://c74project.com/
1•stmw•21m ago•1 comments

Grieving the Loss of Details

https://purplesyringa.moe/blog/grieving-the-loss-of-details/
1•ibobev•21m ago•0 comments

Dolphin Emulator Progress Release 2609

https://dolphin-emu.org/blog/7J/
3•thepbone•22m ago•0 comments

Sir Ranulph Fiennes kept in care home illegally

https://www.telegraph.co.uk/news/2026/09/24/fiennes/
3•bbg2401•23m ago•0 comments

Bluh

https://vivico.space
1•zinicius•23m ago•0 comments

Amiga Screens: A Primer

https://www.datagubbe.se/amscr/
1•ibobev•23m ago•0 comments

Cheap and Awesome

https://www.praf.me/cheap-and-awesome
1•_praf•26m ago•0 comments

Adam Conover explains how YouTube ruined everything

https://www.theverge.com/podcast/991471/adam-conover-youtube-tv-media-union-labor-ai
1•robenkleene•26m ago•0 comments

Google's first Suncatcher orbital data center test launches October 1

https://arstechnica.com/google/2026/09/googles-first-suncatcher-orbital-data-center-test-launches...
3•sbulaev•26m ago•0 comments

Pick OS Is a Living Fossil of Computer History

https://csixty4.medium.com/pick-is-a-living-fossil-of-computer-history-36d74408d557
2•birdculture•28m ago•0 comments

Ask HN: IEEE Expulsion of Fei-Yue Wang?

1•sathomasga•28m ago•0 comments

Redditor Connects an AMD GPU to a MacBook Pro

https://www.reddit.com/r/LocalLLaMA/comments/1woutxp/macbook_pro_m5_max_lse_llm_running_an_amd_ra...
2•AbuAssar•28m ago•0 comments

More than $170M in crypto moves from Bitget wallets to unidentified address

https://www.theblock.co/news/markets/2026-09-24-more-than-170-million-in-crypto-moves-from-bitget...
3•wslh•29m ago•0 comments

GTM Engineering Skills.md Toolbox

https://shipgtm.com/toolbox
2•namadaza•31m 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?