frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I made a anonymous gallery / Anti Social Media

https://galleryanonima.com/
1•filipfilm1978•36s ago•0 comments

I built on-device-only architecture for Mac utilities (and why it matters)

https://saneapps.com
1•SaneApps•55s ago•1 comments

Detecting DOSBox from Within the Box

https://datagirl.xyz/posts/dos_inside_the_box.html
1•atan2•1m ago•0 comments

The Allbirds Pivot Is a Terrible Idea... Right?

https://www.theatlantic.com/newsletters/2026/04/allbirds-ai-stocks-sneakers/686835/
1•fortran77•2m ago•0 comments

Recent advances push Big Tech closer to the Q-Day danger zone

https://arstechnica.com/security/2026/04/while-some-big-tech-players-accelerate-pqc-readiness-oth...
1•Brajeshwar•2m ago•0 comments

U+237C ⍼ Right angle with downwards Zig-zag arrow

https://ionathan.ch/2022/04/09/angzarr.html
1•CharlesW•4m ago•0 comments

Someone bought 30 WordPress plugins and backdoored them all

https://decodedreport.substack.com/p/43-of-the-internet-runs-wordpress
1•tejakusireddy•4m ago•1 comments

Congress extends controversial surveillance powers for 10 days

https://www.npr.org/2026/04/17/nx-s1-5788573/house-extends-surveillance-powers-for-10-days
1•speckx•8m ago•0 comments

Chinese carmaker patents voice-controlled 'in-vehicle toilet'

https://www.bbc.com/news/articles/c1l92yv4mydo
1•andy99•10m ago•0 comments

Universal INCOME via check is best way to deal with unemployment caused by AI

https://xcancel.com/elonmusk/status/2044990537145753894#m
4•stefap2•11m ago•2 comments

I built a server security system with AI – come break it

https://hyveguard.com
1•DirtRonin•12m ago•0 comments

ParseBench: Document Parsing Benchmark for AI Agents

https://github.com/run-llama/ParseBench
1•firasd•14m ago•0 comments

Agent Harness: Inside vs. Outside the Sandbox

https://www.mendral.com/blog/agent-harness-inside-vs-outside-sandbox
2•MangledDeutz•14m ago•0 comments

Systems Distributed '26

https://systemsdistributed.com/
2•jorangreef•16m ago•0 comments

iDev Games – Mission Statement

https://idev.games/post/update-mission-statement
1•iDevGames•16m ago•0 comments

For Regrowing Human Limbs, This Salamander Gene Could Hold the Keywise

https://www.newswise.com/articles/for-regrowing-human-limbs-this-salamander-gene-could-hold-the-key
1•smb111•16m ago•0 comments

New Treatment Lets 3 Transplant Patients Halt Anti-Rejection Drugs

https://www.nytimes.com/2026/04/17/health/liver-transplants-antirejection-drugs.html
1•Brajeshwar•18m ago•0 comments

Could a digital twin make you into a 'superworker'?

https://www.bbc.com/news/articles/c1d907lq6nyo
1•dabinat•18m ago•0 comments

Settling Poker Debts is NP-hard

https://www.param.me/notes/settling-poker-debts-is-np-hard/
2•xparamt•18m ago•0 comments

In this U.S. hot spot for data centers, voters have turned against them

https://www.adn.com/nation-world/2026/04/15/in-this-us-hot-spot-for-data-centers-voters-have-turn...
2•rolph•19m ago•0 comments

Building a Custom HR Announcement Bot

https://www.stackbuilders.com/insights/automating-joy-building-a-custom-hr-announcement-bot/
1•StackBuilders•19m ago•0 comments

Claude Opus fixed 3 production bugs perfectly. All 3 were the wrong fix

https://gist.github.com/acmerfight/d24de07c130c09a00ec497e75395a406
1•acmerfight•19m ago•0 comments

Cloudflare failing to resolve .co domains in some regions

https://www.cloudflarestatus.com/?hn=20260417
1•kwindla•20m ago•1 comments

Show HN: I'm Just create a simple dock for Wayland in Rust

https://github.com/skorotkiewicz/rudo
1•modinfo•20m ago•0 comments

Why scientists are nervous about fungi

https://www.npr.org/2026/04/17/g-s1-117632/fungi-drug-resistant-yeast-infection
3•kianN•21m ago•1 comments

Probabilistic engineering and the 24-7 employee

https://www.timdavis.com/blog/probabilistic-engineering-and-the-24-7-employee
1•vinhnx•22m ago•0 comments

Show HN: Dark Mode for Hacker News

https://hckrnight.com/
1•omer_k•23m ago•0 comments

Show HN: Glassroom – See what's happening in your kid's Google Classroom

https://glassroom.sageframe.net
1•sageframe•23m ago•0 comments

Show HN: AI Hat Arena – real-time voice charades with AI

https://ai-hat-game.vercel.app/
1•imbd•26m ago•0 comments

The Watch Expert Catching Multimillion-Dollar Counterfeits

https://www.gq.com/story/box-and-papers-jose-perez-perezscope-interview
1•Geekette•26m 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?