frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pluralistic: If you build it (and it works), Trump will come (and take it)

https://pluralistic.net/2026/02/26/hanged-for-a-sheep/
1•xeonmc•34s ago•0 comments

AI Safety Farce

https://seanpedersen.github.io/posts/ai-safety-farce/
1•sean_pedersen•3m ago•0 comments

Show HN: SkillFortify, Formal verification for AI agents (auto-discovers)

https://github.com/varun369/skillfortify
1•varunpratap369•3m ago•1 comments

What breaks when you vote on specific claims instead of whole posts?

1•flyblackbox•4m ago•0 comments

Community-powered blocklist for removing slop from HN comments

https://github.com/supriyo-biswas/hn_slopblock
1•supriyo-biswas•6m ago•0 comments

What Hackers Consider Essential (1991)

1•validatori•10m ago•0 comments

Still Ours To Lose – almost all LLMs share one remarkable behavioral trait

https://ctsmyth.substack.com/p/still-ours-to-lose
2•K0balt•12m ago•1 comments

Textadept

https://orbitalquark.github.io/textadept/
2•giancarlostoro•17m ago•0 comments

Show HN: I built a desktop app combining Claude, GPT, Gemini with local Ollama

https://github.com/tsunamayo7/helix-ai-studio
1•tsunamayo•24m ago•0 comments

TrueSize: Compare Real Country and Region Sizes

https://truesize.net/#ts~N4IgbiBcDaCMCcA6eB2AzGgrAGgAyNhUxQA5sAmAXWxAEsppQBrKEAWlgBYSS0SQaABwagAx...
1•thunderbong•28m ago•0 comments

Claude Code is a great Dad side project environment

https://www.bitlog.com/2026/02/28/claude-code-is-a-great-dad-side-project-environment/
1•jakevoytko•29m ago•1 comments

Why some Americans who make a lot of money feel so poor

https://www.cnn.com/2026/01/06/economy/housing-childcare-availability-affordability-economy
2•paulpauper•29m ago•0 comments

Students are skipping the hardest part of growing up

https://www.omanobserver.om/article/1183600/opinion/students-are-skipping-the-hardest-part-of-gro...
2•paulpauper•30m ago•0 comments

The Great Unraveling Has Begun

https://www.nytimes.com/2026/01/06/opinion/peace-conflict-war.html
1•abdelhousni•30m ago•0 comments

Iranian Supreme Leader Ayatollah Khamenei Dies

https://www.wsj.com/world/middle-east/iranian-supreme-leader-ayatollah-khamenei-dies-94e0aa4c
2•LopRabbit•30m ago•0 comments

Show HN: Iosef, an iOS simulator CLI designed for agents

https://github.com/riwsky/iosef
1•riwsky•34m ago•0 comments

Signal vs. Noise in the Skills Ecosystem

https://olshansky.info/posts/2026-02-28-signal-vs-noise-in-the-skills-ecosystem
1•Olshansky•39m ago•0 comments

He wanted to use ChatGPT to create sustainable housing. Then it took his life

https://www.theguardian.com/technology/ng-interactive/2026/feb/28/chatgpt-ai-chatbot-mental-health
2•october8140•43m ago•1 comments

You think unemployed, I think retired

https://jesseduffield.com/You-Think-Unemployed-I-Think-Retired/
2•brandon_bot•45m ago•1 comments

US tech supplied Israel with AI models, tech's role in warfare – AP News

https://apnews.com/article/israel-palestinians-ai-weapons-430f6f15aab420806163558732726ad9
2•abdelhousni•49m ago•1 comments

Show HN: Analyze employee survey data in 60 seconds (no signup)

https://getdistill.tech/landing
1•khnfrhn•52m ago•1 comments

A pretty looking web for a quantum mechanics tool

https://github.com/Jamessfks/mace
1•Jamessfks123•54m ago•0 comments

The Atlantic AI Watchdog

https://www.theatlantic.com/category/ai-watchdog/
1•fortran77•57m ago•0 comments

Poll: How do you think LLMs will affect the job market for software developers?

1•bwestergard•58m ago•4 comments

Show HN: Engram – Memory for AI coding agents (2.5K installs, 80% on LOCOMO)

https://www.engram.fyi
1•tstockham•59m ago•0 comments

Show HN: Openpista – AI Agent for OS Control via Telegram/CLI in Rust

https://github.com/openpista/openpista
1•pista_chio•1h ago•0 comments

Show HN: I put Claude Code inside a Telegram bot for voice memos

https://github.com/baryhuang/ai-meeting-notes-agent
1•buryhuang•1h ago•0 comments

We Built a Video Rendering Engine by Lying to the Browser About What Time It Is

https://blog.replit.com/browsers-dont-want-to-be-cameras
4•darshkpatel•1h ago•0 comments

Show HN: Userscript to Display Age/Karma of HN Users

https://gist.github.com/m4chinations/f6d58711a94077d96cf4157665b0bab3
3•linksbro•1h ago•1 comments

Show HN: A POST only back end framework

https://nile-js.github.io/nile/
1•HusseinKizz•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?