This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrant file for Modern IE (https://www.modern.ie/en-us) boxes | |
# This file is for Windown 7 running IE9, but there are other possibilities. | |
# NB: Vagrant wants to ssh into the VM, but these VMs don't have ssh. So, | |
# you'll get a timeout error message, which is safe to ignore. | |
# To use a different box, replace the config.vm.box_url with the URL and | |
# update the config.vm.box to some name you want to refer to it as. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
** Client side - /public/src/app.js | |
*/ | |
var myApp = { | |
// Collections | |
Collections: { | |
list: Backbone.Collection.extend() | |
}, | |
// Views |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Just copy and paste the lines below (all at once, it won't work line by line!) | |
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
function abort { | |
echo "$1" | |
exit 1 | |
} | |
set -e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="canvas"> | |
<div id="month1"></div> | |
<div id="month2"></div> | |
<div id="day1"></div> | |
<div id="day2"></div> | |
<div id="hour1"></div> | |
<div id="hour2"></div> | |
<div id="minute1"></div> | |
<div id="minute2"></div> | |
<div id="second1"></div> |