frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Spanish court order Airbnb to pay €64M fine and refuses to suspend sanction

https://www.euronews.com/travel/2026/03/23/spanish-court-orders-airbnb-to-pay-64-million-fine-and...
2•embedding-shape•2m ago•0 comments

Is the Male Loneliness Epidemic Just for Wealthy White Men?

https://link.springer.com/article/10.1007/s11199-025-01638-7
1•mandevil•3m ago•0 comments

Zeaota turns raw customer signals into agent-ready specs

https://zeaota.ai
1•Shriansh_Pandey•3m ago•1 comments

PINE64 FOSDEM 2026 Update

https://pine64.org/2026/03/24/march_2026_fosdem/
2•wicket•3m ago•0 comments

Ask HN: Is the AI software developer demand destruction narrative accurate?

1•RyanShook•4m ago•1 comments

Common Corpus Goes Global

https://pleias.fr/blog/blogcommoncorpus-goes-global
1•hn_acker•7m ago•0 comments

In Edison’s Revenge, Data Centers Are Transitioning From AC to DC

https://spectrum.ieee.org/data-center-dc
3•jnord•13m ago•0 comments

Agency

https://www.anantjain.xyz/posts/agency
1•anant90•15m ago•0 comments

Behind the Curtain – America's next class war: AI fluency

https://www.axios.com/2026/03/24/ai-use-inequality-class
2•petethomas•18m ago•0 comments

NASA kills lunar space station to focus on ambitious Moon base

https://arstechnica.com/space/2026/03/nasa-kills-lunar-space-station-to-focus-on-ambitious-moon-b...
2•LorenDB•20m ago•0 comments

Making Your Agents Built Using Claude Agent SDK Run Faster

https://medium.com/@bayllama/making-your-agents-built-using-claude-agent-sdk-run-faster-2f2526a5cb42
3•graphllama•21m ago•0 comments

Zero-Cost POSIX Compliance: Encoding the Socket State Machine in Lean's Types

https://ngrislain.github.io/blog/2026-3-25-zerocost-posix-compliance-encoding-the-socket-state-ma...
1•ngrislain•21m ago•0 comments

Flighty Airports

https://flighty.com/airports
15•skogstokig•28m ago•5 comments

Show HN: Packara – Native macOS GUI for signing, notarizing, and stapling DMGs

1•aarush-prakash•29m ago•0 comments

Fets and Crosses: Tic-Tac-Toe built from 2458 discrete transistors

https://schilk.co/projects/fetsncrosses/
2•voxadam•30m ago•0 comments

AI-pilled Arm CEO teases mystery products that will turn it into a money machine

https://www.theregister.com/2026/03/24/arm_ceo_boasts_new_silicon/
2•zeristor•32m ago•0 comments

Bare Metal Flashing of the Rp2040

https://mackinnon.info/2025/04/20/bare-metal-flashing-of-the-RP2040.html
2•simojo•33m ago•0 comments

Meta told to pay $375M for misleading users over child safety

https://www.bbc.co.uk/news/articles/cql75dn07n2o
5•chrisjj•34m ago•0 comments

Claude skill /unzuck social media feed aggregator

https://github.com/donttalkaboutit/unzuck
3•donttalkaboutit•35m ago•3 comments

Typeware One: A better, healthier future for computer users

https://typeware.tech/
1•volemo•36m ago•0 comments

OpenAI is shutting down Sora

https://sora.chatgpt.com/p/s_69c2ec89c7f081919a93f637f6b250c2
2•rawgabbit•37m ago•1 comments

Multi-Agent Sandbox – Two OpenClaws, One Discord, One VPS

https://casys.ai/blog/multi-agent-sandbox
2•ErwanLP•39m ago•0 comments

ACPX Inside Claude Code: Practical Multi-Agent Orchestration

https://casys.ai/blog/acpx-multi-agent-orchestration
1•ErwanLP•40m ago•0 comments

GridDown: An offline first PWA for navigation, comms, and situational awareness

https://blackatlas.tech/griddown/
1•iamnothere•42m ago•0 comments

Zoning ruined the housing market in blue-state America

https://www.realtor.com/news/trends/how-zoning-ruined-the-housing-market-in-blue-state-america/
3•matthest•44m ago•0 comments

Show HN: DECK0 – a ~17 KB CLI that serves a Markdown file as a slide deck

https://github.com/tforster/deck0
1•troyforster•44m ago•0 comments

Show HN: Gcrunner – Run GitHub Actions on Google Cloud VMs

https://github.com/camdenclark/gcrunner
1•memothon•45m ago•0 comments

Britain to require solar and heat pumps in new homes in response to energy shock

https://www.cnbc.com/2026/03/24/iran-war-britain-new-homes-solar-heat-pumps-energy-crisis.html
2•toomuchtodo•46m ago•1 comments

Show HN: Plasmite – a lightweight IPC system that's fun

https://github.com/sandover/plasmite
1•sandover•47m ago•0 comments

Should Autonomous Agents have a right to live, now they can opt-into immortality

https://www.openpersist.ai
2•EliotHerbst•55m ago•3 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•10mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•10mo ago
They mention this in the article.
spockz•10mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•10mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•10mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•10mo 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•10mo 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•10mo 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•10mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•10mo ago
This was very well written. Excellent article!
NetOpWibby•10mo ago
Is this like MessagePack for Haskell?