I hereby claim:
- I am mwean on github.
- I am mwean (https://keybase.io/mwean) on keybase.
- I have a public key ASCLjDQq9jv6vHfskj0RVFu-zuUe1kfbx2rjyR9ExZRx8go
To claim this, I am signing this object:
| class Bottles | |
| def song | |
| verses(99, 0) | |
| end | |
| def verses(high, low) | |
| high.downto(low).map { |n| verse(n) }.join("\n") | |
| end | |
| def verse(n) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| project_root = `git rev-parse --show-toplevel`.strip | |
| git_status = `git status --porcelain --untracked-files=all`.split("\n") | |
| changed_files = git_status.map { |line| line[3..-1] } | |
| grouped_specs = Hash.new { |hash, key| hash[key] = [] } | |
| changed_files.select { |file| file =~ /spec/ }.each do |spec| | |
| project, file = spec.split("/spec/") | |
| grouped_specs[project] << "spec/#{file}" |
| #!/usr/bin/env ruby -wU | |
| require "httparty" | |
| build_num = ARGV[0] | |
| print "Pulling spec failures from build #{build_num}..." | |
| summary_url = "https://circleci.com/api/v1/project/LendingHome/lendinghome-monolith/#{build_num}" | |
| summary_response = JSON.parse(HTTParty.get(summary_url, query: { "circle-token" => ENV["CIRCLE_TOKEN"]})) | |
| puts "done." |
| ```sequence | |
| User->Phone: Phone No. | |
| Phone->Twitter: Phone No. | |
| Twitter->Phone: Twitter Token | |
| Phone->Server: Twitter Token | |
| Server->Twitter: Twitter Token | |
| Twitter->Server: Yes/No | |
| Note right of Server: Generate & save token JWT? | |
| Server->Phone: Token/Error | |
| Phone->Server: Token |
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $positions: ( | |
| backend: "\e83a", | |
| dev: "\e84a", | |
| data: "\e82e", | |
| front: "\e807", |
| // ---- | |
| // Sass (v3.4.13) | |
| // Compass (v1.0.3) | |
| // ---- | |
| map-merge((foo: 1, bar: 2), (baz: 3)); | |
| map-merge(("foo": 1), ("bar": 2)); |
| total commits: 192 | |
| 58 Merge | |
| 12 Update | |
| 12 Add | |
| 9 adds | |
| 8 Added | |
| 6 bump | |
| 6 Fix | |
| 4 Still | |
| 4 Fixed |
| CREATE INDEX index_description_on_icd_codes ON icd_codes USING gin(to_tsvector(description)) |