frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Peter Sarnak on "The AlphaZero Test" for Mathematics

https://www.ams.org/journals/notices/202607/noti3373/noti3373.html
1•adharmad•1m ago•0 comments

How to ship a database every day

https://turbopuffer.com/blog/control-plane
1•cbrewster•1m ago•0 comments

WakeAI – an AI assistant that tells you when to leave so you're never late

https://apps.apple.com/us/app/wakeai/id6755909459
1•Abzino•1m ago•0 comments

Show HN: Karma in Menu Bar

https://github.com/rorz/karma-bar
1•sarreph•1m ago•0 comments

The restaurant menu that never goes out of date

https://menu.qrcard.in/
1•nookeshkarri7•2m ago•0 comments

Tesla defeats Sweden's IF Metall union after 1,021-day strike

https://electrek.co/2026/08/13/tesla-defeats-sweden-if-metall-union-strike/
2•robtherobber•3m ago•0 comments

The Neurosurgery Resident Who Proved Crouzeix's Conjecture [pdf]

https://alextownsend.net/essays/SIAMNews_CrouzeixConjecture.pdf
2•ilamont•3m ago•0 comments

Taxpayers Funded a $533M Artillery Plant That Made Nothing

https://www.propublica.org/article/general-dynamics-artillery-factory-failed
5•Jimmc414•7m ago•0 comments

Software Factory with AI

https://twitter.com/i/status/2088296448563503269
2•flashbrew•11m ago•0 comments

Maximizing the value of your Claude Code sessions

https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions
2•twapi•13m ago•0 comments

Show HN: DST this DST that, test your containers

https://github.com/bxrne/dstest
2•bxrne•14m ago•0 comments

Show HN: Hexis, open-source Claude Skills management

https://github.com/Bevel-Software/Hexis
2•empire23•14m ago•0 comments

Guilt-Driven Development

https://markuseliasson.se/article/guilt-driven-development
3•speckx•15m ago•0 comments

RustDesk now supports true unattended remote access on Wayland

https://rustdesk.com/blog/unattended-remote-access-wayland/
4•rustdesk•16m ago•0 comments

Enabling the next iteration of the borrow checker on nightly

https://blog.rust-lang.org/2026/08/04/enabling-polonius-alpha-on-nightly/
2•ksec•16m ago•0 comments

Live Experiment of the Veblen Effect

2•henryfudgeoffic•18m ago•0 comments

In Stunning Color, a Celestial "Treasure Chest" Full of Stars

https://nautil.us/in-stunning-color-a-celestial-treasure-chest-full-of-stars-1283773
2•Brajeshwar•19m ago•0 comments

NIST Seeks Blueprint for AI-Era Overhaul of National Vulnerability Database

https://securityboulevard.com/2026/08/nist-seeks-blueprint-for-ai-era-overhaul-of-national-vulner...
2•CrankyBear•21m ago•0 comments

France blocks social media ban because it would require adults to prove age

https://www.reuters.com/world/frances-top-court-rules-social-media-ban-curtails-freedom-expressio...
22•BlueBerry2001•22m ago•4 comments

One Task at a Time

https://www.shirahaddad.com/writing/uno-alla-volta
1•mooreds•24m ago•0 comments

RayforceDB – a pure C analytics database with a Lisp-like syntax

https://rayforcedb.com/
3•sourdecor•26m ago•0 comments

Show HN: Self-bench – build SWE-bench style evals from private repos

https://github.com/mupt-ai/self-bench
3•byhong03•27m ago•0 comments

AI: The Devil on My Shoulder

https://myrkvi.no/ai-the-devil-on-my-shoulder/
2•speckx•28m ago•0 comments

Deferred Token Response

https://datatracker.ietf.org/doc/draft-gerber-oauth-deferred-token-response/
2•mooreds•28m ago•0 comments

Hours of Jingling Keys [video]

https://www.youtube.com/watch?v=sJNK4VKeoBM
2•mooreds•28m ago•0 comments

Show HN: Interactive Product Demos made easy

https://www.rendemo.com
2•jakegargaro17•29m ago•0 comments

AI by Hand

https://www.byhand.ai/
2•sans_souse•29m ago•0 comments

LLM Inference Benchmarking

https://www.digitalocean.com/blog/llm-inference-benchmarking
1•ankitg12•30m ago•0 comments

V-RAE: Rethinking Video Latent Spaces for Generation

https://arxiv.org/abs/2608.13556
3•selimonder•31m ago•0 comments

Why Claude's Watermarking Won't Fix Anything

https://www.plagiarismtoday.com/2026/08/13/why-claudes-watermarking-wont-fix-anything/
3•speckx•33m ago•1 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?