frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Vibe code keeps running, even with the lid closed

https://touchmac.app/en/
1•Touchnow•3m ago•0 comments

You're paying for Claude's thinking and you're not getting it

https://gist.github.com/64-megabyte/bc218bd074fa56c26b7dce828adf21a2
2•zerotoken•18m ago•0 comments

Should coding agents have persistent understanding of a codebase?

https://github.com/thecolourfoundation/rune
1•malikfyua•20m ago•0 comments

Flight Over the Earth game (based on Google Maps)

https://flightoverearth.com/
1•yeellow•20m ago•0 comments

Luxuries as an Adult

https://argentumaspicio806903.substack.com/p/luxuries-as-an-adult
1•rickyyean•21m ago•0 comments

Halv used 51% fewer tokens per correct answer on SWE-rebench

https://halv.ai/blog/halv-swe-rebench-20-pairs/
1•handfuloflight•22m ago•0 comments

Is AI ruining my brain?

https://thoughtbot.com/blog/is-ai-ruining-my-brain
3•encyclopedism•30m ago•0 comments

Higher semaglutide dose associated with lower psych events ind. of weight loss

https://www.nature.com/articles/s44324-026-00131-3
1•jtc331•30m ago•0 comments

Blockchained

https://www.blockchainednovel.com/read.html
1•mck-•34m ago•0 comments

Spatiotemporal Composability and Cordis

https://spatiotemporal-composability.pages.dev/
1•srid•35m ago•0 comments

Good AI Slop

https://blog.bilus.dev/posts/good-ai-slop/
1•bilus•36m ago•3 comments

StoryScope: Investigating Idiosyncrasies in AI Fiction

https://arxiv.org/abs/2604.03136
1•efavdb•37m ago•0 comments

OKF Agent Memory – Git-native persistent memory for AI coding agents

https://github.com/okf-memory/okf-agent-memory
2•okf_memory•39m ago•0 comments

Nvidia Lambda Circular Deal [video]

https://www.youtube.com/shorts/II2BEkrJ2Zc
1•Betelbuddy•40m ago•0 comments

The Roadmap of Mathematics for Machine Learning

https://thepalindrome.org/p/the-roadmap-of-mathematics-for-machine-learning
3•gmays•42m ago•0 comments

Show HN: Twinrun – run old and new code on the same inputs, diff the outputs

https://github.com/prian3003/twinrun
1•satineeee•46m ago•0 comments

Falsehoods Programmers Believe About LANs

https://dreamstation.systems/personal/lanfalsehoods.html
8•robinpie•47m ago•0 comments

Breaking GitLab's GraphQL Layer: CVE-2026–19478 and CVE-2026–19650

https://medium.com/peakcyber/breaking-gitlabs-graphql-layer-cve-2026-19478-cve-2026-19650-acf16e4...
1•syumei•47m ago•0 comments

AI push is putting banks at mercy of tech firms, warns Moody's

https://www.theguardian.com/business/2026/aug/09/ai-push-banks-tech-firms-moodys-risks-financial-...
3•prmph•51m ago•0 comments

GPT-6 Astra: the harness is the product

https://fewshotacademy.com/blog/gpt-6-astra-the-harness-is-the-product
2•mangatgoyal•53m ago•0 comments

An LLM runtime that boots from USB

https://nightrun.io/
1•NickNaraghi•55m ago•0 comments

Biomimetic SNN simulator in pure Rust (zero-deps, lock-free parallelism)

https://github.com/strahinjastojanovic826-code/biomimetic-snn-rust
1•srbin•57m ago•0 comments

Nix: Life OS

https://github.com/sianachi/Nix
1•osinachi88•59m ago•0 comments

Tyranny of Optionality

https://hvpandya.com/tyranny-of-optionality
2•aray07•1h ago•0 comments

Apple's first foldable iPhone may cost $2k

https://finance.yahoo.com/markets/stocks/article/apples-first-foldable-iphone-may-cost-2000-11073...
3•evo_9•1h ago•0 comments

Russian Drones Forced Ukraine to Park Its M1 Abrams Tanks

https://www.twz.com/land/how-russian-drones-forced-ukraine-to-park-its-m1-abrams-tanks
4•cisc•1h ago•0 comments

America's Two Largest School Districts Impose AI Moratoriums

https://www.techpolicy.press/americas-two-largest-school-districts-impose-ai-moratoriums/
21•cdrnsf•1h ago•5 comments

Google AI turns on its maker in a brutally candid interview

https://newatlas.com/ai-humanoids/exclusive-google-ai/
3•cisc•1h ago•1 comments

Teaching Prevents Learning

https://mariusmanolachi.substack.com/p/why-teaching-can-prevent-learning
2•Marius_Manola•1h ago•0 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
7•chmaynard•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?