frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Beats 360

https://www.beatsbydre.com/company/press/beats-360
1•larrysalibra•22s ago•0 comments

Why It's So Hard to Measure the Depth of the Ocean

https://nautil.us/why-its-so-hard-to-measure-the-depth-of-the-ocean-1285163
1•Brajeshwar•51s ago•0 comments

Are LLMs still surprisingly bad at some simple tasks?

https://shkspr.mobi/blog/2026/09/are-llms-still-surprisingly-bad-at-some-simple-tasks/
1•Brajeshwar•1m ago•0 comments

OVH Outage (Degraded Performance)

https://status.us.ovhcloud.com/
1•pelzatessa•1m ago•0 comments

Pruning LLMs Like a Physicist: Block Removal as an Ising Optimization Problem

https://huggingface.co/blog/MultiverseComputingCAI/pruning-llms-like-a-physicist-block-removal-as-an
1•Brajeshwar•1m ago•0 comments

Continual learning on a 28B Learner 1.0 model, new architecture

https://learnerlabs.ai/demos/skills/ten-skills
1•Anurup•1m ago•1 comments

What's going on with millennium maths problems [video]

https://www.youtube.com/watch?v=c79PsbkHw4A
2•Balgair•2m ago•0 comments

Ralph

https://danluu.com/pl-tokens/#ralph
1•tosh•2m ago•0 comments

Porting Doom's game logic and renderer to SQL

https://cedardb.com/blog/sqldoom/
1•durner•2m ago•0 comments

Tech elites launch college alternative, raises $42M

https://nypost.com/2026/09/22/business/tech-elites-launch-college-alternative-for-next-generation...
1•pinewurst•3m ago•0 comments

Rpi – a composable LLM agent SDK in Rust

https://github.com/bigfish1913/pi-rust
1•bigfishhk•4m ago•0 comments

Editors of higher education journal coauthor editorial with fake references

https://retractionwatch.com/2026/09/08/editors-of-higher-education-journal-coauthor-editorial-wit...
1•leephillips•5m ago•0 comments

God Help Us, Let's Try to Learn About Mechanistic Interpretability Techniques

https://www.astralcodexten.com/p/god-help-us-lets-try-to-learn-about
1•theptip•6m ago•0 comments

Show HN: Vigil - Keeps your Mac awake while your coding agents work

https://vigilmac.com/
1•bullcitydev•6m ago•0 comments

Failures shown to be the harness, not the model (blog post)

https://blog.herlein.com/post/harness-not-model/
1•gherlein•6m ago•0 comments

Eiderdown: A Family Tradition – Trailer [video]

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

Open source tries to govern AI code

https://freenode.net/article/from-blanket-bans-to-agents-md-open-source-tries-to-govern-ai-code
1•KinetiNode•7m ago•0 comments

Explore page for early internet websites

https://straw.page/explore
1•mikeoxmells•7m ago•0 comments

Managers Are Catalysts

https://laughingmeme.org/2026/09/14/managers-are-catalysts.html
1•mooreds•9m ago•0 comments

Show HN: An API that tells you what people love about a product

https://bb-product-api-docs.web.app/
1•aditya314159•9m ago•0 comments

Tokens Too Cheap to Meter

https://jyn.dev/tokens-too-cheap-to-meter/
1•williamcotton•10m ago•0 comments

I deleted slow, expensive LLM turns in coding agents with Jev

https://tawfeks.github.io/decisionkit/
1•respectattentio•10m ago•0 comments

Should I use Cloudflare for my SaaS, its so annoying

1•hummingbirdmg•11m ago•0 comments

M&Ms and Skittles sorting machine

https://willempennings.nl/mms-and-skittles-sorting-machine/
1•metrofun•12m ago•0 comments

PayPal partners with Muse for agentic checkout

https://twitter.com/alexandr_wang/status/2102418455622508722
1•vertigoruntime•12m ago•0 comments

OpenCode Reloaded

https://anoma.ly/notes/opencode-reloaded/
1•doppp•13m ago•0 comments

Binomial Coefficient Coincidences

https://johncarlosbaez.wordpress.com/2026/09/20/binomial-coefficient-coincidences/
2•pb1729•13m ago•0 comments

Show HN: Beachball – A Beachball that lives in your macOS Dock

https://beachball.click
1•nchudleigh•13m ago•0 comments

Creator of Windows Task Manager has vibe coded a version that runs on Mac/Linux

https://www.engadget.com/2262039/vibe-coded-modern-task-manager-runs-on-mac-and-linux/
2•losgehts•14m ago•0 comments

I Asked 100 Agents to Hack Me

https://blog.sshh.io/p/i-asked-100-agents-to-hack-me
2•surprisetalk•14m 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?