frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AutoMegaKernel: Compiling a LLM into a single CUDA kernel

https://arxiv.org/abs/2606.09682
1•OsamaJaber•2m ago•0 comments

In A.I. Blunder, More Than 34,000 Instagram Accounts Became Vulnerable

https://www.nytimes.com/2026/06/09/technology/34000-instagram-accounts-ai.html
2•sdellis•7m ago•2 comments

Amp inspired extension for pi agent

https://github.com/5omeOtherGuy/pi-mmr
1•Licenser•10m ago•1 comments

Show HN: LANCommander v2.1.0 – New Avalonia-based launcher

https://lancommander.app/Releases/2.1.0/
2•pathartl•11m ago•0 comments

Run local agentic AI on the Mac using MLX [video]

https://www.youtube.com/watch?v=wykPErJ8M-8
1•angristan•11m ago•0 comments

Show HN: BibTeX-format, and Emacs compatable BibTeX formatter

https://gitlab.com/smaller-infinity/bibtex-format
1•smaller-infinty•12m ago•0 comments

Woman Gets on Route 66. Then She Starts Hearing Music Coming from Her Tires

https://www.motor1.com/news/798011/route-66-missouri-musical-road/
1•rmason•13m ago•0 comments

Anthropic says the world should have option to 'pause' on AI

https://www.theguardian.com/technology/2026/jun/05/anthropic-urges-temporary-pause-on-ai-developm...
2•GaryBluto•14m ago•3 comments

Off By: Exploiting a Use-After-Free in the Linux Kernel

https://blog.exodusintel.com/2026/06/08/off-by-exploiting-a-use-after-free-in-the-linux-kernel/
1•caned•14m ago•0 comments

The Evaluations Framework

https://developer.apple.com/documentation/evaluations
1•iamflimflam1•16m ago•0 comments

Plex, the Slow Creep of Enshittification

https://the.unknown-universe.co.uk/home-lab/plex-to-jellyfin/
2•speckx•18m ago•0 comments

Show HN: Agent-pd – A zero-token audit log to catch rogue Claude Code subagents

https://github.com/varmabudharaju/agent-pd/blob/master/README.md
2•softie123•19m ago•0 comments

Show HN: OpenYabby, voice-controlled multi-agent orchestrator for Claude Code

https://github.com/OpenYabby/OpenYabby
1•idovmamane•20m ago•0 comments

StumbleTV: Watch actidentally-exposed webcams from across the world

https://stumbletv.alec.is/c/896a61ddf792ab1f
2•arm32•20m ago•0 comments

The Push to Solo Work

https://adrianhoward.com/posts/the-push-to-solo-work/
1•adrianhoward•22m ago•0 comments

Google's 20% 'project' has become AI's 120% 'attention'

https://joe.dev/posts/new-20pct-time/
1•scottdbuchanan•22m ago•0 comments

Now what?

https://blog.danieljanus.pl/now-what/
1•nathell•23m ago•0 comments

Optimal Seating on the Airbus A380

https://tech.marksblogg.com/a380-seating.html
1•marklit•28m ago•0 comments

Ask HN: Prediction for SpaceX IPO?

3•bix6•28m ago•4 comments

Grit: Rewriting Git in Rust with Agents

https://blog.gitbutler.com/true-grit
4•cbrewster•30m ago•0 comments

Show HN: AI News Aggregator

https://aibriefs.news
2•michelmi•32m ago•1 comments

Progress: Real and Potemkin

https://scottlocklin.wordpress.com/2026/06/09/progress-real-imaginary/
1•o_nate•35m ago•0 comments

Ask HN: Is online irritability the canary in the coal mine for various fields?

1•amichail•39m ago•1 comments

Show HN: RS-Poker V5 The one with self learning multi-threaded async Agents

https://ottercrew.group/blog/poker-v5/
2•eclark•40m ago•2 comments

The quiet push to shield pesticide makers from lawsuits

https://grist.org/sponsored/the-quiet-push-to-shield-pesticide-makers-from-lawsuits/
4•speckx•41m ago•1 comments

Where was your backyard millions of years ago?

https://phys.org/news/2026-04-backyard-millions-years.html
2•PaulHoule•43m ago•0 comments

Show HN: Predict World Cup scores each day against your friends

https://scorinho.com
2•cwbuilds•43m ago•2 comments

NYC Founders Looking for Startup Office Hardware

2•ultra_em•43m ago•0 comments

Runtime Guards for AI Agents

https://guard-sdk.js.org/
1•apvarun•45m ago•0 comments

Devs know AI code is riddled with holes, but ship it anyway

https://www.theregister.com/devops/2026/06/09/devs-know-ai-code-is-riddled-with-holes-but-ship-it...
12•speckx•50m ago•6 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?