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
Statistics as of 2020-12-14: | |
Top wr holders | |
7 - riolu-tm | |
5 - Erizel | |
4 - GNR-HASKELL | |
3 - RacetalTM | |
3 - hug0220 | |
Top countries by wrs |
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
const fetch=(u)=>new Promise((x)=>require('https').request(u,{headers:{'User-Agent':'n^'}},(r)=>{let b='';r.on('data',(d)=>b+=d);r.on('end',()=>x(b));}).end()); | |
// Example: | |
fetch('https://api.github.com/users/NeKzor/followers') | |
.then(JSON.parse) | |
.then((followers) => console.log(followers.length)); | |
// > 15 |
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
sp: | |
00 884 | |
01 578 | |
02 1 | |
03 790 | |
04 109 | |
05 522 | |
06 801 | |
07 0 | |
08 597 |
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
const fs = require('fs'); | |
const validCommands = ['color', 'wait', 'play', 'fire', 'clear', 'reset', 'say2']; | |
const parseVoice = (voice, line) => { | |
let curCommand = undefined; | |
let commands = []; | |
for (let c of line) { | |
if (c === '[') { |
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
const fs = require('fs'); | |
const client_sixense = process.argv[2] || './portal2_sixense/bin/client_sixense.dll'; | |
const module = fs.readFileSync(client_sixense); | |
const patch = [ | |
[ | |
// Fix crash in init | |
// cmp ecx 69 |
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
{ | |
console.save = function(file, obj) { | |
let blob = new Blob([JSON.stringify(obj, null, 4)], { type: 'application/json' }); | |
let e = document.createEvent('MouseEvents'); | |
let a = document.createElement('a'); | |
a.download = file; | |
a.href = window.URL.createObjectURL(blob); | |
a.dataset.downloadurl = ['application/json', a.download, a.href].join(':'); | |
e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); |
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
<?php | |
include(__DIR__."/../loader.php"); | |
$params = array( | |
"dateStart" => "2017-05-11", | |
"dateEnd" => date('Y-m-d', time() - 60 * 60 * 24), | |
"banned" => "0", | |
"demo" => "0", | |
"yt" => "0"); |
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
/* | |
Rex - Portal Carousel - 24.73 | |
2018-10-09 | |
-0.20 former WR by Rex (lasted 3 days) | |
Demo File | |
https://board.iverb.me/getDemo?id=87466 | |
Player |
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
// cl /O2 /MD /LD dllmain.cpp /Fe:tsp-bhop | |
#include <cstring> | |
#include <memory> | |
#include <Windows.h> | |
#include <Psapi.h> | |
// client.dll Build 5454 | |
#define IN_JUMP_OFFSET 0xF52670 // /src/game/client/in_main.cpp | |
#define KEYDOWN_OFFSET 0x165EF // /src/game/client/in_main.cpp |