I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
//http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript | |
Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); |
Key | Mac | Windows | Linux | Notes | |
---|---|---|---|---|---|
rbKeyUp | 126 | 26 | 103 | ||
rbKeyDown | 125 | 28 | 108 | ||
rbKeyLeft | 123 | 25 | 105 | ||
rbKeyRight | 124 | 27 | 106 | ||
rbKeyBackspace | 117 | 8 | 14 | ||
rbKeyEnter | 76 | * | 28 | ||
rbKeyHome | 115 | 36 | 102 | ||
rbKeyEnd | 119 | 35 | 107 | ||
rbKeyPageDown | 121 | 34 | 109 |
#!/bin/bash | |
BACKUP_ROOT="$HOME/redmine_backup" | |
REDMINE_ROOT="/var/www/redmine" | |
BACKUP_FILENAME='backup_redmine_'`date +%Y%m%d`'.tar.bz2' | |
DB_DUMP_FILENAME='db_redmine_'`date +%Y%m%d`'.sqlc' | |
if [ ! -d "$BACKUP_ROOT" ]; then | |
mkdir $BACKUP_ROOT | |
fi |
<?php | |
require __DIR__ .'/silex.phar'; | |
use Symfony\Component\HttpFoundation\Response; | |
use Symfony\Component\HttpFoundation\Cookie; | |
$app = new Silex\Application(); | |
$app['debug'] = true; |
#! /usr/bin/env bash | |
#clone the repo | |
git clone -q "${1}" "clones/${2}" | |
cd "clones/${2}" | |
#update the submodules (how do we handle errors here?) | |
git submodule --quiet update --init --recursive |