frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Most Software Was Already Slop

https://www.abeautifulsite.net/posts/most-software-was-already-slop/
1•claviska•34s ago•0 comments

Wikivibes – Write the encyclopedia you wished existed

https://wikivibes.org/
1•gfhdfghd•35s ago•0 comments

Satellite Images of Penguin Droppings Reveal Impact of Antarctic Warming

https://e360.yale.edu/digest/penguin-guano-diet-climate-change
1•Brajeshwar•55s ago•0 comments

Everyone has a book in them, more so bloggers

https://disassociated.com/everyone-has-book-bloggers/
1•Brajeshwar•1m ago•0 comments

Muro 4.0 is out: Native Live Wallpapers for macOS, now on Intel Macs too

https://github.com/MrRockySL/Muro
2•rockyxsl•3m ago•0 comments

A Proof of Conway's Refinement Conjecture in Lean

https://github.com/gaearon/conway-refinement
1•danabramov•3m ago•0 comments

Vectra – Offline CVE and GTFOBins intelligence engine for your terminal

https://github.com/addisabrham36-boop/vectra
1•Portzer0•4m ago•0 comments

Genetically modified pig kidney keeps man alive for record nine months

https://www.theguardian.com/science/2026/sep/03/genetically-modified-pig-kidney-keeps-man-alive-r...
1•signa11•5m ago•0 comments

Show HN: DeepMem plugin for Claude Code – persistent semantic memory via MCP

https://github.com/deepmemteam/deepmem-claude-plugin
2•deepmem•6m ago•0 comments

Tell HN: Check Claude CLI, it may have silently enabled remote access

1•cromka•6m ago•0 comments

Some US car buyers envy what they cannot have – affordable Chinese EVs

https://www.reuters.com/world/asia-pacific/some-us-car-buyers-envy-what-they-cannot-have-affordab...
2•signa11•6m ago•0 comments

Scientists map key protein interactions linked with profound autism

https://www.npr.org/2026/09/04/nx-s1-5954823/profound-autism-proteins-genes-map-treatments
1•Anon84•7m ago•0 comments

US urged to consider military strikes to stop China achieving AGI first

https://www.scmp.com/news/us/article/3366284/us-urged-consider-military-strikes-stop-china-achiev...
2•sigma5•8m ago•2 comments

Gridfinity

https://en.wikipedia.org/wiki/Gridfinity
2•Bluestein•8m ago•0 comments

The Story of VS Code | Official Documentary

https://www.youtube.com/watch?v=kHL3XzjpT5w
4•doppp•9m ago•0 comments

ICE Wants to Know Everyone Who Bought a Certain Green Beanie from REI

https://www.wired.com/story/ice-wants-to-know-who-bought-a-certain-green-beanie-from-rei-in-the-l...
2•sbulaev•9m ago•0 comments

Linux 7.4 to Improve Apple Silicon Audio Support and "Impossible" Power Mgmt

https://lore.kernel.org/lkml/20260831-apple-shared-gpio-v1-0-e855b12e18ce@gmail.com/
1•DemiGuru•10m ago•0 comments

Edmond Albius, the Enslaved Man Who Pioneered the Pollination of Vanilla

https://lithub.com/on-edmond-albius-the-enslaved-man-who-pioneered-the-pollination-of-vanilla/
1•ynac•12m ago•0 comments

How Email Works (2025)

https://sushantdhiman.dev/blog/how-email-actually-works-ep-1-behind/
1•theanonymousone•12m ago•0 comments

Australian property developer collapse ripples into private credit markets

https://www.ft.com/content/26b050eb-2b32-4d89-b847-4464ada5ff03
1•JumpCrisscross•12m ago•0 comments

Testosterone shifts political preferences in weakly affiliated Democratic men

https://www.psypost.org/scientists-discover-weak-dems-have-highest-testosterone-but-theres-an-int...
1•bilsbie•13m ago•0 comments

GMails custom domain "send as" discontinues January 2027

https://support.google.com/mail/answer/22370?hl=en
5•sva_•13m ago•3 comments

Hostile Interpolation

https://tomstafford.substack.com/p/hostile-interpolation
1•oidar•13m ago•0 comments

Safety overview: GPT‑6 Astra

https://openai.com/index/safety-overview-gpt-6-astra/
1•wertyk•14m ago•0 comments

MVSEP's 53-Stem Music Separation Model

https://mvsep.com/algorithms/135
1•rrherr•14m ago•1 comments

Show HN: JogPad – Shift Shift note capture app (macOS)

https://jogpad.fishball.app/
1•ycmjason•15m ago•0 comments

Show HN: Dev-prune – deletes node_modules only when the lockfile can rebuild it

https://github.com/Life-Experimentalist/dev-prune
2•VKrishna04•17m ago•0 comments

Reverse Engineering an ASIC

https://www.outercloud.dev/blogs/reverse-asic/
1•rachitnigam•17m ago•0 comments

Local TUI issue board for agentic workflows with time travel, backed by Git

https://twitter.com/ljnatan/status/2094842152924623007
2•samuell•18m ago•0 comments

Unlocking Lossless Speedups in LLMs via Discrete Diffusion

https://github.com/ifm-ai/uno
1•Bluestein•18m 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?