frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I made a tool to teach you how to sketch portraits

https://www.sketch-tutor.com
1•blekaj•1m ago•1 comments

The [UK] Green Party is STILL bad at being green

https://takes.jamesomalley.co.uk/p/the-green-party-is-still-bad-at-being-green
1•DamonHD•5m ago•0 comments

OpenAI deprecation notice: upcoming model shutdowns in 2026

https://developers.openai.com/api/docs/deprecations
1•ananthakumaran•5m ago•0 comments

The Ultimate Personal AI Supercomputer – Nvidia DGX Station

https://www.nvidia.com/en-eu/products/workstations/dgx-station/
1•rbanffy•6m ago•0 comments

Release PiClaw v1.8.5 – Colossus: The Forbin Project

https://github.com/rcarmo/piclaw/releases/tag/v1.8.5
1•rcarmo•7m ago•0 comments

Designing Data-intensive Applications with Martin Kleppmann (2026) [video]

https://www.youtube.com/watch?v=SVOrURyOu_U
1•zeristor•7m ago•1 comments

The Markdown Link no. 24

https://md-handbook.com/blog/markdown-link-no-24/
1•wordius•11m ago•0 comments

PHP will get an AOT compiler from the Swoole team in 2027

https://old.reddit.com/r/PHP/comments/1stb4o3/php_will_get_an_aot_compiler_from_the_swoole_team/
2•edmondx•13m ago•2 comments

Show HN: We made 3M jobs searchable on a globe to visualize labor markets

https://map.rezi.ai/index.html
1•jacob_rezi•24m ago•0 comments

MacPulse – macOS System Monitor and Performance Logging

https://www.macpulse.app/
1•juhapekka69•25m ago•0 comments

Show HN: Protovoters -- Free, accessible voter files for democracy

https://protovoters.org
1•reesericci•25m ago•1 comments

Le Glaude Code – A CLI that responds to Git command with quotes from a Fr movie

https://github.com/davidthibault/le-glaude-code
1•david_thibault•29m ago•0 comments

Show HN: Desktop OSD that reads Claude Code's rate limit headers

https://github.com/bozdemir/claude-usage-widget
1•bozdemir•30m ago•0 comments

A robot is beating human pros at table tennis

https://apnews.com/article/ai-table-tennis-robot-ping-pong-sony-995b239945e0dc8d7bea918a850969dc
1•greggoB•31m ago•1 comments

Anthropic is A/B testing removing Claude Code from Pro plans

https://twitter.com/TheAmolAvasare/status/2046724659039932830
2•gagdiez•32m ago•0 comments

TalentRecruit

1•TalentRecruit•32m ago•0 comments

Corral: Measuring how LLM-based AI scientists reason, not just what they produce

https://lamalab-org.github.io/corral/
2•kjappelbaum•35m ago•0 comments

FreeBSD Status Report First Quarter 2026

https://www.freebsd.org/status/report-2026-01-2026-03/
2•ptx•36m ago•0 comments

Texas launches $750M plant, targets growing New World screwworm threat

https://www.chron.com/texas/article/south-texas-plant-screwworm-threat-usda-22214580.php
4•littlexsparkee•37m ago•0 comments

Ask HN: Is the ongoing AI research driving LLM models to be better?

2•thiago_fm•39m ago•0 comments

The Prevention of Literature (George Orwell, 1946)

https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/the-preventi...
2•awanderingmind•40m ago•0 comments

Microsoft issues emergency update for macOS and Linux ASP.NET threat

https://arstechnica.com/security/2026/04/microsoft-issues-emergency-update-for-macos-and-linux-as...
3•joozio•41m ago•0 comments

I blind A/B tested 40 Claude prompt codes, only 7 shift reasoning

https://gist.github.com/Samarth0211/0abecbbfc340c80de5bd21049115f9e2
4•samarth0211•41m ago•0 comments

Stop Hardcoding Your Timeouts

https://alfy.blog/2026/04/23/stop-hardcoding-your-timeouts.html
3•ahmadalfy•41m ago•0 comments

Retractions of scientific papers by Nobel Prize Winners

https://retractionwatch.com/retractions-by-nobel-prize-winners/
5•patel011393•43m ago•1 comments

Notes on writing a voxel game in Dyalog APL

https://homewithinnowhere.com/blog/voxel_game/
3•tosh•45m ago•0 comments

Signaling Is the Intelligence

https://eversoleken.substack.com/p/signaling-is-the-intelligence
3•gpi•47m ago•0 comments

The Log Is the Database

https://blog.canoozie.net/the-log-is-the-database/
4•LAC-Tech•54m ago•1 comments

Ask HN: Linguistics/Computing Overview for the Layperson

2•Pamar•55m ago•0 comments

Production MCP Patterns, Part 2: The Agent Stack Grew Up

https://medium.com/@nitishagar/production-mcp-patterns-part-2-the-agent-stack-grew-up-194d807fde9d
2•nitishagar•56m ago•1 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•11mo ago

Comments

nine_k•11mo 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•11mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•11mo ago
They mention this in the article.
spockz•11mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•11mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•11mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•11mo 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•11mo 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•11mo 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•11mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•11mo ago
This was very well written. Excellent article!
NetOpWibby•11mo ago
Is this like MessagePack for Haskell?