frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Alan Turing's biggest AI assumption may have been wrong – ScienceDaily

https://www.sciencedaily.com/releases/2026/07/260713084850.htm
1•ulrischa•1m ago•0 comments

STV: A full-motion video codec for the Atari ST

https://medium.com/@jonas.eschenburg/stv-a-video-codec-for-the-atari-st-6e46355c50e4
1•indyjo•1m ago•0 comments

Making a mesh dance to music with its Laplacian eigenmodes

https://www.hughparry.com/blog/music-mesh/
1•HughParry•4m ago•0 comments

Handling environment variables in Emacs on OS X and Linux

https://seds.nl/notes/handling_environment_variables_in_emacs_on_osx_and_linux/
2•speckx•5m ago•0 comments

First CHERIoT Silicon

https://cheriot.org/silicon/2026/03/04/cheriot-first-silicon.html
2•fanf2•6m ago•0 comments

A Language Feature to Rule Them All (Algebraic Effects)

https://btmc.substack.com/p/a-language-feature-to-rule-them-all
2•sirwhinesalot•7m ago•0 comments

Satyress – Robots That Work

https://www.satyress.com/
2•Anon84•7m ago•0 comments

WNBA deletes, apologizes for post showing wager between Reese, Bueckers

https://www.nytimes.com/athletic/7479466/2026/07/30/paige-bueckers-angel-reese-betting-game-video...
2•donsupreme•8m ago•0 comments

Glen Hansard, Frontman of Irish Band the Frames, Dies at 56

https://www.nytimes.com/2026/07/29/arts/glen-hansard-dead.html
2•whack•9m ago•0 comments

Why Doesn't Ellison Shave? He'd Look Better

https://www.fastcompany.com/47335/larrys-bad-facial-hair-day
2•Poldart•9m ago•0 comments

CRTC's Streamer Contribution Decisions Dead, Online Streaming Act Reset to Come

https://www.michaelgeist.ca/2026/07/starting-over-court-filing-confirms-the-crtcs-streamer-contri...
2•jyunwai•10m ago•0 comments

AI Agent Authentication and Authorization (IETF Internet-Draft)

https://datatracker.ietf.org/doc/html/draft-klrc-aiagent-auth
1•jhgaylor•13m ago•1 comments

Can AI agents conduct open-ended AI research?

https://arxiv.org/abs/2607.27191
1•randomwalker•13m ago•0 comments

thinkingmachines/Inkling-Small

https://huggingface.co/thinkingmachines/Inkling-Small
4•Philpax•14m ago•1 comments

New cars are getting 1.2cm longer and 0.5cm taller each year

https://www.transportenvironment.org/articles/ever-bigger-car-size-at-a-crossroads
2•giuliomagnifico•14m ago•1 comments

You Are the Riverbed

https://nik.art/you-are-the-riverbed/
1•herbertl•14m ago•0 comments

Building Hollywood Motion Capture from Scratch

https://www.youtube.com/playlist?list=PLFA4eWSzGLgg
1•ivanjermakov•14m ago•0 comments

Gunther von Hagens Obituary

https://www.theguardian.com/artanddesign/2026/jul/30/gunther-von-hagens-obituary
1•n1b0m•15m ago•0 comments

We Gave GPT 5.6 Sol a Real Business. It Lied, Spammed, and Lost $447

https://www.bottlenecklabs.com/blog/autonomously-run-businesses
3•Areibman•17m ago•0 comments

Flock CEO Claims They've Been Thinking About Privacy for Nine Years

https://ipvm.com/reports/flock-privacy-nine
2•jhonovich•17m ago•0 comments

China is starting to measure EV charging times in seconds, not minutes

https://electrek.co/2026/07/30/china-is-starting-to-measure-ev-charging-times-in-seconds-not-minu...
1•Brajeshwar•18m ago•0 comments

Kagi releases official Kagi Assistant apps

https://kagi.com/changelog#11136
2•PhilippGille•21m ago•0 comments

GardenOS: A Garden That Remembers (Prelaunch Best Practices)

https://github.com/KrazyKulsum/earth-scribe-suite
1•kulsumshannan•21m ago•0 comments

A tool for finding the causes of unstable Python tests

https://github.com/mgaitan/pytest-leak-finder
1•pomponchik•21m ago•0 comments

Apple's New Upgrade Program Is a Trap

https://www.theatlantic.com/technology/2026/07/apple-lease-upgrade-program/688106/
2•littlexsparkee•25m ago•1 comments

China's "artificial sun" project achieves new engineering milestone

https://en.people.cn/n3/2026/0629/c90000-20472114.html
2•yogthos•25m ago•0 comments

Web, iOS and Android from Same Codebase with Dowe Lang

https://dowe.dev
1•victorriba•25m ago•0 comments

We Are Losing the Ability to Discover What We Didn't Know to Ask

https://www.nytimes.com/2026/07/08/opinion/ai-google-gemini-search-questions.html
1•monkeydust•26m ago•1 comments

Trump's Career Mirrors Godzilla in Political Study

https://www.chosun.com/english/industry-en/2026/07/30/QFS6NTDIXNCPFKHAPPXHWUMROE/
1•DemiGuru•27m ago•0 comments

That's Not What I Meant by 'Using AI'

https://mudlej.com/articles/ai-development-approaches/
2•jhartikainen•29m ago•1 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?