frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Is It So Hard to Build a Transformer?

https://www.nytimes.com/interactive/2026/08/17/magazine/transformers-power-electric-grid.html
1•donohoe•21s ago•0 comments

MidWestWhips

http://www.midwestwhips.com/index.html
1•sickophancy•2m ago•0 comments

3D FPS Gaming on the Commodore PET [video]

https://www.youtube.com/watch?v=aTkArf0htMw
1•amichail•6m ago•0 comments

Pfizer, Valneva Lyme vaccine starts review in Europe

https://pharmaphorum.com/news/pfizer-valneva-lyme-vaccine-starts-review-europe
1•cubefox•7m ago•0 comments

Feel the burn: 90% of people heal faster by focusing on their pain – study

https://www.timesofisrael.com/feel-the-burn-90-of-people-heal-faster-by-focusing-on-their-pain-is...
2•calf•8m ago•1 comments

DOJ Official Flags Stanford for Scrutiny over Foreign Donations

https://www.bloomberg.com/news/articles/2026-08-17/doj-official-flags-stanford-for-scrutiny-over-...
1•petethomas•9m ago•0 comments

The bitter lesson is the observation in artificial intelligence

https://en.wikipedia.org/wiki/Bitter_lesson
1•doener•11m ago•0 comments

Multi-stage distributed query execution in ClickHouse Cloud

https://clickhouse.com/blog/multi-stage-distributed-query-execution-clickhouse-cloud
1•samaysharma•11m ago•0 comments

Bluesky draws its logo on screenshots

https://timmarinin.net/2026/bluesky-screenshots/
15•gavide•12m ago•1 comments

scScript for Linux

https://scapplications.com/
3•OptionOfT•15m ago•1 comments

Sailors on the USS Abraham Lincoln reportedly dealing with poor conditions

https://taskandpurpose.com/news/uss-abraham-lincoln-conditions-sailors/
3•bushwart•15m ago•0 comments

The Carrion-Eaters: What We Did to Jason Arday

https://samkriss.substack.com/p/the-carrion-eaters
1•jiblish•16m ago•0 comments

Nation's Largest Reservoirs Are Drying Up, Threatening Life in the Southwest

https://www.nytimes.com/2026/08/17/climate/lake-powell-record-low-colorado.html
10•johntfella•17m ago•4 comments

DEF Con 33 – Kill List: Hacking an Assassination Site on the Dark Web [video]

https://www.youtube.com/watch?v=cYZmRp90hss
1•Bender•21m ago•0 comments

Graphlib, a new way to create directional graphs

https://github.com/RANDOMFNP/Graphlib
1•RandomFNP•22m ago•1 comments

Twitch tested pausing ads until you return to the Twitch tab

https://www.reddit.com/r/Piracy/comments/1vr5dqt/twitch_tested_pausing_the_ad_when_you_switch_tabs/
4•Cider9986•22m ago•0 comments

Dirty Pictures – Full Documentary – Alexander Shulgin – Ann Shulgin [video]

https://www.youtube.com/watch?v=aZLkAMDO5dI
1•binyu•22m ago•0 comments

Agentic AI in a Smolbox

https://remyhax.xyz/posts/smolbox/
3•jerrythegerbil•25m ago•1 comments

Quake Shareware, a CD-ROM just a little too full

https://fabiensanglard.net/quake_shareware_cd/index.html
3•shdon•27m ago•0 comments

Try any open source model for free

https://www.tryingopen.com/
1•HussamAli•27m ago•6 comments

Virgin Galactic wants your help naming its new Delta class spaceship

https://arstechnica.com/space/2026/08/virgin-galactic-wants-your-help-naming-its-new-delta-class-...
1•ohjeez•28m ago•2 comments

Samuel – mimic your speech using Pink Trombone with a model

https://samuel.vvolhejn.com/
1•smusamashah•30m ago•1 comments

Theodore John Conrad

https://en.wikipedia.org/wiki/Theodore_John_Conrad
2•chistev•30m ago•0 comments

Fairphone 6 and PostmarketOS working main camera

https://catcrafts.net/posts/fairphone-6-postmarketos-working-main-camera
15•pizzaiolo•32m ago•0 comments

'Buy Now, Pay Later' Lenders Pitch Loans for Needs Like Electricity and Rent

https://www.nytimes.com/2026/08/17/business/buy-now-pay-later.html
6•apparent•33m ago•4 comments

What's behind the rise of teens spying for Russia?

https://mssv.net/2026/08/13/whats-behind-the-rise-of-teens-spying-for-russia/
1•programLyrique•35m ago•0 comments

Penny Pritzker Warns China's Rise in Research Rankings Is 'Not Good' for U.S.

https://www.thecrimson.com/article/2026/8/10/pritzker-china-research-rankings/
2•Alien1Being•37m ago•0 comments

Gitweb – Git web interface (web front end to Git repositories)

https://git-scm.com/docs/gitweb
1•nodar86•40m ago•0 comments

Tracking the BitTorrent Tracker Infrastructure

https://tracker.evilbit.de/
1•pawal•42m ago•1 comments

Control Charts Make AI Agents Cheaper, Less Necessary, and More Useful

https://newoldweb.com/control-charts-make-ai-agents-less-necessary-and-more-useful
1•netaustin•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?