This file contains 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
<?php | |
/** | |
* Plugin Name: Replace WordPress Dashboard | |
* Description: Replaces the default WordPress dashboard with a custom one. | |
* Author: Micah Wood | |
* Author URI: http://micahwood.me | |
* Version: 0.1 | |
* License: GPL3 | |
*/ |
This file contains 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
<?php | |
class User { | |
const ROLE_GUEST = 2; | |
const ROLE_SHOPPER = 4; | |
const ROLE_ADMIN = 8; | |
const ROLE_SUPER = 16; | |
} | |
function has_role($role, $roles) { | |
return $role & $roles; |
This file contains 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
<?php | |
list($script, $uri, $n) = $argv; | |
$s = microtime(true); | |
function dispatch($uri, $routes) { | |
$path = explode('/', trim($uri, '/')); | |
$c = count($path); | |
foreach ($routes as $i => $route) { | |
// $r = explode('/', $route[0][0]); almost no diff event with explode on / if not using an array | |
$r = $route[0]; |
This file contains 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
# my commands | |
alias ll="ls -alh" | |
# include .bashrc if it exists | |
if [ -f $HOME/Dropbox/Dev/Profiles/mac_bash ]; then | |
. $HOME/Dropbox/Dev/Profiles/mac_bash | |
fi | |
# include .bashrc if it exists | |
if [ -f $HOME/Dropbox/Dev/Profiles/common_bash ]; then |
This file contains 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
<?php | |
/** | |
* Autoload PSR4 Classes | |
* | |
* @param array $map map auto loaders, initializer, and class map to avoid file exists checks | |
* @param string|null $cache_prefix cache the init files as one file. | |
*/ | |
function autoload_psr4(array &$map = [], ?string $cache_prefix = null) { | |
if(isset($map['init']) && empty($cache_prefix) ) { |
This file contains 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 | |
URL="$1" | |
MAX_RUNS="$2" | |
SUM_TIME="0" | |
i="0" | |
while [ $i -lt $MAX_RUNS ]; do | |
TIME=`curl $URL -o /dev/null -s -w %{time_total}` | |
TIME="${TIME/,/.}" |
This file contains 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
function spaceCard(str) { | |
var ret = []; | |
var i; | |
var len; | |
str = str.replace(/\s|\D+/gi, ''); | |
if( str.match(/^3[47]/) ) { | |
// american express only | |
var sec = 4; |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.provider "virtualbox" | |
config.vm.provision :shell, path: "bootstrap.sh" | |
config.vm.provider :virtualbox do |vb| |
This file contains 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 | |
# | |
# Install WordPress on a Ubuntu 13+ VPS | |
# | |
# run as root | |
if [[ $UID != 0 ]]; then | |
echo "Please run this script with sudo:" | |
echo "sudo $0 $*" | |
exit 1 |
This file contains 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
#!/usr/bin/env bash | |
apt-get update | |
apt-get -y upgrade | |
apt-get install -y debconf-utils | |
export DEBIAN_FRONTEND="noninteractive" | |
# tools | |
apt-get -y install git |
NewerOlder