LED-style situation room clock formatted for iPads. Live example
Forked from schacon/situation-clock, which states:
If you want to build a Situation Room, you'll need some sweet red clocks in the walls... something like this:
- That red/green, LED-style text you'd expect
- Displays current time and location name
- It's a webpage, so it works in your tablet's browser
- Hosted on GitHub Pages
- EPOCH/unix time format support
- Full, native timezone support
- Ability to have multiple clocks per iPad
- Clock(s) dynamically resize to fill screen
- App-ified so it can be saved to the iOS home screen
- Jekyllification
- CoffeeScript and Bower ALL THE THINGS
- Tooling for easily running locally
- Get an iPad, and fire up Safari
- Visit ben.balter.com/situation-clock in Safari, or fork this repository and open the GitHub Pages published version of your fork
- Click the share button
- Clock add to home screen
- Give your situation clock a name
- Open the newly created shortcut
- (optional) use Velcro or similar to mount to the wall
Note: You can also pass a URL parameter of location
, e.g., ?location="ZULU"
to set a clock via the URL. The clock will default to the system timezone.
Clocks are stored in the YAML frontmatter of index.html
. To add/modify a clock, simply follow the format of "label": timezone
. Example:
---
clocks:
"Washington DC": America/New_York
"San Francisco": America/Los_Angeles
"EPOCH": EPOCH
---
- Establish your development environment by running
script/bootstrap
- Spin up a local version by running
script/server
- Visit localhost:4000 in your favorite browser
- Fork the project
- Create a new, descriptively named feature branch
- Make your changes
- Submit a pull request