frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ICANN de-accredits "bulletproof" domain registrar Trustname

https://domainnamewire.com/2026/08/28/icann-de-accredits-bulletproof-domain-registrar/
1•KomoD•1m ago•0 comments

A free AI news briefing agent that runs on GitHub Actions, no server

https://github.com/tballochi/daily-briefing
1•tballochi•1m ago•1 comments

Terence Tao, 6 essential concepts of math [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
1•pykello•4m ago•0 comments

Vibecoders and Vibehackers

https://orchidfiles.com/vibecoders-and-vibehackers/
1•theorchid•6m ago•0 comments

X and Meta's past data scraping lawsuit losses and how it would relate to nitter

https://www.reuters.com/legal/musks-x-corp-loses-lawsuit-against-israeli-data-scraping-company-20...
1•orange999•9m ago•1 comments

Technical Writing Resources

https://github.com/dharmelolar/technical-writing-resources
1•taubek•9m ago•0 comments

Show HN: Itsuki – open-source memory engine for AI agents (API and MCP)

https://itsuki.app/
1•12ziyad•13m ago•1 comments

SQL User Lifecycle Management in CockroachDB

https://www.cockroachlabs.com/blog/sql-user-lifecycle-management-automation/
1•s20n•14m ago•0 comments

2,147,483,647 in nanos. Post Q-Day Cryptographic Security

https://twitter.com/CTibedo/status/2088679500020174883
1•GeometryKernel•15m ago•0 comments

Alpha School's AI teaching model is expanding. Does it work?

https://www.scientificamerican.com/article/alpha-schools-ai-teaching-model-is-expanding-does-it-w...
1•beardyw•15m ago•1 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
1•stared•17m ago•0 comments

SK Hynix to begin HBM4E production in Indiana in 2029, memory shortage to 2030

https://www.reuters.com/world/asia-pacific/sk-hynix-holds-groundbreaking-ceremony-4-billion-india...
1•giuliomagnifico•19m ago•0 comments

Debian and the Sirens

https://joeyh.name/blog/entry/Debian_and_the_sirens/
2•klez•23m ago•0 comments

Autistici/inventati: Manifesto – who we are and what do we want (2002)

https://www.inventati.org/who/manifesto
7•wise_blood•25m ago•1 comments

Show HN: Airtight – single-file portfolio tracker, zero servers, works offline

https://airtight.sell.app
1•AirTight•25m ago•0 comments

Show HN: Doodle AI: open-source photo-to-doodle avatar generator

https://doodleai.art/
1•Yash16•26m ago•1 comments

To Human Is to Explore

https://panchamkhaitan.com/blog/to-human-is-to-explore
1•panchamkhaitan•27m ago•0 comments

Agent Security Is a Systems Problem: What 247 Papers Say About Secure AI Agents

https://www.truefoundry.com/blog/llm-agent-security-runtime-control-planes
1•LogTrim•27m ago•0 comments

The best workflow engine is a programming language

https://vercel.com/blog/the-best-workflow-engine-is-a-programming-language
1•theanonymousone•33m ago•0 comments

Sharp rise in incidents of AI escaping users' control, research finds

https://www.theguardian.com/technology/2026/aug/29/sharp-rise-in-incidents-of-ai-escaping-users-c...
1•geoffbp•36m ago•0 comments

AI Image Generation on an RP2350 Microcontroller

https://cpldcpu.github.io/2026/08/28/ai-image-generation-on-a-rp-pico-2-microcontroller/
1•rcarmo•38m ago•1 comments

Show HN: Explore JVM class-resolution traces as interactive directed graphs

https://github.com/menzew/class-trace-explorer
1•benzewdu•38m ago•0 comments

Skirminiac – An AI-first deterministic wargame

https://www.skirminiac.com
1•LouisSaifer•50m ago•1 comments

Impact of Google AI Overviews on Wikipedia Traffic

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6164926&__cf_chl_tk=yAhL3EN950gYq8L72ow6o3fGC...
1•alexcos•51m ago•0 comments

Talk Is Cheap. Code Is Cheap. Show Me the Source

https://idlip.in/posts/show-me-source/
2•birdculture•52m ago•0 comments

Over 8,300 Gitea servers vulnerable to code execution attacks

https://www.bleepingcomputer.com/news/security/over-8-300-gitea-servers-vulnerable-to-code-execut...
2•geoffbp•58m ago•0 comments

Htmx and Django LiveView, side by side

https://en.andros.dev/blog/94d14a9e/htmx-and-django-liveview-side-by-side/
1•andros•58m ago•0 comments

How to sign up for a virtual power plant–and decide whether you should

https://www.technologyreview.com/2026/08/28/1142956/how-to-sign-up-for-a-virtual-power-plant-and-...
2•joozio•1h ago•0 comments

The Reliable Team Trap

https://kevingoldsmith.substack.com/p/the-reliable-team-trap
2•fagnerbrack•1h ago•1 comments

Zero-Day EoP in Kaspersky Endpoint Security Lets Attackers Own the Protector

https://forum.cktn.de/t/big-breaking-guardian-turned-gatekeeper-zero-day-eop-in-kaspersky-endpoin...
1•CHEF-KOCH•1h ago•1 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?