frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Intelligent Log Sanitization and logs to metrics

https://github.com/sanitizeai/logguardai
1•sanitizeai•43s ago•0 comments

The bugged stately home where German prisoners blabbed their secrets

https://www.theguardian.com/culture/2026/jul/20/trent-park-house-of-secrets-review-bugged-prisone...
1•6LLvveMx2koXfwn•2m ago•0 comments

Huawei's plan to achieve the escape velocity: Tau Scaling and datacenters

https://polymath707.substack.com/p/huaweis-strategy-applying-tau-scaling
1•chvid•3m ago•0 comments

Storybook: AI MCP

https://storybook.js.org/ai
1•handfuloflight•11m ago•0 comments

Pay up or not? Ransomware surge has victims facing tough choices

https://arstechnica.com/security/2026/07/pay-up-or-not-ransomware-surge-has-victims-facing-tough-...
1•arto•15m ago•0 comments

US judge approves Anthropic's $1.5B settlement of copyright lawsuit

https://www.reuters.com/world/us-judge-approves-anthropics-15-billion-settlement-copyright-lawsui...
2•throwaway2027•17m ago•0 comments

Modula-3 History Collection on Computer History Museum

https://softwarepreservation.computerhistory.org/modula3/
2•pjmlp•17m ago•0 comments

'Made in EU' password manager shares codebase with Russian State-certified firm

https://brusselssignal.eu/2026/07/made-in-eu-password-manager-shares-codebase-with-russian-state-...
6•alephnerd•19m ago•3 comments

China's Z.ai Completes 1-Gigawatt AI Data Center Using Only Chinese-Made Chips

https://finance.yahoo.com/technology/ai/articles/chinas-z-ai-completes-1-205515769.html
2•angst•19m ago•0 comments

Taipan: Run .py Without CPython

https://github.com/FarhanAliRaza/taipan
2•sts153•27m ago•1 comments

Learn any AI tool in 15 min sessions

https://metana.io/ai-training-for-professionals
1•Hirun_w•30m ago•0 comments

Ernest Hemingway: The End of Something (1925)

https://storyoftheweek.loa.org/2026/07/the-end-of-something.html
2•NaOH•31m ago•0 comments

Waiting for an Epiphany

https://www.scotthyoung.com/blog/2006/12/05/waiting-for-an-epiphany/
2•skilled•33m ago•0 comments

Show HN: Calyxa – Browser Native AI tutor solving the "cheating" problem

https://calyxa.app
1•Darcy0911•35m ago•0 comments

Show HN: 3D Biological Fractals in Browser

https://fractl.art
1•gilded-lilly•36m ago•0 comments

DeepSeek cut prices 75%. The 100x problem remains

https://venturebeat.com/orchestration/deepseek-cut-prices-75-the-100x-problem-remains
3•T-A•36m ago•0 comments

Show HN: Take a photo of a menu, get a website

https://www.eatfoodnow.com/
1•t-van•38m ago•0 comments

Inertia.js Adapter for WordPress and PHP

https://github.com/webkul/inertia
2•himanshu-here•41m ago•0 comments

Job Scheduling for Node.js

https://www.nodecron.com/
1•ankitg12•42m ago•0 comments

"Turing Complete" Learn CPU architecture with puzzles video game

https://www.youtube.com/watch?v=goclUECM2ds
1•innerHTML•44m ago•0 comments

"Fork it or leave": Linus Torvalds fires back at Linux's anti-AI crowd

https://www.neowin.net/news/fork-it-or-leave-linus-torvalds-riles-up-linuxs-ai-luddites/
3•auggierose•45m ago•0 comments

The Hugging Face Breach Is a Warning for Every Company Betting Big on AI

https://www.inc.com/chloe-aiello/the-hugging-face-breach-is-a-warning-for-every-company-betting-b...
2•saikatsg•46m ago•0 comments

Book publisher sues tech companies over AI training

https://www.reuters.com/legal/transactional/chicken-soup-soul-publisher-sues-tech-companies-over-...
2•1vuio0pswjnm7•47m ago•1 comments

Oracle Credit Risk Hits Near 18-Year High on AI Debt Load Angst

https://www.bloomberg.com/news/articles/2026-07-20/oracle-credit-risk-hits-near-18-year-high-on-a...
2•1vuio0pswjnm7•53m ago•1 comments

TCGRoll

https://tcgroll.com
1•drewsly•59m ago•0 comments

China weighs tighter export controls on AI models and chips

https://www.ft.com/content/6049a031-9e9b-464c-97bb-414da04d5a6a
7•JumpCrisscross•1h ago•0 comments

AI Nutrition Facts

https://www.g9labs.com/2026/07/20/ai-nutrition-facts/
1•gsgnine•1h ago•0 comments

Insightix – when Polymarket and Deribit price the same event differently

https://insightix.io
1•chriswolff•1h ago•0 comments

Trump's latest AI czar has resigned

https://techcrunch.com/2026/07/20/trumps-latest-ai-czar-has-already-resigned/
4•adithyaharish•1h ago•0 comments

Assessing State Reaction to the Supreme Court's Undermining of Property Rights (2025)

https://statecourtreport.org/our-work/analysis-opinion/assessing-state-reaction-supreme-courts-un...
3•1vuio0pswjnm7•1h 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?