frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Explainer: What is Basel and why has it been so contentious?

https://www.reuters.com/legal/legalindustry/what-is-basel-why-has-it-been-so-contentious-2026-03-12/
1•petethomas•1m ago•0 comments

Show HN: The Common Infrastructure for Agentic Communication

https://cyrisai.dev/
1•krishnamzg•6m ago•0 comments

Adapting to the New AI Landscape in Software Engineering

https://docs.google.com/document/d/1-vxazqwALKGivwedpGET4j1ipgab09C6RbLMTZ5ve5U/edit?tab=t.wi7nr0...
1•alexjray•7m ago•0 comments

Fed to loosen capital requirements for big US banks

https://www.ft.com/content/a1c81f17-201f-4e3f-8e02-e0b304f1b6a1
2•petethomas•8m ago•2 comments

How HN: PDF Table Extractor – AI-powered tool to extract tables from PDFs to CSV

https://pdf-table-extractor-5wak.vercel.app
1•atdl•9m ago•1 comments

What's My ΔEOK JND?

https://www.keithcirkel.co.uk/whats-my-jnd/
1•donohoe•13m ago•0 comments

Agent Skills for Interview Preparation

https://github.com/jiito/interview-prep-skills
1•jiito•14m ago•0 comments

Probabilistic Execution Beyond Classical Systems

https://www.authorea.com/users/903147/articles/1391658-probabilistic-execution-beyond-classical-s...
1•huiwenhan•15m ago•1 comments

Judgment and creativity are all you need

https://lethain.com/judgment-is-all-you-need/
1•donutshop•15m ago•0 comments

Hackers reportedly stole nearly 1,000TB of data from Telus Digital

https://mobilesyrup.com/2026/03/12/hackers-steal-nearly-1000tb-of-data-from-telus-digital/
2•whynotmaybe•17m ago•0 comments

Management in the Age of AI

https://blog.staysaasy.com/p/management-in-the-age-of-ai
1•donutshop•17m ago•0 comments

To Sparsify or to Quantize: A Hardware Architecture View

https://www.sigarch.org/to-sparsify-or-to-quantize-a-hardware-architecture-view/
2•matt_d•33m ago•1 comments

Tennessee grandmother jailed after AI face recognition error links her to fraud

https://www.theguardian.com/us-news/2026/mar/12/tennessee-grandmother-ai-fraud
8•danso•35m ago•0 comments

Don't Vibe – Prove

https://ngrislain.github.io/projects/2026-3-12-dont-vibe--prove/
3•ngrislain•40m ago•0 comments

I built the Vy replacement that launches March 26th, the day Vy shuts down

https://inceptive-ai.com
2•alymaknojiya•41m ago•3 comments

Meta delays rollout of new AI model after performance concerns

https://www.nytimes.com/2026/03/12/technology/meta-avocado-ai-model-delayed.html
5•wibbily•44m ago•2 comments

Adobe's longtime CEO to exit role amid AI disruption, shares fall

https://www.reuters.com/sustainability/boards-policy-regulation/adobe-announces-ceo-transition-sh...
5•tartoran•47m ago•0 comments

One plan/spec to rule them all (at least replace lots of docs)

3•wek•50m ago•0 comments

In space, no one can hear you kernel panic

https://increment.com/software-architecture/in-space-no-one-can-hear-you-kernel-panic/
2•p0u4a•51m ago•1 comments

Rivian Introduces R2 Lineup, Sharing Full Trims and Pricing

https://rivian.com/newsroom/article/rivian-introduces-r2-lineup
3•freetime2•51m ago•1 comments

Show HN: Nix on Windows –- proof-of-concept demo

https://github.com/nix-windows/nix-windows-demo
7•Ericson2314•54m ago•0 comments

How a subtle CSP misconfiguration broke our admin panel and how we fixed it

https://syndicode.com/blog/csp-failure-rails/
2•lglazyeva•54m ago•0 comments

Auto-Browser – An MCP-native browser agent with human takeover

https://github.com/LvcidPsyche/auto-browser
1•Lvcid•56m ago•0 comments

Silicon Valley's New Obsession: Watching Bots Do Their Grunt Work

https://www.wsj.com/tech/ai/ai-bots-claude-openclaw-285ac816
3•bookofjoe•57m ago•1 comments

Silicon Valley Abuzz About Adding AI Compute to Engineer Compensation

https://www.businessinsider.com/ai-compute-compensation-software-engineers-greg-brockman-2026-3
1•healsdata•57m ago•1 comments

Show HN: Tarvos – Relay Architecture for infinitely building with coding agents

https://github.com/Photon48/tarvos/tree/main
1•Photon48•57m ago•0 comments

Enabling Efficient Sparse Computations Using Linear Algebra Aware Compilers

https://www.osti.gov/biblio/3013883
1•matt_d•58m ago•0 comments

Show HN: Parevo Core – Auth, tenant, permission in one Go library

https://github.com/parevo/core
1•parevo•59m ago•0 comments

Moving beyond RLM and ReAct based coding agents

https://randomlabs.ai/blog/slate
2•akira_067•1h ago•0 comments

Full Source Code of Sweden's E-Government Platform Leaked from Compromised CGI

https://darkwebinformer.com/full-source-code-of-swedens-e-government-platform-leaked-from-comprom...
2•reimertz•1h 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?