惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
J
Java Code Geeks
小众软件
小众软件
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
量子位
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Week Number Calculator with 18000+ Static Pages...
Shanwen Zhao · 2026-06-21 · via DEV Community

Shanwen Zhao

A few months ago I realized something every time I needed to know what week it was I had to Google it. The results were cluttered with ads and outdated information. So I decided to build weeknumber.cc —— a clean fast free week number calculator.

What does it do

It tells you the current week number. But it does a LOT more

  • Date Week conversion —— Any date to week number any week number to dates
  • Full year calendars —— 2015 through 2035 every year visualized
  • 15 languages —— Chinese English Japanese Korean Spanish French German Portuguese Russian Arabic Hindi Thai Vietnamese Indonesian Turkish
  • Free JSON API —— No API key CORS enabled
  • Embeddable widget —— One line of HTML to add week numbers to any website
  • Chrome Extension —— Quick popup in your browser
  • Viral tools —— Birth week calculator countdown timer life-in-weeks visualizer comparison tool quiz

The Numbers

  • 18000+ static HTML pages —— Every week of every year every date every month every language plus history pages
  • 15 languages with proper hreflang tags
  • 18623 URLs in the sitemap
  • Zero frameworks —— Pure HTML/CSS/JS
  • 0 hosting cost —— All on Cloudflare Pages free tier

The API my favorite part

Developers love this

bash

Get current week

curl https//www.weeknumber.cc/api/week

Get week for a date

curl https//www.weeknumber.cc/api/weekdate=2026-12-25

Get dates for a specific week

curl https//www.weeknumber.cc/api/weekyear=2026&week=1

Returns clean JSON
json

"week" 25
"year" 2026
"startdate" "2026-06-15"
"enddate" "2026-06-21"
"system" "ISO 8601"

No API key. No rate limits. Just works.

The Widget

Add this to any website

html
div class="wn-widget" data-lang="zh"/div
script src="https//www.weeknumber.cc/widget.js" async/script

That's it. It renders a beautiful week number badge in any of 15 languages.

How I built it

The entire site is static HTML. I use a build script that generates every page programmatically —— every week of every year every date conversion every language variant. The result 18000+ pages that load instantly from Cloudflare's global edge network.

The API runs on Cloudflare Pages Functions their edge function platform. The OG image generation and widget are also serverless edge functions.

Why it's working

  1. Programmatic SEO —— 18000+ pages each targeting specific long-tail keywords like "week 25 2026" "what week is June 15" "25 2026"
  2. Hreflang tags —— Every page properly signals language variants to search engines
  3. Structured data —— FAQ and BreadcrumbList schema on every page
  4. 100% Core Web Vitals —— Pure HTML zero JavaScript on main pages loads in milliseconds
  5. Free backlinks —— The API and widget naturally attract developer links

Try it

Visit weeknumber.cchttps//www.weeknumber.cc

The API widget and all tools are completely free. I'd love to hear your feedback