frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tabularis: A lightweight, cross-platform database client. Hackable with pkugins

https://github.com/debba/tabularis
1•thunderbong•30s ago•0 comments

Flowyble Studio – Run Claude, Copilot and Codex Side-by-Side

https://flowyble.com/studio
1•schizi•1m ago•0 comments

The Munro Lecture with Adam Tooze – April 8 2026 [video]

https://www.youtube.com/watch?v=Th1pZfKi4SI
1•hackandthink•2m ago•0 comments

Energy-Based Models Is All You Need

https://www.youtube.com/watch?v=h9Gkchqr__M
1•frag•4m ago•0 comments

The Infinity Man: Demis Hassabis, Colleagues and Rivals

https://thechipletter.substack.com/p/the-infinity-man
1•klelatti•4m ago•0 comments

Mark's Magic Multiply

https://wren.wtf/shower-thoughts/marks-magic-multiply/
1•luu•5m ago•0 comments

Give Your Agent a Canvas, Not Just a Chatbox

https://create0.ai
1•enha•8m ago•0 comments

The Great GPU Shortage: H100 Rental Prices Up 40%

https://newsletter.semianalysis.com/p/the-great-gpu-shortage-rental-capacity
2•alecco•8m ago•0 comments

Due Diligence Framework Before Your Business Commits to Open Source

https://groundblue.gumroad.com/l/nlzhlx
1•elsadek•9m ago•0 comments

Show HN: I missed my terminal so I rebuilt email

https://tallyman.io
3•Mechse•10m ago•0 comments

AIYO Wisper – Local voice-to-text for macOS (WhisperKit, open source)

https://github.com/Aiyo28/aiyo-wisper
1•Aiyo28•14m ago•0 comments

What We Learned Building a Rust Runtime for TypeScript

https://encore.dev/blog/rust-runtime
1•vinhnx•16m ago•0 comments

Rust terminal projects in 3 years

https://blog.orhun.dev/800-rust-projects/
1•vinhnx•16m ago•0 comments

How AI Is Reimagining the Game of Golf–For Both Players and Courses

https://www.wsj.com/sports/golf/ai-in-golf-technology-impact-4122d0e1
2•thm•18m ago•0 comments

The tragedy of leisure

https://www.ft.com/content/b91b739e-2164-463c-a8e0-54b59650a9f9
2•pramodbiligiri•27m ago•0 comments

State of Utopia passes its first law

https://stateofutopia.com/laws/1/law1.html
1•logicallee•27m ago•2 comments

EU fingerprint and photo travel rules come into force

https://www.bbc.co.uk/news/articles/c39rkpe8mj2o
3•zeristor•27m ago•0 comments

Umeshism

https://scottaaronson.blog/?p=40
2•yawboakye•28m ago•0 comments

Artemis II is competency porn

https://lizplank.substack.com/p/artemis-ii-is-competency-porn-and
2•jgrodziski•34m ago•0 comments

Why you need to replace your native macOS screenshot app?

https://snapkeep.webytes.net/
1•Mohamm6d•34m ago•1 comments

Automated Browser Testing with MCP

https://en.wikipedia.org/wiki/Test_automation
2•jacksonkasi•39m ago•0 comments

Kaze Emanuar: Illegal 3D Rendering Techniques (N64) [video]

https://www.youtube.com/watch?v=xIUkoUEMf_g
1•tnelsond4•42m ago•0 comments

Picasso's Guernica (Gigapixel)

https://guernica.museoreinasofia.es/gigapixel/#3/63.11/-120.59
1•guigar•42m ago•0 comments

Show HN: LSM Trees: MemTable, Compaction, and the Amplification Triangle [video]

https://www.youtube.com/watch?v=rOC7jkN748w
1•rcron•42m ago•0 comments

France's government is ditching Windows for Linux, says US tech a strategic risk

https://www.xda-developers.com/frances-government-ditching-windows-for-linux/
5•pabs3•44m ago•1 comments

Reverse Engineering File Format Steganography Chain of the TeamPCP Attack

https://husseinmuhaisen.com/blog/reverse-engineering-teampcp-telnyx-file-format-chain/
1•husseinmuhaisen•44m ago•1 comments

GazeFollow from Scratch

https://github.com/aldipiroli/GazeFollow_from_scratch/tree/main
2•tgnk2341•44m ago•0 comments

Incremental Compilation with LLVM

https://ziglang.org/devlog/2026/#2026-04-08
1•birdculture•47m ago•0 comments

I built a skill manager for AI agents. The agents install the skills themselves

https://github.com/nattergabriel/reseed
3•eterer•48m ago•1 comments

I built a programming language in 6 days without writing a single line of code

https://github.com/Quynah/ape-lang
1•Quynah•48m ago•1 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

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

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

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