frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek V4 Flash 0731: Is It Cheaper to Run It at Home or Pay per Token?

https://grigio.org/deepseek-v4-flash-0731-is-it-cheaper-to-run-it-at-home-or-pay-per-token/
1•grigio•57s ago•0 comments

All memory manufactured in 2027 has been sold out

https://www.ign.com/articles/ramageddon-continues-another-year-as-2027-memory-capacity-is-reporte...
1•inigyou•1m ago•0 comments

Is your Bitcoin seed safe after Coldcard accident? What about iancoleman/bip39?

https://grigio.org/is-you-bitcoin-seed-safe-after-coldcard-accident-what-about-iancoleman-bip39/
1•grigio•1m ago•1 comments

Truckslop

https://truckslop.joshu.dev/
1•tosh•2m ago•0 comments

Marque Terminal

https://marque.at/download
1•scanash00•4m ago•0 comments

The Ones Who Look Outward

https://www.centauri-dreams.org/2026/08/06/the-ones-who-look-outward/
1•JPLeRouzic•6m ago•0 comments

Tsang Tsou-Choi

https://en.wikipedia.org/wiki/Tsang_Tsou-choi
1•bondarchuk•8m ago•0 comments

Show HN: Remembrane – agent memory in one SQLite file, zero dependencies

https://github.com/satyasairay/remembrane
1•satyasairay•8m ago•0 comments

Windows Tracks You with Hidden ID. We Built DeGDID to Block It

https://windscribe.com/blog/windows-tracks-you-with-a-hidden-id-so-we-built-degdid-to-block-it/
1•defrost•9m ago•0 comments

AI model achieves breakthrough in forecasting cyclones – Google DeepMind

https://deepmind.google/blog/weathernext-ai-model-achieves-breakthrough-in-forecasting-cyclones/
1•rbanffy•10m ago•0 comments

Operational Tropical Cyclone Forecasting with AI – Nature

https://www.nature.com/articles/s41586-026-10953-2
1•rbanffy•10m ago•0 comments

Don't get rejected by Apple anymore

https://www.apprejectkit.com/guides/app-store-submission-checklist/
1•jonvolio•11m ago•0 comments

Show HN: CapyToolkit – Browser-native developer and hardware diagnostic tools

https://capytoolkit.com/
1•ChillyCapy•12m ago•0 comments

High-Quality Free Transparent PNG Collections

https://pngdex.com/collections/
1•kanlabs•12m ago•0 comments

I won't read LLM authored fiction

https://mccormick.cx/news/entries/why-i-won-t-read-llm-authored-fiction
1•chr15m•13m ago•0 comments

The offline messaging apps challenging internet shutdowns

https://restofworld.org/2026/india-github-geoblock-jack-dorsey-bitchat/
3•billybuckwheat•14m ago•0 comments

Ask HN: DeepSeek Alternatives

1•bndr•15m ago•0 comments

Ask HN: After 20 years of coding it is not a fun hobby anymore. How about you?

1•alex_x•16m ago•1 comments

Russian spy 'honeytraps' lure Ukrainian soldiers to their deaths

https://www.thetimes.com/world/europe/article/russia-spy-ukraine-death-honeytrap-kbm55pcl7
1•petethomas•17m ago•0 comments

Ball Scratch Simulator: release date, gameplay, VR, and PC requirements

https://ballscratchsimulator.wiki/
1•visiohex•17m ago•0 comments

Passkeys by default and retirement of Microsoft SMS and voice authentication

https://www.microsoft.com/en-us/security/blog/2026/07/13/microsoft-entra-id-security-updates-pass...
1•firefoxd•21m ago•0 comments

How to read the Attention formula from the Attention is all you need paper

https://twitter.com/i/status/2085629807656862037
1•asxndu•23m ago•0 comments

Americans Are Richer Than Everyone Else

https://www.cremieux.xyz/p/americans-are-richer-than-everyone
1•NewCzech•24m ago•1 comments

INT2 KV-cache quantization is getting surprisingly good

https://arxiv.org/abs/2608.02691
1•yunuyean•26m ago•0 comments

Canadian imports for data centre equipment up 88% from prior year

https://www.theglobeandmail.com/business/article-data-centre-equipment-imports-ai-boom-canada/
1•petethomas•27m ago•0 comments

Restaurants and theatres ban Meta's smart glasses

https://www.theguardian.com/technology/2026/aug/06/restaurants-pubs-and-theatres-ban-metas-spy-gl...
3•BlueBerry2001•33m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
2•aratahikaru5•35m ago•0 comments

I have never seen a game fail because the artists were too slow

https://www.productionalchemist.com/p/inever-seen-a-game-fail-because-artists-too-slow
1•Darkstryder•36m ago•3 comments

Ask HN: I can't post in Show HN

1•wensim•36m ago•0 comments

Programming the Gigatron

https://www.iwriteiam.nl/PGigatron.html
2•shakna•38m 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?