frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: VectorAtlas – a free 80KB SVG world map with per-country IDs

https://github.com/melenaos/Menelabs.VectorAtlas
2•melenaos•2m ago•0 comments

Show HN: Good web design inspiration for makers focused on results not awards

https://websitevice.com/
1•devluc•3m ago•0 comments

Do That Which Makes Your Life Easy

https://elijahpotter.dev/articles/do-that-which-makes-your-life-easy
1•chilipepperhott•3m ago•0 comments

3D-printing enthusiast creates 'Flock Sock' to blind controversial cameras

https://www.tomshardware.com/3d-printing/3d-printing-enthusiast-creates-flock-sock-camera-blind-s...
1•pavel_lishin•3m ago•0 comments

Why is this 15 year old still in Morocco and not in some big company?

1•kirito1337•5m ago•0 comments

A Preview of DuckDB v2.0

https://duckdb.org/2026/08/17/duckdb-20-highlights
1•ibotty•6m ago•0 comments

We Tracked a Shipment of Rare Books. It Ended at an Amazon AI Training Facility

https://www.404media.co/we-tracked-a-shipment-of-rare-books-it-ended-at-an-amazon-ai-training-fac...
2•amarcheschi•8m ago•1 comments

Tlbic v11.0: Steering Capital from Speculation to the Real Economy

https://drive.google.com/file/d/1gjcpLTIh4VPY3gh7gCe2ql04H6sMUycq/view?usp=drive_link
1•michikawa59•8m ago•1 comments

The Year of Micro Design

https://twitter.com/covacut/status/2087958248154648663
1•tosh•8m ago•0 comments

Engineer used 360-degree cam hidden in bag of snacks to steal DRAM process tech

https://www.tomshardware.com/pc-components/dram/nanya-engineer-used-360-degree-cam-hidden-in-snac...
1•Stratoscope•9m ago•1 comments

Should you use AI for a task? Here's a simple way to decide

https://www.theguardian.com/commentisfree/2026/jul/24/should-you-use-ai
1•mhb•9m ago•0 comments

Hackers exploit macOS Screen Sharing flaw to deploy Monero miner

https://www.bleepingcomputer.com/news/security/hackers-exploit-macos-screen-sharing-flaw-to-deplo...
1•DemiGuru•10m ago•0 comments

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
109•kevcampb•11m ago•38 comments

A Noob Learns FFT

https://entropicthoughts.com/fft
1•surprisetalk•12m ago•0 comments

Show HN: An AI market analyst that must cite evidence for every line it draws

https://github.com/maddogfinance/dsh-trading
1•celineycn•12m ago•0 comments

"Mad dogs and ": Heatwave economics – summer 2026

https://adamtooze.substack.com/p/chartbook-467-mad-dogs-and-heatwave
1•sasvari•13m ago•0 comments

Show HN: Stressing LLMs – Complexity Benchmark

https://alexander-hanel.github.io/StressingLLMs/
1•__alexander•13m ago•0 comments

Leaf 5 released: a PHP framework built for humans and AI agents

https://blog.leafphp.dev/posts/leaf-5
1•mychi•13m ago•0 comments

Two API calls exposed AI's hidden reasoning [video]

https://www.youtube.com/watch?v=P1v1-2CCKD0
1•eamag•13m ago•0 comments

Deep Orange 17, a solar-integrated, energy-positive electric vehicle

https://news.clemson.edu/clemson-university-unveils-deep-orange-17-a-solar-integrated-energy-posi...
1•geox•14m ago•0 comments

Recalls surge for vehicles as parked cars are bursting into flames.

https://www.washingtonpost.com/business/2026/08/17/they-were-told-park-outside-then-their-cars-bu...
1•bookofjoe•14m ago•1 comments

GitHub down again? no PR access

24•yodon•15m ago•9 comments

What breaks if I delete this file? React tooling can't answer that

https://blog.crossui.com/2026/08/what-breaks-if-i-delete-this-file
1•linbnet•15m ago•0 comments

Hard Problems and Heuristic Answers

https://stochastic.blog/hard-problems-and-heuristic-answers/
1•Anon84•15m ago•0 comments

Show HN: 1667, a terminal UI for writing fiction with language models

https://1667.ai/
9•refsab•16m ago•5 comments

Hamilton Morris on His Darkest Research Story [video]

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

Securing the Infrastructure of Intelligence

https://twitter.com/JensenHuang/status/2089331487342829862
1•tosh•17m ago•0 comments

Tell HN: GitHub Is Overloaded

40•SpyCoder77•17m ago•10 comments

Rodney Mullen invented over 40 skateboard tricks and patented none of them

https://rodney.onbolts.com
1•mjbonov•19m ago•1 comments

The root cause I was certain of was wrong

https://github.com/mnaza/condition-control/blob/main/docs/dfs-was-not-the-bug.md
1•mnaza•19m 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?