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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

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
Building a Timezone Converter Chrome Extension: Convert T...
TikitaTech · 2026-04-26 · via DEV Community
There are over 400 timezones. I built a Chrome extension that handles all of them on hover. Here's what I learned. Key Metrics Metric Value Installs 267 Timezones Supported 400+ User Action Required 1 hover Time Saved ∞ The Problem I saw many people in reddit forums, constantly tripping over timezone math. Every call, every deadline, every "let's sync at 3pm" - which 3pm? Mine or yours? There are over 400 when you factor in half-hour offsets, DST variations, and regional quirks. With remote work now the norm, this affects everyone from sales teams booking demos to recruiters scheduling interviews. So I set out to stop people googling "what time is 2pm PST in GMT+7" five times a day. The Solution Convert Time is a Chrome extension that does one thing: it finds times on the webpage you're looking at and tells you what they are in your timezone. Hover over a detected time, get a tooltip. Key Features Automatic detection - picks up formats like "2 PM PST", "14:00 CET", "5:30pm (GMT+7)", and ISO datetime strings, then underlines them inline Hover-to-convert - one hover gives you the conversion in a tooltip, no clicks needed Zero data collection - runs entirely in the browser, nothing leaves your machine Technical Challenges Timezone Parsing I didn't realise there were so many timezones. Building the parser to catch all the different ways people write times - "2pm EST", "14:00 CET", "5:30 PM Pacific", "2025-08-07 08:02:46 GMT+0000" - without false positives on random numbers was a proper challenge. I built this with Claude and got a massive amount done super quickly, but it's been an ongoing process of refinement. The Edge Cases Keep Coming I dogfood this extension daily, which means I keep finding things to fix. Some highlights from the changelog: EST vs EDT ambiguity - Americans say "EST" when they sometimes mean "EDT", so I had to treat it as a double timezone showing both UTC-5 and UTC-4 conversions unless explicitly stated False positives everywhere - +8 UTC was incorrectly matching 8 UTC . 5 with office was matching 5 wit . Had to add word boundary checks and context validation Editable text areas - The extension was interfering with text inputs and X/Threads post drafting. Had to add filtering to respect user input areas GMT+N offset parsing - 1:00 AM (GMT+7) was being parsed as GMT+0 because the regex wasn't capturing the numeric offset properly Every fix makes it more robust, but timezone handling is one of those problems that never really feels fully solved. The Results Growth was slow - it took about 5 months before I started getting any real traction. Now it's pulling in 1-2 installs a day organically through the Chrome Web Store. I think they're mainly coming from my reddit posts and google search. No reviews yet, but 267 total installs and growing steadily! What I Learned There are way more timezones than you think. 400+. And every single one of them has formatting quirks, DST rules, and abbreviation conflicts. I went in thinking this would be straightforward. It wasn't. Dogfooding is the best QA. using the extension myself every day across different sites and timezones surfaced bugs I never would have caught otherwise. False positives in random text, EST/EDT confusion - all found by just using the thing. Slow growth is still growth. five months of near-nothing, then steady 1-2 installs a day. If the problem is real and your solution works, people find it eventually. Try it out If you're tired of doing timezone math in your head, feel free to add it to your browser: Get Convert Time for Free on the Chrome Web Store What are your timezone horror stories?