frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why German trains are never on time anymore

https://www.lemonde.fr/en/international/article/2026/05/29/why-german-trains-are-never-on-time-an...
1•rawgabbit•58s ago•0 comments

Show HN: Heypi – Like OpenClaw but for Your Team (Slack, Discord, etc.)

https://github.com/hunvreus/heypi
1•hunvreus•2m ago•0 comments

Reproducible Infrastructure and Nix

https://www.heavybit.com/library/podcasts/open-source-ready/ep-38-reproducible-infrastructure-wit...
1•jmartens•3m ago•0 comments

ARM Open Sources AI-Powered Security Code Review

https://github.com/arm/metis
1•ARob109•3m ago•0 comments

What is to be done about MGLRU?

https://lwn.net/Articles/1072866/
1•infinet•3m ago•0 comments

DDS Vibe Academy – 47 free AI coding masterclasses, built by AI agents

https://ddsboston.com/pages/dds-vibe-academy
1•robert_dds•3m ago•0 comments

GNUtrition 0.33.0rc4

https://savannah.gnu.org/news/?id=10896
1•amcclure•3m ago•0 comments

DOE's Lockheed Martin nuclear-weapons M&O contract: $48B cumulative since 1993

https://www.usaspending.gov/award/27001/
2•thebuildout•5m ago•0 comments

Show HN: Heirlooms – pass your legacy to family after stop breathing

1•jojwong•5m ago•2 comments

Plume – Sensible HTTP Security Headers for Gleam Web Servers, Inspired by Helmet

https://github.com/scott-ray-wilson/plume
1•TheWiggles•6m ago•0 comments

How to make Unreal's Message Log 100 times faster

https://larstofus.com/2026/05/28/how-to-make-unreals-message-log-100-times-faster/
1•caminanteblanco•6m ago•0 comments

AI will be used to estimate age of asylum seekers from next year

https://www.bbc.co.uk/news/articles/ce3pe36qe7ro
2•vylorn•9m ago•0 comments

Hybrid local and cloud LLM stack for regulated financial document processing?

2•rem_cam•9m ago•0 comments

Heirloom.app – Keep important information in a encrypted place

1•jojwong•9m ago•0 comments

Show HN: Simple news aggregator with source bias meters

https://unbiasthenews.com
2•sammy0910•10m ago•0 comments

Ferrari bungled the design of its first EV

https://www.theverge.com/transportation/939226/ferrari-luce-design-terrible-ev-jony-ive-apple
1•Brajeshwar•11m ago•0 comments

Good to Know: Exiting an international organization

https://goodauthority.org/news/good-to-know-exiting-an-international-organization/
1•jruohonen•11m ago•0 comments

International grads three times more likely to find work in Germany

https://thepienews.com/international-grads-three-times-more-likely-to-find-work-in-germany/
1•rustoo•11m ago•1 comments

Study reveals brain circuit that keeps memories from getting mixed up

https://www.uclahealth.org/news/release/study-reveals-brain-circuit-keeps-memories-getting-mixed-up
2•bryanrasmussen•12m ago•0 comments

Ingesting 1Gbps of logs into ClickHouse for $180/month

https://www.opendata.dev/blog/ingesting-1gbps-logs-to-clickhouse/
5•apurvamehta•12m ago•0 comments

Why some Indian tech engineers are losing interest in Silicon Valley

https://www.sfchronicle.com/bayarea/article/indian-tech-engineer-silicon-valley-22233304.php
4•littlexsparkee•13m ago•1 comments

JetBrains is killing another popular IDE (DataSpell)

https://www.neowin.net/news/end-of-an-era-jetbrains-is-killing-this-popular-ide-used-by-python-devs/
1•bundie•14m ago•0 comments

Spite: A Dignified Music Player

https://www.jamesreeves.co/spite/
1•schu•15m ago•1 comments

Samsung Lawyer Fails to Differentiate iPad and Galaxy Tab in Court (2011)

https://apple.slashdot.org/story/11/10/14/2051219/samsung-lawyer-fails-to-differentiate-ipad-and-...
1•Caarticles•16m ago•0 comments

Arbitrage

https://grokipedia.com/page/Arbitrage
2•BruceEel•17m ago•0 comments

Brazilian Internet Forum (FIB16) in Belém, Pará: A Visual Tour

https://manualdousuario.net/en/brazilian-internet-forum-fib16-belem-pictures/
1•rpgbr•18m ago•1 comments

Claude Talk Small. Code Still Big

https://spatie.be/blog/claude-talk-small-code-still-big
1•speckx•18m ago•0 comments

The MQ-28 Ghost Bat Is Now Flying in the U.S.

https://theaviationist.com/2026/05/28/the-mq-28-ghost-bat-is-now-flying-in-the-u-s/
2•big_toast•20m ago•1 comments

// The hope is that Claude Code will be unusable on this repository

https://codeberg.org/forgejo-contrib/forgejo-cli/src/branch/main/src/main.rs#L88-L91
2•themgt•22m ago•0 comments

Teaching tmux to babysit my Claude Code agents

https://blog.angeloff.name/post/2026/05/29/teaching-tmux-to-babysit-my-claude-code-agents/
1•StanAngeloff•22m 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?