frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Money and collateral in an AI-first society

https://adlrocha.substack.com/p/adlrocha-money-and-collateral-in
1•adlrocha•2m ago•0 comments

Ask HN: Can I repurpose a Bluetooth voice remote as input device for a PC?

1•albert_e•4m ago•0 comments

Ask HN: Are you handling persistent memory across local Ollama sessions

1•null-phnix•5m ago•0 comments

Show HN: Spadyum – An Open-Source Civilization Backup Protocol

https://github.com/kivancadiguzel-design/Spadyum-Genesis/blob/main/README.md
1•Spadyum_Genesis•5m ago•0 comments

Julia Snail – An Emacs Development Environment for Julia Like Clojure's Cider

https://github.com/gcv/julia-snail
1•TheWiggles•7m ago•0 comments

Notes on Writing WASM

https://notes.brooklynzelenka.com/Blog/Notes-on-Writing-Wasm
2•vinhnx•9m ago•0 comments

Making Firefox's right-click not suck, more, with userChrome.css

https://joshua.hu/firefox-making-right-click-not-suck-even-more-with-userchrome
3•mmsc•11m ago•0 comments

Run prompts on a schedule with Claude Code

https://code.claude.com/docs/en/scheduled-tasks
1•blacktulip•11m ago•0 comments

Show HN: Open-source self-hosted Intercom and CCTV platform

https://github.com/rosteleset/SmartYard-Server
1•sbca68•13m ago•0 comments

Show HN: Self-Evolving Skill – empirical results from a 5-round experiment

https://github.com/191341025/Self-Evolving-Skill
1•tiansenxu•18m ago•0 comments

What Is AI Reading?

https://generativepulse.ai/report/
1•doener•18m ago•0 comments

Rcarmo/piclaw: An all-in one agent environment with a mobile-first web UI

https://github.com/rcarmo/piclaw
1•rcarmo•23m ago•0 comments

Show HN: Termix – One dashboard for all your AI coding agents

https://github.com/rustykuntz/termix
1•rustykuntz•23m ago•1 comments

Show HN: Cardea, SSH bastion with per-key ACLs, TPM keys and session recording

https://github.com/hectorm/cardea
1•hectorm•28m ago•0 comments

Show HN: Appbun – Turn any URL into desktop app with one command Electrobun+bun

https://github.com/bigmacfive/appbun
1•bigmacfive•30m ago•1 comments

Dinner at When?

https://archive.aramcoworld.com/issue/196902/dinner.at.when.htm
1•pinkmuffinere•30m ago•0 comments

I built a cloud-native, quorum-free RSM for the JVM atop S3

https://github.com/io-s2c/s2c
2•mzazaipsc•35m ago•1 comments

Show HN: Importree – Import Dependency Trees for TypeScript Files

https://importree.js.org
1•alexgrozav•36m ago•0 comments

Show HN: SubstanceWiki – Open-source encyclopedia of psychoactive substances

https://www.substancewiki.org/
1•toprak123•37m ago•0 comments

Therac-25

https://en.wikipedia.org/wiki/Therac-25
3•hubraumhugo•41m ago•0 comments

Llm9p: LLM as a Plan 9 file system

https://github.com/NERVsystems/llm9p
6•mleroy•42m ago•2 comments

BlackRock caps withdrawals amid investor rush

https://www.msn.com/en-us/news/insight/blackrock-caps-exits-as-redemptions-surge/gm-GM1184A108
2•csomar•43m ago•0 comments

Show HN: Bookvoice – convert PDF books into audiobooks

https://github.com/Semtexcz/Bookvoice
1•semtex_cz•49m ago•0 comments

German political spies mistook a random Berlin woman and got her fired

https://www.eugyppius.com/p/how-german-political-spies-mistook
3•Jerry2•49m ago•1 comments

I'm Not Consulting an LLM

https://lr0.org/blog/p/gpt/
4•birdculture•51m ago•0 comments

Game Theory #9: the US-Iran War [video]

https://www.youtube.com/watch?v=jIS2eB-rGv0
1•flawn•51m ago•0 comments

Dotfiles for Consistent AI-Assisted Development – Dylan Bochman

https://dylanbochman.com/blog/2026-01-25-dotfiles-for-ai-assisted-development/
1•ankitg12•55m ago•0 comments

When the chain becomes the product: Seven years inside a token-funded venture

https://markmhendrickson.com/posts/when-the-chain-becomes-the-product/
1•mhendric•57m ago•0 comments

Making Firefox's right-click not suck, more, with userChrome.css

https://joshua.hu/firefox-making-right-click-not-suck-even-more-userchrome
2•nocy•58m ago•0 comments

Ask HN: Why there are no actual studies that show AI is more productive?

4•make_it_sure•1h ago•4 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?