frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Post-mortem after Namecheap/RadiusDC service outage

https://www.namecheap.com/blog/namecheap-service-outage-update/
1•lschueller•9m ago•0 comments

Towards a Risk Assessment of Malicious Skill Files in Coding Agents

https://arxiv.org/abs/2608.05223
2•Beko2210•12m ago•0 comments

Talos AI Agent Super Secure

https://github.com/talos-kernel/talos
1•kurdman007•13m ago•0 comments

Learning Augmented Heuristics

https://systems.seas.harvard.edu/blog/learning-augmented-heuristics/
1•1a1a11a•14m ago•0 comments

Brands Suddenly Care About Reddit. Redditors Don't Return the Feeling.

https://www.wsj.com/cmo-today/brands-suddenly-care-about-reddit-redditors-dont-return-the-feeling...
2•bookofjoe•15m ago•1 comments

Qwen 3.8 27B 4-bit designs an animated dolphin riding a bicycle SVG

https://twitter.com/1littlecoder/status/2088399639628431831
1•amrrs•16m ago•0 comments

How the World Was Wired

https://www.economist.com/culture/2026/08/12/how-the-world-was-wired
1•andsoitis•17m ago•0 comments

Show HN: Macsomnia – close your MacBook lid while keeping long jobs alive

https://github.com/iamdadzilla/Macsomnia
1•dadzilla•18m ago•0 comments

The case for overhauling American science

https://www.economist.com/by-invitation/2026/08/13/the-case-for-overhauling-american-science
2•andsoitis•20m ago•0 comments

Show HN: Kvcachescope – Why Nvidia-smi is blind to vLLM KV cache leaks

https://github.com/brian-mwirigi/kvcachescope
1•nesh23•20m ago•0 comments

A Framework for Solving the AI Data Center Energy Crisis

https://github.com/kikazamek999-eng/beyond-brute-force-scaling
1•KitKat42•20m ago•0 comments

Selling my production-ready 4-in-1 FastAPI AI Automation Suite ($8k)

https://www.indiehackers.com/post/selling-my-production-ready-4-in-1-fastapi-ai-automation-suite-...
1•dav77•21m ago•0 comments

Production-Ready FastAPI Back End Suite – Advanced RAG and SEO Automation ($8k)

https://www.indiehackers.com/post/for-sale-production-ready-fastapi-backend-suite-advanced-rag-se...
1•dav77•22m ago•0 comments

Backtesting Congress members stock trades by the disclosure date

https://investingpaths.com/tools/congress
2•ProdRatSuperior•22m ago•0 comments

Coding Magic the Gathering in C# – Part One – Why Build a Card Game in WinForms

https://www.youtube.com/watch?v=n7fhuIHD-gM
1•birdculture•23m ago•0 comments

OT Manual Operations Plan: What Manual Operation Buys You

https://www.emberot.com/resources/blog/ot-manual-operations-plan/
2•TheWiggles•25m ago•0 comments

Migraine Trail: Voice Migraine Tracker

https://migrainetrail.com/
1•zrmachar•27m ago•0 comments

Claude Fable 5 Having Fun

https://github.com/robss2020/claude-fable-5-having-fun
3•logicallee•30m ago•1 comments

Show HN: A prompt to check Supabase DB security

https://defencecore.com/audit
1•tornadorice•32m ago•0 comments

Where the Shadow Fell

https://eclipses.bogachev.fr/
1•davidbarker•33m ago•0 comments

France's Top Court Strikes Down Ban on Social Media for Children

https://www.nytimes.com/2026/08/14/world/europe/france-court-strikes-down-ban-social-media-childr...
2•timpera•41m ago•1 comments

We got content-defined chunking from 555 MB/s to 21 GB/s

https://www.plakar.io/posts/2025-07-11/introducing-go-cdc-chunkers-chunk-and-deduplicate-everything/
1•vcoisne•41m ago•0 comments

Digital Signal Processing Pioneer Bede Liu Dies at 91

https://spectrum.ieee.org/digital-signal-processing
3•sohkamyung•43m ago•0 comments

Stop sending me PRs; a rant

https://getsmall.xyz/post/cmstjfl9l000if70ljmpzr4va
4•trezm•43m ago•1 comments

Musk assembled a full-stack AI coding play while everyone watched benchmarks

https://pub.towardsai.net/grok-4-6-x-cursor-elon-musk-just-bought-his-way-into-the-ai-coding-war-...
4•glennall•47m ago•2 comments

Substack forces authors to use Pangram

https://www.reddit.com/r/Substack/comments/1v3rdpr/another_creepy_feature_of_the_pangram_ai/
3•behnamoh•48m ago•0 comments

1973 Concorde Eclipse Flight

https://en.wikipedia.org/wiki/1973_Concorde_eclipse_flight
1•aragonite•49m ago•0 comments

Show HN: Another Markdown editor, but this one is a web app

https://marty.zalega.me/markdawn/
1•evilmarty•50m ago•0 comments

RISC-V: They should have known better

https://dmitry.gr/?r=06.%20Thoughts&proj=12.%20RV
34•kaycebasques•53m ago•6 comments

Two slicks appear in Gulf as oil spill off Oman threatens disaster

https://www.reuters.com/business/environment/two-slicks-appear-gulf-huge-oil-spill-off-oman-threa...
2•Jtsummers•53m 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?