frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Disney+ removes 4K and HDR from premium plans in Germany

https://www.heise.de/en/news/Disney-4K-and-HDR-completely-disappeared-in-Germany-11379707.html
1•Vloeck•1m ago•0 comments

Fcgc

https://news.ycombinator.com/submit
1•sfgsfsdgs•2m ago•0 comments

Packaging Companies in Sri Lanka

https://akhtarigroup.com/
1•jayanath99•8m ago•0 comments

AgentEnv

https://github.com/kvcache-ai/AgentEnv
1•handfuloflight•10m ago•0 comments

Show HN: Kimi K3 Is Now Live on Canopy Wave

https://canopywave.com/models/kimi-k3
1•Rossmax•12m ago•0 comments

Show HN: WhimPop – A macOS menu that pops up under your cursor

https://whimpop.com/
1•whimbyte•13m ago•0 comments

Show HN: Turo – Tagalog for point, saves Tokens by pointing instead of talking

https://github.com/kdeps/turo
1•jjuliano•13m ago•0 comments

Sodium restriction and insulin resistance: A review of 23 clinical trials

https://journalofmetabolichealth.org/index.php/jmh/article/view/78/242
1•sublinear•17m ago•0 comments

Microsoft Sam starts his car

https://www.youtube.com/watch?v=EQ1LbeaU_LI
1•nazgulsenpai•19m ago•0 comments

Exercises in benchmarking and evals, part 7

https://danluu.com/exercise-7/
1•janvdberg•20m ago•0 comments

Small and mid-sized businesses are managing Android devices without Google

https://www.msn.com/en-xl/news/other/how-small-and-mid-sized-businesses-are-managing-android-devi...
1•erkin_bek•24m ago•0 comments

KDE daemon – the annoying restart is needed to complete update

https://www.dedoimedo.com/computers/kde-system-notification-helper.html
1•coisasdavida•25m ago•1 comments

Shown HN: Mathend – Microsoft Word but less annoying

https://mathend.com
1•muhamsyaddad•27m ago•1 comments

Microsoft unveils AI security tools it says outperform competing platforms

https://arstechnica.com/security/2026/07/microsoft-unveils-ai-security-tools-it-says-outperform-c...
3•joozio•32m ago•0 comments

Final hurrah? Glasgow's cut-price Commonwealth Games fight for survival

https://www.lbc.co.uk/article/anyone-still-care-commonwealth-games-glasgow-opinion-5Hjdf6S_2/
3•austinallegro•34m ago•0 comments

Cracking the code: can AI help us decipher ancient languages?

https://theconversation.com/cracking-the-code-can-ai-help-us-decipher-ancient-languages-288238
2•zeristor•35m ago•0 comments

Open Source Must Be Fun (Or It Will Die)

https://mikemcquaid.com/open-source-must-be-fun-or-it-will-die/
1•robin_reala•36m ago•0 comments

Evals before prompts: building an LLM OCR for KYC

https://blog.nilenso.com/blog/2026/05/18/evals-before-prompts-building-an-llm-ocr-for-kyc/
1•priyangapkini•36m ago•0 comments

Facebook now wants a selfie video of your face, too

https://blog.mega.io/facebook-verified-selfie
3•dotcoma•41m ago•0 comments

Three certificates, one domain, three lost launch days

https://www.certpost.ai/blog/three-certificates-three-lost-launch-days
1•mlmusson•44m ago•0 comments

AI 'tokenmaxxing' fades as workplaces look to cut tech spending

https://apnews.com/article/ai-token-openai-anthropic-corporate-31bb80ac1cd7862d05f6397177d826b1
7•geox•46m ago•1 comments

A Proposal for a Universal Moral Core

https://continuations.com/a-proposal-for-a-universal-moral-core
1•imartin2k•47m ago•0 comments

"Cards as Weapons" by Ricky Jay (1977)

https://archive.org/details/Cards_as_Weapons_-_Ricky_Jay_1977
1•jansan•51m ago•0 comments

Solving Math and Physics Problems You Don't Know How to Solve

http://redsymbol.net/articles/solving-problems-you-dont-know-how-to-solve/
1•ankitg12•51m ago•0 comments

Show HN: AI Usage – Native macOS Menu Bar for Claude Code and Codex Limits

https://github.com/burakgon/ai-usage-menubar
1•burakgon•51m ago•0 comments

News outlet killed story on plagiarism after Cambridge prof hired law firm

https://retractionwatch.com/2026/07/27/cambridge-jason-arday-plagiarism-allegations-times-higher-...
5•Michelangelo11•52m ago•0 comments

Show HN: A Back End You Can Call Directly from React – No API Required

https://linkedrecords.com/getting-started/
1•WolfOliver•53m ago•0 comments

YC Startup School 2026

https://bestmate.io/startup-school-2026
1•harper•57m ago•0 comments

Compass: Fast, local-first knowledge graph for understanding codebases

https://github.com/crabbuild/compass
2•handfuloflight•1h ago•0 comments

Ask HN: How to rewrite `Claude.md` and install the skill for Opus5 and Fable5

3•hyhmrright•1h ago•2 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?