frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Seeking Work – Remote – Same-Day CI, Docker, Python, or Node.js Rescue

https://github.com/zenonymous369/rapid-repo-rescue
1•zenonymous0•3m ago•0 comments

Transform any binary file into sound and MIDI, right in the browser, free

https://cdm.link/transform-any-binary-file-into-sound/
1•speckx•3m ago•0 comments

Golang Maps: how Swiss Tables replaced the old bucket design

https://blog.gaborkoos.com/posts/2026-07-24-Golang-Maps-How-Swiss-Tables-Replaced-the-Old-Bucket-...
1•Terretta•6m ago•0 comments

Qualcomm Plans to Increase Its Prices by Double Digits

https://www.bloomberg.com/news/articles/2026-07-24/qualcomm-tells-customers-that-prices-are-going...
1•newusertoday•7m ago•0 comments

ErrataBench

https://revise.io/errata-bench
1•artursapek•9m ago•0 comments

Senior White House official claims China's K3 model stolen from Anthropic

https://www.theregister.com/ai-and-ml/2026/07/23/senior-white-house-official-claims-chinas-k3-mod...
2•beardyw•10m ago•0 comments

Philoscopia – Orient Yourself in Thinking

https://www.philoscopia.com/en/
1•CrypticShift•10m ago•0 comments

BGP ORIGIN attribute manipulation and its impact on the Internet

https://blog.cloudflare.com/bgp-origin-attribute/
3•sbulaev•11m ago•0 comments

Google meets the neighbors and gets both barrels over its new UK datacenter

https://www.theregister.com/on-prem/2026/07/24/google-meets-the-neighbors-and-gets-both-barrels-o...
1•beardyw•11m ago•0 comments

Swiftfilt – C++filt for Swift, with structured output

https://github.com/mi11ione/swiftfilt
1•mi11ion•12m ago•0 comments

I got into YC by hacking it

https://obaid.wtf/jotbook/2026/07/18/how-i-got-into-yc-by-hacking-it.html
2•speckx•14m ago•0 comments

A Taxonomy of Self-Evolving Agents

https://twitter.com/Shilong_Liu_AI/status/2074800880017342665
1•gmays•16m ago•0 comments

Ultrasensitive measurement of brain penetration mechanics with microscale probes

https://www.pnas.org/doi/10.1073/pnas.2529147123
1•joebig•17m ago•0 comments

Gsxui – Shadcn-style components for Go

https://ui.gsxhq.dev/
3•jackielii•19m ago•0 comments

Future of SaaS

https://mehmetmhy.com/posts/barbell_theory/
2•mehmet_mhy•19m ago•0 comments

JetStream Anti-Patterns: Avoid these pitfalls to scale more efficiently

https://www.synadia.com/blog/jetstream-design-patterns-for-scale
2•jonzu•20m ago•0 comments

All the HTML to PDF Libraries

https://github.com/transformyio/html-to-pdf-libraries
2•eljs•22m ago•0 comments

Zuckerberg's AI optimism blitz using nostalgia to sell AI future amid backlash

https://fortune.com/2026/07/23/zuckerberg-ai-ad-optimism-backlash/
5•1vuio0pswjnm7•24m ago•0 comments

PlayStation Network outage leaves players dreading all-digital future

https://www.polygon.com/playstation-network-down-psn-outage-digital-games-backlash/
4•speckx•24m ago•0 comments

A representation of a chapter of your life through music

https://www.cuecard.live
2•alicoredi•26m ago•0 comments

Data Depot [pdf]

https://datadepot.khoury.northeastern.edu/report/Report.pdf
2•petethomas•26m ago•0 comments

Tesla swapped a solar owner's lease contract for the Book of Enoch

https://electrek.co/2026/07/23/tesla-solar-lease-contract-book-of-enoch/
5•ColinWright•27m ago•0 comments

The Carbon programming language: graduating from the experiment

https://www.youtube.com/watch?v=WJl4ftb5Fxg
2•theanonymousone•27m ago•0 comments

Alphabet's $205B AI spending plan spooks investors

https://www.latimes.com/business/story/2026-07-23/alphabets-205-billion-ai-spending-plan-spooks-i...
4•1vuio0pswjnm7•27m ago•0 comments

Building a DynamoDB Conformance Suite

https://martinhicks.dev/articles/dynoxide-conformance-suite
2•speckx•28m ago•0 comments

Measles Cases and Outbreaks in 2026

https://www.cdc.gov/measles/data-research/index.html
2•impish9208•28m ago•0 comments

The absolute state of state management

https://infrequently.org/2026/07/state-management/
2•agos•29m ago•0 comments

We built an email platform you deploy in your own AWS account

https://sendbunny.co
2•mvsingh•31m ago•3 comments

Build Systems Discussion

https://civboot.github.io/blog/2026-07-24-build-systems.html
4•theanonymousone•31m ago•1 comments

Mistaking making for the thing you've made

https://world.hey.com/jason/mistaking-making-for-the-thing-you-ve-made-bd348df9
2•dotcoma•31m 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?