frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Loop – Find out what happened weeks after your warm intro

https://www.getlooped.cc
1•SaltyAstronaut•1m ago•0 comments

Twenty-five years ago it was cryptography, today it's model weights

https://weeraman.com/because-we-can/
1•aweeraman•2m ago•0 comments

Show HN: Sukurini – A screenshot shelf for the macOS menu bar

https://ssut.github.io/Sukurini/
1•ssut•2m ago•0 comments

Connected SUV Locked Its Owner Out in Another Country

https://www.autoblog.com/news/this-connected-suv-locked-its-owner-out-in-another-country
1•toss1•2m ago•0 comments

AGI Singer: Thank You, Universe

https://medium.com/@miho999lv/agi-singer-thank-you-universe-bd6635b81f45
1•miho999lv•3m ago•0 comments

Dependency Cultures – Richard Feldman [video]

https://www.youtube.com/watch?v=E82ly38YEEQ
1•isaacvando•3m ago•0 comments

I Designed a Custom PCB to Avoid Pressing a Button Three Times

https://blog.tymscar.com/posts/opensourcedimmer/
1•tymscar•3m ago•0 comments

The deadly experiment that could save the American elm

https://grist.org/solutions/the-deadly-experiment-that-could-save-the-american-elm/
1•bryan0•3m ago•0 comments

ZimaOS 1.7: The NAS Rabbit Hole Starts Here

https://www.youtube.com/watch?v=N4miV1sV5_8
1•geek1988•4m ago•1 comments

First Beta of VLC 4.0 for iOS

https://www.feepk.net/2026/06/25/vlc-for-ios-4-0-public-beta/
1•feepk•5m ago•1 comments

Show HN: Cloudrift – CLI open-source that finds wated AWS spend

https://github.com/elleVas/cloudrift
2•elleVas•8m ago•0 comments

Contrail Avoidance for the Climate

https://contrails.org/
1•mooreds•9m ago•0 comments

Show HN: Capo – be the capo of your AWS services

https://kap-sh.github.io/capo/
1•karpetrosyan•9m ago•0 comments

The Questionable Future of Nova Launcher

https://mmkthecoolest.gitlab.io/blog/2026-07-28-the-questionable-future-of-nova-launcher/
1•mmkthecoolest•10m ago•0 comments

Guaranteed Income: A License To Spend (2024) [pdf]

https://www.limraconsumer.com/wp-content/uploads/2024/06/RP-28_BlanchettFinke_v1.pdf
1•mooreds•10m ago•0 comments

The crusade–against a big tech company.Worth reading

https://discuss.ai.google.dev/t/noyb-has-contacted-me-google-should-start-sweating/175667
1•Bitu79•10m ago•1 comments

Thoughts about the Leiden Declaration

https://gowers.wordpress.com/2026/07/26/thoughts-about-the-leiden-declaration/
1•jxmorris12•11m ago•0 comments

The Economist as Scapegoat (2020)

https://russroberts.medium.com/the-economist-as-scapegoat-91b317a6823e
1•mooreds•11m ago•0 comments

World’s Tallest Timber Skyscraper

https://newatlas.com/architecture/atlassian-central-timber-tower-tops-out/
2•bookofjoe•12m ago•0 comments

How AI is powering business email compromise at scale

https://research.eye.security/phishing-as-a-service-inside-two-ai-powered-phishing-kits-that-auto...
1•646754375•12m ago•0 comments

The Response I Got Was Cynical

https://pointersgonewild.com/2026-07-23-the-response-i-got-was-cynical/
2•surprisetalk•13m ago•1 comments

Counting Permutations with Roots

https://www.johndcook.com/blog/2026/07/27/counting-permutations-with-roots/
1•ibobev•13m ago•0 comments

Hiding Data in Permutations

https://www.johndcook.com/blog/2026/07/27/hiding-data-in-permutations/
1•ibobev•13m ago•0 comments

A New Way That a Cow's Inner World Shapes Earth's Atmosphere

https://www.quantamagazine.org/a-new-way-that-a-cows-inner-world-shapes-earths-atmosphere-20260727/
1•ibobev•13m ago•0 comments

SMS-florin – rent a real UK number for SMS verification codes

https://flo-voice1.com
1•florin_builds•14m ago•0 comments

Show HN: Every nuclear test from 1945 to 2017, on an interactive map

https://allthenukes.art
1•ewerx•14m ago•0 comments

Show HN: tale.fyi, we deserve a home for fiction

https://tale.fyi/@sam/announcing-tale-fyi-read-or-listen-to-an-entire-book-from-a-single-link
6•samuelcole•16m ago•1 comments

My local LLM scored 6/6. It was wrong every time

https://markbhall.dev/writing/my-local-llm-scored-6-of-6/
2•raydeStar•16m ago•0 comments

Visa to Cut 7% of Workforce as CEO Seeks to Revamp Company

https://www.bloomberg.com/news/articles/2026-07-28/visa-to-cut-7-of-workforce-as-ceo-seeks-to-rev...
4•PhilipA•16m ago•1 comments

Show HN: Citation Safe – MCP server verifies legal citations vs. CourtListener

https://citationsafe.com/mcp
3•gabera090•16m 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?