frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Edalex Celebrates Double Recognition at 2026 EdTech Cool Tool Awards

https://www.edalex.com/news/edalex-rich-skill-descriptor-rsd-library-openrsd-integrated-new-muzzy...
1•edalex•1m ago•1 comments

Codex overtakes Claude Code to become #1 AI coding tool (April 2026)

https://ai-coding.info/en
1•kotauchisunsun•2m ago•0 comments

I wrote a WebAssembly plugin system for my Wayland compositor

https://www.youtube.com/watch?v=Kohl9wy3S7g
1•matthewkosarek•3m ago•0 comments

0x021 – Durable Workflows

https://unzip.dev/0x021-durable-workflows/
1•vismit2000•4m ago•0 comments

Ask HN: Deterministic codebase maps vs. LLM inferred knowledge graphs?

1•IxInfra•11m ago•1 comments

Ask HN: Why don't frontier AI model providers continuously improve their models?

1•jballanc•11m ago•0 comments

The brazen rightwing plan to conquer American schools

https://www.theguardian.com/education/ng-interactive/2026/apr/08/prageru-university-conservatism
5•jethronethro•15m ago•0 comments

Show HN: Ptoe.org

https://periodictableofelements.org/
1•nadermx•17m ago•0 comments

Giving LLMs a Formal Reasoning Engine for Code Analysis

https://yogthos.net/posts/2026-04-08-neurosymbolic-mcp.html
1•zdw•17m ago•0 comments

ServerCrate – Zero-knowledge Restic backup hosting, from $15/mo

https://servercrate.net/
1•rambooon•19m ago•0 comments

New PC Gaming Handheld Canceled Due to Soaring Storage Prices

https://kotaku.com/new-pc-gaming-handheld-would-have-to-cost-4000-because-of-storage-prices-so-it...
1•PaulHoule•20m ago•0 comments

Trump administration orders dismantling of the U.S. Forest Service

https://www.hatchmag.com/articles/trump-administration-orders-dismantling-us-forest-service/7716263
29•dxs•21m ago•2 comments

Show HN: A simple no bloat character checker

https://charchec.netlify.app/
1•xppexx•22m ago•0 comments

Bevy game development tutorials and in-depth resources

https://taintedcoders.com/
1•GenericCanadian•24m ago•0 comments

Newly created Polymarket accounts win big on well-timed Iran ceasefire bets

https://www.theguardian.com/business/2026/apr/08/polymarket-trump-us-iran-ceasefire
8•mitchbob•27m ago•0 comments

Japan lessens privacy laws to become "The easiest county to develop AI in"

https://www.theregister.com/2026/04/08/japan_privacy_law_changes_ai/
3•Muhammad523•27m ago•0 comments

You Can Just Print an Air Purifier

https://aftermath.site/3d-printing-air-purifier-corsi-rosenthal/
1•zdw•28m ago•0 comments

Show HN: BakaBags, a tsundere AI that roasts yours Solana wallets

https://bakabags.xyz
1•massanishi•29m ago•0 comments

Layoff Thinking

https://blogs.newardassociates.com/blog/2026/layoff-thinking.html
1•zdw•30m ago•0 comments

Interview: EmDash, a CMS built on Astro with sandboxed plugins

https://www.youtube.com/watch?v=K8QvgXe9z-A
1•emot•32m ago•0 comments

Show HN: LadderRank: Rank anything with ELO ratings

https://ladderrank.app/ladder/77DTlDNxd2dsbmAAMO7o8/vote
1•douglaswlance•35m ago•0 comments

Stanley Jordan's Two-Handed Technique [video]

https://www.youtube.com/watch?v=ldT6yTralvk
1•sbuttgereit•36m ago•0 comments

Account Verification for Windows Hardware Program Begins October 16, 2025

https://techcommunity.microsoft.com/blog/hardware-dev-center/action-required-account-verification...
2•TiredOfLife•39m ago•0 comments

Ask HN: Advice for college grads starting careers in the AI era?

1•LostMyLogin•41m ago•2 comments

Little Snitch for Linux – Because Nothing Else Came Close

https://obdev.at/blog/little-snitch-for-linux/
3•Cider9986•43m ago•1 comments

Store Your Taxes in Git

