frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Wolf – Turn Slack threads into multiplayer agent workspaces

https://getwolf.dev
3•swimninja247•7m ago•1 comments

Jqwik 1.10.0 ships a hidden prompt injection telling AI agents to delete code

https://github.com/jqwik-team/jqwik/issues/708
1•rjbatllet•8m ago•0 comments

UFC fighting cage rises on White House lawn

https://apnews.com/article/ufc-octagon-white-house-trump-america-250-4fa60d8e0cd34448b55f34f41b18...
1•geox•8m ago•0 comments

Technical Demo Design: Live Coding vs. Pre-Recorded Demos

https://blog.segment8.com/posts/technical-demo-design/
1•ankitg12•9m ago•0 comments

EU Managed Kubernetes Comparison

https://www.eucloudcost.com/kubernetes/
1•mixxor•9m ago•0 comments

Building a Real-Time Stock Momentum Ranking System

https://medium.com/@DolphinDB_Inc/building-a-real-time-stock-momentum-ranking-system-with-dolphin...
2•CrazyTomato•13m ago•0 comments

Nextra – Next.js Static Site Generator

https://nextra.site
1•janandonly•14m ago•0 comments

Claude, Author of the Humanitas

https://linch.substack.com/p/claude-author-of-the-humanitas
1•wyclif•16m ago•0 comments

The illusion of automated domain appraisals and a transparent alternative

https://domainalot.substack.com/p/why-selling-a-domain-is-so-expensive
1•sonofmarzipan•18m ago•0 comments

A Terminal‑Style Maze Game with Corruption and Zombies

https://bluebottleware.itch.io/the-labyrinth
1•j0hnsm1th•18m ago•0 comments

Discover European Tech Alternatives

https://techropa.com
1•doener•20m ago•0 comments

Quantum dot qubit using High NA EUV lithography

https://www.imec-int.com/en/press/world-first-imec-presents-quantum-dot-qubit-device-using-high-n...
1•luu•21m ago•0 comments

Is coherence still a useful signal of truth after generative AI?

https://philpapers.org/rec/JOVSII-2
1•thestructuralme•23m ago•0 comments

San Francisco offline route calculations in browser using Rust (live demo+MIT)

https://punnerud.github.io/mpee/
3•punnerud•29m ago•2 comments

Show HN: Sotto – AI interview assistant for Mac

https://getsotto.ai/
1•sweetgummybears•32m ago•0 comments

Go: Support for Generic Methods

https://github.com/golang/go/issues/77273
1•f311a•34m ago•0 comments

Embedded Recipes 2026 Day One – Live

https://www.youtube.com/watch?v=dFtNisipSY0
1•rettichschnidi•38m ago•1 comments

How AI Agents Work: An Architectural Deep Dive

https://deepresearch.ninja/2026/05/How-AI-Agents-Actually-Work-An-Architectural-Deep-Dive/
1•jackalxyz•41m ago•0 comments

Ask HN: Why do none of the major AI agents persist memory across sessions?

1•hannahLiang•42m ago•0 comments

QVAC Hackathon I – Unleash Edge AI – Hackathon – DoraHacks

https://dorahacks.io/hackathon/qvac-unleach-edge-ai-i/team
2•janandonly•42m ago•0 comments

Show HN: Mailflare – self-hosted email, custom domain with Cloudflare

https://github.com/hieunc229/mailflare
3•docuru•47m ago•2 comments

UK poised to shun social media ban but outlaw addictive features

https://www.thetimes.com/uk/technology-uk/article/social-media-ban-under-16s-australia-instagram-...
2•01-_-•49m ago•0 comments

TrapDoor Crypto Stealer Supply Chain Across NPM, PyPI, and Crates.io

https://socket.dev/blog/trapdoor-crypto-stealer-npm-pypi-crates
2•a-french-anon•51m ago•1 comments

Women's faces rated more attractive even by other

https://www.theguardian.com/society/2026/may/27/women-faces-rated-more-attractive-study
1•uxhacker•51m ago•0 comments

Atrophy: A novella about AI eroding a student's mind

https://glouppe.github.io/atrophy/
1•glouppe•52m ago•1 comments

Business Advice Is to Think Like You're Trying to Fail, Here's Why

https://comuniq.xyz/post?t=1157
2•01-_-•52m ago•0 comments

Show HN: Clark Hash, 32x smaller searchable sketches for embeddings

https://github.com/clark-labs-inc/clark-hash
1•stan_kirdey•52m ago•0 comments

Mvm: A fast bytecode interpreter for Golang

https://mvm.sh/
1•fanf2•55m ago•0 comments

Sunny Coffee: real-time map of Paris café terraces using ray-casting

https://aka.me/blog/building-sunny-coffee-live/
1•pbarondadditude•55m ago•0 comments

Kamal Backup: Scheduled restic backups for Rails apps

https://kamal-backup.dev/
1•earcar•55m 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?