frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: AgentBox – SDK to Run Claude Code, Codex, or OpenCode in Any Sandbox

https://github.com/TwillAI/agentbox-sdk
2•willydouhard•52s ago•0 comments

Sort by Controversial (2018)

https://slatestarcodex.com/2018/10/30/sort-by-controversial/
2•cwillu•1m ago•0 comments

AI and Teaching – The Brave New World

https://steveblank.com/2026/04/22/ai-and-teaching-the-brave-new-world/
2•Brajeshwar•1m ago•0 comments

Amal Khalil and the Lie We Keep Repeating

https://substack.com/home/post/p-195191174
2•__yak•1m ago•0 comments

Show HN: AI Square Face Avatar Generator and Classic Flash Pixel Icon Generator

https://www.squarefacegenerator.ai
1•hashkitly•3m ago•0 comments

Apps and programming: two accidental tyrannies

https://andymatuschak.org/tat/
1•sebg•3m ago•0 comments

Big O for MySQL: Why the Same Query Gets Slow at Scale

https://anotherboringtechblog.com/2026/04/big-o-for-mysql/
2•tanelpoder•4m ago•0 comments

Dear Codebase: A Letter from Your Coding Agent

https://mroczek.dev/articles/dear-codebase-letter-from-agent/
1•lackoftactics•4m ago•0 comments

White House accuses China of 'industrial scale' theft of AI technology

https://www.reuters.com/world/white-house-accuses-china-industrial-scale-theft-ai-technology-ft-r...
1•nickthegreek•6m ago•1 comments

Muon Experiment Eliminates Fifth Force, Confirms Standard Model

https://arstechnica.com/science/2026/04/physicists-think-theyve-solved-the-muon-mystery/
1•dan-bailey•6m ago•0 comments

Name in Landsat

https://science.nasa.gov/specials/your-name-in-landsat/
1•luispa•6m ago•0 comments

Audio transcription is worse in 2026 than it was in 2016

https://write.as/shantnu/audio-transcription-is-worse-in-2026-than-it-was-in-2016
1•shantnutiwari•7m ago•0 comments

Making beautiful work is getting harder

https://slowlywilliam.com/2026/04/21/why-everything-is-terrible.html
2•quicklywilliam•8m ago•1 comments

AuraCode – An AI Agent tool to visualize and chat with messy codebases

https://www.auracode.space/
1•TaraW1•9m ago•0 comments

Dioxus – Fullstack app framework for web, desktop, and mobile in Rust

https://github.com/dioxuslabs/dioxus
1•modinfo•9m ago•0 comments

Show HN: JSBT – binary serialization for real JavaScript object graphs

https://github.com/cheprasov/ts-jsbt
1•cheprasov•9m ago•0 comments

Bitwarden Statement on Checkmarx Supply Chain Incident

https://community.bitwarden.com/t/bitwarden-statement-on-checkmarx-supply-chain-incident/96127
3•Wingy•10m ago•0 comments

Show HN: Uvx skill-mgr install -t Claude -t codex

https://github.com/AI-Colleagues/skill-mgr
1•NeuralNotwork•10m ago•0 comments

macOS Desktop app v0.0.1 Preview Release "bot with a budget" idea

https://github.com/DialtoneApp/macos-app
1•fcpguru•10m ago•1 comments

IP Networking in Deep Space

https://blog.apnic.net/2026/04/16/podcast-ip-networking-in-deep-space/
1•wesleyeddy•10m ago•0 comments

To Protect and Swerve: NYPD Cop Has 547 Speeding Tickets

https://nyc.streetsblog.org/2026/04/23/to-protect-and-swerve-nypd-cop-has-527-speeding-tickets-ye...
3•greedo•11m ago•0 comments

Building with teams in two continents is hard. Here's what I learnt

https://thefoundersdraft.substack.com/p/everyone-tells-you-to-build-global
3•manishfp•12m ago•0 comments

Researchers Simulated a Delusional User to Test Chatbot Safety

https://www.404media.co/delusion-using-chatgpt-gemini-claude-grok-safety-ai-psychosis-study/
1•pkilgore•13m ago•0 comments

Decoupled DiLoCo: Resilient, Distributed AI Training at Scale

https://deepmind.google/blog/decoupled-diloco/
3•salkahfi•18m ago•0 comments

Show HN: LocalLLM – Recipes for Running the Local LLM (Need Contributors)

https://locallllm.fly.dev
2•Igor_Wiwi•18m ago•1 comments

A Comprehensive Guide to Model Routing for Coding Agents

https://www.notdiamond.ai/blog/a-comprehensive-guide-to-model-routing
1•t5-notdiamond•19m ago•0 comments

Show HN: When Your Repo Moves, Your AI Coding History Doesn't

https://www.apicula.com/blog/when-your-repo-moves-your-ai-history-doesnt/
1•apiculallc•19m ago•0 comments

Aster Mail – End-to-end encrypted email with post-quantum cryptography

https://astermail.org/
1•lucasfin000•19m ago•2 comments

Oldest known recording of a whale song could unlock mysteries of the ocean

https://www.pbs.org/newshour/science/oldest-known-recording-of-a-whale-song-could-unlock-mysterie...
1•PaulHoule•19m ago•0 comments

Inflated AI claims are under fire–and the regulatory reckoning is coming

https://fortune.com/2026/04/23/ai-washing-securities-litigation-regulatory-era-baker-mckenzie/
2•Brajeshwar•21m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

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

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

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