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
/** | |
* PhantomJS script to capture/render screenshots of the slides of a Reveal.js powered slideshow. | |
*/ | |
var page = require('webpage').create(); | |
var args = require('system').args; | |
// Get url to render from command line. | |
var url; | |
if (args.length < 2) { |
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 | |
# | |
# The cron execution file is in /etc/cron.d | |
# | |
# The variable configuration file for rs-sysmon is in /etc/rs-sysmon | |
# | |
# All the variables defined here and several others can be defined in the variable | |
# configuration file. You can see more on these in /usr/share/doc/rs-sysmon-{version}/README | |
# define the default environment for rs-sysmon | |
# DO NOT change these values here, user-modifiable options can be tweaked through |
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 | |
# Author: Brice Burgess - bhb@iceburg.net | |
# multi_backup.sh -- backup to a local drive using rsync. | |
# Uses hard-link rotation to keep multiple backups. | |
# Directories to backup. Seperate with a space. Exclude trailing slash! | |
SOURCES="/home/gig" | |
# Directory to backup to. This is where your backup(s) will be stored. No spaces in names! | |
# :: NOTICE :: -> Make sure this directory is empty or contains ONLY backups created by |