frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Oh My Open Agent

https://ohmyopenagent.com/
1•strmcrw•43s ago•0 comments

Ask HN: How are agentic workflows meant to offset AI debt?

1•l33tbro•1m ago•0 comments

Is SMS the last bastion of app fatigue?

1•miraclebob•1m ago•0 comments

OpenAI Guaranteed Capacity

https://twitter.com/OpenAI/status/2056823271774101907
1•tosh•1m ago•0 comments

Java: Rethink Domain Primitives with Valhalla

https://dfa1.github.io/articles/rethink-domain-primitives-with-valhalla.html
2•dfa11•2m ago•1 comments

CloudNSite – AI agents that replace manual business processes for SMBs

1•rmccaincns•4m ago•0 comments

Google's new Universal Cart wants to follow you across the internet

https://techcrunch.com/2026/05/19/googles-new-universal-cart-wants-to-follow-you-across-the-entir...
1•DropDead•4m ago•0 comments

Google launches Antigravity 2.0 with an updated desktop app and CLI tool

https://techcrunch.com/2026/05/19/google-launches-antigravity-2-0-with-an-updated-desktop-app-and...
1•divbzero•5m ago•0 comments

Show HN: A macOS menu bar app for monitoring live Claude Code sessions and usage

https://github.com/joshwallerr/claudeviewer
1•joshwaller7•6m ago•0 comments

Ask HN: Antigravity 2.0 installer breaks existing Antigravity IDEs

1•jdw64•6m ago•0 comments

GhostTree: Unveiling Path Manipulation Techniques to Bypass Windows Security

https://www.varonis.com/blog/ghosttree-ntfs-trick
2•speckx•7m ago•0 comments

Kickstarter Reverts Controversial Ban on 'NSFW' Projects

https://kotaku.com/kickstarter-nsfw-rules-stripe-payment-processor-apology-2000697494
1•stalfosknight•7m ago•0 comments

PoC: VPN over WebRTC to Bypass Whitelists

https://github.com/kulikov0/whitelist-bypass
1•kulikov0•9m ago•1 comments

Poor Sleep Tied to Alzheimer's Risk in Older Women

https://today.ucsd.edu/story/poor-sleep-tied-to-alzheimers-risk-in-older-women
1•gmays•10m ago•0 comments

What Is Happening to Publishing?

https://resobscura.substack.com/p/what-is-happening-to-publishing
2•benbreen•11m ago•0 comments

Small PR Rule Won't Survive AI

https://blog.quent.in/blog/2026/05/19/your-small-pr-rule-wont-survive-ai/
2•sylvainkalache•14m ago•0 comments

Zero: The Programming Language for Agents

https://github.com/vercel-labs/zero
1•afshinmeh•15m ago•0 comments

RISC-V and Floating-Point

https://fprox.substack.com/p/risc-v-and-floating-point
1•naves•16m ago•0 comments

Shhh, Don't Put Secrets in the Repo

https://andreasflakstad.no/posts/kimen/
3•andreasflakstad•16m ago•0 comments

CPU OP Cache Corruption

https://www.amd.com/en/resources/product-security/bulletin/amd-sb-7052.html
1•losfair•17m ago•0 comments

Ask HN: Is grpcurl home page compromised?

2•jicea•21m ago•0 comments

Plex's 200% Lifetime Pass price hike tries forcing users to another subscription

https://arstechnica.com/gadgets/2026/05/plexs-200-lifetime-pass-price-hike-tries-forcing-users-to...
4•ndr42•21m ago•1 comments

Show HN: Bevel – Guess the book from its opening passage

https://bevel.ink
3•knotalegend•21m ago•0 comments

Show HN: AgentKit SEO - a career context file that installs as agent skills

https://github.com/agentkit-seo/agentkit-seo
1•renatomignone•23m ago•1 comments

Show HN: YouTube MCP, give any AI agent access to YouTube

https://github.com/umbertotancorre/youtube-mcp
4•umbertotancorre•24m ago•0 comments

Biometric Surveillance in New York City

https://www.stopspying.org/biometric-map
3•raybb•25m ago•0 comments

Built DealSensematch in 2 months. No team. No funding. Just me

https://dealsensematch.com
2•Louiemarlow•25m ago•1 comments

Building the First AI-Native Hotel Booking Platform

https://hotels.cooveb.com/
1•sshinde•25m ago•0 comments

I am not a Software Engineer

https://huronbikes.mataroa.blog/blog/i-am-not-a-software-engineer/
4•l0b0•29m ago•0 comments

Understanding the Garbage Collector

https://ocaml.org/docs/garbage-collector
1•jkxyz•29m 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?