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/bash | |
# Thanks goes to @pete-otaqui for the initial gist: | |
# https://gist.github.com/pete-otaqui/4188238 | |
# | |
# Original version modified by Marek Suscak | |
# | |
# works with a file called VERSION in the current directory, | |
# the contents of which should be a semantic version number | |
# such as "1.2.3" or even "1.2.3-beta+001.ab" |
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 | |
#force time set with NTP server | |
clear | |
echo Setting the time and date. Your sudo password may be required below... | |
echo | |
sudo ntpdate -bu pool.ntp.org | |
echo | |
echo The time and date are now set to `date` | |
echo |
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
PyRSS2Gen==1.0.0 | |
Twisted==12.2.0 | |
altgraph==0.10.1 | |
argparse==1.3.0 | |
bdist-mpkg==0.4.4 | |
bonjour-py==0.3 | |
geopy==1.9.0 | |
lightblue==0.4 | |
macholib==1.5 | |
matplotlib==1.1.1 |
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
@font-face { | |
font-family: 'HelveticaNeue'; | |
src: url('../content/fonts/HelveticaNeue-Bold.woff') format('woff'), | |
url('../content/fonts/HelveticaNeue-Bold.ttf') format('truetype'); | |
font-weight: 800; | |
} | |
@font-face { | |
font-family: 'HelveticaNeue'; | |
src: url('../content/fonts/HelveticaNeue.woff') format('woff'), |
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
@import "compass/css3/animation"; | |
@import "compass/css3/transform"; | |
$waveWidth:998px; | |
@include keyframes(waves){ | |
0%{ | |
left:0; | |
} | |
100%{ |
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
// called once, to initialize | |
createBubbles: function(){ | |
var self = this, | |
el = this.element, | |
width = $(window).width(), | |
height = $(window).height(), | |
canvas = document.createElement('canvas'); | |
el.style.width = canvas.width = width; | |
el.style.height = canvas.height = height; |
NewerOlder