I hereby claim:
- I am barkerja on github.
- I am barkerja (https://keybase.io/barkerja) on keybase.
- I have a public key whose fingerprint is 4511 FC98 FCF2 8ADE ACE9 1682 4DED 2BE8 89D9 4983
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| include RethinkDB::Shortcuts | |
| conn = r.connect(host: ENV['RETHINKDB_URL']) | |
| databases = r.db_list().run(conn) | |
| databases.each do |database| | |
| puts "Database: #{database}" | |
| tables = r.db(database).table_list().run(conn) | |
| namespace :db do | |
| namespace :enable do | |
| desc "enable hstore extension" | |
| task :hstore => [:environment, :load_config] do | |
| ActiveRecord::Base.connection.execute('CREATE EXTENSION IF NOT EXISTS hstore;') | |
| end | |
| end | |
| Rake::Task['db:schema:load'].enhance ['db:enable:hstore'] | |
| end |
| # Description: | |
| # Submit time query to www.timeapi.org | |
| # | |
| # Commands: | |
| # hubot time - Current time in local timezone | |
| # hubot time <timezone> - Current time in timezone | |
| # hubot time <timezone> <query> - Time in timezone based on query | |
| module.exports = (robot) -> |
| objects = Hash.new(0) | |
| ObjectSpace.each_object { |obj| objects[obj.class] += 1 } | |
| p objects.sort_by { |_,v| -v } |
| #!/bin/sh | |
| remove_dangling() { | |
| echo "Removing dangling images ..." | |
| docker rmi $(docker images -f dangling=true -q) | |
| } | |
| remove_stopped_containers() { | |
| echo "Removing stopped containers ..." | |
| docker rm $(docker ps -qa) |
| require 'celluloid' | |
| WORKERS_COUNT = (ARGV[0] || 1).to_i | |
| class Output | |
| include Celluloid | |
| def puts(msg) | |
| Kernel.puts(msg) | |
| end |
| upstream mostor_backend { | |
| server unix:/tmp/unicorn.mostor-website.sock fail_timeout=0; | |
| } | |
| server { | |
| listen 80; | |
| root /home/work/www/mostor/current/public/; | |
| client_max_body_size 1000m; | |
| location ^~ /assets/ { |