frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

100% private Mac dictation app

https://www.getvoibe.com/
1•ayushchat•51s ago•0 comments

Designing Defensive Databases for Agents

https://arpitbhayani.me/blogs/defensive-databases/
1•Noumenon72•1m ago•0 comments

LightningPDF – HTML to PDF API with a native renderer and Chromium fallback

https://lightningpdf.dev/
1•DigitalTrubador•4m ago•1 comments

Apache Fory C++: 10x faster serialization than protobuf

https://fory.apache.org/blog/fory_cpp_blazing_fast_serialization_framework/
2•chaokunyang•6m ago•1 comments

Solow's 1987 Computer Paradox Explains Today's AI Measurement Crisis

https://theaugmentedinvestigator.substack.com/p/echoes-of-1987-how-solows-computer
1•walterbell•8m ago•0 comments

Snap-confine and systemd-tmpfiles = root (CVE-2026-3888)

https://www.openwall.com/lists/oss-security/2026/03/17/8
2•rkta•14m ago•0 comments

Show HN: The Lottery of Life

https://claude.ai/public/artifacts/a62c4bac-3c05-4443-9d0a-50a9bd3f9d8d
2•atulvi•19m ago•1 comments

Undone Computer Science

https://www.undonecs.org/
1•y1n0•24m ago•0 comments

I Don't Know ML. Claude Does. 0.871 F1 on Predicting Linux Game Compatibility

https://getjump.me/posts/01-protondb-compatibility-ml-x-claude/
1•GetJump•24m ago•1 comments

Title: "Announcing S3syncy – Open-Source Real-Time S3 Synchronization"

https://pypi.org/project/s3syncy/
1•mtahle•25m ago•1 comments

Using Ledger, plain text accounting and a touch AI to fill in my UK tax return

https://www.jvt.me/posts/2026/02/01/ledger/
1•yesbabyyes•27m ago•0 comments

Agents over Bubbles

https://stratechery.com/2026/agents-over-bubbles/
2•abhis3798•27m ago•0 comments

Agent Package Manager

https://github.com/microsoft/apm
3•donutshop•28m ago•0 comments

Show HN: N0x – LLM inference, agents, RAG, Python exec in browser, no back end

https://n0xth.vercel.app/
2•redhanuman•33m ago•0 comments

Switzerland Built an Alternative to BGP

https://www.theregister.com/2026/03/17/switzerland_bgp_alternative/
5•jonbaer•34m ago•0 comments

The Healing Power of Social Friction

https://www.noemamag.com/the-healing-power-of-social-friction/
2•sonicrocketman•38m ago•0 comments

Cognitive overload: When processing information becomes a problem (2022)

https://www.mayoclinichealthsystem.org/hometown-health/speaking-of-health/cognitive-overload
1•marysminefnuf•38m ago•0 comments

Z AI Character Card Wiki

https://zaicc.net/
1•theyoungsir•40m ago•0 comments

Why investors won't know what to make of AI for a while

https://www.economist.com/finance-and-economics/2026/03/12/why-investors-wont-know-what-to-make-o...
2•petethomas•42m ago•0 comments

OTel-Native by Design – Back Ends That Export to Any Observability Stack

https://signoz.io/blog/otel-native-by-design/
1•dhruv_ahuja•45m ago•0 comments

Superpowers

https://github.com/obra/superpowers
2•evo_9•51m ago•0 comments

Show HN: Paste your YAML to calculate and optimize GitHub Actions costs

1•shubhamoriginx•52m ago•0 comments

No space, no power, no support – what life is like for Indian IT workers

https://theconversation.com/no-space-no-power-no-support-what-life-is-really-like-for-indian-it-w...
5•patrakov•53m ago•0 comments

Spite Driven Development

https://notes.zachmanson.com/spite-driven-development/
4•vismit2000•55m ago•1 comments

Show HN: Libfyaml 1.0.0-alpha1, a modern YAML library for C

https://github.com/pantoniou/libfyaml
1•fypanto•57m ago•0 comments

Ask HN: I built a geometric reasoning engine – what should I test it on?

2•gmeksriunas•58m ago•0 comments

SSH has no Host header

https://blog.exe.dev/ssh-host-header
39•apitman•1h ago•24 comments

Real or Slop? – Programming Languages Papers Edition

https://slop.zackg.me/
2•matt_d•1h ago•1 comments

Commandments of AI (Mindfulness)

2•xaj•1h ago•0 comments

Knowledge workers managing AI show collapsed productivity, not just a plateau

1•dfordp11•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?