I hereby claim:
- I am evizitei on github.
- I am evizitei (https://keybase.io/evizitei) on keybase.
- I have a public key ASAmgUHoM3YVw5gyUrqeiEUwnMEsvQ8adq0Kw9FHN3nwfgo
To claim this, I am signing this object:
| import java.util.Scanner; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.ArrayList; | |
| public class AddressBook { | |
| private class User { | |
| private final String firstName; | |
| private final String lastName; |
| # requires https://github.com/Zulko/moviepy | |
| # requires https://github.com/jiaaro/pydub | |
| # requires https://github.com/ageitgey/face_recognition | |
| from pydub import AudioSegment | |
| from moviepy.editor import * | |
| import face_recognition | |
| import itertools | |
| import numpy as np |
I hereby claim:
To claim this, I am signing this object:
| FRD = false | |
| client = Salesflare::Api.new(ENV["SALESFLARE_KEY"]) | |
| output = { | |
| too_many_accounts: [], | |
| no_match: [], | |
| too_many_projects: [], | |
| sf_projects_not_1_to_1: [], | |
| matched: [] | |
| } |
| #!/bin/bash | |
| # when processing receipts, I need to have them rotated 90-deg and | |
| # flipped horizontally because of how photobooth stores them. | |
| # Iterate through all the files in the directory, rotate, and flip | |
| for file in *.* | |
| do | |
| sips -r 90 "$file" | |
| sips -f horizontal "$file" | |
| done |
| class Prime | |
| PRIMES = [2, 3] | |
| def self.nth(index) | |
| raise ArgumentError if index < 1 | |
| return PRIMES[index - 1] if PRIMES.length >= index | |
| generate_primes_up_to(index) | |
| end | |
| def self.generate_primes_up_to(index) |
| Joel (on Software): http://www.joelonsoftware.com/articles/fog0000000043.html | |
| Agile Advocates: http://www.ministryoftesting.com/2013/06/ten-reasons-why-you-fix-bugs-as-soon-as-you-find-them/ | |
| Gregg Boer, an employee of the most corporate-y company on the planet (sorry, David…): http://visualstudiomagazine.com/articles/2012/10/12/agile-bug-management.aspx | |
| Independent game developers: http://www.gamedev.net/page/resources/_/technical/general-programming/zero-defect-software-development-r1050 | |
| Paul Graham: http://www.paulgraham.com/road.html |
| require 'rubygems' | |
| dir = '/Users/evizitei/Code/instructure/canvas-lms' | |
| Dir.chdir dir | |
| shas =`git log --oneline --since='4 weeks ago' | cut -f 1 -d ' '` | |
| def is_a_problem?(sha) | |
| files = (`git diff --name-only #{sha} #{sha}~1`) | |
| ((files =~ /^(app|public).*\.(coffee|js)$/ && | |
| !(files =~ /^spec.*\.(coffee|js)$/)) || |
| ERROR ArgumentError: wrong number of arguments(1 for 0) | |
| /Users/evizitei/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/bundler/gems/railslts-6e830c6c9784/actionpack/lib/action_controller/middleware_stack.rb:72:in `initialize' | |
| /Users/evizitei/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/bundler/gems/railslts-6e830c6c9784/actionpack/lib/action_controller/middleware_stack.rb:72:in `new' | |
| /Users/evizitei/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/bundler/gems/railslts-6e830c6c9784/actionpack/lib/action_controller/middleware_stack.rb:72:in `build' | |
| /Users/evizitei/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/bundler/gems/railslts-6e830c6c9784/actionpack/lib/action_controller/middleware_stack.rb:116:in `block in build' | |
| /Users/evizitei/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/bundler/gems/railslts-6e830c6c9784/actionpack/lib/action_controller/middleware_stack.rb:116:in `each' | |
| /Users/evizitei/.rbenv/versions/1.9.3-p448/lib/ruby/gems/1.9.1/bundler/gems/railslts-6e830c6c9784/actionpack/lib/action_con |
| public class Person | |
| { | |
| // Field | |
| public string name; | |
| // Constructor that takes no arguments. | |
| public Person() | |
| { | |
| name = "unknown"; | |
| } |