frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Making TinyLLM Go Brrrrr

https://vinayak.purelydysfunctional.com/blog/KVCache
2•murd3rbot•3m ago•0 comments

Paul Graham, Founder Y Combinator [video]

https://www.youtube.com/watch?v=2Q2uh1BlqKA
1•guiambros•5m ago•0 comments

Timeline of Microsoft's SmartNIC Tech (Azure Boost)

https://glennklockwood.com/garden/Azure-SmartNIC
1•WarOnPrivacy•6m ago•0 comments

Mars Terraforming Research Roadmap

https://arxiv.org/abs/2604.02242
2•edwinkite•7m ago•1 comments

5-Minute Crafts Has a Cybercrime Problem [video]

https://www.youtube.com/watch?v=ucRTW4rgrbU
1•exec01•8m ago•0 comments

Nvidia IGX Thor powers industrial, medical and robotics edge AI applications

https://developer.nvidia.com/blog/nvidia-igx-thor-powers-industrial-medical-and-robotics-edge-ai-...
1•teleforce•10m ago•0 comments

Show HN: Composer – AI architect / MCP for software architecture diagrams

https://www.usecomposer.com/
2•olivergrabner•10m ago•0 comments

The Catholic Priest Who Helped Write Anthropic's A.I. Ethics Code

https://observer.com/2026/03/the-catholic-priest-who-helped-write-anthropics-ai-ethics-code/
3•Geekette•12m ago•0 comments

I simulated a 19th-century utopian commune with AI agents

https://github.com/menggg22/utopia
3•menggg•14m ago•1 comments

Why OpenAI Decided to Buy 'TBPN,' Tech's Hottest News Show

https://www.wsj.com/tech/openai-technology-business-programming-network-b681ef6b
2•mudil•16m ago•0 comments

Referi – A trusted network for job referrals

https://www.referi.net
1•onlinemelvin•19m ago•0 comments

Show HN: LM Gate – Auth and access-control gateway for self-hosted LLM back ends

https://github.com/hkdb/lmgate
1•hkdb•21m ago•0 comments

Show HN: Claudebar, the missing interactive menu bar for Claude Code

https://github.com/LabLeaks/claudebar
1•didgeoridoo•23m ago•0 comments

Open-source runtime security toolkit for autonomous AI agents covering OWASP Top

https://opensource.microsoft.com/blog/2026/04/02/introducing-the-agent-governance-toolkit-open-so...
1•mosiddi•40m ago•0 comments

AutoGameStudio – Autoresearch for Game Development

https://autogamestudio.ai/games
2•Optl•44m ago•0 comments

NanoClaw's architecture is a masterclass in doing less

https://jonno.nz/posts/nanoclaw-architecture-masterclass-in-doing-less/
3•jonnonz•45m ago•0 comments

Convex for Enterprise

https://news.convex.dev/enterprise-launch/
1•handfuloflight•46m ago•0 comments

git-leash - time focused controls for Git

https://github.com/SiteRelEnby/git-leash
2•shakna•47m ago•0 comments

FP: Agent Native Issue Tracking

https://fp.dev/
1•handfuloflight•50m ago•0 comments

UpMocker: Browser-based mockups for chats and posts

https://upmocker.com/
1•CaptainJack_X•51m ago•0 comments

Show HN: Wordie – Spaced repetition vocab app built around sentences not quizzes

https://www.gowordie.com
2•tailaiw•53m ago•0 comments

Hex editor should color-code bytes

https://simonomi.dev/blog/color-code-your-bytes/
2•birdculture•55m ago•1 comments

Stack Overflow (Beta)

https://beta.stackoverflow.com/
4•djoldman•1h ago•0 comments

GEN-1: Scaling Embodied Foundation Models to Mastery

https://generalistai.com/blog/apr-02-2026-GEN-1
6•gryfft•1h ago•1 comments

Title: MCPNest – The missing App Store for MCP servers (983 servers indexed)

https://www.mcpnest.io/
1•malasartes•1h ago•0 comments

Show HN: A Minimal Basic Inspired by Brainfuck

https://coe.psu.ac.th/ad/minBASIC/
1•ADavison2560•1h ago•0 comments

SpaceX has held talks with Saudi fund for $5B investment in IPO

https://www.reuters.com/business/finance/spacex-has-held-talks-with-saudi-fund-possible-5-billion...
5•geox•1h ago•2 comments

Climate change may produce "fast-food" phytoplankton

https://news.mit.edu/2026/climate-change-may-produce-fast-food-phytoplankton-0331
5•gmays•1h ago•1 comments

I Built an SMS Gateway with a $20 Android Phone – Jonno.nz

https://jonno.nz/posts/built-an-sms-gateway-with-a-20-dollar-android-phone/
1•jonno-nz•1h ago•2 comments

How we caught the Axios supply chain attack

https://www.elastic.co/security-labs/how-we-caught-the-axios-supply-chain-attack
5•smsm42•1h ago•1 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?