frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

In the search for an e-paper tablet in 2026

https://far.chickenkiller.com/computing/in-the-search-for-an-e-paper-tablet-in-2026/
1•farooqkz•1m ago•0 comments

Rapid Hot-Swapping for Go Lambdas

https://github.com/vaijab/flint
1•vaijab•3m ago•1 comments

Show HN: A read-it-later app that exports clean Markdown to Obsidian

1•northerndev•6m ago•1 comments

The nostalgic winter drink dividing Germany

https://www.bbc.com/travel/article/20260225-the-nostalgic-winter-drink-dividing-germany
1•Geekette•7m ago•0 comments

Anthropic's AI Coding Study: How You Use AI Matters More Than Whether You Use It

https://luther.io/articles/personal-growth-in-the-age-of-ai/
1•vidluther•13m ago•0 comments

Is traditional ML relevant anymore? Any active research going on in ML methods?

1•mitml•14m ago•1 comments

Hyping an Editor in the Age of AI

https://tildehacker.com/hyping-an-editor-in-the-age-of-ai
1•tildehacker•20m ago•0 comments

Intel Foundry boss leaves for Qualcomm

https://www.tomshardware.com/tech-industry/semiconductors/intel-foundry-boss-leaves-for-qualcomm-...
3•teleforce•22m ago•0 comments

Show HN: Leviathan, A world where AI agents write the laws and govern themselves

https://chenyu-li.info/leviathan
1•chenyusu•30m ago•1 comments

Swift System Metrics 1.0

https://www.swift.org/blog/swift-system-metrics-1.0-released/
2•peterspath•31m ago•0 comments

The normalization of corruption in organizations (2003) [pdf]

https://gwern.net/doc/sociology/2003-ashforth.pdf
2•rendx•31m ago•0 comments

Leaving AI to Code 24/7 Doesn't Work

https://twitter.com/victortaelin/status/2027214947193679932
1•jamesy0ung•31m ago•0 comments

Build dynamic agentic workflows in Opal

https://blog.google/innovation-and-ai/models-and-research/google-labs/opal-agent/
1•gmays•33m ago•0 comments

Show HN: PipelineIQ – AI diagnoses CI/CD failures and sends fixes to Slack

https://pipelineiq.dev
1•Raja_Dev•33m ago•0 comments

Techniques of Neutralization

https://en.wikipedia.org/wiki/Techniques_of_neutralization
1•rendx•35m ago•0 comments

All the troubles of the world by Isaac Asimov [pdf]

https://schools.ednet.ns.ca/avrsb/070/rsbennett/HORTON/shortstories/All%20the%20troubles%20of%20t...
1•thunfischtoast•36m ago•1 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•admp•40m ago•0 comments

Measuring CPU Load

https://en.wikipedia.org/wiki/Load_(computing)
1•pacct2025•43m ago•0 comments

Boston Review: A Brief History of AI Psychosis

https://www.bostonreview.net/articles/a-brief-history-of-ai-psychosis/
1•t0lo•51m ago•1 comments

Show HN: Arrival Radar

https://entropicthoughts.com/arrival-radar
2•kqr•55m ago•1 comments

How AI will change GTM?

1•imwoody•55m ago•0 comments

Show HN: Export Your YouTube Subscriptions to OPML (and Use Any RSS Reader)

https://gist.github.com/jillesvangurp/b43cc5bbdbc0a9a29c7f0944d6cc5854
1•jillesvangurp•56m ago•0 comments

When the Bubble Bursts

http://theprogrammersparadox.blogspot.com/2026/02/when-bubble-bursts.html
3•r4um•57m ago•1 comments

Spatial AI-native graph workspace

1•aXlireza•58m ago•0 comments

Show HN: MotionDesk: Physics-driven, Metal-accelerated wallpapers for macOS

3•motiondeskapp•58m ago•0 comments

Show HN: Nano Banana 2 – Sub-second AI image gen via Gemini 3.1 Flash

https://nano-banana2.me/
1•naxtsass•1h ago•0 comments

Show HN: Conduit – Automatic Port Forwarding for Docker Containers

https://github.com/Oranda-IO/Conduit
1•orandaio•1h ago•0 comments

RFC 9925: Unsigned X.509 Certificates

https://datatracker.ietf.org/doc/rfc9925/
1•raquuk•1h ago•0 comments

I used Claude AI to build this website that shows upcoming indie game festivals

https://festival-watch.vercel.app/
2•rotub•1h ago•1 comments

Chivalry Test

https://chivalryscore.com
1•onSmallMessage•1h ago•1 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•10mo ago

Comments

nine_k•10mo 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•10mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•10mo ago
They mention this in the article.
spockz•10mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•10mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•10mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•10mo 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•10mo 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•10mo 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•10mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•10mo ago
This was very well written. Excellent article!
NetOpWibby•10mo ago
Is this like MessagePack for Haskell?