frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AMD and Anthropic Sign Major Chips-and-Investment Deal

https://www.wsj.com/tech/ai/amd-and-anthropic-sign-major-chips-and-investment-deal-4adfdc45
1•gmays•2m ago•0 comments

American Grilled Cheese Sandwich Essay (2024)

https://buttondown.com/theswordandthesandwich/archive/the-best-american-grilled-cheese-sandwich-e...
1•NaOH•3m ago•0 comments

Show HN: ApplyAssists – AI resume builder using Google XYZ formula

https://applyassists.com/
1•daniellaza•3m ago•0 comments

Canceling "Hey"

https://chadnauseam.com/random/cancelling-my-hey
1•ChadNauseam•3m ago•0 comments

AI cracks yet another century-old problem

https://fortune.com/2026/07/21/ai-solves-jacobian-conjecture-levant-alpoge-claude-fable-5/
1•yusufaytas•3m ago•0 comments

AgentENV: A platform for running agent env at scale (Kimi K3 RL)

https://github.com/kvcache-ai/AgentENV
1•shenli3514•4m ago•0 comments

The Unreasonable Effectiveness of Constructive Data Modeling [video]

https://www.youtube.com/watch?v=0BXuYlNrUmE
1•tagraves•4m ago•0 comments

Show HN: Kokuin – A TypeScript library for deterministic JSON hashing

https://kokuin.vercel.app/
1•smokeeaasd•4m ago•0 comments

How to teach an old Intel Mac new tricks with OpenCore Legacy Patcher

https://www.theregister.com/software/2026/07/16/how-to-teach-an-old-intel-mac-new-tricks-with-ope...
1•DemiGuru•6m ago•0 comments

Disclosures show CFPB pick's ties to several regulated firms

https://www.americanbanker.com/news/disclosures-show-cfpb-picks-ties-to-several-regulated-firms
1•petethomas•7m ago•0 comments

Why AI Will Not Replace the Classroom

https://www.chestergrant.com/why-ai-will-not-replace-the-classroom
1•speckx•7m ago•0 comments

Show HN: ProofLeague – friends can ask for proof when you start a workout

1•popupeyecare•7m ago•0 comments

Show HN: Better Than HackerRank's Hiring Agent

https://github.com/grandimam/hyre
1•grandimam•8m ago•0 comments

Microsoft Defender for Endpoint leaves some Linux boxes defenseless after update

https://www.theregister.com/patches/2026/07/27/microsoft-defender-for-endpoint-leaves-some-linux-...
1•DemiGuru•8m ago•0 comments

Activist charged with felony after giving border agent "duress code" that wiped

https://arstechnica.com/gadgets/2026/07/activist-charged-with-felony-after-giving-border-agent-du...
1•OptionOfT•9m ago•0 comments

Trying to make the glass tablet for writing from Passengers

https://www.listening.computer/demo
1•goghdali•9m ago•1 comments

Show HN: I built the simple expense tracker I wanted to use

https://getspenso.com/
1•bitkidd•10m ago•0 comments

AI scraperbots keep hammering us from residential proxies

https://fosstodon.org/@sourceware/116982983262820236
1•aendruk•12m ago•0 comments

Microsoft seeks Supreme Court lifeline in pre-owned license battle

https://www.theregister.com/software/2026/07/27/microsoft-seeks-supreme-court-lifeline-in-pre-own...
2•DemiGuru•12m ago•0 comments

Prickly present: dancing cactus toy that raps in Polish about cocaine goes viral

https://www.theguardian.com/lifeandstyle/2021/nov/30/dancing-cactus-toy-raps-polish
1•Tomte•12m ago•0 comments

Rethinking Security for the Age of AI – The Official Microsoft Blog

https://blogs.microsoft.com/blog/2026/07/27/rethinking-security-for-the-age-of-ai/
1•corvad•13m ago•0 comments

Show HN: Phonetic ASR transcript correction tool

https://github.com/notnotrishi/sonic_edit
1•notnotrishi•13m ago•0 comments

Mayor Mamdani Unveils New Municipal Grocery Stores

https://www.nyc.gov/mayors-office/news/2026/07/mayor-mamdani-unveils-30--discount---including-all...
5•willmeyers•18m ago•1 comments

Turn business SOPs into AI agents with real API endpoints

https://studio.tramenterprise.com/Account/Login?ReturnUrl=%2F
1•TR_Studio•20m ago•0 comments

API Testing Chrome Extension(REST, Soap, WebSockets, SSE)

https://chromewebstore.google.com/detail/repost-api-tester/eipmeckflplenlbnlhbpmjojahephhkp
1•info-chirila•23m ago•0 comments

The Rise and Fall of Google's Privacy Sandbox

https://arxiv.org/abs/2607.00693
1•omrigross•29m ago•3 comments

CME launches single stock futures to trade SpaceX, Micron and others 23h/day

https://www.cnbc.com/2026/07/27/cme-launches-single-stock-futures-enabling-investors-to-trade-spa...
1•mfiguiere•29m ago•0 comments

Someone made TempleOS temple-run port

https://github.com/dzumq/TempleRun-in-TempleOS
2•matan-h•30m ago•0 comments

Should you still use Python-dotenv in 2026?

https://infisical.com/blog/should-you-still-use-python-dotenv
1•FinnLobsien•31m ago•0 comments

Kimi-K3 on Ollama

https://ollama.com/library/kimi-k3
4•bluebirdfirewin•33m 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?