frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't Paste the AI, Please

https://dontpastetheai.com/
1•Bluestein•1m ago•0 comments

One affiliate now brings in half my SaaS sales

https://tinyfound.com/p/backl-io
1•alexbelyanin•1m ago•0 comments

Families with a mutation for gastric cancer have stomachs preemptively removed

https://www.theatlantic.com/health/2026/03/stomach-cancer-total-gastrectomy/686623/
1•ike_usawa•1m ago•0 comments

FritzHole – FRITZ OS DNS filter blocks unwanted content

https://fritz.com/en/pages/fritz-labor-8-40-zusatzinformationen
2•jeffreygoesto•2m ago•0 comments

Earth Mover's Distance

https://en.wikipedia.org/wiki/Earth_mover%27s_distance
1•ariru•3m ago•0 comments

AI Does Not Change Goodhart or the Folly of Tokenmaxxing

https://www.scrum.org/resources/blog/folly-tokenmaxxing-or-reinventing-wheel
1•swolpers•3m ago•0 comments

Rewriting a production compiler's IR with AI agents in five weeks

https://github.com/CommanderTvis/writing/tree/main/rr-truffle-rewrite
1•CommanderTvis•6m ago•0 comments

A $21B 'Kids in Chips' Startup Is Scooping Up Nvidia Talent

https://www.wsj.com/tech/ai/a-21-billion-kids-in-chips-startup-is-scooping-up-nvidia-talent-4d099f12
2•_tk_•8m ago•0 comments

Prompt Injection in VirusTotal's Code Insights API

https://exploiting.systems/posts/2026-08-08-prompt-injection-in-virustotals-code-insights-api
1•ropbear•12m ago•0 comments

Conlang

https://en.wikipedia.org/wiki/Constructed_language
1•svenfaw•13m ago•0 comments

As Wisconsin cities flee Flock, its shared camera network loses value

https://arstechnica.com/tech-policy/2026/08/as-wisconsin-cities-flee-flock-its-shared-camera-netw...
7•xoa•14m ago•1 comments

KDE's bookmark search ignores Brave because of one unmatched string

https://balint.blog/krunner-brave/
1•balintkorosi•15m ago•0 comments

Constantine's Bridge Has Surfaced from Beneath the Danube

https://thedebrief.org/a-mile-long-ancient-roman-engineering-marvel-has-suddenly-surfaced-from-be...
1•bookofjoe•17m ago•1 comments

Democracy vs. the machine: birth of digital age,the warnings that were ignored

https://www.theguardian.com/news/2026/aug/18/the-long-read-democracy-v-the-machine-digital-age-wa...
3•pseudolus•17m ago•0 comments

Searching for Answers from the Man Accused of Sabotaging Alaska's Senate Race

https://www.nytimes.com/2026/08/18/us/politics/dan-sullivan-alaska-senate-primary.html
1•dataflow•21m ago•0 comments

Wound/wait deadlock-proof mutex design

https://www.kernel.org/doc/html/latest/locking/ww-mutex-design.html
1•teleforce•22m ago•0 comments

Suicide hotlines don't seem to help

https://www.nber.org/papers/w35601
2•root-parent•26m ago•2 comments

US LLCs for founders whose country Stripe/Shopify don't support

https://open-entity.com
1•Doccc•28m ago•0 comments

Who bears the risk in Nvidia's $500B financing platform?

https://www.sascha-steffen.de/updates/nvidia-500bn-ai-financing-credit-risk
2•root-parent•29m ago•0 comments

AI Used to Verify Toughest Mathematics Proof Yet

https://spectrum.ieee.org/axiom-math-246-theorem-formalization
1•pseudolus•31m ago•0 comments

Show HN: Kitsunagu – A platform to find English-speaking professionals in Japan

https://kitsunagu.com/
2•byra•33m ago•1 comments

The most complex time in 20 years to build an enterprise software startup

https://eportnoy.substack.com/p/the-chaotic-enterprise-startup-period
1•eliportnoy•35m ago•0 comments

The hyperscalers' exploding 'purchase commitments' reach $1.5T

https://www.ft.com/content/1fbe47a6-bbf1-4de1-973b-8ce5baea591d
2•root-parent•36m ago•2 comments

Fredkin's Paradox

https://en.wikipedia.org/wiki/Fredkin%27s_paradox
1•throw0101a•37m ago•0 comments

Handover of In-Context Learning State Across Session Boundaries

https://arxiv.org/abs/2608.14528
1•ninadwrites•39m ago•0 comments

We still don't know how people are using AI

https://www.technologyreview.com/2026/08/18/1142226/how-people-use-ai/
4•joozio•40m ago•0 comments

Daron Acemoğlu: We Are "At the Cusp of Losing" Liberal Democracy [video]

https://www.youtube.com/watch?v=rvOfGzNn3-0
4•mertbio•40m ago•0 comments

Show HN: AirStats – Mac menu bar system monitor, 0.046% CPU idle, MIT

https://github.com/byrencheema/airstats
2•byrencodes•41m ago•0 comments

The Case for Deep Conversation in a World of Small Talk

https://thewalrus.ca/small-talk/
1•pseudolus•44m ago•0 comments

Data driven essay: Misogyny kills; misandry kills at scale

https://socialsommentary.substack.com/p/misogyny-kills-misandry-hurts-feelings
1•dandare•44m 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?