frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Meta repeatedly snubs EU body over Facebook and Instagram user bans

https://www.bbc.com/news/articles/c152yvwjwkko
1•dijksterhuis•1m ago•0 comments

Code Slop Isn't a Model Problem, It's a Harness Problem

https://www.aakash.io/tech-chase/code-slop-isnt-a-model-problem-its-a-harness-problem
1•ahstilde•1m ago•0 comments

The Permanent Underclass

https://ctlamy.com/thoughts/the-permanent-underclass/
1•christophelamy•2m ago•0 comments

Fixing Alembic's Multiple Heads Problem with Git

https://julien.danjou.info/blog/fixing-alembics-multiple-heads-problem-with-git/
2•JulianMaurin1•2m ago•0 comments

Show HN: Sedon – node based 3D generation

https://github.com/greggman/sedon
1•greggman65•3m ago•0 comments

Microsoft Office 2019 for Mac will soon stop letting you edit documents

https://www.macrumors.com/2026/06/02/microsoft-office-2019-for-mac-no-edit-documents/
1•gloxkiqcza•3m ago•0 comments

Canadian workers struggle to take paid vacation. Is burnout far behind?

https://www.theglobeandmail.com/life/article-canadians-arent-taking-their-paid-vacation-days-can-...
1•sefrost•4m ago•1 comments

Building Bauble

https://ianthehenry.com/posts/bauble/building-bauble/
1•tmoertel•4m ago•0 comments

Show HN: Eyeball

https://tools.myurll.in/eyeball
1•qranalytica•5m ago•0 comments

Open-source NLI ensemble matches Sonnet 4.6 on RAGTruth at 1/250x the cost

https://github.com/firish/rag-rack/blob/main/blog/03_verified_rag.md
1•firish•5m ago•0 comments

John Deere Faces Second Class Action for Monopolizing Repair

https://www.techdirt.com/2026/06/01/john-deere-faces-second-class-action-for-monopolizing-repair/
1•speckx•6m ago•0 comments

I built a datasheet-aware PCB review tool to catch respin bugs

https://app.promptpcb.ai/demo?board=rk3588s
1•devingator•6m ago•0 comments

XLight Finalizes $150M CHIPS grant to build new EUV source in Albany

https://finance.yahoo.com/sectors/technology/articles/xlight-finalizes-150m-chips-incentives-1400...
1•osnium123•6m ago•0 comments

New propulsion system could make tiny satellites both fast and fuel-efficient

https://news.mit.edu/2026/new-propulsion-system-could-make-tiny-satellites-fast-fuel-efficient-0601
1•gnabgib•7m ago•0 comments

Shorebird in Anger: A Production Flutter Code Push Integration

https://about.kikoff.com/build/shorebird-in-anger-a-production-flutter-code-push-integration
1•mooreds•7m ago•0 comments

Beyond the Echo – How satellites steer the radar beam

https://www.iceye.com/blog/beyond-the-echo-how-satellites-steer-the-radar-beam
1•mooreds•8m ago•0 comments

The Emptiness of the Crowded Governor's Race in California

https://www.newyorker.com/news/the-lede/the-strange-emptiness-of-the-crowded-governors-race-in-ca...
1•littlexsparkee•8m ago•0 comments

Hands-On with Coalesce MCPs: Transform, Catalog, and Quality

https://coalesce.io/product-technology/hands-on-with-coalesces-mcps-part-2-building-data-engineer...
1•mooreds•8m ago•0 comments

Dressed/Daily – AI picks your outfit from your wardrobe based on today's weather

https://www.dressed-daily.app
1•ricardojst•9m ago•0 comments

A Potential Client Almost Cost Me My Google Account

https://maxschmitt.me/posts/phishing-attempt
1•Mackser•10m ago•0 comments

Claude Code vs. Cursor vs. Codex vs. Antigravity – Six Months In

https://thenewstack.io/claude-code-vs-cursor-vs-codex-vs-antigravity-2026/
1•Brajeshwar•10m ago•0 comments

Structural Holes and Good Ideas (2004) [pdf]

https://www.bebr.ufl.edu/sites/default/files/Burt%20-%202004%20-%20Structural%20Holes%20and%20Goo...
1•jruohonen•11m ago•1 comments

Show HN: LocalSheets, a single-file spreadsheet with a local-only AI panel

https://github.com/zohaibus/localsheets
1•zpusmani•11m ago•0 comments

Mind your mentions: a mention is a task, not an FYI

https://mindyourmentions.com/
1•bluebuffalo•11m ago•0 comments

Visionary Research on Infinities

https://app-c2bp101xkow1.appmedo.com/
1•tvali•12m ago•1 comments

Upper Management Meeting [video]

https://www.youtube.com/watch?v=DmU9uovmT2A
1•vismit2000•12m ago•0 comments

KDE Plasma 6.8 Planning to End X11 Support, 95% of Plasma 6.6 Users on Wayland

https://www.phoronix.com/news/KDE-Plasma-Wayland-Ex-X11
2•speckx•12m ago•0 comments

AI Workflows Need Topological Sort

https://arpitbhayani.me/blogs/ai-topological-sort/
1•random42•13m ago•0 comments

Extension Developers Sell the Data of at Least 6.5M Users

https://layerxsecurity.com/blog/your-extensions-sell-your-data-and-its-perfectly-legal/
2•ilreb•13m ago•0 comments

Intelligent keyword generation. Nothing more

https://zymacs.github.io/rthots/intelligent_but_humble/
1•kernzistor45•14m ago•0 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?