I hereby claim:
- I am jlindley on github.
- I am jlindley (https://keybase.io/jlindley) on keybase.
- I have a public key whose fingerprint is 6F20 45BA 061A 1322 2371 B26C E7F4 3B36 6BB8 21B2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
ip-10-112-238-171 ~ # eix-sync | |
* Running emerge --sync | |
>>> Starting rsync with rsync://174.129.241.164/portage/2009a... | |
>>> Checking server timestamp ... | |
receiving incremental file list | |
timestamp.chk | |
Number of files: 1 | |
Number of files transferred: 1 | |
Total file size: 32 bytes |
#!/usr/bin/env bash | |
(bundle check || bundle --local) && bundle exec "$@" |
module ActiveRecord | |
module ConnectionAdapters | |
class AbstractAdapter | |
protected | |
# Turn: | |
# User Load (6.3ms) SELECT * FROM "users" | |
# Into: | |
# User Load /app/views/_partial.erb:27 (6.3ms) in `_app_views_partial_erb` SELECT * FROM "users" |
require 'open-uri' | |
require 'openssl' | |
req = URI.parse("https://gathercrm.com/internal/auth") | |
res = req.read( | |
:ssl_verify_mode => OpenSSL::SSL::VERIFY_NONE, | |
:http_basic_authentication => ["test", "pass"] | |
) |
require "./config/environment" | |
use Rails::Rack::LogTailer | |
use Rails::Rack::Static | |
run ActionController::Dispatcher.new |
class PlayerHandle | |
class TurnExecutor | |
def initialize(handle) | |
end | |
end | |
class AttributeUpdater | |
def initialize(handle) | |
end |
# under organization_user | |
dashboard: | |
- "use_dashboard" |
module Bar | |
def self.anon_struct | |
s = Struct.new(:foo, :bar, :baz) | |
oid = s.object_id | |
s = nil | |
oid | |
end | |
end |