frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: RoBrain – Shared memory for AI agents, with rejected alternatives

https://github.com/adelinamart/robrain
1•mart1adelina•1m ago•0 comments

What Copy Fail looked like on a minimal OS

https://github.com/siderolabs/awesome-talos/wiki/Why-Kubernetes-nodes-inherit-problems-they-never...
1•hannle•1m ago•0 comments

Show HN: WiFi Heatmap – free, browser-based predictive WiFi planner

https://wifiheatmap.app/
1•kgergov•1m ago•0 comments

There's no such thing as "age verification"

https://pluralistic.net/2026/05/19/shes-dead-of-course/
1•Brajeshwar•1m ago•0 comments

Chart: How Tech Giants Make Their Billions (2017)

https://www.visualcapitalist.com/chart-5-tech-giants-make-billions/
1•chistev•2m ago•1 comments

Powertracker, 29 GW of announced AI capacity mapped to host counties

https://powertracker.io/
1•twistedwabbit•4m ago•0 comments

Forward-Looking Laziness: What Changes When AI Writes 95% of the Code

https://www.szia.ai/post/forward-looking-laziness-what-changes-when-ai-writes-95-of-the-code
1•mszel•4m ago•0 comments

What Bazel taught us about Terraform

https://stategraph.com/blog/what-bazel-taught-us-about-terraform
1•lawnchair•4m ago•0 comments

Parag Agrawal's AI startup wants to pay publishers when AI agents use their work

https://fortune.com/2026/05/19/parag-agrawal-parallel-startup-pay-publishers-when-ai-agents-use-t...
1•rahul003•5m ago•0 comments

.DJVU – Open, Highly Compressed .PDF Alternative

https://en.wikipedia.org/wiki/DjVu
1•evolve2k•5m ago•0 comments

Moving my backups to restic (2021)

https://blog.darkmere.gen.nz/2021/02/moving-my-backups-to-restic/
2•mooreds•6m ago•0 comments

Book on Truth in the Age of A.I. Contains Quotes Made Up by A.I

https://www.nytimes.com/2026/05/19/business/media/future-of-truth-ai-quotes.html
1•droidjj•6m ago•0 comments

My sci-fi novel recommendations (2023)

https://www.noahpinion.blog/p/my-sci-fi-novel-recommendations-888
1•mooreds•7m ago•0 comments

Mystery Math Whiz and Novelist Advance Permutation Problem (2018)

https://www.quantamagazine.org/sci-fi-writer-greg-egan-and-anonymous-math-whiz-advance-permutatio...
1•mooreds•7m ago•0 comments

AI's Missing Pricing Tier

https://medium.com/@sandeepjawaharp/ais-missing-pricing-tier-a0522ab083d4
1•SandeepJawahar•7m ago•0 comments

EJBCA – Open-source public key infrastructure (PKI) and CA software

https://github.com/Keyfactor/ejbca-ce
1•sigalor•8m ago•0 comments

Programming the Amiga and Atari ST in C: Counter Loops and Game Ticks

https://retrogamecoders.com/st-amiga-c-loops/
1•ibobev•8m ago•0 comments

Cheap cloud AI was never going to last. The off-ramp wasn't built for everyone

https://www.greatworkeveryone.com/writing/cheap-cloud-ai-was-never-going-to-last
2•connorrandazzo•9m ago•0 comments

EvmScript: Write EVM programs using TypeScript

https://github.com/KimlikDAO/EvmScript
1•szaglam•9m ago•0 comments

Show HN: Askbyemail.com – Send an email, get AI answer or summary (no signup)

https://www.askbyemail.com
1•ahallan•9m ago•0 comments

OCC Violated 4 Statutes, Allowing National Banks to Engage in Crypto Activities

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6789822
3•petethomas•10m ago•0 comments

AI Agents Reason over Enterprise Data

https://nexla.com/agentic-rag-guide/
1•Debanitrkl•15m ago•0 comments

Why so many tools getting hacked? Tanstack, Mistral, Grafana?

https://techcrunch.com/2026/05/18/open-source-tool-maker-grafana-labs-says-hackers-stole-its-code...
1•duriantaco•16m ago•0 comments

Something's Rotten in the State of macOS Icon Design

https://blog.jim-nielsen.com/2026/rotten-macos-icon-design/
2•Brajeshwar•17m ago•0 comments

Show HN: Orbit – delegate a backlog to your AI agent and trust what comes back

https://github.com/human-again/orbit
1•varmahaj•19m ago•0 comments

VS Code: different themes for different filetypes

https://github.com/microsoft/vscode/issues/20652
1•tosh•19m ago•0 comments

Researchers attack AMD's Infinity Fabric to bypass hardware security protections

https://www.tomshardware.com/pc-components/researchers-attack-amds-infinity-fabric-to-bypass-hard...
1•Timofeibu•19m ago•0 comments

Caltrans explores 140mph 'bullet buses' between L.A. and San Francisco

https://secretlosangeles.com/california-140-mph-bullet-buses-la-sf/
2•voxadam•20m ago•2 comments

Kubernetes' Default CoreDNS Configuration Is *Insecure

https://blog.kammel.dev/post/kubernetes_coredns_insecure/
3•datosh•21m ago•0 comments

'It is incredible': How AI is transforming mathematics

https://www.nature.com/articles/d41586-026-01553-1
1•sbulaev•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?