This file contains hidden or 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 | |
# This script installs puppet on most linux distros. | |
# To run, simply execute as root. | |
# $ install_puppet.sh [ puppet_version ] | |
# e.g. $ install_puppet.sh 3.4.1 | |
# Successfully run on Debian 6/7, Ubuntu 12.04 LTS and 14.04 LTS, Fedora 20, and arch. | |
# Not tested on OS X, Solaris, AIX, etc, simply because I lack test environments. | |
# https://gist.github.com/danieldreier/8172bee4467127a992d8 |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script> | |
var db; | |
// https://developer.mozilla.org/en/IndexedDB/Using_IndexedDB | |
var indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB || window.msIndexedDB; |