This file contains hidden or 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
#!/usr/bin/env python | |
from eventlet.green import urllib2 | |
import eventlet | |
import json | |
import web | |
import time | |
urls = ('/u/(.*)', 'index') |
This file contains hidden or 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
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 |
This file contains hidden or 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
#include "stdafx.h" | |
#include "misc.h" | |
#include <detours.h> | |
#include <tchar.h> | |
#pragma comment(lib, "detours.lib") | |
#pragma comment(lib, "detoured.lib") | |
struct player_data { | |
FString guid; |
This file contains hidden or 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
setopt AUTO_CD | |
setopt PRINT_EXIT_VALUE | |
setopt HIST_IGNORE_ALL_DUPS | |
HISTFILE=~/.zshhistfile | |
HISTSIZE=1500 | |
SAVEHIST=1500 | |
zstyle ':completion:*' completer _complete _ignored | |
zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=* r:|=*' |
This file contains hidden or 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
/*============================================================================= | |
UCC.cpp: Unreal command-line launcher. | |
Copyright 1997-1999 Epic Games, Inc. All Rights Reserved. | |
Revision history: | |
* Created by Tim Sweeney. | |
=============================================================================*/ | |
#if WIN32 | |
#include <windows.h> |
This file contains hidden or 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
#include "stdafx.h" | |
#include <detours.h> | |
#include <tchar.h> | |
#pragma comment(lib, "detours.lib") | |
#pragma comment(lib, "detoured.lib") | |
// ?ProcessRemoteFunction@AActor@@UAEHPAVUFunction@@PAXPAUFFrame@@@Z | |
// public: virtual int __thiscall AActor::ProcessRemoteFunction(class UFunction *,void *,struct FFrame *) |
NewerOlder