frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The billionaire threatening to upend Wall Street

https://www.ft.com/content/cf87b6cd-f940-4b09-b072-7da36faa183f
1•petethomas•2m ago•0 comments

Single-User Inference Card

https://markohaberl.substack.com/p/single-user-inference-card
1•mhaberl•7m ago•0 comments

SINR: Signal-to-interference-plus-noise ratio

https://en.wikipedia.org/wiki/Signal-to-interference-plus-noise_ratio
2•teleforce•8m ago•0 comments

AI Slop Is Real

https://aichatspot.online/what-is-ai-slop-and-does-it-really-ruin-youtube/
1•coinpress•9m ago•0 comments

Anthropic CEO says the way for AI to win over the public is to cure cancer

https://www.businessinsider.com/anthropic-ceo-dario-amodei-ai-public-opinion-cure-cancer-2026-8
3•wertyk•11m ago•2 comments

Show HN: Punyecs – A puny ECS library based on class attributes and querying

https://github.com/Modular-Game-Components/punyecs
1•thyrgle•12m ago•0 comments

Frontier models, transparency and trust; a new golden age in research for some?

https://scholarlyfutures.substack.com/p/frontier-models-transparency-and
1•JohnHammersley•16m ago•0 comments

Show HN: TKeeper – OSS machine identities without a single point of compromise

https://tkeeper.org
1•_qnt•23m ago•0 comments

Show HN: ChatGPT and Claude export viewer that runs locally in the browser

https://www.vinaa.ai/tools/ai-chat-history-browser/
1•sujee•24m ago•0 comments

Ukraine Finds Nvidia AI Chip in New Russian Missile, HUR Says

https://www.kyivpost.com/post/82225
6•osivertsson•28m ago•1 comments

Nobody Knows Anything

https://www.strangeloopcanon.com/p/nobody-knows-anything
2•gtirloni•29m ago•0 comments

Off-Sprey

https://offsprey.com/
1•voidmain0001•31m ago•1 comments

Apologia for the Old Ball

https://ponnekanti.net/oldball/
1•reasonableklout•35m ago•0 comments

Smarter – open-source, declarative AI authoring platform (Django, K8s-inspired)

https://github.com/smarter-sh/smarter
1•lpm0073•36m ago•0 comments

Sperm whales in 19th century shared ship attack information – Whales

https://www.theguardian.com/environment/2021/mar/17/sperm-whales-in-19th-century-shared-ship-atta...
4•bilsbie•46m ago•1 comments

Show HN: I Turned Apple Calendar into Tetris

https://github.com/EvanZhouDev/calendar-tetris
2•EvanZhouDev•49m ago•0 comments

Ghosts of the Past and Devils of the Present

https://thenewcuriosityshop.substack.com/p/ghosts-of-the-past-and-devils-of
1•benbreen•50m ago•0 comments

Legbar – live AI agent sessions beside GitHub CI, in one terminal

https://github.com/gmhoward9289-ops/legbar
2•gmhoward9289•55m ago•0 comments

Redis uses less RAM than you think, nibble measures how much, and applies it

https://github.com/RyanRana/nibble
2•ryanrana•1h ago•2 comments

Anthropic's 'Watermark' Text Adulteration in Claude Is a Perversion of Writing

https://daringfireball.net/2026/08/anthropics_watermark_text_adulteration_in_claude_is_a_perversi...
58•ropbear•1h ago•37 comments

Claude Seems Down

46•zhan_eg•1h ago•43 comments

Failure Takes Years to Admit

https://julienreszka.com/blog/failure-takes-years-to-admit/
2•julienreszka•1h ago•0 comments

Claude Is Down

https://claude.ai/new
27•nabeards•1h ago•37 comments

Nauru, the 3rd-smallest country, changes its name to Naoero

https://abcnews.com/International/wireStory/nauru-worlds-3rd-smallest-country-naoero-135318134
2•gmays•1h ago•1 comments

Winkeys: Windows Keyboard Shortcuts on macOS

https://winkeys.app
1•yashvadaria•1h ago•0 comments

Show HN: One page per betting market – 21 books' odds, every outcome graded

https://prop-line.com/odds-api
1•rquitzo243•1h ago•0 comments

How to build a RAG pipeline with the Go StdLib

https://blog.devgenius.io/stop-stuffing-your-system-prompts-build-a-real-rag-pipeline-in-go-e93bb...
2•cheikhdev•1h ago•0 comments

Wellington second-hand bookstore's mysterious orders

https://www.rnz.co.nz/life/books/wellington-second-hand-book-store-s-mysterious-orders
2•beanaroo•1h ago•0 comments

My Hermes and Obsidian Setup and Use Cases

https://metedata.substack.com/p/013-my-hermes-and-obsidian-set-up
2•young_mete•1h ago•0 comments

Awesome-local-first – A curated list of Local-First Software

https://github.com/zhongkechen/awesome-local-first
2•peter_d_sherman•1h ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•1y ago

Comments

nine_k•1y 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•1y ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•1y ago
They mention this in the article.
spockz•1y ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•1y ago
No, one example of why being variable sized integers.

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

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