frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude is down 8:29 pm PST (3/2/26)

1•HPMOR•56s ago•0 comments

Iran executes Khamenei's plan to spread regional war

https://www.ft.com/content/02eb660a-3c80-4d6b-9e58-e7411278b0f1
1•ParentiSoundSys•57s ago•0 comments

Show HN: AsmForge: Open-Source AI-Powered Assembly IDE Based on Eclipse Theia

https://github.com/TamTunnel/asmforge
1•pp10•1m ago•0 comments

A "Game First" Implementation of GenAI (Unity and Agents)

https://blackwaterlabs.io
1•AlisonJJJ•2m ago•1 comments

Show HN: Time to Decimal Calculator

https://www.timetodecimalcalculator.com/
1•atharvtathe•9m ago•0 comments

Intent-Based Commits

https://github.com/adamveld12/ghost
1•adamveld12•10m ago•1 comments

Apply Within – Bringing applicative desugaring to Scala for-notation

https://blog.podsnap.com/apply.html
2•luu•13m ago•0 comments

U.S. Marines Fire on Protesters in Karachi

https://www.wsj.com/livecoverage/iran-israel-us-strikes-2026/card/u-s-marines-fire-on-protesters-...
3•JumpCrisscross•15m ago•0 comments

Using a GPT-5-driven autonomous lab to optimize cell-free protein synthesis

https://www.biorxiv.org/content/10.64898/2026.02.05.703998v1
2•peyton•16m ago•0 comments

Augustus: Open-Source LLM Prompt Injection Tool

https://www.praetorian.com/blog/introducing-augustus-open-source-llm-prompt-injection/
2•umairnadeem123•19m ago•1 comments

Eoghan McCabe: "There is one way that SaaS can be saved"

https://twitter.com/eoghan/status/2028522852044206258
2•doppp•20m ago•0 comments

Show HN: Starcraft2 replay rendering engine and AI coach

https://www.starcraft2.ai/en/replay/72228e2b-569e-440d-9fcc-93e4a1f5a4b9
3•tomkit•21m ago•0 comments

Groveling for Dollars (1998)

https://www.salon.com/1998/05/04/feature_325/
2•psawaya•22m ago•0 comments

Building My Own Canva over a Weekend

https://catalinionescu.dev/ai-agent/building-my-own-canva-over-the-weekend/
2•cionescu1•23m ago•0 comments

The Interface Theory of Perception [pdf]

https://sites.socsci.uci.edu/~ddhoff/interface.pdf
2•jerlendds•30m ago•0 comments

The Support Agent Who Never Burns Out

2•natematthew•34m ago•0 comments

Beijing Doesn't Think Like Washington–and the Iran Conflict Shows Why

https://carnegieendowment.org/emissary/2026/03/iran-china-us-intervention-strategy
3•jackyli02•34m ago•0 comments

Show HN: Personal AI gateway for OpenClaw – tokenomics

https://github.com/rickcrawford/tokenomics
2•crawdog•38m ago•0 comments

Dabao evaluation board for Baochip-1X

https://www.crowdsupply.com/baochip/dabao
2•MassPikeMike•39m ago•0 comments

U.S. Troops Were Told Iran War Is for "Armageddon,"

https://jonathanlarsen.substack.com/p/us-troops-were-told-iran-war-is-for
37•fzeroracer•43m ago•26 comments

A brief history of logic [pdf]

https://www.cs.rice.edu/~vardi/comp409/history.pdf
2•vinhnx•45m ago•0 comments

Working on multiple tasks in parallel using 1 OpenClaw Agent

https://openclaw-setup.me/blog/usage-tips/run-multiple-openclaw-sessions-concurrently/
2•Gregoryy•45m ago•1 comments

He wanted to use ChatGPT to create sustainable housing. It took over his life

https://www.theguardian.com/technology/ng-interactive/2026/feb/28/chatgpt-ai-chatbot-mental-health
7•georgecmu•47m ago•0 comments

Whats Up with Claude Lately?

3•mech422•47m ago•1 comments

Deploy OpenClaw Agents in 6 seconds

https://tryshift.sh
2•akasuv•52m ago•0 comments

Giving LLMs a personality is just good engineering

https://www.seangoedecke.com/giving-llms-a-personality/
2•emschwartz•53m ago•0 comments

Elevated Errors in Claude.ai

https://status.claude.com/incidents/yf48hzysrvl5
6•LostMyLogin•59m ago•4 comments

ChatGPT uninstalls surged by 295% after DoD deal

https://techcrunch.com/2026/03/02/chatgpt-uninstalls-surged-by-295-after-dod-deal/
6•Garbage•1h ago•1 comments

Lessons from HFTs: Flip Coins

https://yoss.gg
2•gigavega•1h ago•1 comments

The daily hub for AI coding tool updates

https://coding-tools-updates-hub.loveyouall.qzz.io/en
2•carloshmccarlos•1h ago•1 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?