Skip to content

Instantly share code, notes, and snippets.

@bartrail
bartrail / gist:4534893
Last active December 11, 2015 02:59
This is a plugin for the famous RoyalSlider by Dmitry Semenov. It adds HTML5 History API support for sliding through images or content. Basically it replaces the deeplinking plugin - which is already great and very much useful for most cases. But I needed named urls and more custom features, also Dimitry suggests to build an own plugin, well her…
(function($) {
/**
*
* This plugin is released under the MIT Licene (http://opensource.org/licenses/MIT)
*
* RoyalSlider HTML5 HistoryApi Plugin by Conrad Barthelmes
*
* @requires RoyalSlider http://dimsemenov.com/plugins/royal-slider/
* @requires History.js API https://github.com/balupton/History.js/
* - bundled jquery.history.js for html4+html5 support
@tsileo
tsileo / duptools.sh
Created July 19, 2012 22:08
A bash script to simplify backup management with duplicity (encrypted incremental backups on amazon S3)
#!/bin/bash
export AWS_ACCESS_KEY_ID=YOUR_ACCESS_KEY
export AWS_SECRET_ACCESS_KEY=YOUR_SECRET_ACCESS_KEY
export PASSPHRASE=YOU_PASSHRASE
# directories, space separated
SOURCE="/home/thomas/backup /home/thomas/bin /home/thomas/documents"
BUCKET=s3+http://mybucket
LOGFILE=/home/thomas/tmp/duplicity.log
# set email to receive a backup report
@CWSpear
CWSpear / ajaxify-html5.js
Created July 8, 2012 05:16 — forked from balupton/README.md
Ajaxify a Website with the HTML5 History API using History.js, jQuery and ScrollTo
// https://gist.github.com/3069522
;(function($, window, document, undefined) {
// Prepare our Variables
var History = window.History;
// Check to see if History.js is enabled for our Browser
if (!History.enabled) {
return false;
}