frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I timed 7,194 journeys to find London's most equidistant pub

https://equidistance.io/londons-most-equidistant-pub/
1•lambfruit•1m ago•0 comments

Introduction to Multiparty Computation Tutorials

https://docs.stoffelmpc.com/tutorials/overview
1•badcryptobitch•3m ago•0 comments

Silicon Valley Splits over Closing the Borders to Chinese A.I

https://www.nytimes.com/2026/07/25/technology/open-source-silicon-valley-china.html
1•sbulaev•3m ago•0 comments

Samsung wins $200B Broadcom AI chip partnership, boosting foundry push

https://www.reuters.com/business/autos-transportation/samsung-elec-wins-200-billion-broadcom-ai-c...
2•geox•7m ago•0 comments

RedisME: RDM tool for Java serialization in the world

https://www.hepengju.com/
1•hepengju•11m ago•0 comments

A Convergence of Health Crises Under Robert F. Kennedy Jr. Leadership

https://bluepressjournal.substack.com/p/us-faces-multipronged-public-health
2•WinstonWendell•16m ago•0 comments

FDA panel supports broadening access to peptides popular on the gray market

https://www.npr.org/2026/07/23/nx-s1-5903202/fda-peptides-restrictions
2•andsoitis•17m ago•0 comments

Real Linux for your smartphone: Ubuntu Touch release 24.04-2.0 and 24.04-1.4

https://ubports.com/blog/ubports-news-1/ubuntu-touch-24-04-2-0-and-24-04-1-4-release-4007
3•readyblue•19m ago•1 comments

Messy Jobs: The Work That AI Cannot Reach

https://messyjobs.ai/
1•rafaelc•19m ago•0 comments

The Silurian Hypothesis (2020)

https://www.theparisreview.org/blog/2020/01/23/the-silurian-hypothesis/
3•andsoitis•22m ago•0 comments

Wikiview: Graph-based browsing of Wikipedia images

https://wikiview.net
2•qifzer•25m ago•0 comments

Micron urges White House to reject Apple's blacklist memory plan

https://appleinsider.com/articles/26/07/25/micron-urges-white-house-to-reject-apples-blacklist-me...
2•walterbell•25m ago•0 comments

The AI Productivity Illusion

https://www.hardresetmedia.com/p/the-ai-productivity-illusion
2•quick_brown_fox•26m ago•0 comments

Your Best Work Leaves No Trace: Why We Reward the Fix and Replace the Prevention

https://chrhenning.com/blog/2026/we-reward-the-fix-not-the-prevention/
1•chrhenning•27m ago•0 comments

My web version of Mars MIPS, now have builtin C compiler

https://webmars.nfiles.top/
1•nenepbl•27m ago•1 comments

Stripe in talks to acquire OpenRouter in potential $10B deal, WSJ reports

https://finance.yahoo.com/technology/ai/articles/stripe-talks-acquire-openrouter-potential-215104...
4•nlpnerd•31m ago•3 comments

Reality Bites Elon Musk and His Tesla, SpaceX Believers

https://www.wsj.com/finance/stocks/reality-bites-elon-musk-and-his-tesla-spacex-believers-1b639591
4•1vuio0pswjnm7•32m ago•2 comments

Show HN: Collecte MTL – Montreal waste collection schedules (web and iOS)

https://collectemtl.ca/
2•scastiel•32m ago•0 comments

Show HN: T-Shirt Weather. See the multi-day forecast for any city on a world map

https://tshirtweather.fyi
1•lowkeyokay•33m ago•0 comments

Chinese Discoveries Thru History

https://en.wikipedia.org/wiki/List_of_Chinese_discoveries
1•zoom6628•33m ago•1 comments

Trump administration admits clean energy grants were canceled based on politics

https://www.clickondetroit.com/news/politics/2026/07/25/trump-administration-admits-grants-for-cl...
3•zzzeek•35m ago•0 comments

KFC delivery to Ukraine's front line

https://xcancel.com/antibot/captcha
1•tim333•36m ago•0 comments

A shell colon does nothing. Use it anyway.

https://refp.se/articles/your-shell-and-the-magic-colon
3•olexsmir•36m ago•1 comments

Harddrive Is Probably Full

https://www.marginalia.nu/log/a_139_hdd/
2•ilreb•37m ago•0 comments

Corporate America Has Suddenly Decided to Stop Blowing Money on AI

https://www.wsj.com/business/china-us-ai-model-costs-53a12e96
12•1vuio0pswjnm7•37m ago•5 comments

If another advanced civilization lived on Earth before us, would we know?

https://www.cnn.com/2026/07/25/climate/silurian-hypothesis-another-civilization-before-humans
1•breve•40m ago•0 comments

Codeberg is blocking LLM generated code

https://codeberg.org/Codeberg/org/compare/17bdb39b0c1ecd0e423f3ba592650ce57fcdfbf5..71149c7fc95cc...
2•yofabr•40m ago•0 comments

Show HN: I built sticky notes that connects to Apple Calendar and Reminders

https://www.noticky.app/en
1•leotryhard•42m ago•0 comments

Conversation Is Being Recorded. They All Are

https://www.wsj.com/lifestyle/workplace/ai-recording-apps-wearables-granola-39727559
2•Elefante•43m ago•1 comments

What are you getting paid in? (2024)

https://www.approachwithalacrity.com/p/what-are-you-getting-paid-in
2•Redoubts•48m 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?