frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A free, open-source agent orchestrator for knowledge work

https://www.itsverso.xyz/
1•SchezHugo•1m ago•0 comments

AuralFret – Chords and scales together on one guitar board

https://auralfret.com/play
1•javixlab•2m ago•0 comments

Automatically detecting AI text in my browser

https://www.seangoedecke.com/deckard/
1•gmays•3m ago•1 comments

Show HN: A FOSS Expense Splitter

1•montenegrohugo•4m ago•0 comments

Word Processors in Basic, Part 2

https://permacomputer.solarpunk.au/?p=237
1•surprisetalk•4m ago•0 comments

Google: Attackers are using prompt injection against coding agents

https://cloud.google.com/blog/topics/threat-intelligence/from-prompting-to-autonomy-the-evolution...
3•fourfire•5m ago•0 comments

I'm not an economist, but here's an argument I've been thinking about

https://twitter.com/slatestarcodex/status/2097599396749992185
3•tosh•5m ago•0 comments

Plotext 6 – Plot data, images and video in the terminal

https://github.com/piccolomo/plotext
1•piccolomo•5m ago•0 comments

Authentication Is Largely Solved. Authorization Isn't

https://www.technometria.com/p/authentication-is-largely-solved
1•mooreds•6m ago•0 comments

Ask HN: How to know when Claude has changed model itself during processing?

1•mfaisalghufran•6m ago•0 comments

Besxar is building an orbital semiconductor factory, one SpaceX rocket at a time

https://techcrunch.com/2026/09/09/besxar-is-strapping-advanced-chip-fabs-onto-spacexs-falcon-9-ro...
1•Brajeshwar•7m ago•0 comments

How to pick the right AI model for each task [video]

https://www.youtube.com/watch?v=FdbcY41N9fs
2•deepmem•7m ago•0 comments

Lloyds Bank Denies Palestine Action Prisoner's Mum Mortgage over 'Adverse Media'

https://novaramedia.com/2026/09/09/lloyds-bank-denies-palestine-action-prisoners-mum-mortgage-ove...
1•slowin•8m ago•0 comments

How Big Should a Terraform Root Module Be?

https://newsletter.masterpoint.io/p/how-big-should-a-terraform-root-module-be
1•mooreds•8m ago•0 comments

Skill Showcase: /Guide

https://www.nlsmdn.com/posts/2026/skill-showcase-guide/
2•pushingbits•8m ago•0 comments

I love her but I don't want to be her

https://pammoore.substack.com/p/i-love-her-but-i-dont-want-to-be
1•mooreds•9m ago•0 comments

School Students Who Use AI Get Worse Test Scores, OECD Warns

https://www.bloomberg.com/news/articles/2026-09-08/school-students-who-use-ai-get-worse-test-scor...
2•airstrike•9m ago•0 comments

The Quiet Unwinding of Microsoft and OpenAI

https://deadneurons.substack.com/p/the-quiet-unwinding-of-microsoft
1•nr378•9m ago•0 comments

Which Mac for Local LLMs in 2026? A Buyer's Guide

https://vettedconsumer.com/which-mac-for-local-llms-2026-buyers-guide/
1•speckx•10m ago•0 comments

Heat forces French Champagne makers to stiffen their drink

https://phys.org/news/2026-09-french-champagne-makers-stiffen.html
1•samizdis•12m ago•0 comments

Human-made webring for handcrafted personal websites

https://human-made.site/
2•midzer•14m ago•0 comments

FinOps for LLM Spend – why your bill has changed

1•leanroute_ai•14m ago•0 comments

Anthropic researcher says more than 10% chance AI "could kill all humans"

https://www.cbsnews.com/news/ai-kill-humans-anthropic-researcher-more-than-ten-percent-chance/
11•jb1991•14m ago•2 comments

Show HN: Give your AI agent on-screen guides that show users where to click

1•pancomplex•16m ago•0 comments

How to select your first marketing channel

https://longform.asmartbear.com/first-marketing-channel/
1•tosh•16m ago•0 comments

Where Does Bad Code Come From? [video]

https://www.youtube.com/watch?v=7YpFGkG-u1w
1•adletbalzhanov•17m ago•0 comments

Arctic Summer 2026 Climate Review

https://alaska-arctic-climate.beehiiv.com/p/arctic-summer-2026-climate-review
1•Gedxx•17m ago•0 comments

Show HN: Adding initContainers and env vars to deployments w/o Kyverno

https://github.com/katalyticIT/kTailor
1•docdiesel•17m ago•1 comments

The Einstein test: what happens when AI tries to rediscover relativity?

https://www.nature.com/articles/d41586-026-02804-x
3•sbulaev•18m ago•0 comments

Legal AI startup Harvey reaches $15.6B valuation with $550M round

https://bloomberg.com/news/articles/2026-09-09/legal-ai-startup-harvey-hits-15-6-billion-value-wi...
1•utiiiD•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?