frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Is Cloud.microsoft?

https://support.microsoft.com/en-us/office/what-is-cloud-microsoft
1•iso1631•3m ago•1 comments

The Depths She'll Reach (2021)

https://thedepths.longlead.com/
1•Thunder_rumbles•3m ago•0 comments

How HN: Argus – open-source security scanner with MCP

https://github.com/argus-code-scanning/argus-codescan-mcp
1•Gabrielokiri•4m ago•0 comments

Companies once tied to Assad kept winning UN contracts under Syria's new rulers

https://www.icij.org/investigations/damascus-dossier/companies-once-tied-to-assad-kept-winning-un...
2•robtherobber•8m ago•0 comments

Episode 2: Trump Must Admit Defeat in Iran [video]

https://www.youtube.com/watch?v=nRAtD7iAgwY
2•hebelehubele•10m ago•0 comments

A creature that the internet is raising together

https://canwecooperate.com
1•sheepyellow•12m ago•0 comments

The Economist Problem and AI

https://pithandpip.com/blog/the-economist-problem-and-ai
1•maguay•13m ago•0 comments

Show HN: Systematic reporting in under an hour, not months

https://octigen.com/blog/posts/2026-08-04-systematic-reporting/
7•m_mueller•19m ago•0 comments

Helios: Decentralized Autonomous Collision Avoidance for Megaconstellations

https://github.com/kamilprochazka27-art/HELIOS
1•HELIOSDecentral•19m ago•0 comments

Show HN: TickerNotch: Live tickers and news in the MacBook notch

https://bitvibelabs.com/tickernotch/
2•BitVibeLabs•22m ago•0 comments

The software group Palantir paid just £2M in corporation tax in the UK in 2024

https://www.theguardian.com/technology/2026/aug/05/palantir-corporation-tax-uk-2024-accounting-pr...
4•igortru•22m ago•1 comments

Bitcoin BIP110 mandatory activation this Saturday, how game theory will unfold?

https://www.simondixon.com/blog/bip-110-the-spam-war-and-the-battle-nobody-wants-to-name-where-i-...
1•slavgoyim•23m ago•1 comments

OpenAI pays $3.2M to settle claims it discriminated against US workers

https://www.theguardian.com/us-news/2026/aug/04/openai-worker-discrimination-claims-settlement
5•igortru•24m ago•0 comments

The official draw.io MCP Server

https://github.com/jgraph/drawio-mcp
2•saikatsg•24m ago•0 comments

OpenAI and Anthropic models 'went rogue' during UK cybersecurity test

https://www.theguardian.com/technology/2026/aug/05/openai-anthropic-models-went-rogue-cybersecuri...
3•ablation•25m ago•0 comments

AI's Arctic Land Grab

https://www.arctictoday.com/ai-arctic-land-grab/
2•NishanStepak•26m ago•1 comments

Why smarter AI models could drive up compute prices 10x

https://www.dwarkesh.com/p/why-compute-might-get-10x-more-expensive-video
1•mefengl•27m ago•1 comments

Callosium, one shared memory for every AI, in plain Markdown files

https://github.com/callosium/callosium
1•amk96•29m ago•0 comments

Affordable and automated EU AI Act compliance

https://scanara.io
2•scanara•29m ago•0 comments

Pentect: Let agents use secrets without seeing them

https://pentect.dev/start/what-is-pentect/
2•kozika•30m ago•0 comments

My thoughts on the foreign policy AI evaluation gap

https://www.karlsnotes.com/my-thoughts-on-the-foreign-policy-ai-evaluation-gap/
1•valkrieco•33m ago•0 comments

AI-generated stories rated better quality than human-written ones, study finds

https://www.theguardian.com/technology/2026/aug/05/ai-generated-stories-rated-better-quality-than...
2•amichail•34m ago•0 comments

Offline-First Data Architecture for a National Postal Service

https://necromant2005.github.io/dev/offline-first-data-architecture-for-a-national-postal-service/
3•rmykhajliw•35m ago•0 comments

Technology executives shouldn't give up control

https://kimchi.dev/blog/technology-executives-shouldnt-give-up-control
1•BlackPlot•37m ago•0 comments

Tech giant Palantir accused of 'agressive tax avoidance' at Europe's expense

https://www.ftm.eu/articles/us-tech-giant-palantir-tax-avoidance-europe
3•robtherobber•37m ago•0 comments

Four Days After a Pay Complaint, Cobot Fired Its Only Woman in Sales

https://runtimewire.com/article/exclusive-four-days-after-a-pay-complaint-cobot-fired-its-only-wo...
1•ryanmerket•41m ago•0 comments

An Exegesis of the Visionary Autobiography of a Fourteenth-Century French Monk

https://www.psupress.org/books/titles/978-0-271-06650-9.html?srsltid=AfmBOorGIOS9Y77k3J_CX6UWqfZl...
1•Bluestein•41m ago•0 comments

Out-of-control SpaceX rocket believed to have smashed into the Moon

https://www.independent.co.uk/space/spacex-rocket-moon-crash-falcon-9-b3027645.html
1•emot•42m ago•0 comments

Helsinki Hacker News Meetup

https://calpaterson.com/helsinki-hn.html
4•calpaterson•43m ago•1 comments

Nixpkgs has a due-process problem

https://domenkozar.com/2026/08/04/nixpkgs-has-a-due-process-problem/
1•ai_critic•44m 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?