I hereby claim:
- I am seanplusplus on github.
- I am seanplusplus (https://keybase.io/seanplusplus) on keybase.
- I have a public key whose fingerprint is C953 9F4B 686A F7C3 D4B7 4CDA D3D4 4B72 3E5A CC7B
To claim this, I am signing this object:
var arr = [ | |
'James Harden, PG', | |
'Anthony Davis, PF', | |
'LeBron James, SF', | |
'Damian Lillard, PG', | |
'Giannis Antetokounmpo, PF', | |
'Kevin Durant, SF', | |
'Russell Westbrook, PG', | |
'Kyrie Irving, PG', | |
'LaMarcus Aldridge, C', |
Kiradech Aphibarnrat | |
Daniel Berger | |
Wesley Bryan | |
Angel Cabrera | |
Rafael Cabrera-Bello | |
Patrick Cantlay | |
Paul Casey | |
Kevin Chappell | |
Austin Cook | |
Fred Couples |
const request = require('request') | |
const moment = require('moment-timezone') | |
exports.handler = function(event, context, callback) { | |
const SLACK_CHANNEL = process.env.SLACK_CHANNEL | |
const channel = SLACK_CHANNEL | |
const icon_emoji = ':robot_face:' | |
const username = 'stokebot' | |
const fallback = 'Required plain-text summary!' | |
const color = '#36a64f' |
import request from 'request' | |
import money from 'money-math' | |
// This: | |
// const b64string = 'R3Vlc3MgeW91IHJlYWxseSBhcmUgdXAgZm9yIGEgY2hhbGxlbmdlLiBHZXQgdGhlIGNvbWJpbmVkIHRvdGFsIGNvc3Qgb2YgdGhlIHR3byBtb3N0IGV4cGVuc2l2ZSBwcm9kdWN0cyBhbmQgdGhlIHR3byBsZWFzdCBleHBlbnNpdmUgcHJvZHVjdHMgYXQgdGhpcyBlbmRwb2ludCwgYW5kIHRoZXJlJ3MgeW91ciBhbnN3ZXI6IGh0dHA6Ly93d3cuY29kZXdpdGh0YXJnZXQuY29tL2Fzc2V0cy9kYXRhL3RoZS1zY3JhbWJsZXIuanNvbg==' | |
// const buf = Buffer.from(b64string, 'base64') | |
// console.log(buf.toString()) | |
// Produces this: | |
// Get the combined total cost of the two most expensive products |
const state = { | |
meta: { | |
attrs: [ 'dude' ], | |
data: { | |
foo: 'bar', | |
stuff: [ | |
'x', | |
'y', | |
] | |
}, |
#include<iostream> | |
#include<fstream> | |
using namespace std; | |
int main() | |
{ | |
ifstream input_file_counter("input_file.txt"); | |
int temp; | |
int NUMBER_OF_DOCUMENTS = 0; |
{ | |
"name": "startingOffPoint", | |
"version": "1.0.0", | |
"main": "app.js", | |
"license": "MIT", | |
"scripts": { | |
"start": "nodemon app.js --exec babel-node --presets latest" | |
}, | |
"dependencies": { | |
"console-emoji": "^0.0.2", |
#!/usr/bin/env python | |
import time | |
from bisect import bisect_left | |
def binary_search(a, x): | |
# implement binary_search | |
return | |
def main(): | |
a1 = [12, 16, 24, 37, 102, 109] |
I hereby claim:
To claim this, I am signing this object:
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import { createStore, applyMiddleware, bindActionCreators } from 'redux'; | |
import Navigation from './navigation'; | |
import { reducers, logger } from './reducers'; | |
const middleware = applyMiddleware(logger); | |
const store = createStore( | |
reducers, | |
{ greeting: '(Roll over me) '}, |