frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I got stood up by an AI agent, and tracked down its human owner in China

https://restofworld.org/2026/ai-agent-china-one-person-company/
1•speckx•56s ago•0 comments

Why a recent supply-chain attack singled out security firms Checkmarx and Bitwa

https://arstechnica.com/information-technology/2026/04/why-a-recent-supply-chain-attack-singled-o...
1•joozio•1m ago•0 comments

Ghost is now a digital public good

https://ghost.org/changelog/digital-public-good/
1•cdrnsf•1m ago•0 comments

The Design of High Performance Mechatronics(2020)

https://annas-archive.gl/md5/724e29591bb37ff0944399da5713ed77
1•num42•1m ago•0 comments

Give First, Build Right with Eric Ries

https://feld.com/archives/2026/04/give-first-build-right-with-eric-ries/
1•wslh•2m ago•0 comments

Tindie Now Owned by EETree

https://blog.adafruit.com/2026/04/29/tindie-is-back-online-and-now-owned-by-eetree-llc-a-suzhou-f...
1•abetusk•2m ago•0 comments

Address by King Charles III Before the U.S. Congress

https://brucebartlett.substack.com/p/address-by-king-charles-iii-before
1•zdw•3m ago•0 comments

A New Drug Concept to Treat Obesity and Type 2 Diabetes

https://idw-online.de/en/news870041
1•geox•3m ago•0 comments

Laws of UX

https://lawsofux.com/
2•bobbiechen•4m ago•0 comments

Tell HN: Apple iOS Password app loses passwords after added

2•kingleopold•5m ago•0 comments

Why Software Needs a Third Loop [audio]

https://www.heavybit.com/library/podcasts/third-loop/ep-3-give-it-a-name-why-software-needs-a-thi...
2•mooreds•7m ago•0 comments

Rise of the Forward Deployed Engineer

https://www.hfsresearch.com/research/fde-optional-ai-flywheel-spin/
3•nipponese•8m ago•1 comments

The Chip That Made Hardware Rewriteable

https://spectrum.ieee.org/fpga-chip-ieee-milestone
2•Brajeshwar•10m ago•0 comments

Virtualisation on Apple Silicon Macs is different

https://eclecticlight.co/2026/04/29/virtualisation-on-apple-silicon-macs-is-different/
2•zdw•11m ago•0 comments

Google Moves Forward with Pentagon AI Deal Despite Employee Pushback

https://www.cnet.com/tech/services-and-software/google-reportedly-signs-pentagon-ai-deal-despite-...
3•01-_-•12m ago•0 comments

Maryland becomes first state to ban surveillance pricing in grocery stores

https://www.theguardian.com/technology/2026/apr/29/maryland-grocery-stores-ban-surveillance-pricing
2•01-_-•13m ago•0 comments

We Tried Popular Linux Gaming Distros

https://www.lttlabs.com/articles/2026/04/29/we-tried-popular-linux-gaming-distros
2•LabsLucas•13m ago•1 comments

The USB Situation

https://randsinrepose.com/archives/the-usb-situation/
2•herbertl•13m ago•0 comments

EU bans for projects using Chinese inverters–will move the needle on cybersec?

https://www.pv-tech.org/eu-bans-funding-for-chinese-inverters-solar-cybersecurity/
2•dpXdq•15m ago•0 comments

A theoretical bridge between quantum physics and non-dual philosophy

https://pubs.aip.org/aip/adv/article/15/11/115319/3372193/Universal-consciousness-as-foundational...
2•bookofjoe•15m ago•0 comments

Chris Paik: The Rise of Veblen Services

https://docs.google.com/document/d/1zFNSbjGdrRryiDgr8nCnlRS-7u9oxUUCHg2X3tXve4g/edit?tab=t.4jhbi7...
1•jger15•15m ago•0 comments

Mercury now allows you to manage your finances through the CLI

https://github.com/MercuryTechnologies/mercury-cli
1•0xpiguy•15m ago•0 comments

The anti-AI position has an information problem

https://www.jonatkinson.co.uk/blog/anti-ai-information-problem/
2•JonAtkinson•16m ago•0 comments

I'm Making Strandfall, a Solarpunk Orienteering Larp

https://mssv.net/2026/04/29/im-making-strandfall-a-solarpunk-orienteering-larp/
2•adrianhon•16m ago•0 comments

Build programmatic agents with the Cursor SDK

https://cursor.com/blog/typescript-sdk
1•n2parko•18m ago•0 comments

AI Coding Firm Cognition in Funding Talks at $25B Value

https://www.bloomberg.com/news/articles/2026-04-23/ai-coding-firm-cognition-in-funding-talks-at-2...
2•gmays•19m ago•0 comments

Show HN: GrandPerspective-style treemaps for the web and disk usage visualizer

https://imbue-ai.github.io/gp-treemap/gallery/
1•thad_imbue•19m ago•0 comments

Because It Doesn't Have To

https://blog.computationalcomplexity.org/2026/04/because-it-doesnt-have-to.html
1•zdw•20m ago•0 comments

What Happens If a Merge Queue Builds on the Wrong Commit

https://trunk.io/blog/what-happens-if-a-merge-queue-builds-on-the-wrong-commit
1•elischleifer•21m ago•0 comments

'It took nine seconds': Claude AI agent deletes company's database

https://www.the-independent.com/tech/claude-ai-agent-deletes-startup-anthropic-b2966176.html
1•bigbugbag•22m ago•1 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•12mo 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?