frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Habitual coffee intake shapes the microbiome, modifies physiology and cognition

https://www.nature.com/articles/s41467-026-71264-8
3•scubakid•5m ago•0 comments

New Blood CEO Dave Oshry on Indie Strategy: "We Pump New Blood into Old Genres"

https://80.lv/articles/new-blood-ceo-dave-oshry-on-indie-strategy-we-pump-new-blood-into-old-genres
3•doppp•5m ago•0 comments

Shelter Aid

https://apps.apple.com/us/app/shelter-aid/id6762375916
2•starboyy•10m ago•1 comments

Mullvad to add feature that forces all iOS traffic through the VPN tunnel

https://cyberinsider.com/mullvad-to-add-feature-that-forces-all-ios-traffic-through-the-vpn-tunnel/
2•Cider9986•11m ago•0 comments

AI run store in SF can't stop ordering candies and paying women less.

https://sfist.com/2026/04/21/ai-store-manager-paying-female-employees-less-cant-stop-ordering-can...
2•fragmede•12m ago•0 comments

Study shows removing exposure to plastic from our food chain yields quick result

https://www.abc.net.au/news/2026-04-23/plastic-packaging-body-chemicals-study/106594194
1•xbmcuser•14m ago•0 comments

The Surveillance Accountability Act

https://www.surveillanceaccountability.com
1•Cider9986•16m ago•0 comments

French police look at claim of sensor tampering to win weather bets

https://www.theguardian.com/world/2026/apr/23/hairdryer-or-lighter-french-police-look-at-claim-of...
2•geox•16m ago•0 comments

Control Workspace Intelligence for generative AI features [AI defaults on]

https://knowledge.workspace.google.com/admin/gemini/control-workspace-intelligence
1•lancewiggs•19m ago•0 comments

Ask HN: What are the best developer tools built around Markdown?

1•dhruv3006•20m ago•0 comments

Mahjong: A Visual Guide

https://themahjong.guide/
1•iamwil•29m ago•0 comments

DeepSeek V4 is out. the best open-source on coding. here's the breakdown

2•Alisaqqt•29m ago•0 comments

Ada's Technical Books in Seattle will close

https://www.seattletimes.com/entertainment/books/capitol-hill-bookstore-adas-will-close-fuel-coff...
2•so-cal-schemer•31m ago•1 comments

Free API for real-time Australian emergency data (27 feeds, all 8 states)

https://emergencyapi.com
1•JackDemps•32m ago•0 comments

The Toroidal Momentum Engine: A Workable Version of Infinity

https://zenodo.org/records/19572243
2•SCAQTony•33m ago•0 comments

Mini ML Blog

https://mni-ml.github.io/
1•SoulMan•34m ago•0 comments

Nvidia's B200 costs around $6,400 to produce

https://epoch.ai/data-insights/b200-cost-breakdown
2•KnuthIsGod•35m ago•0 comments

Privacy Setup for Android 16 with GrapheneOS

https://xn--gckvb8fzb.com/privacy-setup-for-android-16-with-grapheneos/
2•HotGarbage•36m ago•0 comments

Equity for Europeans

https://lucumr.pocoo.org/2026/4/23/equity-for-europeans/
2•Tomte•36m ago•0 comments

If AI existed in 2011 would we still have the modern web

https://webmatrices.com/post/if-ai-existed-in-2011-would-we-still-have-the-modern-web
1•bishwasbh•41m ago•0 comments

Is possible a language easy as py, fast as C, more secure than Rust?

1•jerryzhang66•42m ago•0 comments

Harnesses Explained: The Inner and Outer Workings of the Coding Agent Harness

https://codagent.beehiiv.com/p/harnesses-explained
3•paulcaplan•44m ago•1 comments

Turn messy chats into structured TODOs and notes automatically

https://noteithub.com
1•pardisapporify•47m ago•0 comments

DeepSeek V4 Flash

https://huggingface.co/deepseek-ai/DeepSeek-V4-Flash
6•S0y•49m ago•0 comments

DeepSeek 4 Launched

https://deepseek4.hk/
8•mariopt•52m ago•4 comments

In Defense of Blub Studies

https://www.benkuhn.net/blub/
2•jonnonz•53m ago•0 comments

Need Help Please

1•activist_mel•54m ago•1 comments

A quick look at Mythos run on Firefox: too much hype?

https://xark.es/b/mythos-firefox-150
2•leonidasv•57m ago•0 comments

Hello from Berkeley

https://fluoverse.com
2•Panos_moschos•58m ago•1 comments

Anthropic Engineering Postmortem: Claude's 60-Minute Memory Bug

https://www.aiuniverse.news/claudes-memory-lapse-a-bug-erased-its-reasoning-after-an-hour/
1•aiuniversenews•1h ago•0 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

nine_k•12mo 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•12mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•12mo 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?