I hereby claim:
- I am herman-rogers on github.
- I am hermanrogers (https://keybase.io/hermanrogers) on keybase.
- I have a public key ASDscZa-Co9YxTve3ta_lSFYjLa5mPH4ifxrqssf6LfXHQo
To claim this, I am signing this object:
| * Finish MIT Quantum Computing - https://openlearninglibrary.mit.edu/courses/course-v1:MITx+8.370.1x+1T2018/course/ | |
| A List: | |
| https://arc.net/folder/D0472A20-9C20-4D3F-B145-D2865C0A9FEE | |
| Backup: | |
| https://nlp.seas.harvard.edu/annotated-transformer/ |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| /* | |
| So what I would like to happen is app | |
| is initialize in componentDidMount(), | |
| if we are to recieve an error, have the | |
| initializeApp() function cancel out the | |
| entire promise chain. | |
| Ideally, the promise child is able to either | |
| cancel execution of the promise and navigate to the | |
| right place by default, or hand off the navigation to |
| function mapValues(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| result[key] = fn(obj[key], key); | |
| return result; | |
| }, {}); | |
| } | |
| function pick(obj, fn) { | |
| return Object.keys(obj).reduce((result, key) => { | |
| if (fn(obj[key])) { |
| API_URL=http://ci.environment.com |
I hereby claim:
To claim this, I am signing this object:
| function messageData(build) { | |
| return { | |
| id: build._id, | |
| project: build.name, | |
| enginename: build.engineName, | |
| engineversion: build.engineVersion, | |
| engineplatform: build.enginePlatform, | |
| buildrid: build.buildrId, | |
| repotype: build.scm, | |
| repourl: build.scmUrl, |
| func (engine Docker) RunContainer(image string) error { | |
| ctx := context.Background() | |
| env := []string{ | |
| fmt.Sprintf("GCLOUD_PROJECT=%s", os.Getenv("GCLOUD_PROJECT")), | |
| fmt.Sprintf("GCLOUD_SERVICE_KEY=%s", os.Getenv("GCLOUD_SERVICE_KEY")), | |
| fmt.Sprintf("PAPERTRAIL_ENDPOINT=%s", os.Getenv(config.LogEndpoint)), | |
| fmt.Sprintf("REGION=%s", os.Getenv(config.LogEndpoint)), | |
| fmt.Sprintf("AWS_ACCESS_KEY_ID=%s", os.Getenv(config.LogEndpoint)), | |
| fmt.Sprintf("AWS_SECRET_ACCESS_KEY=%s", os.Getenv(config.LogEndpoint)), | |
| fmt.Sprintf("CODE_REPO_STORAGE=%s", os.Getenv(config.LogEndpoint)), |
| Props stateTree = {name: "InitialState", value: 0}; | |
| Props stateOneProps = { | |
| name: "SceneOne" | |
| value: 1 | |
| } | |
| Props stateTwoProps = { | |
| name: "SceneTwo" | |
| } |
| type StructTest struct { | |
| Name string | |
| InterfaceTest InterfaceTest | |
| } | |
| type InterfaceTest interface { | |
| TestMethod() | |
| } |