Install Dropbox and python script, symlink python script to /usr/local/bin/dropbox and add to your path.
[Unit]
Description=Dropbox Service
After=network.target
[Service]
ExecStart=/bin/sh -c '/usr/local/bin/dropbox start'
/* episode nav*/ | |
.episode-nav-container{background:#2D2D2D;padding:15px 0;height:26px;} | |
.episode-nav-block{ | |
position:absolute; | |
left: 50%; | |
margin-left: -80px; | |
} | |
.episode-selector:hover{ |
/*jshint forin:true, noarg:true, noempty:true, eqeqeq:true, bitwise:true, undef:true, unused:true, curly:true, browser:true, jquery:true, indent:4, maxerr:50, maxparams:4, maxdepth:3, maxcomplexity:3, white: false */ | |
/*global window: true*/ | |
/* params: min=0-59 time offset, clock: node containing the clock, clockColor: color of the clock */ | |
window.canvasClock = function ( min, clock, clockColor ) { | |
// setup clock | |
var canvas = clock.getElementsByTagName('canvas')[0], | |
c2d = canvas.getContext('2d'), | |
mins = 0, | |
hour = 0, |
wget --random-wait -r -p -e robots=off -U mozilla http://www.example.com |
i = commit | |
cia = commit -a | |
cim = commit -m | |
ciam = commit -am | |
d = diff | |
dn = diff --no-ext-diff | |
dt = difftool | |
st = status | |
co = checkout | |
cp = cherry-pick |
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.14.2/TweenMax.min.js"></script> | |
<div class="odometer-digit-container" data-offset="1" data-time="0.25"> | |
<div class="odometer-digit-inner"> | |
<div class="odometer-scroll-container"> | |
<div class="odometer-scroll-digit"></div> | |
<div class="odometer-scroll-digit"></div> | |
<div class="odometer-scroll-digit"></div> |
.blur .content { | |
color: transparent; /* hide text */ | |
cursor: default; | |
text-shadow: 0 0 5px rgba(0,0,0,0.5); /* make text blurry */ | |
opacity: 0.75; /* fade text slightly */ | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
user-select: none; | |
} |
// just call this method after inserting the element | |
window.getComputedStyle(elem)[propName]; |
[Unit]
Description=Dropbox Service
After=network.target
[Service]
ExecStart=/bin/sh -c '/usr/local/bin/dropbox start'
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Checkbox fun', | |
checked: false, | |
actions: { | |
check: function() { | |
this.toggleProperty('checked'); | |
console.log('got check', this.get('checked')); |