frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

For ancient Romans, pooping was a group activity

https://www.popsci.com/science/ancient-roman-toilets/
2•WaitWaitWha•2m ago•0 comments

Tech Companies Lobbied Away Stricter Rules on Gas-Powered Data Centers

https://www.engadget.com/2172704/tech-companies-lobbied-against-stricter-environmental-rules/
1•newsomix9xl•3m ago•0 comments

Show HN: A public feed of website changes

https://app.monity.ai/public/feed
2•kamilms21•5m ago•0 comments

Leadcode – per-client account isolation for Claude Code, Codex, and gh

https://leadcode.build/
2•gsbecerrag•6m ago•0 comments

The New Student Visa Policy Doesn't Add Up

https://undark.org/2026/08/27/opinion-student-visa-policy-science/
1•EA-3167•9m ago•0 comments

Show HN: Pi-Black – Use Your Claude Max (Or Pro) Subscription with Pi

https://github.com/paoloanzn/pi-black
1•paoloanzn•10m ago•0 comments

Kubernetes Best Practices

https://kubernetes.io/docs/setup/best-practices/
2•Brysonbw•10m ago•0 comments

Astronomers discover a new type of astrophysical object: A black hole star

https://news.mit.edu/2026/astronomers-discover-brand-new-type-astrophysical-object-black-hole-sta...
3•handfuloflight•16m ago•1 comments

Pinning Down Rust's Pin

https://gmcgoldr.github.io/2026/08/27/pin-in-rust.html
1•garrinm•18m ago•0 comments

Selling Digital Products Online: A Practical Start-to-Sale Guide

https://www.a1ho.com/2026/07/selling-digital-products-online.html
1•alfotesr•18m ago•0 comments

Are Vandals Winning the War on Flock Cameras? [video]

https://www.youtube.com/shorts/SVUfvXqakEI
2•Cider9986•19m ago•0 comments

Ego Blockchain

https://github.com/ego-blockchain/ego-blockchain-
2•artitmuhaxhiri•19m ago•0 comments

Study captures how smog begins

https://news.ucr.edu/articles/2026/08/25/study-finally-captures-how-smog-begins
2•hbcondo714•22m ago•0 comments

Patterns of Enterprise Application Architecture

https://martinfowler.com/books/eaa.html
2•Brysonbw•22m ago•0 comments

Exploratory vs. Deterministic Assessments

https://corporate.comcast.com/stories/exploratory-vs-deterministic-assessments
2•officialhocc•23m ago•0 comments

TI-74 Basicalc

https://en.wikipedia.org/wiki/TI-74
2•rbc•26m ago•1 comments

Grand Theft Auto VI: An Extended Look [video]

https://www.youtube.com/watch?v=tJbzMqJGH4k
4•piotrgrabowski•26m ago•0 comments

Fractured Apps

https://medium.com/@kelseyhightower/12-fractured-apps-1080c73d481c
1•Brysonbw•35m ago•0 comments

Awareness Local: local-first memory for AI coding agents (96% R5 on LongMemEval)

https://github.com/everest-an/Awareness-Market
1•everestawarenes•36m ago•0 comments

The "I don't know, Claude wrote this" pandemic

https://www.manager.dev/newsletter/the-i-don-t-know-claude-wrote-this-pandemic
3•fagnerbrack•37m ago•0 comments

Show HN: Lightweight reimplementation of YaCy peer as small Go services

https://github.com/nikitakarpei/my-yacy-node
1•nikitakarpei•40m ago•0 comments

Ego Blockchain

https://egoblockchain.com/
2•artitmuhaxhiri•41m ago•0 comments

Sandboxing Coding Agents

https://micahflee.com/sandboxing-coding-agents/
2•jbegley•46m ago•0 comments

Lenovo XClarity Administrator in FreeBSD Bhyve VM

https://vermaden.wordpress.com/2026/08/28/lenovo-xclarity-administrator-in-freebsd-bhyve-vm/
2•vermaden•47m ago•0 comments

They confided in ChatGPT. Their secrets ended up in court.

https://www.washingtonpost.com/technology/2026/08/27/chatgpt-chats-are-being-swept-into-civil-cri...
1•bookofjoe•49m ago•1 comments

Heaven

2•artvogel•50m ago•0 comments

Show HN: Marsbase – an interactive map of fictional Mars outposts

https://marsbase.io/
1•si_164•50m ago•0 comments

WindFoil – algorithm for computing winding and anti-aliasing of 2D vector shapes

https://github.com/texel-org/windfoil
2•coffeeaddict1•1h ago•0 comments

Earth's mysterious 'hum' points to the sound of waves crashing across the world

https://www.rnz.co.nz/news/world/1160121/earth-s-mysterious-hum-points-to-the-sound-of-waves-cras...
3•billybuckwheat•1h ago•0 comments

Show HN: Risk of Train – a 1D roguelike drawn in one terminal font

https://wookinarium.itch.io/risk-of-train?password=wookamegabong
1•devenvdev•1h ago•1 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?