I hereby claim:
- I am rphillips on github.
- I am rphillips (https://keybase.io/rphillips) on keybase.
- I have a public key whose fingerprint is 73FF 5DAB 1D53 AF0F D905 16DF BD93 B48C 83E9 2964
To claim this, I am signing this object:
| #1 0xb7e13c8f in raise () from /lib/i386-linux-gnu/libc.so.6 | |
| #2 0xb7e172b5 in abort () from /lib/i386-linux-gnu/libc.so.6 | |
| #3 0xb7e55269 in ?? () from /lib/i386-linux-gnu/libc.so.6 | |
| #4 0xb7e57f47 in ?? () from /lib/i386-linux-gnu/libc.so.6 | |
| #5 0xb7e597f8 in malloc () from /lib/i386-linux-gnu/libc.so.6 | |
| #6 0xb7e5d371 in strdup () from /lib/i386-linux-gnu/libc.so.6 | |
| #7 0x0810cbd3 in uv_fs_lstat (loop=0x82f4fe0, req=0x8310bf0, path=0xb7de17c0 "/home/ubuntu/luvit/examples/static-file-server.lua", cb=0) at ../deps/uv/src/unix/fs.c:542 | |
| #8 0x08084ee5 in luv_fs_lstat (L=0xb7dc41c0) at ../src/luv_fs.c:368 | |
| #9 0x080d916a in lj_BC_FUNCC () | |
| #10 0x080a86dc in lua_call (L=0xb7dc41c0, nargs=1, nresults=1) at ../deps/luajit/src/lj_api.c:1016 |
| I've never made the frosting. It's too rich. | |
| Use PAM baking spray. | |
| Milky Way Pound cake | |
| 6 (2.15 ounce) Milky Way Bars | |
| 1 cup butter, divided | |
| 2 cups sugar | |
| 4 eggs |
| drafts://x-callback-url/import_action | |
| ?type=URL | |
| &name=Search%20in%20Chrome | |
| &url=googlechrome-x-callback%3A%2F%2Fx-callback-url%2Fopen%2F%3Furl%3Dhttp%253a%252f%252fwww.google.com%252f%2523q%253d%5B%5Bdraft%5D%5D%26x-source%3DDrafts%26x-success%3Ddrafts%253a%252f%252f%26create-new-tab |
| -- updated for luvit 2 | |
| local ffi = require('ffi') | |
| local bit = require('bit') | |
| local uv = require('uv') | |
| local timer = require('timer') | |
| local Object = require('core').Object | |
| local utils = require('utils') | |
| local libcurl = ffi.load('libcurl') |
| INFO global: Vagrant version: 1.6.0 | |
| INFO global: Ruby version: 2.0.0 | |
| INFO global: RubyGems version: 2.0.14 | |
| INFO global: VAGRANT_DEFAULT_PROVIDER="vmware_fusion" | |
| INFO global: VAGRANT_EXECUTABLE="/Applications/Vagrant/bin/../embedded/gems/gems/vagrant-1.6.0/bin/vagrant" | |
| INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/Applications/Vagrant/bin/../embedded" | |
| INFO global: VAGRANT_INSTALLER_VERSION="2" | |
| INFO global: VAGRANT_DETECTED_OS="Darwin" | |
| INFO global: VAGRANT_INSTALLER_ENV="1" | |
| INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1" |
I hereby claim:
To claim this, I am signing this object:
| var async = require('async'); | |
| var _ = require('underscore'); | |
| var ld = require('ld'); | |
| var dbopsEntity = require('../db/ops/entity'); | |
| var dbopsAgentConnection = require('../db/ops/agent_connection'); | |
| var dbopsAgent = require('../db/ops/agent'); | |
| var errors = require('../util/errors'); | |
| var flowCtrl = require('rackspace-shared-utils/lib/flow_control'); | |
| var log = require('logmagic').local('ele.lib.util.agent'); | |
| var instruments = require('rackspace-shared-utils/lib/instruments'); |
| package main | |
| import ( | |
| "errors" | |
| "io" | |
| "os" | |
| "os/user" | |
| "path" | |
| "strings" |
| (defvar workgroups2-packages | |
| '( | |
| workgroups2 | |
| ) | |
| "List of all packages to install and/or initialize. Built-in packages | |
| which require an initialization must be listed explicitly in the list.") | |
| (defun workgroups2/init-workgroups2 () | |
| (use-package workgroups2 | |
| :init |
| local bit = require('bit') | |
| local ffi = require('ffi') | |
| local S = require('syscall') | |
| ffi.cdef[[ | |
| int execl(const char *path, const char *arg0, ...); | |
| int login_tty(int fd); | |
| ]] | |
| local STDIN_FILENO = 0 |