Skip to content

Instantly share code, notes, and snippets.

@nathanieltubb
nathanieltubb / .bash_profile
Last active March 27, 2018 01:03 — forked from yosukehasumi/.bash_profile
My Bash Profile
source ~/.profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Credit: This profile is forked from Yosuke Hasumi's bash profile example:
# https://gist.github.com/yosukehasumi/fb5c97f661ee3d4e1b41049707606fb5
#
# Sections:
@nathanieltubb
nathanieltubb / rare.sh
Created July 13, 2017 17:29 — forked from yosukehasumi/rare.sh
Create a new wordpress boilerplate theme
#!/usr/bin/env bash
VERSION=2.0.13;
# Download this file, rename it to "rare", and place it in your bin directory (for mac it'll be something like usr/local/bin/rare).
# For OSX you could try this CURL command to install it:
# curl https://gist.githubusercontent.com/yosukehasumi/d0c905da78229122e7c1bb34a0fc92a7/raw/rare.sh > /usr/local/bin/rare;
# sudo chmod 755 /usr/local/bin/rare;
#
# To use this script, cd into your project directory and in command line type:
@nathanieltubb
nathanieltubb / wp-health.php
Last active February 28, 2017 23:03
Medium Rare WP Website Health Check
<?php
$items = array(
array(
'label' => 'Core',
'name' => 'core',
'items' => array(
'Wordpress is up to date',
)
),
array(