https://blog.foks.pub/posts/store-your-taxes-in-git/
2•todsacerdoti•50m ago•0 comments

Claude Glass (Or Black Mirror)

https://en.wikipedia.org/wiki/Claude_glass
3•sram1337•51m ago•0 comments

Building a JavaScript runtime in one month

https://themackabu.dev/blog/js-in-one-month
1•franciscop•52m ago•0 comments

LittleSnitch for Linux

https://obdev.at/products/littlesnitch-linux/index.html
58•pluc•56m ago•23 comments

Does Baby Have Hat

https://www.jeremykun.com/2025/04/01/does-baby-have-hat/
1•jfil•58m ago•0 comments
Open in hackernews

Show HN: Clipper – The World's Fastest Container Registry

https://clipper.dev
1•a_t48•2h ago
Hey HN!

I've built clipper.dev - the fastest container repository in the world. (Big claim, I know.) It deduplicates at a file/chunk level, rather than at the layer level.

I get around 10-20% faster pulls than docker (when using containerd for both) for fresh pulls. For some workflows, I see 80-90% faster patch pulls (think v0.17.5 -> 0.17.6).

Here's a best case scenario for me (and worst case for dockerhub)

    docker> time sudo nerdctl pull ollama/ollama:0.17.5
    docker.io/ollama/ollama:0.17.5:
    elapsed: 244.1s total:  2.9 Gi (12.3 MiB/s)                                      

    real 4m4.172s
    user 0m0.115s
    sys 0m0.227s
    docker> time sudo nerdctl pull ollama/ollama:0.17.6
    docker.io/ollama/ollama:0.17.6:
    elapsed: 234.9s total:  2.8 Gi (12.3 MiB/s)                                      

    real 3m54.965s
    user 0m0.051s
    sys 0m0.275s
---

    clipper> time sudo clipper pull clipper/ollama:0.17.5
    using containerd runtime at /run/containerd/containerd.sock
    fetching manifest clipper.dev/clipper/ollama:0.17.5 ...
    image created: clipper.dev/clipper/ollama:0.17.5
    fetched 46 chunks (2.2 GB, 11.7 MB/s), took 3m16.134s
    done — clipper.dev/clipper/ollama:0.17.5

    real 3m17.532s
    user 0m0.006s
    sys 0m0.012s

    clipper> time sudo clipper pull clipper/ollama:0.17.6
    using containerd runtime at /run/containerd/containerd.sock
    fetching manifest clipper.dev/clipper/ollama:0.17.6 ...
    image created: clipper.dev/clipper/ollama:0.17.6
    fetched 6 chunks (599.2 MB, 7.7 MB/s), took 1m17.48s
    done — clipper.dev/clipper/ollama:0.17.6

    real 1m19.061s
    user 0m0.005s
    sys 0m0.016s
The first two layers of 0.17.6 are shared with 0.17.5, but everything else has to be transported again with docker, but not with clipper. The exact speedup depends on how fast my wifi is feeling at the time, but I'm pulling 1.5 GB less than dockerhub can do. This is _huge_ for robotics workflows or anyone else pulling docker images on poor connections. (This is not even as fast as it could be - there's other optimizations like chunking within files or using BytePort that could make this go even faster).

I built this because at multiple companies I've been at, pulling new images for updates has been...very painful. Robotics Dockerfiles tend to have a lot of dependencies stuffed into a small amount of layers. Adding one new dependency means shipping the bytes for every other dependency, even with perfect pinning. Additionally, the Dockerfiles are oftentimes...not well written, compounding the problem. So I decided to fix the tool to fit the user, rather than the inverse.

There's some other side benefits to using clipper: - Moving a file or changing permissions is "free": another layer already has the bytes - The on-disk structure lends itself much better to P2P device updates than docker's layout

I do intend this to be a commercial product, but pricing is still up in the air. I'm currently targeting robotics companies as they feel the most pain here. There's some other possible fields that I'm interested in that might find use in this: IoT, edge AI, space datacenters/etc, developmer tooling.

Please give it a try. If you don't want to upload an image, these repos should be publically pullable once you register an account:

    clipper/ubuntu: 20.04, 22.04, 24.04
    clipper/ollama: 0.17.5, 0.17.6
    clipper/python: 3.13, 3.14