frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How people are testing AI agents?

1•sanathbhat•18s ago•0 comments

Frontier Overhangs

https://stratechery.com/2026/frontier-overhangs/
1•tosh•3m ago•0 comments

Some Old Expectations for the New Apple

https://taoofmac.com/space/blog/2026/09/22/0709
1•rcarmo•5m ago•0 comments

Physics Problem Finder

https://beneke7.github.io/physics-problems-corpus/
1•bbene•6m ago•0 comments

The Armored Sarcophagus Saving Ukrainian Soldiers

https://www.theatlantic.com/international/2026/09/ukraine-frontline-medical-evacuations/688638/
1•mkesper•9m ago•0 comments

OpenCode Reloaded

https://anoma.ly/notes/opencode-reloaded/
1•pretext•13m ago•0 comments

Proposed Group: Browser Data Portability Community Group

https://www.w3.org/community/blog/2026/09/11/proposed-group-browser-data-portability-community-gr...
2•enos_feedler•18m ago•1 comments

Raspberry Pi locks down RAM upgrades in Firmware [video]

https://www.youtube.com/watch?v=ltofM26akZQ
1•juliethefoxcoon•21m ago•0 comments

Orphaned VMs: Running VMs Uninterrupted While Host Kernel Is Offline

https://www.phoronix.com/news/Orphaned-VMs-Linux-Patches
1•daandewit•21m ago•0 comments

0x025 – System One Models (Jev)

https://unzip.dev/0x025-system-one-models/
1•vismit2000•22m ago•0 comments

Xenobiome Command – a colony SIM that runs offline in the browser

https://play.xenobiome.net/?src=hn
1•jonnyka•26m ago•0 comments

Skill and UI kit to understand PRs faster

https://github.com/annanay25/explain-pr
2•annanay•31m ago•1 comments

She died at the San Diego border. A surveillance camera was in plain sight

https://www.technologyreview.com/2026/09/21/1144170/border-towers-surveillance-feature/
1•joozio•33m ago•0 comments

Move On – export your AI chats, file GDPR deletion, escalate if ignored

https://github.com/ur-grue/move-on
1•ur-grue•34m ago•0 comments

Show HN: I made ShipStreak to keep daily shipping gaps public

https://www.shipstreak.space/?via=hn
1•kljr_dev•34m ago•0 comments

Pakistan Orders Hospital Beds Clear for Mass Casualty Ahead of Protest

https://www.dropsitenews.com/p/pakistan-military-protest-imran-khan-sisters-detained-hospitals-beds
1•xbmcuser•38m ago•0 comments

Ask HN: Is Astra's writing starting to bother anyone else?

2•demibabs•38m ago•2 comments

QBZ (Qobuz desktop client for Linux) shutting down

https://qbz.lol/
2•herrherrmann•39m ago•0 comments

Show HN: Cheap and easy throwaway VPN server

https://a.l3x.in/blog/throwaway-vpn/
1•alexfortin•43m ago•1 comments

AI staff complain of mental toll over fears of threat to society

https://www.ft.com/content/60870960-f433-48ca-bc2c-708686a69ae7
2•bazzmt•45m ago•0 comments

Where Improvement Becomes the Problem

https://medium.com/@gurvinder372/article-22-where-improvement-becomes-the-problem-f2c1f3671eaa
1•gps372•46m ago•0 comments

Bk2204/talk-rust-in-Git: GitHub repository with SHA-256 commit IDs

https://github.com/bk2204/talk-rust-in-git
1•gotosun1•47m ago•0 comments

The Ultimate Reading List for Founders

https://grafista.io/blog/posts/the-ultimate-reading-list-for-founders
1•GiorgosGennaris•48m ago•0 comments

Complex KDA:Understanding and Enhancing the Expressivity of Kimi Delta Attention

https://arxiv.org/abs/2609.24797
1•jul8234•48m ago•0 comments

CP/M-80 2.2 Compilers

https://medium.com/@davidly_33504/cp-m-80-2-2-compilers-91958a8f1d58
1•rbanffy•49m ago•0 comments

How Claude is uplifting biomolecular modeling

https://www.anthropic.com/research/claude-uplifts-biomolecular-modeling
5•gmays•49m ago•0 comments

Beyond Context Windows: Evaluating Long-Term Memory for AI Agents

https://twitter.com/AgentMemoryL/status/2101312784688726331
1•IreneAI•55m ago•0 comments

A Summer of AI Optimization

https://lemire.me/blog/2026/09/22/a-summer-of-ai-optimization/
1•chmaynard•58m ago•0 comments

Be the first human to review your own code

https://abhinavr.me/posts/be-the-first-human-to-review-your-own-code/
1•avr5500•1h ago•0 comments

AMD has now officially joined the trillion-dollar club

https://companiesmarketcap.com/amd/marketcap/
2•AbuAssar•1h ago•1 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?