Fixing Timezone Issues in InfluxDB for IoT Time-Series Data

Fixing Timezone Issues in InfluxDB for IoT Time-Series Data Introduction If you’re building a platform that displays time-series data to users across different timezones, you’ve probably run into subtle but frustrating display bugs which was data appearing on the wrong day, graphs shifting after a certain hour, or timestamps being off by hours. We hit exactly these issues on our IoT device management platform, where devices send data to InfluxDB at regular intervals. Here’s what went wrong and how I fixed it. ...

March 21, 2026 · 4 min · Sourabh Kourav

Hello World

Welcome to my blog! I’m Sourabh Kourav and I write about Tech, Coding, Finance and Life. This is my first post. More coming soon!

March 15, 2026 · 1 min · Sourabh Kourav

Hugo Blog - Quick Command Reference

🚀 One-Time Setup # Create new Hugo site hugo new site sourabhkourav cd D:\dev\hugo-blog\sourabhkourav # Initialize Git git init # Add PaperMod theme git submodule add https://github.com/adityatelange/hugo-PaperMod themes/PaperMod # Connect to GitHub git remote add origin https://github.com/sourabhkourav/sourabhkourav-blog.git git branch -M main git push -u origin main 📝 Creating a New Post # Step 1 — Create post file hugo new posts/my-post-title.md # Step 2 — Open and edit the file # content/posts/my-post-title.md Post front matter template: ...

March 15, 2026 · 4 min · Sourabh Kourav