Back to Explore

k33bs/claude2x

HTML1 contributors
View on GitHub

Summary

A single-file animated landing page built for a time-limited Claude Pro promotion (March 13-28, 2026) that shows a live countdown indicating whether Claude's 2X usage limits are currently active or in peak hours. It uses WebGL shaders for an animated background and Canvas 2D for a 3D starfield effect — all in one HTML file with zero external dependencies. The promotion it tracks has already ended.

Great for

People interested in creative single-file WebGL/Canvas frontend experiments — specifically anyone who wants to study how to pack a WebGL Simplex noise shader, Canvas 2D starfield with z-projection, and timezone-aware logic into a zero-dependency HTML file.

Easy wins

  • +The promotion ended March 28, 2026 — the page is now permanently in 'promotion ended' state, so the most obvious contribution is repurposing it as a template for a future promotion or generalizing the time-window logic
  • +Add a favicon and Open Graph meta tags, which are almost certainly missing from the single HTML file
  • +Add a LICENSE file — there is none, making reuse legally ambiguous
  • +Write a contributing guide or at minimum document what the build.sh script requires (Node.js? html-minifier-terser globally installed?)

Red flags

  • !The promotion this entire project was built for ended on March 28, 2026 — the project's core utility is permanently expired
  • !No license — code cannot be legally reused or forked for derivative work without asking the author
  • !Build tooling (html-minifier-terser) referenced in README but no package.json or lockfile exists in the file tree, so `./build.sh` likely fails on a fresh clone without undocumented global installs
  • !0 stars, 0 forks, 1 contributor, 1 commit — no evidence of any community traction despite the README linking to Discord and companion sites
  • !Discord link points to 'absolutely.works' which is a suspicious/unrelated-looking domain for a Claude community

Code quality

rough

No source code samples were surfaced for review, so a deep code audit isn't possible. However, the structural signals are concerning: 1 commit total, no tests, no CI, no error handling story, and the entire application is a single unstructured HTML file. The README advertises WebGL Simplex noise and Canvas 2D z-projection, which if actually implemented would be reasonably sophisticated — but without seeing the code it's impossible to verify quality. The build.sh dependency on html-minifier-terser is undocumented (no package.json, no lockfile), making the build potentially fragile.

What makes it unique

This is a highly specific, time-boxed marketing/utility page for a single expired promotion. As a creative coding artifact (WebGL + Canvas in zero-dependency HTML) it could be an interesting template, but there's nothing architecturally novel here — similar zero-dependency animated landing pages are extremely common. The 'clanker.watch / clanker.report / clanker.win' ecosystem mentioned in the README is more interesting than this repo itself.

Scores

Collab
1
Activity
3

Barrier to entry

low

The entire project is one source file (src/index.html) plus a build script — there are no dependencies to install, no framework to learn, and no tests or CI to navigate.

Skills needed

HTML/CSSJavaScriptWebGL / GLSL shadersCanvas 2D APITimezone handling in JavaScript