I hereby claim:
- I am stephen2m on github.
- I am stephenmutua (https://keybase.io/stephenmutua) on keybase.
- I have a public key whose fingerprint is 128D B440 538A 08A6 5209 737C EA98 FFE0 A5F0 13E8
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# For use in a shell: | |
# Download this file to /usr/local/bin/git-pull-recursive, then chmod 755 it to install git-pull-recursive | |
find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \; |
# Requires use of Flask Login for the user tracking | |
# Implement by using AuditableMixin in your model class declarations | |
# e.g. class ImportantThing(AuditableMixin, Base): | |
import json | |
from flask_login import current_user | |
from sqlalchemy import event, inspect | |
from sqlalchemy.orm import class_mapper | |
from sqlalchemy.orm.attributes import get_history |
using System; | |
using System.Net; | |
using System.IO; | |
using System.IO.Compression; | |
using System.Collections.Generic; | |
using System.Text.RegularExpressions; | |
using System.Diagnostics; | |
using System.Text; | |
using System.Security.Cryptography; | |
using System.Security.Permissions; |
I hereby claim:
To claim this, I am signing this object:
Apple has released support for bootcamping Windows 10, but only on 2012 Macs and later. Despite not being supported. it is possible to install Windows 10 on earlier iMacs and it seems to run quite well.
IMPORTANT: Unplug all external and physical hard drives (where possible) that you won't be installing to to avoid accidentally erasing them. Also make note of which drives and partitions remain (e.g. System and Storage hard drives), and be super careful to not erase the wrong one.
RECOVERY: If you nuke your machine, restore your time machine backup. Instructions here.
#301 Redirects for .htaccess | |
#Redirect a single page: | |
Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
#Redirect an entire site: | |
Redirect 301 / http://www.domain.com/ | |
#Redirect an entire site to a sub folder | |
Redirect 301 / http://www.domain.com/subfolder/ |
#!/bin/bash | |
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
appify v3.0.1 for Mac OS X - http://mths.be/appify | |
Creates the simplest possible Mac app from a shell script. | |
Appify takes a shell script as its first argument: | |
`basename "$0"` my-script.sh |
server { | |
listen 80; | |
server_name mydomain.org; | |
root /var/www; | |
access_log off; | |
error_log /home/user/geonode/log/nginx_error.log; |
Python script to clone an existing VPC route table. Script output is a series of AWS CLI calls to create the route table and assign routes.
Update AWS_TARGET_REGION
and SOURCE_ROUTE_TABLE_ID
to suit.
Note: does not currently support NAT Gateway routes due to Boto 2 API limitation.
./clone-route-table.py