frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Cone of Plausibility

https://substack.com/@drexdsgn/note/c-326376193
1•hakkikonu•1m ago•0 comments

Forte UI – React components whose palette derives from one CSS variable

https://forte-ui.com/
1•arsenghazaryan•1m ago•0 comments

Is Education for Industry or for Thinking?

https://candost.blog/journal/education-for-industry/
1•mooreds•2m ago•0 comments

Bigger Is Not Better

https://huntersoftwareconsulting.com/posts/2026-09-06-bigger-is-not-better/
1•mooreds•3m ago•0 comments

Show HN: Aethel-Core – Ultra-Lightweight Neuro-Symbolic WAF Built in SWI-Prolog

https://github.com/lokinpendawa/aethel_core
1•lokinpendawa•8m ago•0 comments

HN: Chef's Helper – Kitchen costing, prep, rotas and safety app

https://www.chefshelper.app/landing
2•RobHepCH•10m ago•0 comments

ShiftLens: Mech. Actuated Optical Surfaces for Switchable Appearances on 3D Objs

https://hcie.csail.mit.edu/research/shiftlens/shiftlens.html
1•sargstuff•11m ago•0 comments

A simple tool to track projects, time, and income streams (£1.99)

https://shipandearn.com
1•seraph2000•12m ago•0 comments

Show HN: Alias – Custom Domain Email for Gmail

https://chromewebstore.google.com/detail/alias-custom-domain-email/hdmholmgdmnmdgbipelccdjidnjlmlke
1•yazanbaker•14m ago•0 comments

Bank ID vendor traced to a dark web license sale

https://www.americanbanker.com/news/bank-id-vendor-traced-to-a-dark-web-license-sale
3•NewCzech•17m ago•0 comments

In Defense of Polyfills

https://lea.verou.me/blog/2026/polyfills/
2•eustoria•25m ago•0 comments

German startup sends first commercial rocket into space from Europe

https://www.theguardian.com/business/2026/sep/06/german-startup-sends-first-commercial-rocket-int...
1•giuliomagnifico•26m ago•0 comments

MotionSites AI – Official Premium AI Website Prompts

https://motionsites.ai/
2•eustoria•26m ago•0 comments

Dither Garden

https://www.dithergarden.com/
1•eustoria•27m ago•0 comments

Ask HN: I just learned of the term "Recall@K" – tell me more please?

1•consumer451•27m ago•0 comments

The aesthetic turn in intellectual property law copyright lessons from Pelham II

https://www.elgaronline.com/view/journals/qmjip/16/2/article-p99.xml
1•rbanffy•27m ago•0 comments

Ask HN: How safe are our password managers in face of LLM cyber attacks?

2•muddi900•29m ago•0 comments

If a startup worth your career

https://www.thetrueengineer.com/p/ego-equity-or-exit-checklist-to-decide
3•adletbalzhanov•33m ago•1 comments

Ask HN: Model Sycophancy Benchmarks?

1•gradus_ad•35m ago•0 comments

Show HN: Ontoplano, FOSS Life Management desktop and mobile app with MCP server

https://github.com/ontoplano/ontoplano
1•chedieck•35m ago•0 comments

The purpose of DNS is to spread scams

https://shkspr.mobi/blog/2026/09/the-purpose-of-dns-is-to-spread-scams/
3•edward•36m ago•0 comments

Show HN: Yume, a desktop workspace for Claude Code sessions

https://aofp.github.io/yume/
1•yuruko•37m ago•0 comments

YouTube Had a Bug – I Used ChatGPT to Investigate

https://blog.thezilber.com/3-youtube-had-a-bug-chatgpt-helped-me-to-investigate
3•theZilber•40m ago•0 comments

Casio 'CasioNaut' G-Shock GMC-2500 GAC-2500 Series: Price, Specs, Availability

https://www.wired.com/story/casio-g-shock-casionaut-looks-like-a-patek-philippe-classic/
2•joozio•40m ago•0 comments

Any Nix package, live in the browser

https://fzakaria.com/2026/09/04/any-nix-package-live-in-your-browser
17•domenkozar•41m ago•4 comments

Tinymongo

https://tinymongo.org/
3•schapman1974•42m ago•1 comments

GitHub Status – Disruption with Copilot Code Review

https://www.githubstatus.com/incidents/zw1hbx2yyhvr
1•kyisaiah47•43m ago•0 comments

Where Will RISC-V Be in 20 Years? Poll Results

https://thechipletter.substack.com/p/where-will-risc-v-be-in-20-years
2•rbanffy•43m ago•0 comments

Show HN: Layerz – Native App Designer

https://www.layerz.app/
1•jaeyoung_choi•45m ago•0 comments

Bitcoin mining data center condemned after leaking 3M gallons of water

https://www.tomshardware.com/tech-industry/data-centers/bitcoin-mining-data-center-condemned-afte...
3•rbanffy•45m 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?