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:
| clients | |
| - id | |
| client_plans | |
| - id | |
| - client_id | |
| - plan_id | |
| - date_started | |
| - date_ended |
| #!/bin/bash | |
| gpg qa.txt.asc | |
| gpg staging.txt.asc | |
| gpg production.txt.asc |
I hereby claim:
To claim this, I am signing this object:
| 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])) |
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "net/http/httputil" | |
| ) | |
| func main() { | |
| director := func(req *http.Request) { |
| sample_data = [0, 1, 100, 99, 0, 10, 90, 30, 55, 33, 55, 75, 51, 49, 50, 51, 49, 51] | |
| sample_output = [[1,99], [0,100], [10,90], [51,49], [50,50]] | |
| var results = []; | |
| for (var i = 0; i < sample_data.length; i++) { | |
| for (var j = i + 1; j < sample_data.length; j++) { | |
| if (sample_data[i] + sample_data[j] == 100) { | |
| var combo = sample_data[i] | |
| if (results.indexOf(sample_data[i]) == -1 && results.indexOf(100 - sample_data[i]) == -1) { | |
| results.push(combo); |
| var request = require('request'); | |
| return function (context, callback) { | |
| var required_params = ['TWILIO_AUTH_TOKEN', 'TWILIO_ACCOUNT_SID', 'TWILIO_NUMBER', 'SEARCH', 'TO']; | |
| for (var p in required_params) | |
| if (!context.data[required_params[p]]) | |
| return callback(new Error('The `' + required_params[p] + '` parameter must be provided.')); | |
| function message(to, message) { | |
| request({ |
| docker run --rm -it -v "$(pwd)":/app -w /app crystallang/crystal:latest sh -c 'crystal build --release src/hello.cr' |
| class A | |
| def version | |
| self.class::VERSION || 1 | |
| end | |
| end | |
| class B < A | |
| VERISON = 2 | |
| end |
| function faucet(session) { | |
| // send $0.10 USD at current exchange rates | |
| let amt = 0.1 | |
| let count = (session.get('count') || 0) + amt | |
| session.set('count', count) | |
| Fiat.fetch().then((toEth) => { | |
| session.sendEth(toEth.USD(amt)) | |
| sendMessage(session, `Sent ${amt} 💰🤑💰`) |