frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NYC considers increasing minimum wage to $30 by 2030

https://ny1.com/nyc/all-boroughs/mornings-on-1/2026/03/10/city-council-considers-increasing-minim...
1•geox•2m ago•0 comments

Show HN: Readhn – AI-Native Hacker News MCP Server (Discover, Trust, Understand)

https://github.com/xodn348/readhn
1•xodn348•3m ago•0 comments

Curly Prompt – An AI Prompting Language with Local LLM Powered AI Agent

https://github.com/jimthunderbird/curlyprompt
1•jimthunderbird•6m ago•0 comments

Saudi Arabia declares 2026 as the Year of AI

https://twitter.com/spagov/status/2031365339376660682
1•sibilsalim•8m ago•1 comments

The Creator of Wordle Tries to Solve the Cryptic Crossword

https://www.newyorker.com/culture/the-lede/the-creator-of-wordle-tries-to-solve-the-cryptic-cross...
1•duck•10m ago•0 comments

Microsoft Patch Tuesday, March 2026 Edition

https://krebsonsecurity.com/2026/03/microsoft-patch-tuesday-march-2026-edition/
1•todsacerdoti•10m ago•0 comments

Embrace the Uncertainty

https://brittanyellich.com/embrace-the-uncertainty/
2•todsacerdoti•12m ago•0 comments

AEO: What happens when AI answers instead of linking (4-part series)

https://xergioalex.com/blog/series/aeo-from-invisible-to-cited/
1•xergioalex•13m ago•0 comments

Datafly – data agent that automatically understands any database you connect

https://github.com/dkeviv/datafly
1•aichelles•17m ago•1 comments

Apple's New MacBooks Have a Keyboard Change You Might Have Missed

https://www.macrumors.com/2026/03/10/macbook-keyboard-change/
2•samsolomon•18m ago•0 comments

Show HN: Principled Agentic Software Development

https://www.joegaebel.com/articles/principled-agentic-software-development/
2•joegaebel•20m ago•0 comments

Lynas locks Japanese rare earths deal

https://www.australianmining.com.au/lynas-locks-japanese-rare-earths-deal/
1•dwd•26m ago•2 comments

Ask HN: Getting Someone at Facebook to Listen

1•ccleve•28m ago•2 comments

Ohio judge rules that Kalshi is sports betting and must adhere to state law

https://www.nbcnews.com/news/us-news/ohio-judge-rules-kalshi-sports-betting-must-adhere-state-law...
2•petethomas•31m ago•1 comments

The Beginning of History

https://www.wheresyoured.at/the-beginning-of-history/
1•elorant•35m ago•1 comments

Game Modding with GenAI: A Case Study of Stardew Valley Character Maker

https://arxiv.org/abs/2507.13951
2•azhenley•43m ago•0 comments

Cybertruck Tried to Drive 'Straight Off an Overpass' Attorney Claims

https://www.404media.co/cybertruck-tried-to-drive-straight-off-an-overpass-attorney-claims/
6•malshe•44m ago•1 comments

The History of Stoner.com

https://ron.stoner.com/The_History_Of_Stoner_._com/
1•tinkelenberg•46m ago•0 comments

Wero announces the launch of its ecommerce solution in

https://epicompany.eu/media-insights/wero-announces-launch-ecommerce-in-belgium
1•absqueued•46m ago•0 comments

Building Kepler

https://www.astronomer.io/blog/building-kepler-astronomer-internal-data-assistant/
1•tayloramurphy•48m ago•0 comments

A 1,300-pound NASA spacecraft to re-enter Earth's atmosphere

https://www.bbc.com/news/articles/cd9gwdgg38vo
1•reconnecting•50m ago•0 comments

At what level of deep context engineering does AI output become human-crafted?

1•svstoyanovv•51m ago•0 comments

State of AI 2026: The $600B inference subsidy, energy bottlenecks, and labor

https://lostframe.ai/research
1•willtaubenheim•53m ago•1 comments

Tell HN: Vertical tabs has arrived (behind a flag) in Chrome stable

3•crummy•55m ago•0 comments

Ask HN: Is Starlink still being jammed in Iran?

1•Jblx2•55m ago•1 comments

RoqueOS – an OS to control your homelab (now on the Apple App Store)

https://roqueos.com.br/
1•roqueribeiro•56m ago•1 comments

SSH Is the Agent Internet

https://rolandsharp.com/ssh-is-the-agent-internet/
1•epscylonb•1h ago•0 comments

Show HN: Mumpix – Local-first AI infrastructure and $1B developer grant

https://mumpixdb.com/mumpix-billion-program.html#claim
1•carreraellla•1h ago•2 comments

MPs give ministers powers to restrict Internet

https://www.openrightsgroup.org/press-releases/mps-give-ministers-powers-to-restrict-entire-inter...
2•Jigsy•1h ago•0 comments

Amazon Cognito and FusionAuth Comparison

https://fusionauth.io/blog/amazon-cognito-and-fusionauth-comparison
1•mooreds•1h ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•10mo ago

Comments

nine_k•10mo 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?