A collection of simple, focused web applications for travelers.
Path: /timefinder/
A visual timezone comparison tool for planning meetings across multiple timezones.
Features:
- 24-hour timeline visualization for Sweden, Thailand, and Vietnam
- Working hours highlighted (9 AM - 5 PM)
- Current time indicator
- Toggle timezones on/off
- Mobile-friendly with synchronized scrolling
- One-click copy to clipboard
Tech: Pure HTML/CSS/JS, uses Intl.DateTimeFormat for timezone handling
Path: /vndxsek/
Live currency converter between Vietnamese Dong (VND) and Swedish Krona (SEK).
Features:
- Live exchange rate updates from exchangerate-api.com
- Instant conversion as you type (no button press needed)
- Bidirectional conversion with swap button
- Mobile-friendly design
- Works offline with fallback rates
- Auto-refreshes rates every 5 minutes
Tech: Pure HTML/CSS/JS, uses free exchangerate-api.com API
/
├── index.html # Landing page with links to all apps
├── timefinder/
│ └── index.html # TimeFinder app
├── vndxsek/
│ └── index.html # VND/SEK converter app
├── CLAUDE.md # Developer documentation
└── README.md # This file
No build process or dependencies required:
# Clone the repository
git clone https://github.com/yourusername/travelapp.git
cd travelapp
# Open in browser
open index.html
# Or use a local server
python -m http.server 8000
# Visit http://localhost:8000-
Enable GitHub Pages in repository settings:
- Go to Settings > Pages
- Source: Deploy from a branch
- Branch:
main, folder:/ (root) - Save
-
Your site will be available at:
https://yourusername.github.io/travelapp/ -
Access apps:
- Landing page:
https://yourusername.github.io/travelapp/ - TimeFinder:
https://yourusername.github.io/travelapp/timefinder/ - VND/SEK:
https://yourusername.github.io/travelapp/vndxsek/
- Landing page:
Each app should be self-contained in its own folder:
- Create a new folder:
mkdir newapp/ - Add
index.htmland any assets - Update root
index.htmlto link to the new app - Update this README with app description
All apps work on modern browsers:
- Chrome/Edge (90+)
- Firefox (88+)
- Safari (14+)
- Mobile browsers (iOS Safari, Chrome Mobile)
JavaScript must be enabled.
MIT License - feel free to use and modify for your needs.