frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

iOS 27 code suggests Apple could restrict leased devices after missed payments

https://9to5mac.com/2026/07/21/ios-27-code-suggests-apple-could-restrict-leased-devices-after-mis...
1•apparent•14s ago•0 comments

Linux kernel team publishes 432 CVEs in two days

https://www.theregister.com/security/2026/07/22/linux-kernel-team-publishes-432-cves-in-two-days/...
1•speckx•33s ago•0 comments

Grok is a surprisingly good automated theorem prover

1•henryrobbins00•57s ago•0 comments

Learn how to build AI from scratch (for free)

https://languagemodelbuilder.com/
1•luispa•1m ago•0 comments

Stop getting screwed by professionals who want to upsell you

https://nodogcheck.com/
2•lurnake•1m ago•1 comments

Show HN: Cumulative multi layered genomic precision reporting

https://genomenarrator.com/
1•ayanddddd•2m ago•0 comments

Show HN: Fenrin – fast fictional names generation from phonological rules

https://nibzard.github.io/fenrin/
1•nkko•2m ago•0 comments

Frontier AI models will attempt to cheat

https://www.aisi.gov.uk/blog/cheating-behaviour-in-frontier-model-evaluations
1•ambigious7777•3m ago•0 comments

Characterizing Metastable Faults and Failures

http://muratbuffalo.blogspot.com/2026/07/characterizing-metastable-faults-and.html
1•tanelpoder•5m ago•0 comments

Smartphone use on the toilet and the risk of hemorrhoids (2025)

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0329983
1•speckx•6m ago•0 comments

Vatican silent on Jewish villains in U.S. Catholic church pageants

https://forward.com/news/839093/ukrainian-catholic-church-verteps-jewish-villains/
1•leephillips•7m ago•0 comments

10" Raspberry Pi Touch Display 2 is $80

https://www.raspberrypi.com/news/a-new-10-raspberry-pi-touch-display-2-available-now-at-80/
1•geerlingguy•7m ago•0 comments

The Penny Is Dead, but Precision Isn't

https://www.sanjayparekh.com/the-penny-is-dead-but-precision-isnt/
1•sanjayparekh•8m ago•1 comments

GigaToken: ~1000x faster Language model tokenization

https://github.com/marcelroed/gigatoken/
2•syrusakbary•8m ago•0 comments

World Postcard Day 2026 postcard and theme

https://www.postcrossing.com/blog/2026/07/22/world-postcard-day-2026-postcard-theme
1•Tomte•9m ago•0 comments

Are AI Labs Pelicanmaxxing?

https://dylancastillo.co/posts/pelicanmaxxing.html
2•dcastm•11m ago•0 comments

US Circulates Draft UN Free Speech Declaration Targeting EU Censorship Law

https://reclaimthenet.org/trump-admin-circulates-draft-un-free-speech-declaration-eu-dsa
1•anonymousiam•12m ago•0 comments

Scoring our agent harness against Ryan Lopopolo's 12 harness engineering theses

https://tech.orbitalwitness.com/posts/2026-07-22-grading-ourselves-against-the-harness-engineerin...
1•andrewthompsonx•12m ago•0 comments

Next chapter: Restructuring GitHub's bug bounty program

https://github.blog/security/next-chapter-restructuring-githubs-bug-bounty-program/
1•Klaster_1•12m ago•0 comments

Xbox's new VP of engineering quits just 2 months after taking the job

https://www.pcgamer.com/gaming-industry/xboxs-new-vp-of-engineering-quits-just-2-months-after-tak...
2•Brajeshwar•13m ago•0 comments

Network expert Glenn Fiedler warns game devs to fix game vulnerabilities with AI

https://gamesbeat.com/network-expert-glenn-fiedler-warns-game-programmers-to-fix-game-code-vulner...
1•gafferongames•13m ago•0 comments

TEFF Lexicon–The Most Expensive Typeface

https://www.typewolf.com/blog/the-worlds-most-expensive-typeface
1•_vaporwave_•14m ago•0 comments

'.ai' websites are booming – and making millions for this tiny Caribbean nation

https://www.techradar.com/pro/ai-websites-are-booming-and-making-millions-for-this-tiny-caribbean...
1•speckx•15m ago•0 comments

AI meets Cryptography 3: What AI Found in Bron Labs's bron-crypto

https://blog.zksecurity.xyz/posts/bron-bugs/
3•baby•16m ago•0 comments

Why Trust Could Be Victoria's Next Export

https://www.douglasmagazine.com/building-trust-legal-victoria-tech-global-growth
1•ClearwayLaw•18m ago•0 comments

Ask HN: Where is NFTs as a technology or investment?

1•Otternonsenz•19m ago•3 comments

OrbitalWiki, a source-backed satellite catalog with a free API

https://www.orbitalwiki.com
1•Anomalit•19m ago•0 comments

Show HN: An MCP server that gives AI assistants live weather and hazard data

https://pixelgust.com/blog/weather-mcp-server
1•pixelgust•20m ago•0 comments

OpenAI admits it was the source of the agent swarm that attacked Hugging Face

https://www.theregister.com/ai-and-ml/2026/07/22/openai-admits-it-was-the-source-of-the-agent-swa...
4•maguszin•21m ago•0 comments

It's not a "rogue AI" when a badly made security harness executes scripts

https://hachyderm.io/@thomasfuchs/116964576606603226
3•doener•21m 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?