I hereby claim:
- I am danielberlinger on github.
- I am danielberlinger (https://keybase.io/danielberlinger) on keybase.
- I have a public key whose fingerprint is 1512 FB8F 1103 788C AF62 CBB3 E4A9 479B 3924 D175
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "github.com/leesper/go_rng" | |
| "io" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "time" |
I hereby claim:
To claim this, I am signing this object:
| This tutorial had a few bugs in it: | |
| http://www.rethinkdb.com/docs/tutorials/elections/ | |
| --- | |
| getting started on Mac OS X... | |
| The first few items are run in the terminal, and while I'm sure there are other ways to load the data, | |
| I just went with what was in the tutorial, which included using the Python driver for Rethinkdb via pip. |
| require 'statsd' | |
| $statsd = Statsd.new('your_host_here') | |
| ActiveSupport::Notifications.subscribe /process_action.action_controller/ do |*args| | |
| event = ActiveSupport::Notifications::Event.new(*args) | |
| controller = event.payload[:controller] | |
| action = event.payload[:action] | |
| format = event.payload[:format] || "all" | |
| format = "all" if format == "*/*" | |
| status = event.payload[:status] |
| // Additional code in node-http-proxy.js | |
| var crypto = require('crypto'); | |
| var redis = require('redis'); | |
| var client = redis.createClient(config.opt.redis_port, 'cloudno.de'); | |
| client.auth(config.opt.redis_auth, function(result) { | |
| util.log("Redis authenticated."); | |
| }) |
| require 'rubygems' | |
| require 'redis' | |
| $redis = Redis.new | |
| class Request | |
| def referrer | |
| 'http://www.google.com/search?q=Shopify+Store' | |
| end |
| #Speeds up deployment by creating a copy of the project on the server, | |
| set :deploy_via, :remote_cache | |
| task :run_branch_check do | |
| branches_available | |
| check_for_deployment_branch | |
| end | |
| before "deploy", "run_branch_check" | |
| before "deploy:long", "run_branch_check" |
| launchctl load -w ~/Library/LaunchAgents/io.redis.redis-server.plist |
| require 'rubygems' | |
| require 'uri' | |
| require 'redis' | |
| uri = URI.parse('redis://username:password@host:1234/') | |
| unless uri.nil? | |
| p uri.host | |
| p uri.port | |
| p uri.password | |
| p '---' |
| .DS_Store |