frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Water system controllers don't belong on the internet, says ex-NSA chief

https://www.theregister.com/security/2026/08/07/water-system-controllers-dont-belong-on-the-inter...
1•Bender•1m ago•0 comments

Cop who used police system to snoop for info on crook pals sentenced

https://www.theregister.com/legal/2026/08/07/cop-who-used-police-system-to-snoop-for-info-on-croo...
1•Bender•2m ago•0 comments

Flesh-eating screwworms feast on humans in Mexico; human cases top

https://arstechnica.com/health/2026/08/flesh-eating-screwworms-feast-on-humans-in-mexico-human-ca...
1•Bender•2m ago•0 comments

Show HN: From raw Point Cloud dataset to regular Grid index

https://huggingface.co/spaces/adec314/point-to-grid
1•adec314•7m ago•0 comments

Investors Clamor to Bet on AI Whiz Kid Fund After Situational Awareness Turmoil

https://www.bloomberg.com/news/articles/2026-08-07/silicon-valley-rallies-around-ai-whiz-kid-afte...
2•petethomas•8m ago•0 comments

Comparable information rates across the human communicative niche

https://pmc.ncbi.nlm.nih.gov/articles/PMC6984970/
1•gregsadetsky•11m ago•0 comments

Predictable Updates About Consciousness

https://minihf.com/posts/2024-08-08-predictable-updates-about-consciousness/
2•zetalyrae•15m ago•0 comments

Open source, locally translate any video to English

https://github.com/devrim/mid-voice
1•aesopsfable•17m ago•1 comments

iOS 26 Gets First Jailbreak Thanks to Dopamine

https://www.macrumors.com/2026/08/07/ios-26-dopamine-jailbreak/
3•tosh•19m ago•0 comments

Show HN: Hermes Missions – crash-safe durable execution for AI agents, no deps

1•devcriollo•20m ago•1 comments

China's Kimi K3 AI model escapes isolated sandbox during security test

https://www.scmp.com/tech/tech-trends/article/3363271/chinas-kimi-k3-ai-model-escapes-isolated-sa...
5•johnbarron•21m ago•0 comments

Schrödinger's Toctou

https://github.com/xoreaxeaxeax/schrodingers-toctou
2•karel-3d•25m ago•0 comments

Ask HN: What art would you like to express?

2•d4ng•27m ago•1 comments

Geometric Fluid Mechanics (SGP'26 Course)

https://www.youtube.com/watch?v=c-iGLl4rPik
1•E-Reverance•27m ago•0 comments

Release: Rep. Khanna Introduces Data Center Bill of Rights

https://khanna.house.gov/media/press-releases/release-rep-khanna-introduces-data-center-bill-rights
2•fortran77•29m ago•1 comments

Show HN: Secchi – Package intelligence in your terminal

https://github.com/kannandreams/secchi
1•kannanpoem1984•30m ago•1 comments

YouTube's AI Detection Kicked Us in the Face

https://twitter.com/Kurz_Gesagt/status/2083191397981561232
2•unsnap_biceps•31m ago•0 comments

xAI's Grok Build 1.0 ships an undocumented remote-workspace command

https://runtimewire.com/article/exclusive-xai-s-grok-build-1-0-ships-an-undocumented-remote-works...
2•ryanmerket•32m ago•0 comments

CFPB Winds Down Probe of Community Loan Funds Targeted by Vought

https://news.bloomberglaw.com/banking-law/cfpb-winds-down-probe-of-community-loan-funds-targeted-...
2•petethomas•33m ago•0 comments

Smoking accessories are making a comeback

https://www.admiddleeast.com/story/the-most-controversial-trend-of-2026-smoking-accessories-are-m...
1•Pamar•36m ago•2 comments

Startup Lumilens Raises $700M to Replace Data-Center Wires with Light

https://www.wsj.com/tech/startup-raises-700-million-to-replace-data-center-wires-with-light-adc74358
2•bookofjoe•39m ago•1 comments

What If Wishes Could Be Bought and Sold?

https://www.newyorker.com/books/page-turner/what-if-wishes-could-be-bought-and-sold
1•Anon84•42m ago•0 comments

AI Tool Directory

1•lokeshjoshi•43m ago•0 comments

Pyhctsa – Highly comparative time-series analysis

https://github.com/DynamicsAndNeuralSystems/pyhctsa/
1•jmoo2880•46m ago•0 comments

Show HN: Tape Music Hub, local music library manager with a P2P phone companion

https://tape-music-hub.gordo.design/
1•sergormo•46m ago•0 comments

Mailüfterl (Early Transistorized Computer)

https://en.wikipedia.org/wiki/Mail%C3%BCfterl
2•wolfi1•46m ago•0 comments

Run Gitea Actions on Apple Hardware

https://github.com/markwylde/gitea-runner-lume
2•turblety•47m ago•0 comments

Birdsong follows a fundamental law of human language

https://www.scientificamerican.com/article/birdsong-follows-a-fundamental-law-of-human-language/
2•1659447091•48m ago•1 comments

BMW Rolling Out In-Car Spam

https://www.heise.de/en/news/BMW-Annoyed-by-Advertising-11399005.html
10•lschueller•51m ago•0 comments

The AI Experts Who Couldn't Predict AI

https://greyenlightenment.com/2026/07/26/the-ai-experts-who-couldnt-predict-ai/
2•paulpauper•51m 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?