frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple's Always-Listening Tech: A Privacy Nightmare Waiting to Happen

https://this.weekinsecurity.com/watch-what-you-say-apple-opens-the-door-to-a-nightmare-world-of-a...
1•signa11•1m ago•0 comments

Why big tech will hate the Australian tax office's latest ruling

https://theconversation.com/why-big-tech-will-hate-the-australian-tax-offices-latest-ruling-291571
3•billybuckwheat•2m ago•0 comments

Michaelsoft Binbows

https://binbows.net/
1•austinallegro•9m ago•0 comments

Closure Compiler: A JavaScript checker and optimizer

https://github.com/google/closure-compiler
1•csmantle•10m ago•0 comments

Anecdotally, Programmers Dislike "Reduce"

https://evanhahn.com/posts/2026-09-13-programmers-dislike-reduce/
2•vinhnx•13m ago•0 comments

BYD has apparently canceled this year's profit bonus

https://www.kucoin.com/news/insight/BYD/6aa543e9ccf4ec00077d0eb2
1•gainsurier•13m ago•0 comments

TimIQ – Smart Tech, AI and Software Insights

https://timiq.blogspot.com/
1•Timmphil•13m ago•0 comments

PlotLines

https://peter-guillam123.github.io/plotlines/
1•austinallegro•13m ago•0 comments

Satellite images show extent of damage to major Saudi pipeline

https://www.theguardian.com/world/2026/sep/14/saudi-pipeline-drone-attack-houthis-global-oil-supp...
1•ljf•17m ago•0 comments

Mr

1•giddyboy•19m ago•0 comments

The Void Spiral: How to Avoid the Void

https://mathstodon.xyz/@isaacg/117264263631423022
1•rapnie•20m ago•0 comments

Show HN: TrackLLM: Are the LLM APIs you rely on stable?

https://www.trackllm.net/
1•timotheechauvin•21m ago•1 comments

Why Does SpaceX Have 11,000 Starlink Satellites? [video]

https://www.youtube.com/watch?v=DW-aL_MiUz4
1•marklit•21m ago•0 comments

Why I Still Read Code

https://alex.draftist.io/blog/why-i-still-read-code-iiaz6lku8
1•saikatsg•22m ago•0 comments

Just stop the Anthropic IPO already

https://www.thebignewsletter.com/p/monopoly-round-up-just-stop-the-anthropic
2•chmaynard•23m ago•0 comments

'Tidal wave' of PFAS being launched to satisfy AI industry

https://www.theguardian.com/environment/2026/sep/14/pfas-firms-tidal-wave-forever-chemicals-ai-in...
2•defrost•24m ago•0 comments

The bottleneck in multi-agent coding is the human, not the agents

https://tskulbru.dev/posts/beads-local-shadow-for-agent-work/
1•tskulbru•25m ago•0 comments

Of Gods and Languages: On "When God Spoke Greek" (2013)

https://lareviewofbooks.org/article/of-gods-and-languages-on-when-god-spoke-greek/
7•bryanrasmussen•25m ago•1 comments

Eliza: The AI That Fooled the World

https://liacademy.co.uk/the-story-of-eliza-the-ai-that-fooled-the-world/
1•andsoitis•27m ago•0 comments

What is it like to be a Thermostat?

https://consc.net/notes/lloyd-comments.html
2•andsoitis•28m ago•0 comments

Anthropic tells investors it will be profitable for second straight quarter

https://www.ft.com/content/4564e6a5-69e9-40a6-bf0f-a888f2f4f002
2•theahura•34m ago•0 comments

Sunsetting Remove.bg

https://www.remove.bg/faq
1•sh_tomer•35m ago•0 comments

Tork: A lightweight, distributed workflow engine

https://github.com/runabol/tork
2•saikatsg•35m ago•0 comments

One UI 9 Beta 2 update is rolling out to the Galaxy S24

https://www.sammobile.com/news/galaxy-s24-one-ui-9-beta-2-update-released/
1•kuuuzya•36m ago•0 comments

The Matrix as Metaphysics

https://consc.net/papers/matrix.html
1•andsoitis•37m ago•1 comments

Build to Delete: When a model release makes your work redundant

https://softwareguru.substack.com/p/build-to-delete
1•ssamptur•39m ago•0 comments

Show HN: Meta neural band PoC connected to Mac without needing the glasses

https://github.com/callbacked/neural-band-poc/
1•callbacked•39m ago•0 comments

Ambition Is Frozen Desire

https://pmillerd.com/david-whyte-ambition/
1•bwest87•40m ago•1 comments

Show HN: Chrome Extension to Save, Organize and Switch Bookmarks

https://chromewebstore.google.com/detail/leotabs-—-tab-manager-swi/heolckkdeandgagkiefggcneodni...
1•ringlochid•40m ago•0 comments

Ask HN: Why AI is giving biased Racist/Misandrist answers?

1•skwasimin•41m ago•1 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?