frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Bun-boss – Bun-native fork of the pg-boss queue package

https://www.npmjs.com/package/bun-boss
1•khromov•1m ago•0 comments

Tim O'Reilly – Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•rmason•1m ago•0 comments

QTC – An old-school-cool terminal client for MeshCore messaging – Linux / macOS

https://github.com/initsixdev/QTC
1•brna-2•2m ago•0 comments

What a California License Plate Taught Me About How AI "Knows"

https://techunpacked.substack.com/p/32-what-a-california-license-plate
1•groverneev•4m ago•0 comments

Show HN: OutageDeck – one view of 172 provider status feeds

https://outagedeck.com/stack
1•koko3tallah•7m ago•0 comments

Divers recover a bottle of Guinness from a 162-year-old shipwreck

https://www.washingtonpost.com/science/2026/08/08/divers-recover-bottle-guinness-162-year-old-shi...
3•bookofjoe•11m ago•1 comments

Open-source interactive map for the Aug 12 total solar eclipse

https://eclipsefan.org/?v=2&t=max&layers=eclipse%2Cbesselian%2Cumbra-live%2Cshadow-3d%2Ccloud-pro...
3•MarcoDewey•21m ago•0 comments

OpenAI to pause some work on AI model Astra due to security concerns

https://www.theguardian.com/technology/2026/aug/08/openai-astra-security-concerns
3•tzmlab•22m ago•1 comments

QVAC – Decentralized, Local AI in a Single API

https://qvac.tether.io/
1•conferza•24m ago•0 comments

Apple's war on OpenAI is about who owns the Attachment Economy

https://www.machinesociety.ai/p/apples-war-on-openai-is-really-about
2•mikelgan•24m ago•1 comments

Show HN: Dive into Amiga.games

https://classicreload.com/platform/amiga%20os
1•kilian-ai•25m ago•0 comments

Show HN: HolyCode Cloud – persistent Linux workstations for AI

https://holycode.cloud
1•CoderLuii•29m ago•0 comments

KubeTective: Deterministic Incident Investigation for Kubernetes

https://github.com/GlediLami/kubetective
1•Gledis•30m ago•0 comments

ACM Europe Summer School on MLIR 2026: Streamed Live, August 10-14

https://mlir-school.github.io/summer-2026/program/
1•matt_d•32m ago•0 comments

We have a chance to fix the Jones Act

https://www.abundanceandgrowth.org/p/we-have-a-chance-to-fix-the-jones
2•JumpCrisscross•32m ago•0 comments

The Costs of Environmental Land Use Regulation

https://mtabarrok.com/publications/environmental-land-use
2•JumpCrisscross•33m ago•0 comments

Show HN: Zero-bloat, client-side utility suite with zero telemetry

https://summit-side-utilities.pages.dev/
1•james_utils•33m ago•1 comments

Whisked: The Food Corridor's Shared Kitchen Summit [video]

https://www.youtube.com/watch?v=frhsHb8CFDs
1•mooreds•33m ago•0 comments

The Architecture of Open Source Applications

https://aosabook.org/en/
3•amperleft•34m ago•0 comments

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
2•mooreds•35m ago•1 comments

The German Mittelstand

https://kieranvelasquez.substack.com/p/on-the-german-mittelstand
1•mooreds•36m ago•0 comments

OWASP-amass – In-depth attack surface mapping and asset discovery

https://github.com/owasp-amass/amass
1•gurjeet•38m ago•0 comments

Benchmarking LLMs on File System Design and Implementation

https://arxiv.org/abs/2608.00280
2•matt_d•39m ago•0 comments

Subdomain Center – Largest Subdomain Database

https://www.subdomain.center/
1•gurjeet•40m ago•0 comments

Thomas Wolf thread on the AISI incident

https://twitter.com/Thom_Wolf/status/2085084718320464230
1•cyanbane•45m ago•0 comments

Show HN: agent-hop – reverse-engineered session formats to resume in any agent

https://github.com/hetpatel-11/agent-hop
1•HetPatel106•48m ago•0 comments

Differential heuristics: learning about a way to optimize the A* heuristic

https://www.redblobgames.com/blog/2026-08-08-differential-heuristics/
1•matt_d•50m ago•0 comments

MCP Server Budgeting Tool

https://www.designshippers.com/work/context-budget.html
1•krm01•50m ago•0 comments

AI and War Is Being Oversold

https://phillipspobrien.substack.com/p/ai-and-war-is-being-oversold-right
3•JumpCrisscross•51m ago•0 comments

New: Create AI marketing games in your brand style

https://refybe.com/en
1•refybe•52m 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?