This file contains hidden or 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
### 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: |
This file contains hidden or 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 | |
require_once 'vendor/autoload.php'; | |
$class = $argv[1]; | |
$class = str_replace('/', '\\', $class); | |
$refl = new ReflectionClass($class); |
This file contains hidden or 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/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 |
This file contains hidden or 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
Show hidden characters
{ | |
"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, |
This file contains hidden or 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
ls -t /tmp/uscreens/S-$USER | awk -F '.' 'NR > 1 { print $1 }' | xargs -I {} screen -S {} -X quit |
This file contains hidden or 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
[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 |
This file contains hidden or 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
{ | |
"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, |
This file contains hidden or 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 | |
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 |
This file contains hidden or 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 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); |
This file contains hidden or 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
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): |
NewerOlder