frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Moving Past Bots vs. Humans

https://blog.cloudflare.com/past-bots-and-humans/
1•doomrobo•10s ago•0 comments

I made a research test suite for analysis of software metrics overtime

https://abigail.sh/writing/historical-analysis-of-software-metrics/
1•abigailphoebe•1m ago•1 comments

Why Are Palantir and OpenAI Scared of Alex Bores?

https://www.youtube.com/watch?v=znKb71kLG5c
1•frm88•1m ago•0 comments

Designing web interfaces with Claude Code

https://segbedji.com/designing-interfaces-with-claude-code/
1•segbedji•1m ago•0 comments

Better (Free) GitHub Readme Widgets

https://gh-stats.com
1•s_manor•2m ago•1 comments

The Luddites Were the First to Attack AI

https://marginalrevolution.com/marginalrevolution/2026/04/the-luddites-were-the-first-to-attack-a...
1•speckx•2m ago•0 comments

Is your site agent-ready?

https://blog.cloudflare.com/agent-readiness/
1•tgdn•2m ago•0 comments

CrabTrap: An LLM-as-a-judge HTTP proxy to secure agents in production

https://www.brex.com/crabtrap
1•pedrofranceschi•2m ago•0 comments

FlashKDA: High-performance Kimi Delta Attention kernels

https://github.com/MoonshotAI/FlashKDA
1•zaevlad•3m ago•0 comments

Firefox 150.0 Release Notes

https://www.firefox.com/en-US/firefox/150.0/releasenotes/
1•N19PEDL2•3m ago•0 comments

Age verification is officialy TRASH

https://www.google.com/url?sa=t&source=web&rct=j&url=https%3A%2F%2Fcybernews.com%2Fsecurity%2Feu-...
1•default__paul•3m ago•1 comments

The 'unregistered Americans': because of their parents, they do not exist

https://www.theguardian.com/us-news/ng-interactive/2026/apr/21/unregistered-americans-sovereign-c...
2•MaysonL•4m ago•0 comments

The layer that helps machines understand why, so they can act without being told

https://kenoticlabs.com/thesis
1•SamuelTanguturi•5m ago•0 comments

Capture and replay Postgres workload at scale

https://github.com/pg-retest/pg-retest
1•TheMadHatter76•5m ago•1 comments

The cost for posting links using X's API increased today by 1900%

https://twitter.com/mediagazer/status/2046268441028444223
2•ilamont•5m ago•0 comments

Termux vs. Terminal on Pixel 10

1•thekosmix•6m ago•0 comments

Exposing the flaw in tap to pay [video]

https://www.youtube.com/watch?v=PPJ6NJkmDAo
1•gmays•6m ago•0 comments

How is the world doing today?

https://daytone.app
1•skaplich•6m ago•0 comments

Emacs Is My Browser

https://joshblais.com/blog/emacs-as-my-browser/
1•signa11•6m ago•0 comments

Finishing Things

https://ratfactor.com/finishing-things
1•signa11•7m ago•0 comments

Why "mark your variables as sensitive" is the wrong lesson from the Vercel hack

https://robisit.com/thoughts/modern-platform-part-2/
2•RobIsIT•8m ago•0 comments

The AI engineering stack we built internally – on the platform we ship

https://blog.cloudflare.com/internal-ai-engineering-stack/
1•Brajeshwar•9m ago•0 comments

Alex Bores rolls out "AI dividend" plan to share AI wealth

https://www.axios.com/2026/04/20/alex-bores-ai-dividend-plan-wealth
1•signa11•9m ago•0 comments

Regula – scans your code for EU AI Act risk indicators (Python CLI, MIT)

https://github.com/kuzivaai/getregula
1•kuzivaai•10m ago•0 comments

Sweden Orders Talgo Nighttrains

https://back-on-track.eu/sweden-orders-talgo-nighttrains/
2•edward•13m ago•0 comments

You can make something good

https://sfalexandria.substack.com/p/you-can-make-something-good
1•nanfinitum•13m ago•0 comments

Thiel Foundation Announces 2026 Class of Thiel Fellows

https://www.businesswire.com/news/home/20260420984007/en/Thiel-Foundation-Announces-2026-Class-of...
1•ronfriedhaber•13m ago•0 comments

Chinese diamond-based coating boosts data center cooling efficiency by 80%

https://thecoolingreport.com/intel/diamond-copper-composite-coating-chinese-academy-sciences-cool...
1•jackdilusso•13m ago•0 comments

China blew up its own future [video]

https://www.youtube.com/watch?v=AultJcNb90c
1•ggraphilia•13m ago•0 comments

Azure SRE Agent flaw lets outsiders silently eavesdrop on cloud operations

https://www.csoonline.com/article/4161389/azure-sre-agent-flaw-let-outsiders-silently-eavesdrop-o...
2•talhof8•13m ago•0 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•11mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•11mo ago
They mention this in the article.
spockz•11mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•11mo ago
No, one example of why being variable sized integers.

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

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