frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Jane Street signs $6B AI cloud deal with CoreWeave, invests $1B

https://thenextweb.com/news/jane-street-coreweave-6-billion-cloud-1-billion-equity-ai
1•gmays•1m ago•0 comments

KeePassChi – Codeberg.org

https://codeberg.org/keepasschi
1•sharjeelsayed•2m ago•0 comments

Elon Musk buys a fifth of his own Cybertrucks

https://www.msn.com/en-us/money/companies/elon-musk-buys-a-fifth-of-his-own-cybertrucks/ar-AA212Sci
3•petethomas•3m ago•0 comments

We're Hooked on Satellites. It Could Blow Up in Our Faces

https://www.cnet.com/science/space/features/satellite-overcrowding-space-junk-low-earth-orbit-sta...
2•SilverElfin•3m ago•0 comments

Filling DOCX forms: GPT-5.1 broke it, every Claude model handled it

https://varstatt.com/jurij/p/filling-forms-no-tool-can-template
1•jurijtokarski•4m ago•0 comments

Lutnick's old firm pumps $10M into super PAC led by Tether executive

https://www.citationneeded.news/commerce-secretary-howard-lutnicks-old-firm-pumps-10-million-into...
3•petethomas•5m ago•1 comments

US, EU move toward landmark biometric data sharing deal

https://www.biometricupdate.com/202603/us-eu-move-toward-landmark-biometric-data-sharing-deal
2•peq42•5m ago•0 comments

A privacy-first QR code generator (100% client-side, PNG and SVG export)

https://atomnyx.com/tools/qr-code-generator
1•RuBekOn•6m ago•0 comments

TCode: An AI Coding Agent Leverages Neovim and Tmux

https://www.binwang.me/2026-04-12-TCode-An-AI-Coding-Agent-Leverages-Neovim-and-Tmux.html
1•wb14123•6m ago•0 comments

Reed Hastings to Step Down as Netflix Chair

https://www.nytimes.com/2026/04/16/business/media/reed-hastings-netflix-chair.html
1•psychanarch•6m ago•0 comments

Frontier Coding Agents Built a Video Diffusion Pipeline on Max

https://www.modular.com/blog/how-frontier-coding-agents-built-a-video-diffusion-pipeline-on-max
1•visheshdembla•7m ago•0 comments

Scientists Just Created Super-Strong Steel That Never Rusts

https://www.popularmechanics.com/science/green-tech/a70977124/3d-printed-steel/
2•bookofjoe•8m ago•1 comments

The Beginning of Scarcity in AI

https://tomtunguz.com/ai-compute-crisis-2026/
2•gmays•12m ago•0 comments

Mechanical Sympathy

https://vickiboykis.com/2026/04/13/mechanical-sympathy/
1•sebg•12m ago•0 comments

Neuromorphic Event-Based Camera Achieves Kilohertz Vascular Imaging

https://bioengineer.org/neuromorphic-event-based-camera-achieves-kilohertz-vascular-imaging-and-f...
2•geox•13m ago•0 comments

Accelerate building an independent European social web

https://fund.eurosky.tech/https://whydonate.com/en/fundraising/AcceleratebuildinganindependentEur...
1•doener•15m ago•0 comments

Packrat Parsing at the Speed of Wasm [video]

https://www.youtube.com/watch?v=C2QxWtqlq9E
1•matt_d•17m ago•0 comments

Has New Music Become Less Popular?

https://www.statsignificant.com/p/has-new-music-become-less-popular
1•dpee123•18m ago•0 comments

Let sleeping CPUs lie: S0ix

https://freebsdfoundation.org/our-work/journal/browser-based-edition/laptop-desktop/let-sleeping-...
1•fanf2•19m ago•0 comments

JavaScript Promise.all() and Promise.allSettled() in Practice

https://www.jamdesk.com/blog/javascript-promise-all
1•gbourne1•21m ago•0 comments

GitHub Copilot Chat 0.44.1 – Possible Malicious Release

2•warhorse10_9•23m ago•0 comments

We Took $10k from MKBHD's Locked iPhone

https://twitter.com/veritasium/status/2044466849308414117
1•apparent•23m ago•1 comments

Changing leafcutter ants' food reshapes their microbial gardens, scientists find

https://phys.org/news/2026-03-leafcutter-ants-food-reshapes-microbial.html
1•PaulHoule•23m ago•0 comments

Sweden's schools cutting back on digital learning

https://www.bbc.com/news/articles/cly0vk77vdko
1•bidikburger•27m ago•1 comments

Ask HN: Why Hasn't Clojure Caught On?

4•uxcolumbo•27m ago•4 comments

Estimating π with a Coin

https://arxiv.org/abs/2602.14487
1•sebg•28m ago•0 comments

Show HN: King Louie a desktop AI with 20 agent tools, no cloud required

https://github.com/the-banana-tool/king-louie
1•sethito•29m ago•1 comments

The "Passive Income" trap ate a generation of entrepreneurs

https://www.joanwestenberg.com/the-passive-income-trap-ate-a-generation-of-entrepreneurs/
10•devonnull•30m ago•2 comments

Timeplus Released AgentGuard – Real-Time Security Detection for AI Agents

https://www.timeplus.com/post/agentguard
1•gangtao•30m ago•0 comments

The Rise of Marketing Speak

https://sustainableviews.substack.com/p/the-rise-of-marketing-speak
1•rzk•31m 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?