frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nuts News

https://news.nuts.services/
1•kordlessagain•4m ago•0 comments

Australia Tops Claude Usage

https://www.forbes.com.au/news/innovation/australia-is-the-worlds-biggest-claude-user-now-anthrop...
1•ishanz•10m ago•0 comments

AI's Biggest Unlock Isn't Productivity. It's Access to Expertise

https://diviv.substack.com/p/ais-biggest-unlock-isnt-productivity
1•divi_vijay•11m ago•0 comments

Mushroom trip: a mycologist's tour of the Tarkine

https://www.theguardian.com/science/ng-interactive/2026/jul/13/mushroom-trip-a-mycologists-tour-o...
1•Anon84•11m ago•0 comments

Sam Altman and Elon Musk Argue over Who's Running the Bigger Scam

https://daringfireball.net/linked/2026/07/12/altman-musk
4•MaysonL•13m ago•0 comments

Quantum Mechanics May Not Need Imaginary Numbers After All

https://scitechdaily.com/quantum-mechanics-may-not-need-imaginary-numbers-after-all/
1•westurner•14m ago•0 comments

Billion Dollar PDFs

https://billiondollarpdf.com/
1•rafaepta•14m ago•0 comments

OneDev AI: Coding Agents as Teammates in Issues, Pull Requests, and CI

https://onedev.io/blogs/ai-teammates
2•timplant•16m ago•0 comments

Student's £30 device 'translates in real time'

https://www.bbc.com/news/articles/ced47540de2o
3•jethronethro•16m ago•0 comments

Circular Obstacle Pathfinding (2017)

https://redblobgames.github.io/circular-obstacle-pathfinding/
1•andsoitis•17m ago•0 comments

Deployment is All You Need: The case for deployment engineering

https://cephos.substack.com/p/deployment-is-all-you-need
2•ism-cep•23m ago•0 comments

Show HN: WA State Tolls tool that shows the best time to take it to save money

https://watolls.danielsada.tech/
1•dshacker•26m ago•0 comments

Micro-JavaScript: A pure Python JavaScript engine, inspired by MicroQuickJS

https://github.com/simonw/micro-javascript
1•nz•37m ago•0 comments

Rashidieh

https://en.wikipedia.org/wiki/Rashidieh
2•vinnyglennon•39m ago•0 comments

AI agent startup uses agent to lead 100M round

https://techcrunch.com/2026/07/09/an-ai-agent-startup-just-let-its-agent-run-its-100-million-fund...
2•noashavit•45m ago•0 comments

Lindsey Graham Dead at 71

https://www.economist.com/united-states/2026/07/12/lindsey-graham-represented-the-arc-of-his-party
4•andsoitis•45m ago•1 comments

Show HN: Hologram, photo management and culling built with Tauri

https://github.com/ThatXliner/Hologram
1•thatxliner•50m ago•0 comments

2028 Could Bring the Most Mind-Bendingly Expensive Apple Product of All Time

https://gizmodo.com/2028-could-bring-the-most-mind-bendingly-expensive-apple-product-of-all-time-...
3•megamike•51m ago•2 comments

The cost of AI-assisted development: cognitive fatigue

https://warpedvisions.org/blog/2025/hitting-the-wall-at-ai-speed/
3•winter_blue•54m ago•0 comments

How to Get What You Want

https://andys.blog/how-to-get-what-you-want/
4•andytratt•55m ago•0 comments

Amicro: Micro-Transitions Library

https://amicro.vercel.app/
2•handfuloflight•59m ago•0 comments

Argocd-AI-Assistant

https://github.com/saidsef/argocd-ai-assistant
2•saidsef•59m ago•0 comments

Physicists recreate black hole energy extraction in the lab

https://www.sciencedaily.com/releases/2026/07/260711010120.htm
4•stonlyb•1h ago•0 comments

Grok 4.5 and GPT5.6 beat Anthropic for finding security vulnerabilities in PRs

https://docs.damsecure.ai/blog/pr-review-security-benchmark/
5•pcollins123•1h ago•1 comments

Designing and assembling my first PCB

https://vilkeliskis.com/b/2026/0711.html
13•tadasv•1h ago•0 comments

Prescryb – an MCP server for CVE and config remediation

https://github.com/konstruktoid/prescryb
2•konstruktoid•1h ago•0 comments

Privacy-First PDF Tools

https://cleanvault.github.io/
2•audit-mate•1h ago•1 comments

Dither Kit: Make your charts dither

https://www.tripwire.sh/dither-kit
2•handfuloflight•1h ago•0 comments

Architecture Description Languages [pdf]

https://ics.uci.edu/~taylor/documents/2000-ADLs-TSE.pdf
7•ascent817•1h ago•1 comments

Why Vanilla JavaScript

https://guseyn.com/html/posts/why-vanilla-js.html
2•guseyn•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?