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:
| alias grcl='git checkout master && git pull && git remote prune origin && git branch -avv | grep "gone]" | awk '\''{ print $1 }'\'' | xargs git branch -d' |
| function capAndJoinWords(aryOfWords) { | |
| return _.chain(aryOfWords) | |
| .map(function(item) { return item + '123'; }) | |
| .map(function(item) { return item.toUpperCase(); }) | |
| .reverse() | |
| .value() | |
| .join(' '); | |
| } | |
| capAndJoinWords(['array', 'this', 'in', 'are', 'words', 'test']); // "TEST123 WORDS123 ARE123 IN123 THIS123 ARRAY123" |
| _ = require('lodash') | |
| rpc = require('amqp-rpc').factory | |
| url: "amqp://admin:changeme@192.168.100.10:5672" | |
| exchange: "rpc_exchange" | |
| rpc.on 'echo.*', (params, cb, callInfo) -> | |
| if params.message | |
| reply = { | |
| echo: true | |
| message: params.message |
| #!/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') |
| package main | |
| import ( | |
| "github.com/streadway/amqp" | |
| "encoding/json" | |
| "log" | |
| "os" | |
| "fmt" | |
| "time" | |
| ) |
I hereby claim:
To claim this, I am signing this object:
| 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); |
| # 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 |
| :map ✠ <S-Space> | |
| :map! ✠ <S-Space> | |
| :vmap ✠ <S-Space> | |
| :map ✡ <C-Space> | |
| :map! ✡ <C-Space> | |
| :vmap ✡ <C-Space> |
| // 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 |