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
# Config: /etc/nginx/conf.d/kibana.conf | |
server { | |
listen 80; | |
server_name PROXY_URL; | |
# Read only access to Kibana | |
# deny other than get/post/options/head | |
# allow post when used with _search/_msearch/_mget | |
# allow get/options/head | |
set $posting 11; |
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/sh | |
command -v apktool >/dev/null 2>&1 || { echo >&2 "I require apktool but it's not installed. Aborting."; exit 1; } | |
command -v keytool >/dev/null 2>&1 || { echo >&2 "I require keytool but it's not installed. Aborting."; exit 1; } | |
command -v jarsigner >/dev/null 2>&1 || { echo >&2 "I require jarsigner but it's not installed. Aborting."; exit 1; } | |
TMPDIR=`mktemp -d 2>/dev/null || mktemp -d -t 'apkdebug'` | |
APK=$1 | |
DEBUG_APK="${APK%.*}.debug.apk" | |
if [ -f $APK ]; then |
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
<?xml version='1.0' encoding='utf-8' standalone='yes' ?> | |
<map> | |
<boolean name="com.getsetgames.megajump.powerup.umbrella_owned" value="true" /> | |
<boolean name="com.getsetgames.megajump.char.android_owned" value="true" /> | |
<int name="mp" value="9999999" /> | |
<boolean name="com.getsetgames.megajump.stage.1_owned" value="true" /> | |
<boolean name="howto" value="true" /> | |
<boolean name="FirstRun" value="true" /> | |
<boolean name="com.getsetgames.megajump.powerup.magnet_owned" value="true" /> | |
<int name="hiscore" value="24081" /> |
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
mongorestore /path/to/backup |
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
mongodump --host hostmongodb --port port --username "username" --password "password" --db database-name --out /path/to/export/backup |
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
eb use environment-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
tail -f /var/log/nodejs/nodejs.log |
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
eb deploy |
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
eb printenv |
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
Generate `npm-shrinkwrap.json`. | |
This file should be versionned. | |
npm shrinkwrap |
NewerOlder