I hereby claim:
- I am notbrain on github.
- I am notbrain (https://keybase.io/notbrain) on keybase.
- I have a public key whose fingerprint is 3804 0DD4 4509 5CED B78B 2299 0974 D0AB 6B05 3450
To claim this, I am signing this object:
[ | |
{ | |
"featureType": "water", | |
"stylers": [ | |
{ "color": "#333333" } | |
] | |
},{ | |
"featureType": "landscape.natural.landcover", | |
"stylers": [ | |
{ "color": "#c6c8fa" } |
I hereby claim:
To claim this, I am signing this object:
[Service] | |
Environment="MYSQL_CONN=-h mydb.domain.com -u dbadmin -pnotastrongpassword database_name" | |
Environment="SLACK_TOKEN=xoxb-94849484948-jfhJSdlobYIFfeFBFYHckiUUJHW19v0F" |
#!/bin/bash -e | |
# Why is there no launchtl restart or reload? Tsk. | |
# | |
cmd=$1 | |
plistfile="$HOME/Library/LaunchAgents/homebrew.mxcl.mariadb.plist"; | |
ps_grep_string="mysql"; | |
function ps_grep() { | |
ps aux | grep -e $ps_grep_string | grep -v 'grep'; | |
} |
AWSTemplateFormatVersion: '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Description: Regional API Gateway Logging Role Setup | |
Resources: | |
APIGatewayLogGroup: | |
Type: AWS::Logs::LogGroup | |
Properties: | |
LogGroupName: 'apigw-log-group' | |
RetentionInDays: 7 |
OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
NEW_BRANCH=$1 | |
git branch -m $OLD_BRANCH $NEW_BRANCH # Rename branch locally | |
git push origin :$OLD_BRANCH # Delete the old branch | |
git push --set-upstream origin $NEW_BRANCH # Push the new branch, set local branch to track the new remote |
/** Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. */ | |
"use strict"; | |
/** | |
* The runtime has a single beforeExit function which is stored in the global | |
* object with a symbol key. | |
* The symbol is not exported. | |
* The process.beforeExit listener is setup in index.js along with all other | |
* top-level process event listeners. |