frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

White House plan to break up iconic U.S. climate lab moves forward

https://www.science.org/content/article/white-house-plan-break-iconic-u-s-climate-lab-moves-forward
2•robtherobber•54s ago•0 comments

A calmer interface for a product in motion

https://linear.app/now/behind-the-latest-design-refresh
1•casperb•2m ago•0 comments

Show HN: On-Call Health – spot burnout before it hits your engineers

https://github.com/Rootly-AI-Labs/On-Call-Health
1•sylvainkalache•2m ago•0 comments

Astro – Ochestrator of AI Agents Such as Claude Code and Codex

https://github.com/astro-anywhere/astro-agent
1•astroanywhere•3m ago•1 comments

Authentication with Pocket ID

https://cweagans.net/2026/03/authentication-with-pocket-id/
1•cweagans•3m ago•0 comments

Trump's DOJ is not falling for Sam Bankman-Fried's MAGA makeover on X

https://arstechnica.com/tech-policy/2026/03/trumps-doj-is-not-falling-for-sam-bankman-frieds-maga...
1•tartoran•6m ago•0 comments

The Bhangmeter, a 1960s device to measure nuclear detonations

https://en.wikipedia.org/wiki/Bhangmeter
1•zahlman•7m ago•0 comments

Show HN: CastReader – Free TTS Extension That Reads Kindle Cloud Reader

https://chromewebstore.google.com/detail/castreader-tts-reader/foammmkhpbeladledijkdljlechlclpb
1•vinxu•8m ago•0 comments

Auto-georeferenced 381 Soviet military maps of China

https://sovietatlas.monarcha.ai/
2•everettglee•10m ago•0 comments

When the Simulation Starts to Feel Real

https://alvinpane.com/essays/when-the-simulation-starts-to-feel-real
2•alvinpane•12m ago•0 comments

QuickBEAM: JavaScript Runtime for the BEAM VM

https://github.com/elixir-volt/quickbeam
1•clessg•14m ago•0 comments

Show HN: The Bones of PearlOS

https://github.com/NiaExperience/PearlOS/discussions/5
2•pearlos•14m ago•0 comments

Reddit's database has two tables (2012)

https://kevin.burke.dev/kevin/reddits-database-has-two-tables/
1•tosh•17m ago•0 comments

Dario 12 months ago: In 12 months, nearly all code may be generated by AI

https://twitter.com/slow_developer/status/1899430284350616025
4•nipponese•17m ago•1 comments

Do current trends in drone technology favor offense or defense?

https://marginalrevolution.com/marginalrevolution/2024/03/do-current-trends-in-drone-technology-f...
1•paulpauper•17m ago•1 comments

#238 – Sam Winter-Levy and Nikita Lalwani on how AI won't end nuclear deterrence

https://80000hours.org/podcast/episodes/sam-winter-levy-nikita-lalwani-ai-nuclear-deterrence/
1•paulpauper•18m ago•0 comments

MongoDB outage – AWS UAE and Bahrain datacenters

https://status.mongodb.com/incidents/7g5qmxgkc2y4
3•peterjliu•19m ago•0 comments

Show HN: Scan your dev machine for AI agents, MCP servers, and IDE extensions

https://github.com/step-security/dev-machine-guard
5•varunsharma07•19m ago•0 comments

Show HN: Mozzie – a local desktop orchestrator for AI coding agents

https://github.com/usemozzie/mozzie
1•zacharykapank•20m ago•0 comments

API Design Principles for the Agentic Era

https://www.apideck.com/blog/api-design-principles-agentic-era
1•mooreds•20m ago•0 comments

Lloyds, Bank of Scot and Halifax apps showed customers other users' transactions

https://www.bbc.co.uk/news/articles/c4g23npxpwgo
2•ColinWright•20m ago•0 comments

Launch HN: IonRouter (YC W26) – High-throughput, low-cost inference

https://ionrouter.io
6•vshah1016•22m ago•0 comments

AI Cluster Runtime: Reproducible Configs for GPU-Accelerated Kubernetes Clusters

https://developer.nvidia.com/blog/validate-kubernetes-for-gpu-infrastructure-with-layered-reprodu...
1•mchmarny•22m ago•1 comments

NM framework on Karpathy's autoresearch factory

https://nervousmachine.substack.com/p/3000-agents-are-running-experiments
1•hb_124•22m ago•0 comments

Oops, You Wrote a Database

https://dx.tips/oops-database
2•tosh•26m ago•0 comments

Engram – A distributed memory system for AI agents, with extensible architecture

https://vincents-ai.github.io/engram/
2•section_me•27m ago•1 comments

Show HN: Mingle – find and connect with people, like LinkedIn but in your chat

https://github.com/aeoess/mingle-mcp
1•Tima_fey•27m ago•0 comments

Current and former Block workers say AI can't do their jobs

https://www.theguardian.com/technology/2026/mar/08/block-ai-layoffs-jack-dorsey
4•devonnull•29m ago•0 comments

PHP-rnet – a PHP extension that mimics real browser TLS fingerprints

1•takielias•31m ago•1 comments

A small CLI for stopping Git worktrees from fighting over ports

https://github.com/johndockery/portlock
1•ilovejazz442•32m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•10mo ago

Comments

nine_k•10mo 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•10mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•10mo ago
They mention this in the article.
spockz•10mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•10mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•10mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•10mo 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•10mo 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•10mo 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•10mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•10mo ago
This was very well written. Excellent article!
NetOpWibby•10mo ago
Is this like MessagePack for Haskell?