frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How Efficient Was the Affordable Care Act at Reducing Uninsured Rates?

https://www.nber.org/papers/w35263
1•paulpauper•1m ago•0 comments

Book Dedications

https://walzr.com/dedications
1•walz•2m ago•0 comments

Venezuela's oil exports rose to 1.25M bpd in May, shipping data shows

https://www.reuters.com/business/energy/venezuelas-oil-exports-rose-125-million-bpd-may-shipping-...
1•JumpCrisscross•4m ago•0 comments

SpaceX sets aside 5% of IPO shares for selected buyers, waives lock-up

https://www.reuters.com/legal/government/spacex-sets-aside-5-ipo-shares-selected-buyers-waives-lo...
1•JumpCrisscross•6m ago•0 comments

CHSE – Rust LLM compressor: 1.15M lines/s, 69-91% token savings

1•humanethq•8m ago•0 comments

Faster Local engine built from scratch in Rust

https://www.conifer.build/
1•v11climbs•14m ago•2 comments

Bernie Sanders: A.I. Is a Public Resource. You Should Own Half of It

https://www.nytimes.com/2026/06/01/opinion/artificial-intelligence-bernie-sanders.html
3•Teever•16m ago•0 comments

What's gonna happen to software engineers?

https://yakko.dev/blog/whats-gonna-happen-to-software-developers
2•yakkomajuri•16m ago•0 comments

Vercel AI Gateway Appears to Block BYOK Requests When Account Balance Reaches $0

https://github.com/vercel/ai/issues/11280
2•kaicianflone•30m ago•1 comments

I Tried to Sell My House with a Chatbot

https://www.nytimes.com/2026/05/28/technology/sell-house-with-ai-no-realtor.html
2•garethsprice•31m ago•0 comments

Salmon Creek Farm

https://salmoncreekfarm-arts.org/
1•grantpitt•32m ago•0 comments

Bank Balance Is a Lie, and Fragmentation Is Why Nobody Can Prove It

https://heavenslive.com/credon/faq.html
2•bbenevolence•34m ago•1 comments

Fivetran and dbt are one company now

https://www.getdbt.com/blog/fivetran-and-dbt-are-one-company-now-here-s-what-that-means
1•thingsilearned•34m ago•0 comments

Ask HN: Do you give AI agent the specs and have it start building unattended?

3•bubbamack•35m ago•0 comments

Remember This

https://theamericanscholar.org/you-must-remember-this/
2•prismatic•35m ago•0 comments

How one founder's bet on 'the old school web' is paying off

https://www.theverge.com/tech/938245/past-maps-website-google-zero-ai
2•Soupy•36m ago•0 comments

The Shape of a Neuron – Weights, Bias and Activation Functions

https://www.youtube.com/watch?v=nbRu5disqiQ
1•0bytematt•38m ago•0 comments

Pretext, Pretext, Pretext: Building reasons to be together

https://www.seeingthesystem.com/p/pretext-pretext-pretext
1•TinyBig•40m ago•0 comments

Why the AI Revolution Hasn't Hit Game Development Yet – and Why It's Coming Next

https://rhulha.github.io/blog/ai-revolution-game-development.html
2•raymond_goo•42m ago•0 comments

Controlling VSCode from the Terminal

https://www.yesthatblog.com/post/0155-controlling-vscode-cli/
1•YesThatTom2•43m ago•0 comments

Toy Story 5 shows 'terror' of children's screen addiction, says Tom Hanks

https://www.bbc.com/news/articles/cy5222wn410o
1•defrost•49m ago•0 comments

Decache

https://sindexmon.github.io/decache/
2•avaer•51m ago•0 comments

Can the stockmarket swallow Anthropic, SpaceX and OpenAI?

https://www.economist.com/finance-and-economics/2026/06/01/can-the-stockmarket-swallow-anthropic-...
4•1vuio0pswjnm7•52m ago•0 comments

'Human, all too human'

https://medium.com/@arielf/human-all-too-human-will-we-become-hostages-to-our-own-minds-by-implem...
1•arielfeinerman•52m ago•0 comments

KineQuetEngine – Bio-inspired context engine in Rust (sub-100µs latency)

https://github.com/gemirson/kinequet
1•sgemirs•53m ago•0 comments

Workout App Made with Python-Kivy

https://apps.microsoft.com/detail/9n4l5zrz4dmq?hl=en-US&gl=US
1•TanBison•55m ago•1 comments

Lid-lifting Kiwi author forced to sit in silence at writers' festival

https://www.rnz.co.nz/life/books/lid-lifting-kiwi-author-forced-to-sit-in-silence-at-writers-fest...
9•totetsu•55m ago•1 comments

Dell Unveils $699 Laptop with Features 'You Won't Find on a MacBook Neo'

https://www.macrumors.com/2026/06/01/dell-xps-13-vs-macbook-neo/
4•mgh2•57m ago•1 comments

Inherited the front end of a 150K-user app, mostly vibe coded

https://koolcodez.com/blog/fixing-an-ai-built-codebase/
4•koolcodez•57m ago•0 comments

Ask HN: Side Projects with Meaning

1•jpace121•59m 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•1y 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?