By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Bridgetime or How I’m Building a Visual Timezone Scheduler While Learning by Doing | HackerNoon
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > Computing > Bridgetime or How I’m Building a Visual Timezone Scheduler While Learning by Doing | HackerNoon
Computing

Bridgetime or How I’m Building a Visual Timezone Scheduler While Learning by Doing | HackerNoon

News Room
Last updated: 2025/08/01 at 7:02 AM
News Room Published 1 August 2025
Share
SHARE

Timezone Tetris: The Daily Grind Costing Remote Freelancers and Global Teams

Every day, distributed teams waste precious time and mental energy just trying to schedule one simple meeting:

“Can everyone do 2pm EST on Tuesday?”

“That’s 3am for me in Sydney…”

“Wait—is that before or after daylight saving?”

“How about 9am PST instead?”

If you’ve worked across time zones, you’ve lived this. What should be a 30-second decision turns into a multi-day thread of confusion, frustration, and timezone math.

So I started building a solution to scratch my own itch. It’s called BridgeTime—a visual timezone scheduler that shows overlapping availability at a glance.

It’s still a work in progress, and I’m learning (and messing up) by doing—every step on the way.


My North Star: Make Scheduling Feel Instant

I didn’t set out to build a startup or sell a product. I just wanted something better than this:

The Old Way (Painful)

  1. Email: “When can everyone meet?”

  2. Responses in inconsistent timezones

  3. Google searches or spreadsheet gymnastics

  4. Endless clarification: “Wait, you mean 9am your time or mine?”

  5. A suboptimal time for at least one person

    🧠 Mental drain: High

    ⏱️ Time wasted: 15–30 minutes

What I’m Building with BridgeTime

  1. Click to create a meeting session

  2. Share a link

  3. Teammates pick their location/timezone (no login, no email)

  4. A visual timeline shows the best overlaps instantly

    🧠 Mental drain: Near-zero

    ⏱️ Time spent: ~2 minutes

The goal isn’t just speed—it’s removing friction completely.


Tech Stack: Fast, Lightweight, Edge-First

I’m building BridgeTime with technologies I wanted to explore and that scale well globally:

Framework:  Next.js 15 (App Router + Edge Runtime)  
Hosting:    Cloudflare Pages  
Database:   Cloudflare D1 (SQLite)  
Cache:      Cloudflare KV  
Styling:    Tailwind CSS + CSS Custom Properties  

Why Cloudflare? Because it puts your code and data near users everywhere—important when working with time-based, location-specific data.

Why Next.js 15? I wanted to learn React Server Components and build an app that feels fast without overengineering.


Making Timezone Search Human Friendly

Users don’t search for America/New_York. They search for:

  • “New York”
  • “EST”
  • “Eastern Time”
  • “NYC”
  • “US East Coast”

So I built a layered search engine with multiple strategies:

const strategies = [
  searchByCity,
  searchByCountry,
  searchByAbbreviation,
  searchByAlias,
  searchByRegion
];

for (const strategy of strategies) {
  const matches = await strategy(query);
  // merge, deduplicate, rank
}

It’s still evolving—but “NYC”, “Brazil”, and “JFK” all return sensible results. That’s the goal.


Real-Time UI (Without WebSockets)

I thought I’d need WebSockets for real-time collaboration. Turns out, simple polling does the job just fine:

useEffect(() => {
  const interval = setInterval(async () => {
    const data = await fetch(`/api/session/${sessionId}`).then(r => r.json());
    if (data.lastModified > lastKnownUpdate) {
      setParticipants(data.participants);
    }
  }, 5000);

  return () => clearInterval(interval);
}, [sessionId]);

Why it works:

  • No connection management
  • Fully compatible with Cloudflare Pages
  • Low battery impact
  • Easy to debug

Sometimes simplicity wins.


The Visual Timeline: The Core Feature

BridgeTime’s timeline is the centerpiece. It maps participants’ working hours and highlights overlaps visually:

<div 
  className={`timeline-cell ${isWorkHour ? 'available' : 'unavailable'} ${isSelected ? 'selected' : ''}`}
  style={{
    backgroundColor: isWorkHour ? '#22c55e' : '#ef4444',
    opacity: isSelected ? 1 : 0.7
  }}
/>

The Mobile Challenge

Fitting a 24-hour timeline on small screens was painful. So I built a “smart window” that auto-selects the most relevant 8 hours for mobile users:

if (isMobile) {
  const bestWindow = findOptimalWindow(calculateOverlaps(participants), 8);
  return bestWindow;
}

Still refining it, but the experience feels far more focused and usable.


Caching for Global Speed

To make timezone search blazing fast, I precompute and cache lookups during the build step:

npm run build:cache
# Generates:
# trie-cache.json
# sorted-cache.json
# bloom-cache.json

These static structures are loaded into Cloudflare KV, so search is near-instant anywhere in the world.

I also use native CSS variables for theming—no runtime CSS overhead:

:root {
  --bt-bg: #f0f9ff;
  --bt-text: #1e293b;
  --bt-accent: #2563eb;
}

What I’ve Learned (So Far)

  1. Start with mobile-first for real
  2. Polling beats WebSockets sometimes
  3. Users don’t care about your architecture

Where It Stands

BridgeTime is fully anonymous and live today. No logins. No email. Just intuitive scheduling flows built for remote teams:

1. World Clock View – Start With Timezones

Add clocks for team members, clients, or regions. Label each with a name.Select participants → create a session → choose duration → get best overlaps.

2. Plan a Meeting – Start With a Date

Have a date in mind? Set it, share a session link, and collect time availability from invitees.Once responses are in, confirm and choose the best time visually.


Roadmap: What’s Next

TBD 🙂

I am actually using, exploring and paying attention to feedbacks.

Things might change, I may add accounts so you can have your clocks set ready from any device…

I am also aware the UI is still strange, my wife is figuring out colors and icons.

I will write another article soon presenting the next step.


Try It. Break It. Tell me what sucks 🙂

🟢 https://bridgetime.cc


What’s Coming Next (On HackerNoon)

  • “How I Built a 2ms Timezone Search Engine”
  • “Why I Ditched WebSockets for Simple Polling”
  • …or something else, let’s see what comes next 😁

BridgeTime is my sandbox. If you’ve ever screamed internally at ‘2pm EST?’, you’re not alone. 🙂

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article Julia Whelan has narrated 600 audiobooks and counting. So why isn’t she paid like it?
Next Article Apple Is Open to Buying Companies to Get Ahead in the AI Race
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

The Samsung 57-inch Odyssey Neo G9 gaming monitor is $800 off at Amazon
News
Why The Atari Cosmos Is So Rare (And What It’s Worth Today) – BGR
News
The MacRumors Show: iPhone 17’s ‘Awe Dropping’ Accessories
News
How I tricked my M3 MacBook into playing nice with multiple monitors
News

You Might also Like

Computing

My first-gen iPad Pro is nearly 10 years old, but I’m still keeping it

7 Min Read
Computing

I didn’t realize my smart TV could do this—until I found these apps

7 Min Read
Computing

I can’t believe how much easier my PC is to manage with these commands

9 Min Read
Computing

These shows have endings so good they’re worth the binge

7 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?