frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The government is recruiting tech companies to help fight its cyber battles

https://www.politico.com/news/2026/08/13/white-house-memo-cybercrime-01036176
1•giuliomagnifico•52s ago•0 comments

Rodeo, a terminal file manager inspired by Norton/Midnight Commander (Rust)

https://github.com/lordgreg/rodeo
1•lordgreg•1m ago•1 comments

Leveraging Requirements Engineering for AI Coding Tool Success

https://cacm.acm.org/news/leveraging-requirements-engineering-for-ai-coding-tool-success/
1•adunk•2m ago•0 comments

The Harness Is the Bottleneck

https://www.chrismdp.com/the-harness-is-the-bottleneck/
1•speckx•3m ago•0 comments

I built a lint for AI-generated evidence

https://apify.com/filipmajchrzak/ai-claim-checkpoint
1•fmajchrzak•4m ago•0 comments

Silver Lake in talks to buy Workday, sources say

https://www.reuters.com/world/silver-lake-talks-buy-workday-sources-say-2026-08-13/
2•JumpCrisscross•4m ago•0 comments

SilkCode – Tired of resets/limits with Claude but better than Codex

https://silkcode.web.app/
1•amonte•8m ago•0 comments

Yaak.ai Physical AI OS: copper-rs

https://www.yaak.ai/blog/yaak-x-copper
1•gbin•10m ago•0 comments

Caterpillar Technical English agent skill

https://github.com/IgaoGuru/caterpillar-technical-english
1•falso•10m ago•2 comments

TikTok finfluencers: How reliable is their financial advice to young investors?

https://www.euronews.com/my-europe/2026/08/13/tiktoks-finfluencers-how-reliable-is-the-financial-...
4•devonnull•10m ago•0 comments

Building a Minecraft Computer Taught Me More About CPUs Than University Did

https://tonyist.xyz/building-a-redstone-computer/
1•ReFruity•11m ago•0 comments

Northwest Indiana residents dealing with 'largest outage event on record'

https://wgntv.com/northwest-indiana/northwest-indiana-residents-dealing-with-largest-outage-event...
2•Ariarule•12m ago•2 comments

The Making of Cursor's Icons

https://www.minoradventures.co/blog/the-making-of-cursors-icons
1•ananmays•17m ago•0 comments

Airbnb Eval-driven development: Lessons from evaluating GenAI at scale

https://medium.com/airbnb-engineering/eval-driven-development-lessons-from-evaluating-genai-at-sc...
1•sebg•17m ago•0 comments

My app for Shipaton 2026: Two Weeks In

https://darrylbayliss.net/im-building-for-shipaton-2026-week-two/
2•darryl_bayliss•18m ago•1 comments

How Organizations Use AI: Evidence from ChatGPT [pdf]

https://cdn.openai.com/pdf/how-organizations-use-chatgpt.pdf
2•malshe•19m ago•0 comments

Romania shuts only nuclear plant as heat causes drop in Danube River level

https://www.bbc.com/news/articles/cqlxpq5q799o
5•tartoran•20m ago•1 comments

CheeseChain

https://www.csg.uzh.ch/en/research/CheeseChain.html
2•mooreds•21m ago•0 comments

Namecheap has been down for six hours

https://twitter.com/namecheapceo/status/2087931259389464611
3•janpmz•22m ago•0 comments

µ-Boosting Your CMake Productivity with Environment Variables

https://www.kdab.com/%C2%B5-boosting-your-cmake-productivity-with-environment-variables/
2•dalvrosa•23m ago•0 comments

Ask HN: How much money do you spend monthly on subscriptions for AI models?

3•marko-djuric•23m ago•5 comments

Swinth – By Sung J. Woo

https://www.goto10retro.com/p/the-history-of-swinth
2•rbanffy•24m ago•0 comments

Jeff Dean: The 1% Rule for Building in AI [video]

https://www.youtube.com/watch?v=CxXgV54KzpQ
3•Anon84•24m ago•0 comments

The Buzzword-Driven Development Manifesto (AI Edition)

https://github.com/gabert/buzzword-driven-development
2•gabert•24m ago•0 comments

Perseids Meteor Shower

https://science.nasa.gov/solar-system/meteors-meteorites/perseids/
3•wslh•24m ago•0 comments

Reviewing the evidence on worker retraining programs

https://www.anthropic.com/research/reviewing-the-evidence-on-worker-retraining-programs
2•neversaydie•26m ago•0 comments

Thoughts on "SIMD in Pure Python" – purplesyringa's blog

https://purplesyringa.moe/blog/thoughts-on-simd-in-pure-python/
2•rbanffy•27m ago•0 comments

Innovations of SolidJS 2

https://www.brenelz.com/posts/innovations-of-solid-2/
3•unlog•27m ago•0 comments

Iluvatar – classifies an app idea into CS terms before any tech gets named

https://github.com/RudVlad473/iluvatar
3•RudVlad473•28m ago•0 comments

Python Type System and Tooling Survey 2026

https://www.surveymonkey.com/r/python_typing
2•rbanffy•29m 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?