frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: RAX Compute Gateway – One API for OpenAI, Anthropic, and Gemini

https://github.com/radium0090/Compute-Gateway
1•radium90•42s ago•0 comments

Microsoft Is Retiring Excel's Copilot() Function After Just One Year

https://windowsreport.com/microsoft-is-retiring-excels-copilot-function-after-just-one-year/
1•thunderbong•4m ago•0 comments

People of ACM – Russ Cox

https://www.acm.org/articles/people-of-acm/2026/russ-cox
1•signa11•10m ago•0 comments

Show HN: Columnary, a better experience for reading long articles

https://chromewebstore.google.com/detail/columnary/dechndjpekelnmgcchblfbmcceonfdoo
2•exclipy•12m ago•0 comments

Report supporting Australia's teen social media ban appears to contain AI

https://www.theguardian.com/australia-news/2026/aug/17/australia-social-media-ban-report-ai-hallu...
1•sbulaev•15m ago•0 comments

Facebook Perl source code from 2005

https://gist.github.com/philfreo/7257723
2•zdkaster•17m ago•0 comments

Git Links

https://replicated.live/blog/link
1•gritzko•19m ago•0 comments

What's behind this summer's heat, and why 2027 could be worse

https://www.technologyreview.com/2026/08/13/1141788/summer-heat-el-nino/
1•joozio•20m ago•0 comments

Show HN: TapDiary – a one-tap time and count tracker, works offline

https://www.tapdiary.app/en
1•sangkwun•21m ago•0 comments

A central role for dietary sugars in human evolution

https://www.science.org/doi/10.1126/science.aed8437
2•rzk•24m ago•0 comments

USC Study Finds AI Is Better at Reading Than Listening

https://viterbischool.usc.edu/news/2026/08/can-ai-read-the-room-usc-study-finds-ai-is-better-at-r...
1•shymaple•26m ago•0 comments

Found an Agent created skill that applies uncle bobs

https://github.com/AmazingAng/old-coder
1•wzr1337•26m ago•0 comments

Ask HN: When do you think LLM capacity will reach its ceiling?

2•vincenthsin•26m ago•0 comments

Speeding up the Unreal Editor launch (again) by not loading 1585 files

https://larstofus.com/2026/08/16/speeding-up-the-unreal-editor-launch-again-by-not-loading-1585-f...
1•jay_kyburz•29m ago•0 comments

Hacker News Clone: VibeHack a.k.a. HackPhilia

https://hackphilia.com/about.php
1•pagetelegram•30m ago•0 comments

The null result in OpenAI's enterprise AI paper

https://theworkingmodel.co/analysis/null-result-openai-enterprise-paper/
1•aicoding•30m ago•0 comments

Conservation efforts help an endangered dipterocarp spread roots in Bangladesh

https://news.mongabay.com/2026/04/conservation-efforts-help-an-endangered-dipterocarp-spread-root...
1•thunderbong•31m ago•0 comments

The Internet Archive currently down due to power outage

https://web.archive.org/
1•kogens•31m ago•1 comments

The Indian rupee since 1947

https://finshots.in/archive/the-story-of-the-indian-rupee-since-1947/
1•vismit2000•32m ago•0 comments

Sainsbury's pauses AI cameras after shopper ousted

https://www.bbc.co.uk/news/articles/cddjlmeqjgyo
2•dijksterhuis•33m ago•2 comments

Show HN: Kubara a package manager and framework for Kubernetes platforms

https://github.com/kubara-io/kubara
1•tuunit•33m ago•0 comments

Sixfab Cellular Modems

https://sixfab.com/product-category/development-tools/cellular-modems/
1•peter_d_sherman•35m ago•0 comments

OpenAI-Compatible API Quickstart in Python, JavaScript, and PowerShell

https://github.com/Vector-Compute-Engine/api-quickstart
2•VectorEngine•35m ago•0 comments

ScienceFlow – A Long-Horizon Agent for ML Research

https://github.com/huawei-noah/noah-research/tree/master/ScienceFlow
1•d3ron•36m ago•0 comments

Show HN: Code review that follows callers across your repos

https://contextgoblin.com/
2•clemens1010•39m ago•0 comments

Apache Flink accelerator built with Rust

https://streamfusion.tech/
1•Abbit•40m ago•0 comments

A Camera in My Face

https://www.naths.in/blog/a-camera-in-my-face
2•segalord•44m ago•0 comments

More methods for forecasting code automatiom

https://blog.aifutures.org/p/q25-2026-timelines-update-uplift
1•fbrusch•46m ago•0 comments

Greenest cities in Europe, and where Hamburg stands

https://alsterrunde.com/greenest-cities-in-europe-and-where-hamburg-stands/
3•mertbio•51m ago•0 comments

It's Happening – Europe Is Building an Impossible Fusion Reactor [video]

https://www.youtube.com/watch?v=bPUAKW1Dyek
3•mpweiher•58m 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?