Skip to content

Instantly share code, notes, and snippets.

View stephen2m's full-sized avatar

Stephen Mutua stephen2m

View GitHub Profile

Keybase proof

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:

@stephen2m
stephen2m / git-pull-recursive.sh
Created March 29, 2021 20:03 — forked from devp619/git-pull-recursive.sh
Lots of repos? Try "git-pull-recursive" to run "git pull" on all subfolders with a .git folder inside.Thanks to http://snipplr.com/view/62314/perform-git-pull-on-subdirectory-recursive/
# 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" \;
@stephen2m
stephen2m / audit_mixin.py
Created March 14, 2020 07:42 — forked from ngse/audit_mixin.py
Rough attempt at implementing an audit log against Flask/Flask Login/SQLAlchemy models
# 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
@stephen2m
stephen2m / AutoUpdateExampleHelper.cs
Created January 30, 2020 20:14 — forked from sbrl/AutoUpdateExampleHelper.cs
A simple automatic update system, written in C# for a blog post.
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;
@stephen2m
stephen2m / keybase.md
Created October 14, 2017 12:42
keybase-proof

Keybase proof

I hereby claim:

  • I am stephen2m on github.
  • I am stephenmue (https://keybase.io/stephenmue) on keybase.
  • I have a public key whose fingerprint is B16C E18D 66EE 19E6 20FB 8C26 9568 AB08 CE1E EB7D

To claim this, I am signing this object:

@stephen2m
stephen2m / README.md
Created June 18, 2017 06:24
How to Bootcamp / Dual Boot Windows 10 on a mid-2011 iMac using USB

How to Install / Bootcamp Windows 10 on a mid-2011 iMac using USB

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.

Requirements

@stephen2m
stephen2m / .htaccess
Created June 16, 2017 14:01 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#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/
@stephen2m
stephen2m / appify
Created January 29, 2017 09:36 — forked from mathiasbynens/appify
appify — create the simplest possible Mac app from a shell script
#!/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
@stephen2m
stephen2m / Nginx-domain-conf
Created July 18, 2016 09:37 — forked from cspanring/Nginx-domain-conf
Example Nginx and Gunicorn configurations for GeoNode deployment
server {
listen 80;
server_name mydomain.org;
root /var/www;
access_log off;
error_log /home/user/geonode/log/nginx_error.log;
@stephen2m
stephen2m / README.md
Created May 19, 2016 05:52 — forked from magnetikonline/README.md
AWS clone VPC route table and routes.

AWS clone VPC route table and routes

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.

Example

./clone-route-table.py