frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Expand Pax Silica? Building the AI Ecosystem of Tomorrow

https://stratageminitiative.substack.com/p/why-expand-pax-silica-building-the
1•walterbell•56s ago•0 comments

Manitoba Moves to Outlaw Algorithmic Pricing–A First in Canada

https://thewalrus.ca/manitoba-moves-against-retailers-charging-different-prices-for-the-same-goods/
1•pseudolus•57s ago•0 comments

Not All Malls Are Struggling

https://www.nytimes.com/2026/03/21/business/dealbook/shopping-mall-resurgence.html
1•JumpCrisscross•2m ago•0 comments

Broadcasters urge EU to tighten rules for Big Tech in smart TV standoff

https://www.reuters.com/sustainability/boards-policy-regulation/eu-digital-rules-should-apply-big...
1•JumpCrisscross•4m ago•0 comments

Lumalabs Uni-1

https://lumalabs.ai/uni-1
3•smusamashah•6m ago•0 comments

Writing an LLM from scratch, part 32f – Interventions: weight decay

https://www.gilesthomas.com/2026/03/llm-from-scratch-32f-interventions-weight-decay
4•gpjt•7m ago•0 comments

AI Token Economics: What Jensen Huang Is Building

https://unlockedvalue.substack.com/p/ai-token-economics
1•neobobkrause•8m ago•0 comments

SEC's ex-enforcement chief clashed with bosses over Trump cases before leaving

https://www.reuters.com/business/finance/us-secs-ex-enforcement-chief-clashed-with-bosses-before-...
3•JumpCrisscross•11m ago•0 comments

U.S. FCC Bans Foreign-Made Routers as a 'National Security Risk'

https://www.cnet.com/home/internet/fcc-bans-foreign-made-routers-as-national-security-risk/
3•walterbell•15m ago•1 comments

SEC's ex-enforcement chief clashed with bosses before leaving

https://www.cnbc.com/2026/03/23/secs-ex-enforcement-chief-clashed-with-bosses-before-leaving.html
1•petethomas•15m ago•0 comments

Geo Cold Outreach in My Inbox Is Up 3x

https://www.generativevisibility.com/the-new-category-showing-up-in-my-inbox/
1•jenthoven•16m ago•0 comments

Why Everyone's Picking Up a PSP Again in 2026

https://gardinerbryant.com/psp-in-2026/
2•ecliptik•16m ago•0 comments

Can Good Writing Be Generative?

https://arxiv.org/abs/2601.18353
1•mihau•16m ago•0 comments

No, Windows Start does not use React

https://pathar.tl/blog/no-windows-start-does-not-use-react/
8•pathartl•18m ago•2 comments

Obsidian CLI

https://obsidian.md/help/cli
1•jrgd•20m ago•1 comments

Confronting the CEO of the AI company that impersonated me

https://www.theverge.com
2•inaros•20m ago•0 comments

Secret Hitler LLM Benchmark

https://github.com/jordan-gibbs/secret-hitler-bench
3•jordan_gibbs•26m ago•1 comments

Beyond AI Taking Jobs: When Economy Needs No Human Consumer

https://ralphmao.github.io/AI-humanity/
1•emulbasaka•27m ago•0 comments

Cisco Announces DefenseClaw at RSAC 2026

https://github.com/cisco-ai-defense/defenseclaw
1•Khaine•29m ago•1 comments

Why your guitar goes sharp when you play hard: the Kirchoff–Carrier equation

https://mbmccoy.dev/posts/nonlinear-vibes/
3•_alternator_•33m ago•1 comments

Is ChatGPT a Scrabble Genius, or a Scrabble Disaster?

https://www.youtube.com/watch?v=8opLB1D_RYY
2•doener•33m ago•1 comments

Python Software Foundation turned down Trump admin grant (2025)

https://arstechnica.com/tech-policy/2025/10/python-foundation-rejects-1-5-million-grant-over-trum...
1•PaulDavisThe1st•34m ago•0 comments

Designing AI Chip Software and Hardware

https://docs.google.com/document/d/1dZ3vF8GE8_gx6tl52sOaUVEPq0ybmai1xvu3uk89_is/edit?tab=t.0
2•broune•35m ago•1 comments

Global Petrol Prices

https://www.globalpetrolprices.com/gasoline_prices/
1•greedo•39m ago•0 comments

AI boom risks widening wealth divide, says BlackRock's Larry Fink

https://www.theguardian.com/technology/2026/mar/23/ai-boom-risks-widening-wealth-divide-blackrock...
7•devonnull•40m ago•0 comments

Dusking is a trend aimed at helping people switch off at the end of the day

https://theconversation.com/dusking-is-a-trend-aimed-at-helping-people-switch-off-at-the-end-of-t...
3•zeristor•41m ago•0 comments

SynthVision: Building a 110K Synthetic Medical VQA Dataset

https://huggingface.co/blog/OpenMed/synthvision
1•maziyar•43m ago•1 comments

Gabbard plans to shift coveted, CIA-backed high-tech fund In-Q-Tel to her office

https://www.politico.com/news/2026/03/23/in-q-tel-odni-cia-control-00840302
6•avidruntime•43m ago•1 comments

Philosophical DNA

https://diagnostic.millermanschool.com/
1•iamjfu•43m ago•0 comments

Where Should the Agent(s) Live?

https://opencomputer.dev/blog/where-should-the-agent-live
5•iacguy•44m 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?