- Install Docker
- Install Ruby
gem install orats
(see https://github.com/nickjj/orats)- Install Heroku Toolbelt
class Hits | |
attr_reader :client | |
def initialize(github_client) | |
@client = github_client | |
end | |
# Assumptions: | |
# - Using orgs | |
# - Closed dates range is a guess on things completed |
gem install orats
(see https://github.com/nickjj/orats)
class InputProvider | |
def pull; end | |
end | |
class ManualInputProvider | |
def pull; end | |
end |
class Array | |
def first | |
self[0] | |
end | |
def last | |
self[self.size - 1] | |
end | |
def distinct |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Gabriel Chaney</title> | |
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' | |
rel='stylesheet' type='text/css'> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
<style> |
iex --sname barry@localhost
Node.connect :chuck@localhost
Add one
Would I like to do the work I'm expecting of the machine with this code? (Golden Rule)
mix docker.build
command inside dcr web bash because obviously docker isn't installed inside the container. I had to install Elixir in the host and run it from there. :-(config/config.exs
mix docker.init
// app,type(dyno,addon),name,dyno_type(if applicable),period,rate,total | |
// console.log(appTitle + ',addon,' + tr.find('.period').text() + ',' + tr.find('.rate').text() + ',' + tr.find('.total').text()) | |
String.prototype.trim = function() { | |
return this.replace(/^\s+|\s+$/gm, ''); | |
} | |
var RowBuilder = function(tr) { | |
this.nameElem = function() { | |
if (tr.find('.process').length > 0) { | |
return tr.find('.process'); |