frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Atari Jaguar Runs Linux

https://hackaday.com/2026/07/07/the-atari-jaguar-runs-linux/
1•methuselah_in•40s ago•0 comments

Shotgun – Open-source Cofounder Framework for Claudecode

https://github.com/Krishnatejavepa/Shotgun
1•krishnatejavepa•7m ago•0 comments

Generative AI might end up being worthless

https://theconversation.com/generative-ai-might-end-up-being-worthless-and-that-could-be-a-good-t...
1•wannabeetle•9m ago•0 comments

The Toyota Prius Is the Best Apocalypse Vehicle (2020)

https://www.roadandtrack.com/car-culture/entertainment/a31820423/the-toyota-prius-is-the-best-apo...
1•TMWNN•16m ago•0 comments

Oregon approves PGE's 29.7% rate hike for data centers under landmark law

https://www.opb.org/article/2026/07/07/oregon-data-center-general-electric-rate-hikes/
1•Exoristos•16m ago•0 comments

Researchers Reveal the Power of 'Quantum Proofs'

https://www.quantamagazine.org/researchers-reveal-the-power-of-quantum-proofs-20260706/
1•anujbans•19m ago•0 comments

Review Board: Between Then and Now

https://chipx86.blog/2024/04/04/review-board-between-then-and-now/
2•ankitg12•23m ago•0 comments

Skill Retriever semantic skill discovery for AI agents via 10K-category taxonomy

https://github.com/ChonSong/skill-retriever
1•chonsong•23m ago•0 comments

Self-Hosting My Own LLMs

https://davidbarnhart.com/llm/local-llm-setup.html
3•dbator•28m ago•0 comments

NPM Agent Audit

https://www.npmjs.com/package/agent-security-scanner-mcp
2•dchitimalla1•32m ago•0 comments

Nemotron post training prompt atlas

https://huggingface.co/spaces/nvidia/nemotron-post-training-v3-prompt-atlas
1•kristianpaul•33m ago•0 comments

Selling my adtech startup for $1 no reserve

https://flippa.com/13420990-patent-backed-commerce-attribution-saas-with-identity-graph-ai-custom...
1•aaronatedge•34m ago•1 comments

GitLost: We Tricked GitHub's AI Agent into Leaking Private Repos

https://noma.security/blog/gitlost-how-we-tricked-githubs-ai-agent-into-leaking-private-repos/
4•ColinEberhardt•34m ago•0 comments

Quilt: Replaces Docker and Kubernetes

https://www.quilt.sh/
1•handfuloflight•38m ago•0 comments

Wazuh Pain Points

https://zaferbalkan.com/2023/08/08/wazuh-pain-points.html
1•Grimburger•39m ago•0 comments

The Lindy Effect in Software

https://www.clemsau.com/posts/the-lindy-effect-in-software/
1•ankitg12•39m ago•0 comments

Gallery of Soft Matter 2026

https://engage.aps.org/dsoft/gallery/gallery/mm26-gallery
1•jml7c5•40m ago•1 comments

The Lindy Effect

https://lawsofsoftwareengineering.com/laws/lindy-effect/
1•ankitg12•40m ago•0 comments

Instagui: Turn any CLI into a web GUI with one command

https://github.com/Soutar97/instagui
1•maxloh•41m ago•0 comments

I Met with China's Top AI Experts. They're Freaking Out, Too

https://www.wired.com/story/ai-arms-race-china-us-cooperation/
1•TMWNN•42m ago•0 comments

Meshdesk-The Private community sharing. free

https://meshdesk.pages.dev/
1•rrrpro123•47m ago•0 comments

Switzerland bolted 5,000 solar panels onto a dam wall 8,000 feet up in the Alps

https://www.ecoportal.net/en/switzerland-5000-alpine-solar-muttsee-dam-winter-power/28487/
2•thunderbong•52m ago•0 comments

Run GLM 5.2 on 2 MacBooks with 128gb on RDMA with DS by antirez

https://twitter.com/antirez/status/2074516763526500488
1•rstagi•53m ago•0 comments

Australia's teen social media ban fails to clear first hurdle in age checks

https://www.reuters.com/world/australias-teen-social-media-ban-fails-clear-first-hurdle-age-check...
2•thm•53m ago•0 comments

Meta tests 'super sensing' AI glasses that can record every moment

https://www.ft.com/content/ac282450-91a8-4597-8f60-9e6ef416865a
1•thm•55m ago•0 comments

British 'First Fleet' brought smallpox to Australia and may have killed millions

https://www.science.org/content/article/british-first-fleet-brought-smallpox-australia-and-may-ha...
2•sbulaev•58m ago•3 comments

DeFi manual yield farming is outdated

https://hodlycrypto.com/blog/why-smart-money-is-ditching-manual
1•hoangthuytrang•59m ago•0 comments

Generative AI creates delicious, sustainable, and nutritious burgers

https://www.nature.com/articles/s41538-026-00953-x
1•car•1h ago•0 comments

GitHub AI agent leaks private repos when asked nicely

https://www.theregister.com/security/2026/07/07/github-ai-agent-leaks-private-repos-when-asked-ni...
2•sbulaev•1h ago•1 comments

Not All Miles Are Equal: Benchmarking Autonomous Safety

https://waymo.com/blog/2026/07/time-geo-crash-risk-effect/
1•xnx•1h 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?