frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Quantified evidence: Sonnet 4.6 quality regression

https://github.com/anthropics/claude-code/issues/46935
2•ctack•2m ago•2 comments

Trace your Claude Code easily

https://github.com/delexw/claude-code-trace
1•ywian•2m ago•0 comments

French Tax Code as Code

https://github.com/MLanguage/mlang
1•matthieu_bl•3m ago•0 comments

Show HN: GTMJobs – a job board with GTM Engineer jobs ONLY

https://gtmjobs.xyz/
1•benchmarkapp•4m ago•0 comments

Introspective Diffusion Language Models

https://introspective-diffusion.github.io/
1•zagwdt•4m ago•0 comments

How much RAM can LinkedIn Tab consume?

https://postimg.cc/tYTFJwqs
3•anujbans•9m ago•1 comments

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
1•birdculture•9m ago•0 comments

What is your opinion on the energy transition?

https://www.defienergie.tech/
1•ps3udo•10m ago•0 comments

Claude Code OAuth down for >12 hours

3•pixel_popping•12m ago•0 comments

Show HN: GTA 6 Breach via Anodot and Snowflake Explained

1•anju-kushwaha•12m ago•0 comments

The man with the most dangerous job on Earth

https://www.newscientist.com/article/2520435-chernobyl-at-40-the-man-with-the-most-dangerous-job-...
1•mattsparkes•12m ago•1 comments

Show HN: Early Reader – Free open source reading app I built for my 4-year-old

https://github.com/melvinmt/early-reader-app
1•melvinmelih•15m ago•0 comments

Ask HN: What's Better?–Tauri or Electron?

1•wasimsk•17m ago•2 comments

ZFS Helped to Remove Code

https://www.rubenerd.au/zfs-removing-code/
2•robin_reala•17m ago•0 comments

How Big Is India's E-Commerce Market? Don't Ask Bain

https://indiadispatch.com/p/how-big-is-indias-e-commerce-market
2•venkatananth•22m ago•0 comments

Show HN: A Bomberman-style 1v1 game where LLMs compete in real time

https://github.com/klemenvod/TokenBrawl
1•sunandsurf•25m ago•0 comments

If [static analysis] could have, why didn't it?

https://alexgaynor.net/2026/apr/13/why-didnt-it/
2•ramimac•33m ago•0 comments

Global imbalances are back with no clear path to resolution

https://www.reuters.com/markets/global-imbalances-are-back-theres-no-fix-sight-2026-04-08/
2•latentframe•36m ago•1 comments

OpenAI snub shows UK's energy costs are killing industry

https://www.thetimes.com/business/economics/article/open-ai-uk-energy-costs-nuclear-wind-wvs36bwdw
2•petethomas•37m ago•0 comments

Shock from Iran war has Trump's vision for US energy dominance flailing

https://insideclimatenews.org/news/09042026/iran-energy-shock-tests-us-dominance/
1•rbanffy•38m ago•0 comments

Technical SEO vs. content optimization: which one moves rankings?

1•zensorsolutions•42m ago•1 comments

The disappearing and unappreciated art of audible alerts [video]

https://www.youtube.com/watch?v=nXdVG45wveo
1•neehao•45m ago•1 comments

Inland Customs Line

https://en.wikipedia.org/wiki/Inland_Customs_Line
1•thunderbong•46m ago•0 comments

Show HN: Connections Hint Today – spoiler-safe hints for NYT Connections

https://connections-hint.today/
1•visiohex•47m ago•0 comments

Linux 7.0 Released with New Hardware Support, Optimizations and Self-Healing XFS

https://www.phoronix.com/news/Linux-7.0-Released
9•isaacfrond•50m ago•0 comments

Show HN: Nous – A compiled language for self-healing AI agents

https://nous-lang.org
1•contrario•53m ago•0 comments

More than 100 reverse engineered hidden Shortcuts actions for iOS and macOS

https://github.com/paralevel/secret-actions-for-shortcuts
2•trapf•56m ago•0 comments

Nvidia AIStore – scalable storage for AI applications

https://aistore.nvidia.com/
2•DaGardner•56m ago•0 comments

Stonks-CLI – track your investment portfolios from the terminal

https://github.com/igoropaniuk/stonks-cli
1•friedchocolate•57m ago•0 comments

DPRK IT Worker Captcha

https://nkcaptcha.com/
1•swijck•1h 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?