- 2006 - Chicago
- 2007 - Portland
- 2008 - Portland
- 2009 - Las Vegas
- 2010 - Balitmore
- 2011 - Balitmore
- 2012 - Austin
- 2013 - Kansas City, MO
- 2014 - Chicago
- 2015 - Atlanta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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'); |
- https://echobind.com/blog/using-phoenix-with-docker/
- I completed this entirely and then went to the next...
- http://teamon.eu/2017/deploying-phoenix-to-production-using-docker/ and https://github.com/Recruitee/mix_docker
- I got here from https://github.com/Nebo15/renew, so will go back to that.
- I was unable to
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. :-( - It looks like "sibling containers" are a possible solution to this http://stackoverflow.com/a/33003273/34315.
- Created the repository on Docker Hub first
- Use the name of that repository in
config/config.exs
mix docker.init
- It works
- My team can understand it
- I understand it
- Breaking it has consequences (new changes velocity is slowed when the tests fail)
Add one
Would I like to do the work I'm expecting of the machine with this code? (Golden Rule)
- Would you want to act as the machine?
- Had to use elixir-lang/elixir#3955 (comment) to connect nodes on macOS
iex --sname barry@localhost
Node.connect :chuck@localhost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Array | |
def first | |
self[0] | |
end | |
def last | |
self[self.size - 1] | |
end | |
def distinct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class InputProvider | |
def pull; end | |
end | |
class ManualInputProvider | |
def pull; end | |
end |
- Install Docker
- Install Ruby
gem install orats
(see https://github.com/nickjj/orats)- Install Heroku Toolbelt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |