Req id:
parse @message '(*) *' as reqId, message
| filter reqId like "c19dd3fc-5f27-11e9-a823-930d231e2ab8"
| sort @timestamp asc
| limit 50
Status code:
Req id:
parse @message '(*) *' as reqId, message
| filter reqId like "c19dd3fc-5f27-11e9-a823-930d231e2ab8"
| sort @timestamp asc
| limit 50
Status code:
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
docker run --name pgadmin -p 9000:80 \ | |
-e PGADMIN_DEFAULT_EMAIL="email" \ | |
-e PGADMIN_DEFAULT_PASSWORD="password" \ | |
-d dpage/pgadmin4 |
yarn init -y | |
yarn add express | |
yarn add typescript @types/node @types/express -D | |
yarn tsc —init || npx tsc --init | |
tsconfig: | |
"outDir": "./dist", | |
"rootDir": "./src", |
Create: | |
npx serverless create --template aws-nodejs --path fancy-name | |
Deploy: | |
npx serverless config credentials --provider aws --key AWS_KEY --secret AWS-SECRET | |
npx serverless deploy -v |
// INSTALL | |
1. brew update&& brew install golang | |
// SETUP | |
2. mkdir -p $HOME/go/{bin,src,pkg} | |
// SET ENV | |
export GOPATH=$HOME/go | |
export GOROOT="$(brew --prefix golang)/libexec" | |
export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin" |
1. Generate Editor Config (Install editor config dependency VSCode). | |
2. Install ESLint | |
- ```yarn add eslint -D``` | |
- ```yarn eslint --init``` | |
- *To check syntax, find problems and enforce code style* | |
- *Javascript modules (import/export)* | |
- *None of these* | |
- **Typescript?** *Yes* | |
- *Node/Browser* | |
- *Use a popular style guide* |
# this forces Arena into full screen mode on startup, set back to 3 to reset | |
# note that if you go into the Arena "Graphics" preference panel, it will reset all of these | |
# and you will need to run these commands again | |
defaults write com.wizards.mtga "Screenmanager Fullscreen mode" -integer 0 | |
# replace 1680 and 1050 with your full screen resolution, or any scaled resolution your display supports | |
# to find the scaled resolutions, go to System Preferences --> Display | |
defaults write com.wizards.mtga "Screenmanager Resolution Width" -integer 1680 | |
defaults write com.wizards.mtga "Screenmanager Resolution Height" -integer 1050 |
Realm.open({}).then(realm => { | |
console.log("Realm is located at: " + realm.path); | |
}); |