frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Webcam games my kids can only play by moving

https://hoplagames.com/en/
1•Gri22lyBear•1m ago•0 comments

A Blacklisted Chinese Tech Giant Kept Buying Nvidia's Best A.I. Chips

https://www.nytimes.com/2026/09/06/technology/ai-chips-china-blacklist.html
2•sbulaev•3m ago•0 comments

Invoiciz: Easy Invoice Maker

https://freelanzi.com/app/invoiciz
1•ibrahima_online•5m ago•0 comments

I asked astra to make playable 4D chess

https://4d-chess.pages.dev/
1•mikiyas•6m ago•0 comments

Gaming Chairs (2026): Are They Worth It?

https://www.wired.com/gallery/best-gaming-chairs/
2•joozio•9m ago•1 comments

AnTuTu V12 public beta arrives with major changes to how phones are benchmarked

https://www.notebookcheck.net/AnTuTu-V12-public-beta-arrives-with-major-changes-to-how-phones-are...
2•thunderbong•16m ago•0 comments

Pigeon, a signed Pass for what a sub-agent may do

https://github.com/pigeonlabsHQ/pigeon
2•pigeonlabshq•23m ago•0 comments

Uptime – A hard tech thriller grounded in real system engineering

https://mybook.to/uptime
2•fiberfault•24m ago•0 comments

Show HN: Wayfinder – A reference implementation for evaluating AI applications

https://github.com/DivakarUngatla/wayfinder
2•divakarungatla•24m ago•0 comments

Turn any X post into a vertical video

https://reyoy.com/
1•dylan_builds•26m ago•0 comments

Blink – E-commerce platform where you shop through video reels

https://reel-shop--bhaasmmm1234.replit.app
2•Bahaa_BLINK•26m ago•0 comments

I Changed My License

https://bergie.iki.fi/blog/eupl/
19•jllyhill•30m ago•15 comments

Runtipi: Homeserver Management Made Easy

https://runtipi.io/
1•routeroff•32m ago•0 comments

Photosystem II Complex: Nature's Most Brutal 'Battery' (Superoxidizing Force)

https://www.reddit.com/r/genomics/s/tYM0yMUWea
1•kisnorbert•32m ago•1 comments

Building a new programming language – looking for contributors

https://github.com/LuxUmbris/Shaft/tree/bootstrap
1•GenericPointer•36m ago•1 comments

Relax about Neural Space

https://nonlineartransform.substack.com/p/relax-about-neural-space
1•program_whiz•36m ago•2 comments

Glide Menu: A one-handed gesture for mobile apps

https://www.nicksmind.com/articles/glide-menu
1•rocoders•40m ago•0 comments

The Slopconomy and Its Alternatives

https://farsight.cifs.dk/the-slopconomy-and-its-alternatives/
2•jruohonen•43m ago•0 comments

Projecting application state as a filesystem with FUSE

https://newsletter.cloudsquid.io/p/agents-need-their-own-ui
1•shatoboar•44m ago•0 comments

Whose Intelliegence is more Artificial?

https://desnitch.substack.com/p/whose-intelligence-is-more-artificial
1•desnitch•49m ago•0 comments

M2: Episode 1 (Or, Asahi Linux on M3)

https://asahilinux.org/2026/09/m2-episode-1/
3•notenlish•50m ago•0 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
2•__natty__•50m ago•0 comments

The Elephant in the Brownfield

https://www.subbu.org/essays/2026/the-elephant-in-the-brownfield/
1•kiyanwang•50m ago•0 comments

Rogue iOS developer creates app that simulates messages sent by carrier pigeon

https://www.tomshardware.com/software/applications/rogue-ios-developer-creates-app-that-simulates...
3•vismit2000•52m ago•1 comments

The Harness, the Horse, or the Hay – By Brett Queener

https://queener.substack.com/p/the-harness-the-horse-or-the-hay
1•kiyanwang•53m ago•1 comments

Find Your Next Book by Mood

https://bookdialogues.com/findbook
1•jasmeet0817•53m ago•2 comments

Onionspector – now let's see what The Onion knows about you

https://0ut3r.space/2026/09/06/onionspector/
1•h0ek•56m ago•1 comments

Opus (Audio Format)

https://en.wikipedia.org/wiki/Opus_(audio_format)
3•tosh•57m ago•1 comments

SeekMoon: From IDE to ADE

https://www.moonbitlang.com/blog/seekmoon-from-ide-to-ade
1•syumei•58m ago•0 comments

Podcast: We Spoke to an Amazon Worker Destroying Books for AI

https://www.404media.co/email/ed687963-910c-488c-95d5-b06f911b214e/
2•r_singh•58m 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?