frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Codes – typed application outcomes for Kotlin and Java

https://github.com/aalsanie/codes
1•aalsanie•20s ago•0 comments

Prevalence of chronic traumatic encephalopathy at death in NFL players

https://www.bmj.com/content/394/bmj-2026-100418
1•speckx•3m ago•0 comments

WhatsApp rolls out multi-device passkeys to kill SS7 and SIM Swapping attacks

https://cyberupdates365.com/whatsapp-security-update-2026-passkeys/
2•sysadmin_diarie•3m ago•0 comments

Release v0.2.0 · ggml-org/llama.cpp

https://github.com/ggml-org/llama.cpp/releases/tag/v0.2.0
1•kyisaiah47•4m ago•0 comments

Show HN: RIP MY BUILD, a cemetery for failed side projects

https://www.ripmybuild.com
2•horiajurcut•5m ago•0 comments

Show HN: Turn any website into a CLI for AI agents (142x fewer tokens than HTML)

https://github.com/only-cli/oc
1•hyes•6m ago•0 comments

Two planned datacentres will have higher UK carbon emissions than ExxonMobil

https://www.theguardian.com/uk-news/2026/aug/25/planned-datacentres-carbon-emissions-uk-exxonmobil
2•sbulaev•6m ago•0 comments

Wrapping a callable in a lambda that just calls it with the same parameters

https://devblogs.microsoft.com/oldnewthing/20260819-00/?p=112624
1•ibobev•6m ago•0 comments

How the search for one court record became a nationwide movement

https://www.courtwatch.news/p/the-rabbit-hole-how-the-search-for-one-court-record-became-a-nation...
1•Kye•7m ago•0 comments

Reducing C++ template bloat by factoring out the type-dependent portions

https://devblogs.microsoft.com/oldnewthing/20260821-00/?p=112632
1•ibobev•7m ago•0 comments

OpenAI JalapeñO: Better Than Nvidia Blackwell

https://newsletter.semianalysis.com/p/openai-jalapeno-better-than-nvidia
3•bmulholland•7m ago•0 comments

Fewer, smaller eggs are the double effect of France's scorching summer

https://www.lemonde.fr/en/economy/article/2026/08/25/the-hens-suffocated-fewer-smaller-eggs-are-t...
1•geox•7m ago•0 comments

Comparing the two holograms on the Windows 95 box

https://devblogs.microsoft.com/oldnewthing/20260824-00/?p=112643
1•ibobev•8m ago•0 comments

Read your writes: WAIT FOR in PostgreSQL 19

https://clickhouse.com/blog/postgresql-19-wait-for-read-your-writes
1•gulcin•8m ago•0 comments

AI assistants need adaptive conversational tempo to be good cognitive companions

https://woventhought.substack.com/p/ai-assistants-need-adaptive-conversational
2•ssivark•11m ago•0 comments

How Arlington National Cemetery Came to Be

https://www.smithsonianmag.com/history/how-arlington-national-cemetery-came-to-be-145147007/
2•goles•11m ago•0 comments

Anthropic tells staff to work from home due to possible security team strike

https://www.businessinsider.com/anthropic-san-francisco-staff-work-remote-office-security-strike-...
5•DGAP•13m ago•0 comments

US Military Transport Plane Lands in Moscow After Flight from Riga

https://www.kyivpost.com/post/83088
2•bushwart•13m ago•0 comments

Kafka-free reliably OpenTelemetry ingestion

https://clickhouse.com/blog/reliable-opentelemetry-ingestion-at-scale
1•gingenio•13m ago•0 comments

Apple's M6 Mac mini jumps to $899 as Mac Studio goes Ultra

https://forgeeks.net/apple-m6-mac-mini-m5-ultra-studio/
2•kuuuzya•15m ago•0 comments

Show HN: Unbox-AI Visualize your AI traces like a JavaScript bundle

https://github.com/tester-army/unbox-ai
2•okwasniewski•15m ago•0 comments

A New Framework for How the Brain Compresses Our Noisy World

https://www.quantamagazine.org/a-new-framework-for-how-the-brain-compresses-our-noisy-world-20260...
1•Brajeshwar•16m ago•0 comments

The bond market isn't panicking, it's repricing for a riskier world

https://www.capitaleconomics.com/blog/bond-market-isnt-panicking-its-repricing-riskier-world
2•toomuchtodo•16m ago•0 comments

The Info War Stack: The three layers states are building to win an info war

https://pplsartofwar.substack.com/p/the-info-war-stack
1•iamnothere•17m ago•0 comments

AI Coding Has Erased the Supposed Advantage of Statically Typed Languages

https://yyhh.org/blog/2026/08/ai-coding-has-erased-the-supposed-advantage-of-statically-typed-lan...
3•yogthos•17m ago•0 comments

Show HN: MyPRs – your open-source resume, built from your merged pull requests

https://www.myprs.dev
2•kishanhitk•17m ago•0 comments

SubCost – See what your subscriptions cost over 10 years

https://subcost.surge.sh/
1•paulsassistant•18m ago•0 comments

Exploring 1-Bit LLMs

https://thejeshgn.com/2026/08/25/exploring-1-bit-llms/
1•speckx•18m ago•0 comments

Munich Court Proposes €1.05 Monthly Codec Royalty for Netflix Premium Users

https://streaminglearningcenter.com/articles/munich-court-proposes-e1-05-monthly-codec-royalty-fo...
1•cisc•19m ago•0 comments

What 219 AI evals job postings that publish a salary pay

https://aievalsjobs.com/ai-evals-salary-report/
1•willhannay•19m 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?