I hereby claim:
- I am maxkorp on github.
- I am maxkorp (https://keybase.io/maxkorp) on keybase.
- I have a public key ASD8zjEARY1_RAwRJaZV8y2HdslHxtfN-ySL4xfYkQ83PQo
To claim this, I am signing this object:
| const type = { | |
| activeId: option(int), | |
| alcoholAwarenessExpirationDate: option(Js.Json.t), | |
| clientTypeCurrentlyBeingUsed: option([ | |
| LEGACY, | |
| PROFESSIONAL_MOBILE_ANDROID, | |
| PROFESSIONAL_MOBILE_IOS, | |
| QWICKIO, | |
| UNSPECIFIED, | |
| WEB |
| { | |
| "description": "Change caps_lock to escape. (Post caps_lock if held_down)", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock", | |
| "modifiers": { | |
| "optional": [ | |
| "any" | |
| ] |
I hereby claim:
To claim this, I am signing this object:
| export async function doStuff(input) { | |
| try { | |
| const otherstuff = await doOtherStuff(input); | |
| return doDifferentStuff(otherstuff); | |
| } catch (e) { | |
| //handle | |
| } | |
| } | |
| export async function doStuff2(input) { |
| const yamlToJson = require('yaml-to-json'); | |
| module.exports = (source) => { | |
| this.cacheable(); | |
| if (!source.includes('---')) { | |
| return { | |
| metadata: {}, | |
| contents: source | |
| }; | |
| } |
| xcode-select --install | |
| sleep 1 | |
| osascript <<EOD | |
| tell application "System Events" | |
| tell process "Install Command Line Developer Tools" | |
| keystroke return | |
| click button "Agree" of window "License Agreement" | |
| delay 1 | |
| keystroke return | |
| repeat |
| This file is generated from a template, so I've put the generated file here to make it easier to look at. |
| #!/bin/bash | |
| # Ensure not root | |
| { | |
| if [ "$EUID" -e 0 ] | |
| then echo "Please do not run this script as root" | |
| exit | |
| fi | |
| } |