frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What a 2019 API client teaches you about modern .NET

https://www.ivanjurina.com/index.php/2026/07/21/what-a-2019-api-client-teaches-you-about-modern-net/
1•johnvonoakland•2m ago•0 comments

Wispr-clone – offline push-to-talk dictation for Linux

https://github.com/twinlights/wispr-clone
2•twinlights•3m ago•0 comments

Show HN: BlurShield – Automatically blur sensitive info during screen share

https://chromewebstore.google.com/detail/blurshield-–-prevent-scre/dgpihknippnloandcngnipbponnn...
1•DhruvaGowda2006•3m ago•0 comments

TSMC eyes price hikes of up to 25% on chip production services in 2027

https://www.tomshardware.com/tech-industry/semiconductors/tsmc-eyes-price-hikes-of-up-to-25-perce...
1•speckx•4m ago•0 comments

Hackercouch: Couchsurfing for Hackers, by Hackers

https://hackercouch.com/
1•surprisetalk•4m ago•0 comments

Show HN: Playwright end-to-end tests as OpenTelemetry spans

https://github.com/endformdev/playwright-opentelemetry
3•ostenbom•5m ago•0 comments

Show HN: Apotrope – Offline Windows security auditor (like Lynis, for Windows)

https://github.com/hexorcist404/apotrope
1•hexorcist404•5m ago•0 comments

Intel Foundry nabs a custom ASIC win with Fortinet

https://www.servethehome.com/intel-foundry-nabs-a-custom-asic-win-with-fortinet-fortisp6-sp6/
1•teleforce•6m ago•0 comments

Show HN: Tellie – the Mac teleprompter that follows the words you say

https://tellieapp.com/
2•SteveChazin•8m ago•0 comments

You might already have product-market fit

https://www.zakihsn.com/writing/building/search-risk-vs-execution-risk
2•zakihasan•9m ago•0 comments

Show HN: Maith – open math research with AI

https://github.com/clidey/maith
3•hemangkandwal•9m ago•0 comments

Show HN: TZRO – A Free Local AI Task Offloader

https://github.com/The18thWarrior/tzro
2•the18thwarrior•10m ago•0 comments

Show HN: Infrastructure Planning Software

https://github.com/slicktokenllc/SlickSim_v1/releases/tag/v1.0.0
1•slicktoken•11m ago•0 comments

Show HN: WiFi-LLM

https://github.com/bertaye/wifi-llm
2•bertaye•12m ago•0 comments

Show HN: Mini Golf Club – a 3D multiplayer mini-golf game in the browser

https://minigolfclub.io/
2•zoleeg•13m ago•0 comments

Windows LegacyHive zero-day flaw gets free, unofficial patches

https://www.bleepingcomputer.com/news/security/windows-legacyhive-zero-day-flaw-gets-free-unoffic...
1•speckx•15m ago•0 comments

Cup Noodle releases cold-water instant ramen in Japan

https://soranews24.com/2026/07/20/cup-noodle-releases-cold-water-instant-ramen-in-japan-but-can-i...
1•newsomix9xl•16m ago•1 comments

AI physics on vacation turned into real research in quantum mechanics

https://nutfieldsecurity.com/posts/ai-vacation-physics/
1•pizzadad•18m ago•0 comments

Contra George Hotz on "AI 2040 and the Cult of Intelligence"

https://antiextinction.substack.com/p/contra-ai-2040-and-the-cult-of-intelligence
1•matthewtromp•18m ago•0 comments

Mullvad and Daniel Berntsson's Failed Cleanup

https://markwrites.io/mullvad-and-daniel-berntssons-failed-cleanup/
4•speckx•18m ago•0 comments

OSS ChatGPT WebUI v4 – Projects, Agent Profiles, Server Tools, 1-Click Sharing

https://llmspy.org
1•mythz•19m ago•0 comments

Garzed – my garden waters itself off soil-moisture sensors

https://garzed.com
6•bferrada•19m ago•1 comments

Error Handling vs. Hiding Errors

https://spin.atomicobject.com/error-handling-vs-hiding/
1•ingve•19m ago•0 comments

An engineer's love letter to football

https://www.adriankrebs.ch/blog/football/
1•hubraumhugo•20m ago•0 comments

Ask HN: To lead with, or bury, AI in product marketing

1•probst•20m ago•0 comments

Brazil and US clash as popular Pix system stirs global interest

https://www.reuters.com/business/finance/brazil-us-clash-over-future-payments-popular-pix-system-...
1•digoxine•21m ago•0 comments

AGI Singer: Full Saturday

https://medium.com/@miho999lv/i-only-left-to-buy-some-ice-five-minutes-thats-what-i-said-locked-t...
1•miho999lv•21m ago•0 comments

Show HN: Neat, Static code and OTel fused into one graph for agents (OSS)

https://github.com/neat-technologies/neat
3•dcdeniz•21m ago•2 comments

A Fireside Chat with Cat and Thariq from the Claude Code Team

https://simonwillison.net/2026/Jul/21/cat-and-thariq/
1•arto•21m ago•0 comments

Ask HN: Which model do you use with Pi coding agent?

1•theaniketmaurya•21m 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?