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
// Generates the APISIDDHASH / SAPISIDHASH token Google uses in the Authorization header of some API requests | |
// Usage: node google_token_hash_generator.js <TOKEN> <DOMAIN> | |
var TOKEN = process.argv[2]; // APISID / SAPISID token (base64) | |
var DOMAIN = process.argv[3]; // Domain name, including https://, without trailing slash | |
var $gb = function () { | |
function a() { | |
e[0] = 1732584193; | |
e[1] = 4023233417; |
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
@echo off | |
mode con: cols=126 lines=40 | |
curl wttr.in | |
pause |
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
pos2d | |
scale2d | |
size2d | |
OnRender | |
OnUpdate | |
OnReconnect | |
OnSpawn | |
OnRemove | |
OnRequestWorldSelectMenu | |
OnConsoleMessage |