frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Wp2shell: Pre Authentication RCE in WordPress Core

https://slcyber.io/research-center/wp2shell-pre-authentication-rce-in-wordpress-core/
1•tjwds•2m ago•0 comments

Intel Starts Shipping High-NA EUV Silicon

https://morethanmoore.substack.com/p/intel-starts-shipping-high-na-euv
1•zdw•5m ago•0 comments

Give Agents Homeplace via SSH

https://www.xshellz.com/
2•stfnon•6m ago•1 comments

Why huge pages matter for Postgres?

https://clickhouse.com/blog/huge-pages-clickhouse-managed-postgres
1•saisrirampur•6m ago•0 comments

IBM CEO Arvind Krishna Has Nowhere to Hide from AI

https://www.wsj.com/tech/ibm-ceo-arvind-krishna-has-nowhere-to-hide-from-ai-c9ff290f
2•johnbarron•11m ago•0 comments

Sync.md – keep AGENTS.md, Claude.md, .cursorrules in sync by meaning, not diff

https://marketplace.visualstudio.com/items?itemName=sync-md.sync-md
1•anzilzedex•12m ago•0 comments

Against Mind-Blindness: Recognizing and Communicating with Diverse Intelligences [video]

https://www.youtube.com/watch?v=RHkFmUwW0kM
1•lioeters•13m ago•0 comments

Things I Won't Work With: Dioxygen Difluoride (2010)

https://www.science.org/content/blog-post/things-i-won-t-work-dioxygen-difluoride
2•downbad_•16m ago•0 comments

Show HN: Waylou / a multi-provider CLI coding agent / fork of Gemini CLI

https://github.com/helis-d/waylou
1•Emirhan123•16m ago•1 comments

Tool to benchmark AGENTS.md file on swe tasks

https://github.com/emiliolugo/clawmark
1•emiliolugo•17m ago•0 comments

Apple dethrones Nvidia to regain title of world's most valuable company

https://www.theguardian.com/technology/2026/jul/17/apple-nvidia-most-valuable-company
4•Brajeshwar•18m ago•0 comments

Tutorial: Introduction to Formal Verification with Lean (Part 1)

https://hashcloak.com/blog/tutorial-introduction-to-formal-verification-with-lean-(part-1)
2•birdculture•21m ago•0 comments

No President Has Embarrassed This Country the Way Trump Did Last Night

https://newrepublic.com/post/213195/trump-primetime-speech-no-embarrassed-country
9•petethomas•21m ago•0 comments

Valve's 14-Year Journey to Make the Steam Machine

https://www.bloomberg.com/news/newsletters/2026-07-17/valve-s-14-year-journey-to-make-the-steam-m...
1•HelloUsername•22m ago•0 comments

World Models

https://twitter.com/selimonder/status/2078540842822733993
1•selimonder•22m ago•0 comments

Typing Speed Test, but for Developers

https://haxxorwpm.0s.is/
3•hronecviktor•24m ago•3 comments

Kimi K3 Might Have Just Started a Crash of the US Economy

https://danielmiessler.com/blog/kimi-k3-us-economy
5•zelmetennani•25m ago•1 comments

Taylor Farms Recall. 27 States and the List Includes Bags Sold in Grocery Stores

https://www.marlerblog.com/case-news/taylor-farms-posted-its-own-recall-it-went-to-27-states-not-...
3•speckx•27m ago•0 comments

Jack Conte: Why I'm (sort of) not worried about AI [video]

https://www.youtube.com/watch?v=17_HcR95YBc
1•magistr4te•28m ago•0 comments

Is there any need for low cost LinkedIn followup reminder solution

1•vinayrsbalhara•28m ago•0 comments

Show HN: Medows – an AI clinical workspace for doctors on ward rounds

https://www.medows.ai/demo
1•alapanx•30m ago•2 comments

Meta's new AI chips will begin production in September

https://techcrunch.com/2026/07/09/metas-new-ai-chips-will-begin-production-in-september/
1•gmays•30m ago•0 comments

Amazon invents the Attachment Economy bait-and-switch

https://www.machinesociety.ai/p/amazon-invents-the-attachment-economy
1•mikelgan•31m ago•1 comments

I indexed 15,000 company hiring boards to search every (most) live tech jobs

https://www.padmi.ai/
1•anirudra•34m ago•1 comments

/dev/tcp to do fast and light TCP health checks

https://www.linuxjournal.com/content/more-using-bashs-built-devtcp-file-tcpip
1•arberx•34m ago•0 comments

Real-Time LuaTeX: Recompiling Large Documents in 1 ms [video]

https://www.youtube.com/watch?v=It9BMNGtjao
1•amichail•35m ago•1 comments

Show HN: Firedeck – Firebase Console for iPhone and iPad

https://firedeck.net/
1•adamgelatka•38m ago•0 comments

The Java Story, the Official Documentary

https://www.youtube.com/watch?v=ZqGSg4b_cZA
1•Dr_Emann•38m ago•0 comments

Spotify Deleted 75M AI-Generated Tracks – and It's Not Done Yet

https://www.gadgetreview.com/spotify-deleted-75-million-ai-generated-tracks-and-its-not-done-yet
1•CharlesW•39m ago•0 comments

Show HN: Typedeck – a Mac presentation app with a deterministic layout engine

https://apps.apple.com/us/app/typedeck/id6761032503?mt=12
1•TypeDeck•41m 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?