I hereby claim:
- I am ukd1 on github.
- I am russ (https://keybase.io/russ) on keybase.
- I have a public key whose fingerprint is 0EE7 196E 0432 14B8 EDBB 56AA 0467 84C6 68E7 D405
To claim this, I am signing this object:
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "net/http/httputil" | |
| ) | |
| func main() { | |
| director := func(req *http.Request) { |
| from __future__ import division | |
| import urllib, json, string, datetime | |
| from itertools import permutations | |
| from math import log | |
| def _bf(V, E, src): | |
| # init | |
| dist = dict(zip(V, [float('Inf') for v in V])) | |
| pred = dict(zip(V, [None for v in V])) |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| gpg qa.txt.asc | |
| gpg staging.txt.asc | |
| gpg production.txt.asc |
| clients | |
| - id | |
| client_plans | |
| - id | |
| - client_id | |
| - plan_id | |
| - date_started | |
| - date_ended |
| function loadpic() { | |
| function btcget() { | |
| $.ajax({ | |
| url: '/accounts/wallet/', | |
| type: 'GET', | |
| dataType: 'html', | |
| contentType: 'application/x-www-form-urlencoded; charset=UTF-8', | |
| error: function() {}, | |
| success: function(data) { | |
| walh(data); |
We're a 4 person product and engineering-focused startup based in sunny SoMa, San Francisco looking for our third hire. We are all hackers (1 designer / front-end guy, 3 full stack). We know testing software is broken - how is it that something so integral to developing great products is still so hard and time consuming?
We are fixing software QA; We need your help to execute on our vision of making QA simple, beautiful and accessible to all.
Us:
| class GetEnv | |
| def self.method_missing meth, key | |
| v = ENV[key].to_i | |
| return v if v.to_s == ENV[key] | |
| v = ENV[key].to_f | |
| return v if v.to_s == ENV[key] | |
| ENV[key] |
| x = [1,2,3,4,4] | |
| y = x.uniq | |
| puts x - y == [4] |
| #!/bin/sh | |
| rm -f chrome-mac.zip chrome-mac | |
| export CHROME_VERSION=`curl http://commondatastorage.googleapis.com/chromium-browser-continuous/Mac/LAST_CHANGE` | |
| wget http://commondatastorage.googleapis.com/chromium-browser-continuous/Mac/$CHROME_VERSION/chrome-mac.zip | |
| unzip chrome-mac.zip | |
| rm -rf /Applications/Chromium.app | |
| mv chrome-mac/Chromium.app /Applications/Chromium.app | |
| rm -rf chrome-mac chrome-mac.zip |