start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/bin/env bash | |
# Usage: {script} [ OPTIONS ] | |
# | |
# OPTIONS | |
# | |
# -h, --help Displays this help message. | |
# -t, --type Default type is "dev". Values is "stable" and "dev". | |
# -b, --build Version of Sublime Text 3. If not defined tries to get the | |
# build into the Sublime Text 3 website. | |
# --target Default target is "/usr/local". |
VERSION=2.8.5 | |
apt-get -y install wget | |
rm -rf redis-$VERSION | |
wget http://download.redis.io/releases/redis-$VERSION.tar.gz | |
tar -xzvf redis-$VERSION.tar.gz | |
cd redis-$VERSION | |
./configure --prefix=/usr | |
make | |
rm -rf /tmp/redis-$VERSION.$$ | |
mkdir /tmp/redis-$VERSION.$$ |
Searching players: | |
http://worldoftanks.eu/community/accounts/api/%API_VER%/?source_token=%TOKEN%&search=%NAME%&offset=0&limit=1 | |
Showing player's stats: | |
http://worldoftanks.eu/community/accounts/%PLAYER_ID%/api/%API_VER%/?source_token=%TOKEN% | |
Showing player's stats from past: | |
http://dava2.worldoftanks.com/userstats/2/stats/slice/?platform=android&server=eu&account_id=%PLAYER_ID%&hours_ago=24&hours_ago=168&hours_ago=336 |
http://worldoftanks.ru/community/accounts/api/%API_VER%/?source_token=%TOKEN%&search=%NAME%&offset=0&limit=1 | |
http://worldoftanks.ru/community/accounts/%PLAYER_ID%/api/%API_VER%/?source_token=%TOKEN% | |
http://worldoftanks.ru/community/clans/api/%API_VER%/?source_token=%TOKEN%&search=%CLAN_NAME%&offset=0&limit=1 | |
http://worldoftanks.ru/community/clans/%CLAN_ID%/api/%API_VER%/?source_token=%TOKEN% | |
http://worldoftanks.ru/personal/api/%API_VER%/?source_token=%TOKEN% | |
http://worldoftanks.ru/uc/accounts/500662837/api/1.5/?source_token=Intellect_Soft-WoT_Mobile-unofficial_stats | |
login req: getlogin: https://worldoftanks.ru/auth/create/api/1.0/?source_token=%TOKEN% | |
gettoken: https://worldoftanks.ru/utils/csrf/api/1.0/?source_token=%TOKEN% |