Skip to content

Instantly share code, notes, and snippets.

View justinrainbow's full-sized avatar

Justin Rainbow justinrainbow

View GitHub Profile
### Keybase proof
I hereby claim:
* I am justinrainbow on github.
* I am justinrainbow (https://keybase.io/justinrainbow) on keybase.
* I have a public key ASAyl1QWmXnM04A-VtPfv2nMTgJeTj1pSVMB-KY1fUsK-Ao
To claim this, I am signing this object:
@justinrainbow
justinrainbow / spec-builder.php
Created February 20, 2014 15:52
Create PhpSpec base specs from existing code
<?php
require_once 'vendor/autoload.php';
$class = $argv[1];
$class = str_replace('/', '\\', $class);
$refl = new ReflectionClass($class);
#!/usr/sbin/dtrace -s
/*
* mysql_db_slow.d Trace queries slower than specified ns.
*
* USAGE: ./mysql_db_slow.d min_ns
*/
#pragma D option quiet
#pragma D option defaultargs
#pragma D option switchrate=10hz
{
"bold_folder_labels": true,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
"dump.rdb"
],
"font_size": 12.0,
"highlight_modified_tabs": true,
@justinrainbow
justinrainbow / gist:7663199
Created November 26, 2013 18:17
clean out old screen sessions
ls -t /tmp/uscreens/S-$USER | awk -F '.' 'NR > 1 { print $1 }' | xargs -I {} screen -S {} -X quit
@justinrainbow
justinrainbow / .gitconfig
Created September 6, 2013 15:19
My ~/.gitconfig
[apply]
whitespace = nowarn
[alias]
co = checkout
stage = add
unstage = reset HEAD
plog = log --pretty=format:\"%h %Cblue%cr%Creset %cn %Cgreen%s%Creset\"
st = status
ci = commit
@justinrainbow
justinrainbow / gist:4627684
Created January 24, 2013 21:00
my sublime text 2 config
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/Monokai Soda.tmTheme",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
"dump.rdb"
],
"font_size": 12.0,
@justinrainbow
justinrainbow / install-rabbitmq.sh
Last active May 20, 2017 23:15
Simple bootstrap script for getting RabbitMQ w/ the Stomp plugin and web management plugin running on a SmartOS box
#!/bin/bash
pkgin -y in rabbitmq
rabbitmq-plugins enable rabbitmq_stomp rabbitmq_management
cat > /opt/local/etc/rabbitmq/rabbitmq-env.conf <<-EOF
RABBITMQ_NODENAME=rabbit
RABBITMQ_HOME=/var/db/rabbitmq
EOF
@justinrainbow
justinrainbow / gist:4121808
Created November 20, 2012 22:49 — forked from w33ble/gist:4121706
blah
function DataSourceQueue(config) {
// console.log(config, Y.DataSource.Local.transactions);
this._ds = config.host;
this.transactions = [];
this._ds.after('request', this.add, this);
this._ds.on('response', function(e) {
console.log('DS response', e.tId);
@justinrainbow
justinrainbow / GetterSetterGenerator.py
Created September 5, 2012 15:33 — forked from jverdeyen/GetterSetterGenerator.py
Sublime Text 2 PHP Getter Setter Generator
import sublime, sublime_plugin, re, os
# TODO
# check indention (spaces/tabs/size, current indention )
# insert right where the pointer is, or insert right before the closing } of the class?
# check of these generator getter/setters already exist? make it idempotent?
class GeneratorCommand(sublime_plugin.TextCommand):
def fixup(self, string):