frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Spire: Structure-Preserving Interpretable Retrieval of Evidence

https://arxiv.org/abs/2604.20849
1•PaulHoule•2m ago•0 comments

I took a physics class as a software engineer

https://frigade.com/blog/why-i-took-a-physics-class-as-a-software-engineer
1•pancomplex•2m ago•0 comments

Munich's IT transition: open-source is the default for the new coalition

https://www.heise.de/en/news/Munich-s-IT-transition-Open-Source-is-the-default-for-the-new-coalit...
1•doener•3m ago•0 comments

Great Essays About Biology

https://nikomc.com/essays/30-great-essays.html
1•sebg•3m ago•0 comments

Viral Marketing

1•FDX2018•3m ago•1 comments

Medicare's new payment model is built for AI. Most of the tech world has no idea

https://techcrunch.com/2026/05/12/medicares-new-payment-model-is-built-for-ai-and-most-of-the-tec...
2•brandonb•4m ago•0 comments

More concentrated precipitation decreases terrestrial water storage

https://www.nature.com/articles/s41586-026-10487-7
1•littlexsparkee•5m ago•0 comments

Lobotomized Claude Code: system-prompt overrides for Opus 4.7

https://github.com/skrabe/lobotomized-claude-code
1•opwizardx•5m ago•0 comments

Hondurasgate.ch Portal Under Attack

https://hondurasgate.ch/investigaciones/hondurasgate-under-attack-us-israel-digital-siege
1•lbrito•6m ago•0 comments

Token Dashboard – local desktop app to see where your Claude Code tokens go

https://github.com/Arylmera/Token-Dashboard
1•Arylmera•7m ago•0 comments

Show HN: Building effective Human-AI hybrid decision-making ecosystem

https://galdren.com/lgd/
1•stAInley•9m ago•0 comments

Windows 11 PCs Compared to MacBook Neo

https://signal65.com/research/windows-11-pcs-compared-to-macbook-neo/
2•ndr42•10m ago•1 comments

An 'Impossible' Idea Led to a Pancreatic Cancer Breakthrough

https://www.nytimes.com/2026/05/12/health/pancreatic-cancer-daraxonrasib-kras.html
1•bookofjoe•11m ago•1 comments

San Fransokyo: imagining a denser San Francisco

https://chinoiserie.media/posts/san-fransokyo/
1•stevenzzzzzzz•12m ago•0 comments

LLMs are breaking 20 year old system design

https://zknill.io/posts/llms-are-breaking-20-year-old-system-design/
1•zknill•12m ago•0 comments

ContextPilot... I got tired of paying for the same system prompt 200 times

https://github.com/msousa202/ContextPilot
1•msousa202•14m ago•0 comments

The Per-Minute Calling Myth: The Hidden Economics of Voice and Video Calling API

https://blog.mesibo.com/per-minute-calling-myth-hidden-economics-voice-video-calling-apis/
1•mesibo•15m ago•0 comments

"Call A Republican" San Francisco public phone lets you call a Texas Republican

https://www.axios.com/local/san-francisco/2026/01/26/sf-texas-phone-call-experiment-political-div...
1•WarOnPrivacy•18m ago•1 comments

Pythons new httpx fork: httpx2

https://tildeweb.nl/~michiel/httpx2.html
1•roywashere•22m ago•0 comments

TSMC unveils process technology roadmap through 2029 – A12, A13, N2U announced

https://www.tomshardware.com/tech-industry/semiconductors/tsmc-unveils-process-technology-roadmap...
2•rbanffy•22m ago•0 comments

Pullback Drive

https://xkcd.com/3244/
2•linuxkernal•22m ago•0 comments

Fragnesia (Linux LPE)

https://github.com/v12-security/pocs/tree/main/fragnesia
2•Wingy•24m ago•0 comments

Cisco to Cut Jobs in Shift to Capture More AI Demand

https://www.wsj.com/business/earnings/cisco-to-cut-jobs-in-shift-to-capture-more-ai-demand-b99eeb21
1•whatthesmack•24m ago•0 comments

PyTorch 2.12 Released

https://pytorch.org/blog/pytorch-2-12-release-blog/
1•0bytematt•24m ago•0 comments

Show HN: Sinain captures screen and audio in KG, shares it with agents/peers

https://anthillnet.github.io/sinain-hud/
2•geravant•27m ago•0 comments

QWEN2.5-1.5B Abliterated Release for Android Mobile

https://huggingface.co/automajicly/qwen-1.5b-android/commit/
1•automajicly•27m ago•0 comments

I tested GPT-5.5, Claude Opus 4.7, and Gemini 3.1 Pro on financial-control

https://albertquaisie.substack.com/p/i-tested-gpt-55-claude-opus-47-and
1•Aquaisie•30m ago•0 comments

I was asked to install malware during a fake interview

https://ashishb.net/security/contagious-interview/
9•ashishb•30m ago•0 comments

TinyStories-260K running locally on a stock Game Boy Color

https://github.com/maddiedreese/gbc-transformer
1•adunk•30m ago•0 comments

Content-defined chunking added to Bazel

https://www.buildbuddy.io/blog/content-defined-chunking/
1•siggi•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?