frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How IPTV delivery works, end to end

https://iptvproviders.online/
1•cynthial485•34s ago•0 comments

South Korea's AI Bubble Just Popped [video]

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

I Tried to Make AI Writing Sound Human by Banning AI Words Through Logit_bias

https://www.vincentschmalbach.com/make-ai-writing-sound-human-logit-bias/
1•vincent_s•5m ago•0 comments

What's the Fewest People That Could Repopulate Earth? [video]

https://www.youtube.com/watch?v=1qIvFpcGkqc
1•gmays•5m ago•0 comments

South Korea's AI Bubble Just Popped – Now What? [video]

https://www.youtube.com/watch?v=qeXpUZTdvsI
2•Bender•7m ago•0 comments

Show HN: Free Image Merger – combine photos in-browser, nothing uploaded

https://freeimagemerger.com/
1•winsonaibuilder•8m ago•0 comments

Could the Most Radical Plane Design Since the Concorde Take on Boeing?

https://www.wsj.com/business/could-the-most-radical-plane-design-since-the-concorde-take-on-boein...
1•fortran77•9m ago•1 comments

Long-Term Data Storage for Home Users [video]

https://www.youtube.com/watch?v=ulh9z-JluBs
1•haloboy777•10m ago•0 comments

Leopold Aschenbrenner's Situational Awareness seeks capital raise after AI rout

https://www.ft.com/content/280336bf-dbed-405f-b38e-5af644a21549
2•fatcatsbestcats•11m ago•1 comments

Finding a job as a WordPress dev has become impossible

https://twitter.com/DenisBosire/status/2082523094506217765
2•jv22222•12m ago•0 comments

I built a Docker image factory in Go – 300 lines, no daemon, full OCI compliance

https://cheikhhseck.medium.com/building-a-docker-image-factory-from-scratch-in-go-e3c2e7127106
1•cheikhdev•14m ago•0 comments

Cursed Knowledge

https://www.jmduke.com/posts/cursed-knowledge.html
1•twapi•18m ago•0 comments

Surviving Dreams

https://www.survivingdreams.com/reinforcement-dreaming/
1•Aeroi•19m ago•1 comments

Why Standard Displays Often Fail in Specialized Products

https://duobond-display.com/news/custom-displays/506.html
1•Todorov•20m ago•0 comments

Matt Damon's Biceps in That 'Odyssey' Fight Scene? They're Hers

https://www.nytimes.com/2026/07/29/style/devyn-dalton-matt-damon-stuntwoman-odyssey.html
1•wslh•21m ago•1 comments

Interview with a Sysadmin in 2026 [Corporate]

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

"Gravity is worth asking about."

https://unsung.aresluna.org/gravity-is-worth-asking-about/
2•nozzlegear•23m ago•0 comments

I Gave Claude One Tool to Edit, Master and Transcribe All My Audio [video]

https://www.youtube.com/watch?v=xiMh3d97QtQ
1•DanHodgetts•24m ago•0 comments

Recursive Self Improvement for Coding Agents

https://cline.ghost.io/recursive-self-improvement-for-coding-agents/
1•jhack•25m ago•0 comments

Opus Dreams – chats that weren't saved

https://opusdreams.vercel.app/
1•NickNaraghi•31m ago•0 comments

The cost of memory: How organisms balance thinking and sensing

https://phys.org/news/2026-07-memory.html
1•the-mitr•34m ago•0 comments

It is past time to upgrade to post-quantum encryption

https://www.economist.com/leaders/2026/07/29/it-is-past-time-to-upgrade-to-post-quantum-encryption
1•AsyncBanana•34m ago•0 comments

Why the future is local app

https://getapps.cafe/blog/why-the-future-is-local-app
1•knlam•36m ago•0 comments

Studying AI in the Wild: Reflections from the AI Work Research Group (2025)

https://onlinelibrary.wiley.com/doi/10.1111/joms.70021
1•Tomte•44m ago•0 comments

Hiring game developers Triumph Arcade

https://www.triumphlabs.com/
1•elidenslow•45m ago•1 comments

Cross-Vendor Semantic Void Matrix: Zero-Byte Outputs in GPT/Claude/Gemini/Kimi

https://zenodo.org/records/21696066
1•rayanpal_•47m ago•0 comments

Building an S3 client with 20x more throughput and single core [video]

https://www.youtube.com/watch?v=-p-Xm7VEqSk
1•jorangreef•52m ago•0 comments

YKK Sells 10B Zippers a Year. How Did It Get So Big?

https://www.wsj.com/style/fashion/ykk-sells-10-billion-zippers-a-year-how-did-it-get-so-big-253a24a2
1•hbcondo714•52m ago•0 comments

Show HN: We quantized Qwen3.6-35B-A3B to 2-bit: 12.3 GB, 225 tok/s on a 4090

https://huggingface.co/EschaLabs/Qwen3.6-35B-A3B-Escha-W2
2•yzh•55m ago•2 comments

2.75-FUNdaMENTALs of Design(a.k.a. Precision Engineering Basics) by Alex Slocum [video]

https://www.youtube.com/watch?v=wgMq7yha9wU&list=PLksE8LDXGXl_MQHKr2DqhfDC64W7QHjxL
1•pillars•56m 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?