frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Multi-LLM orchestration frameworks that collaborate?

1•ch3coohlink•29s ago•0 comments

CBC to stop airing NHL games after 74 years, end of free hockey on Canadian TV

https://www.theglobeandmail.com/sports/hockey/article-cbc-to-no-longer-air-nhl-hockey-ending-74-y...
1•1vuio0pswjnm7•5m ago•0 comments

Russian Dandelion plant offers solution to global rubber shortage

https://www.theguardian.com/science/2026/jun/17/plantwatch-russian-dandelion-solution-global-rubb...
1•oliculipolicula•8m ago•0 comments

Olympic Cyclist vs. Toaster: Can He Power It? [video]

https://www.youtube.com/watch?v=S4O5voOCqAQ
1•thunderbong•17m ago•0 comments

Apple allows alternative app stores, payments in Brazil

https://www.reuters.com/world/americas/apple-allows-alternative-app-stores-payments-brazil-after-...
1•virgulino•19m ago•0 comments

Coding Theory

https://en.wikipedia.org/wiki/Coding_theory
2•binyu•20m ago•0 comments

Went from zero interviews this year to landing 3 interviews this week

https://resume.metashark.io/
3•grantespo•20m ago•1 comments

AI has granted America new power

https://www.economist.com/leaders/2026/06/18/ai-has-granted-america-vast-new-power
2•andsoitis•22m ago•1 comments

Finally MCP's Tool Poisoning Gap Solved: A Protocol-Level Defense

https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/2913
1•Raj_Sidwadkar•29m ago•0 comments

From Dream Job to 'The Gulag': Inside Staff Revolt Zuckerberg's Brutal AI Push

https://www.inc.com/bruce-crumley/from-dream-job-to-the-gulag-inside-the-meta-staff-revolt-over-z...
2•1vuio0pswjnm7•29m ago•0 comments

Datasette-apps: Apps that live inside Datasette

https://github.com/datasette/datasette-apps
2•doppp•37m ago•0 comments

Meta's AI agent for WhatsApp Business is now available globally

https://techcrunch.com/2026/06/03/metas-ai-agent-for-whatsapp-business-is-now-available-globally/
1•doppp•38m ago•0 comments

Datasette Apps: Host custom HTML applications inside Datasette

https://simonwillison.net/2026/Jun/18/datasette-apps/
13•lumpa•46m ago•2 comments

Observation is the layer under taste. We built it for AI runtime

https://twitter.com/damnventures/status/2067394719756251468
14•Cherepukhin•50m ago•0 comments

How to Build ChatGPT from Scratch: Understanding LLMs Step by Step

https://nextweekai.com/blog/build-chatgpt-from-scratch-guide/
1•javatuts•55m ago•0 comments

AI Governance Cannot Be a Tool Call

https://tenureai.dev/writing/ai-governance-cannot-be-a-tool-call/
4•jflynt76•59m ago•0 comments

Captcha audio going nuts (concerning) [video]

https://www.youtube.com/shorts/lbPwZyNsCR0
1•threaderr•59m ago•1 comments

What I Learned from Being Burned Alive

https://www.wsj.com/lifestyle/what-i-learned-from-being-burned-alive-95e91c88
3•Anon84•1h ago•1 comments

Meta lobbies Congress for protection from child-harm lawsuits

https://www.reuters.com/world/meta-lobbies-congress-protection-child-harm-lawsuits-2026-06-18/
8•jethronethro•1h ago•0 comments

1992 view of the problems of computer programming in 1992

https://blog.plover.com/2026/06/18/#fortran-i
3•tjwds•1h ago•0 comments

AI Holdouts in Tech Face 3 Times Higher Layoff Odds, Gallup Finds

https://finance.yahoo.com/technology/ai/articles/ai-holdouts-tech-face-3-095310222.html
3•littlexsparkee•1h ago•1 comments

Teen summer employment is headed for its worst year since 1948

https://fortune.com/2026/06/18/teen-summer-jobs-record-low-2026/
4•cheschire•1h ago•2 comments

Did Massachusetts Legalize Haggis?

https://www.cbsnews.com/boston/news/haggis-massachusetts-legal-scotland/
2•speckx•1h ago•0 comments

Writing Postcards with a 3D Printer

https://severinbucher.com/posts/writing-postcards-with-a-3d-printer/
3•typesafeJ•1h ago•0 comments

The Job Market Is Thawing

https://www.theatlantic.com/newsletters/2026/06/job-market-hiring-may/687640/
12•littlexsparkee•1h ago•1 comments

How Meter Pricing Is Testing the Economics of AI

https://www.bloomberg.com/news/articles/2026-06-18/ai-costs-what-shift-from-flat-rate-to-token-pr...
2•1vuio0pswjnm7•1h ago•0 comments

Mae vs. MSE: more than just the mean vs. median debate

https://idlemachines.co.uk/essays/mae-vs-mse
1•smaddrellmander•1h ago•0 comments

Show HN: Flashback – an agent skill that references 127 years of design trends

https://toby.github.io/flashback/
3•tobypadilla•1h ago•0 comments

Show HN: Drydock – VM Sandboxes for macOS Autonomous Coding Agents

https://github.com/sricola/drydock
1•sricola•1h ago•0 comments

Standout Startups from YC's Demo Day, According to VCs

https://techcrunch.com/2026/06/18/the-11-standout-startups-from-ycs-demo-day-according-to-vcs/
3•simonpure•1h 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?