I hereby claim:
- I am tedkulp on github.
- I am tedkulp (https://keybase.io/tedkulp) on keybase.
- I have a public key whose fingerprint is AE6B 007E 2FAB 1C94 319C 7C09 FD56 BE79 CDAE 7895
To claim this, I am signing this object:
| #!/bin/zsh | |
| function initialize { | |
| #git svn init http://svn.cmsmadesimple.org/svn/cmsmadesimple --stdlayout allcms | |
| git svn init file:///Users/tedkulp/tmp/cms-svn --stdlayout allcms | |
| git svn init http://svn.cmsmadesimple.org/svn/newsmodule --stdlayout News | |
| git svn init http://svn.cmsmadesimple.org/svn/search --stdlayout Search | |
| git svn init http://svn.cmsmadesimple.org/svn/filemanager --stdlayout FileManager | |
| git svn init http://svn.cmsmadesimple.org/svn/menumanager --stdlayout MenuManager | |
| git svn init http://svn.cmsmadesimple.org/svn/microtiny MicroTiny |
| set-option -g default-command "reattach-to-user-namespace -l zsh" | |
| # Set prefix to something easy | |
| unbind C-b | |
| set -g prefix C-a | |
| bind a send-prefix | |
| # Lose the delay | |
| set -sg escape-time 1 |
| web: coffee app.coffee |
| // Configure installed adapters | |
| // If you define an attribute in your model definition, | |
| // it will override anything from this global config. | |
| module.exports.adapters = { | |
| // If you leave the adapter config unspecified | |
| // in a model definition, 'default' will be used. | |
| 'default': 'mongo', | |
| // In-memory adapter for DEVELOPMENT ONLY |
| :map ✠ <S-Space> | |
| :map! ✠ <S-Space> | |
| :vmap ✠ <S-Space> | |
| :map ✡ <C-Space> | |
| :map! ✡ <C-Space> | |
| :vmap ✡ <C-Space> |
| # Default file for /etc/postfix/main.cf | |
| # Append this to the bottom for the domains we're virtualizing | |
| virtual_alias_domains = domain.com anotherdomain.com | |
| virtual_alias_maps = hash:/etc/postfix/virtual |
| Module.WreqrMixin = function(obj) { | |
| return _.extend(obj, { | |
| setupWreqr: function() { | |
| var _this = this; | |
| this.reqres = new Backbone.Wreqr.RequestResponse(); | |
| this.commands = new Backbone.Wreqr.Commands(); | |
| this.request = function() { | |
| return _this.reqres.request.apply(_this.reqres, arguments); |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "github.com/streadway/amqp" | |
| "encoding/json" | |
| "log" | |
| "os" | |
| "fmt" | |
| "time" | |
| ) |
| #!/usr/bin/env ruby | |
| # encoding: utf-8 | |
| require 'rubygems' | |
| require 'amqp' | |
| require 'json' | |
| EventMachine.run do | |
| connection = AMQP.connect(:host => '192.168.100.10', :user => 'admin', :password => 'changeme') |