This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"coc.preferences.jumpCommand": "tabe", | |
"eslint.executeAutofix": false, | |
"eslint.autoFixOnSave": false, | |
"snippets.extends": { | |
"typescript": ["javascript", "javascript-jasmine-arrow"] | |
}, | |
"suggest.noselect": true | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { map, unmap, mapkey, iunmap } = api; | |
settings.smoothScroll = false; | |
map('J', 'E'); | |
map('K', 'R'); | |
map('{', '<<'); | |
map('}', '>>'); | |
unmap('<Alt-p>'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Insert your preferred key mappings here. | |
map s scrollPageUp | |
unmap f | |
map ff LinkHints.activateMode | |
unmap F | |
map fF LinkHints.activateModeToOpenInNewTab | |
unmap gi | |
map fi focusInput | |
unmap <a-p> | |
map p togglePinTab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DOCKER_AUTH=$(aws ecr get-login --no-include-email --region ap-southeast-1) | |
servers=(server1.app server2.app server3.app) | |
for server in ${servers[*]} | |
do | |
ssh -o "StrictHostKeyChecking no" root@$server "eval \"$DOCKER_AUTH\"" | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ss-go | |
docker run -dt --name ss -p 6443:6443 mritd/shadowsocks -s "-s 0.0.0.0 -p 6443 -m aes-128-cfb -k SUPER_SECRET_PASSWORD --fast-open" | |
# ssr | |
docker run -d --name ssr-server --restart always -p 51348:51348 breakwa11/shadowsocksr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// analytics_start_date:1509465600000 | |
// analytics_end_date:1511971200000 | |
db.orders.aggregate([ | |
{ | |
$match: { | |
// 'user_id': { | |
// $in: [ | |
// '1d63afb0-a40a-11e7-822a-3ba2e980456e', | |
// 'd6053b60-97a3-11e7-b104-4b6408cb9132' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const AWS = require('aws-sdk') | |
const sns = new AWS.SNS({ | |
accessKeyId: '', | |
secretAccessKey: 'SECRET', | |
region: 'ap-southeast-1' | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir ./sms | |
chmod 777 -R ./sms | |
docker run --rm -it -v `pwd`/sms:/sms mongo mongoexport -h 10.99.0.15 -d db-prod -c users -f contact_number -o list.json | |
mongorestore -h localhost -d {db_name} /backup/{db_name} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
kong-db: | |
image: postgres:latest | |
environment: | |
- POSTGRES_USER=kong | |
- POSTGRES_DB=kong | |
volumes: | |
- ./kong-data:/var/lib/postgresql/data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// reset all notifications | |
// db.lists.updateMany({}, { $set: { notifications: [] } }) | |
var q1 = { | |
codes: '5238', | |
'notifications.code': { | |
'$ne': '5238' | |
} | |
} |
NewerOlder