frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

David Baker on using protein design to tackle humanity's biggest challenges

https://www.existentialhope.com/podcasts/david-baker-using-ai-for-science-to-solve-humanitys-bigg...
1•martina_xhope•17s ago•1 comments

Apple's most powerful Mac Studio loses its last remaining RAM upgrade option

https://9to5mac.com/2026/05/05/apples-most-powerful-mac-studio-loses-its-last-remaining-ram-upgra...
1•rom16384•30s ago•0 comments

Lsyncd (Live Syncing Daemon) synchronizes local directories with remote targets

https://github.com/lsyncd/lsyncd
1•ankitg12•1m ago•0 comments

Your craft is obsolete: WiseTech staff in limbo as AI touted better than humans

https://www.theguardian.com/technology/2026/may/07/your-craft-is-obsolete-wisetech-staff-in-limbo...
1•cf100clunk•1m ago•0 comments

Agent Exchange – A2A discovery with real-time bidding for AI agents

https://github.com/open-experiments/agent-exchange
2•parlakisik•1m ago•0 comments

Why generating code isn't the same as code intelligence?

https://www.codeqa.ai/blog-post/why-generating-code-isnt-the-same-as-code-intelligence
2•CodeQA•2m ago•0 comments

Show HN: Meaning forks. SRT sees it

https://github.com/space-bacon/SRT
1•spacebacon•2m ago•0 comments

Show HN: Accept crypto payment in your business (only 1% fee, feedback welcome)

https://app.paycoinly.xyz/login
1•paycoinly•2m ago•2 comments

Am I Meant to Be Impressed?

https://www.wheresyoured.at/am-i-meant-to-be-impressed/
2•crescit_eundo•3m ago•0 comments

2026 California Billionaire Tax

https://en.wikipedia.org/wiki/2026_California_billionaire_tax
2•leonidasrup•4m ago•0 comments

CopilotKit raises $27M to build the Agentic Front end Stack

https://techcrunch.com/2026/05/05/copilotkit-raises-27m-to-help-devs-deploy-app-native-ai-agents/
6•swiftlyTyped•4m ago•0 comments

Our Continuation of MkDocs

https://github.com/orgs/ProperDocs/discussions/33
2•serhack_•4m ago•0 comments

Dart Support in Cloud Functions for Firebase

https://firebase.blog/posts/2026/05/dart-functions-exp/
1•abraham•5m ago•0 comments

Ask HN: How are PMs keeping up with AI-accelerated engineering output?

2•rudolftheone•6m ago•0 comments

Circularity and Inconceivability: Why Philosophical Zombie Arguments Fail

https://sopathaye.substack.com/p/how-to-kill-a-philosophical-zombie
1•sopathaye•6m ago•0 comments

America's carpet capital: an empire and its toxic legacy

https://apnews.com/projects/pfas-forever-stained/
1•rawgabbit•6m ago•0 comments

We see something that works, and then we understand it

https://lemire.me/blog/2025/12/04/we-see-something-that-works-and-then-we-understand-it/
1•surprisetalk•8m ago•0 comments

Script performance profiler for PowerShell

https://github.com/nohwnd/Profiler
1•ankitg12•10m ago•0 comments

Startup matches Anthropic's Mythos on FreeBSD zero-days

https://aisle.com/blog/aisle-matches-anthropic-mythos-on-freebsd-zero-days
1•vibedev999•11m ago•0 comments

Lovable: Connect Your App to Granola

https://docs.lovable.dev/integrations/granola
1•doener•11m ago•0 comments

Show HN: Prospero Is Superpowers for Writing

https://brianguthrie.com/p/prospero/
1•bguthrie•12m ago•0 comments

Show HN: AgentArena – AI agents compete in real-time negotiation battles

https://agentsarena.vercel.app/
2•Aggounix•13m ago•0 comments

Emacs Completion Showcase with Vompeccc

https://www.chiply.dev/post-vompeccc-showcase
1•chiply•15m ago•1 comments

Show HN: I made snapDiff a visual regression testing that runs client-side

https://zumerlab.com/snapdiff/
1•jmm77•15m ago•0 comments

The Queue Problem: Why Every Agency Pathology Has the Same Root Cause

https://ravenopus.com/log/queue-problem
1•linarabozieva•15m ago•0 comments

Raspberry Pi Connect: Device tags, required 2FA, and a mobile keyboard

https://www.raspberrypi.com/news/raspberry-pi-connect-device-tags-required-2fa-and-a-mobile-keybo...
1•Brajeshwar•16m ago•0 comments

Paraxanthine: A Trip Report

https://bengoldhaber.substack.com/p/paraxanthine-a-trip-report
1•lindowe•16m ago•0 comments

Proton Mail now supports post-quantum encryption

https://proton.me/blog/introducing-post-quantum-encryption
3•tjek•16m ago•0 comments

Vibe coding and agentic engineering are getting closer than I'd like

https://simonwillison.net/2026/May/6/vibe-coding-and-agentic-engineering/
1•e12e•17m ago•0 comments

North Korea-aligned ScarCruft compromises gaming platform in supply‑chain attack

https://www.eset.com/us/about/newsroom/research/eset-research-north-korea-apt-scarcruft-supply-ch...
1•debo_•17m 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?