I hereby claim:
- I am mitchellsimoens on github.
- I am mitchellsimoens (https://keybase.io/mitchellsimoens) on keybase.
- I have a public key ASCBlXjUMzsk7CXAAGRjD1egdOP1WkdkKqJ9OiIF5B9Lxwo
To claim this, I am signing this object:
| { | |
| xtype: 'wsCourseBrowser', | |
| id: 'img-chooser-view', | |
| region: 'center', | |
| reference: 'courseBrowser', | |
| listeners: { | |
| selectionchange: 'onIconSelect', | |
| itemdblclick: 'fireImageSelected' | |
| } | |
| }, |
I hereby claim:
To claim this, I am signing this object:
| // https://github.com/aws/aws-sdk-js/issues/1118 | |
| const AWS = require('aws-sdk') | |
| const instance = new AWS.Lambda() | |
| function listFunctionsReally (lambda, params = {}) { | |
| return new Promise((resolve, reject) => { | |
| const req = lambda.listFunctions(params) | |
| const results = [] | |
| const { MaxItems = 50 } = params |
| const { buildSchema, execute, parse } = require('graphql'); | |
| const idl = ` | |
| type Query { | |
| version: String! | |
| name: String! | |
| } | |
| extend type Query { | |
| hello: String! |
| import * as yargs from 'yargs'; | |
| import './register'; | |
| const parser = yargs | |
| .showHelpOnFail(false, 'Specify --help for available options') | |
| .options({ | |
| 'check-thresholds': { | |
| boolean: true, | |
| default: true, |