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
| #< VERSION:0.1.0, REV:10 | |
| import threading | |
| import requests | |
| import argparse | |
| import json | |
| import zlib | |
| import gzip | |
| import time | |
| import os |
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
| import threading | |
| import random | |
| import ctypes | |
| import time | |
| import sys | |
| import os | |
| c_Workers = 32 | |
| c_Dictionary = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" |
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
| // Compile with | |
| // g++ -O3 -Ofast -m64 -lstdc++ -std=c++17 Benchmark.cpp -o Benchmark | |
| // or | |
| // g++ -O3 -Ofast -m64 -lstdc++ -lpthread -std=c++17 Benchmark.cpp -o Benchmark | |
| #include <iostream> | |
| #include <cstring> | |
| #include <vector> | |
| #include <thread> | |
| #include <random> |
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
| var s = "[" | |
| for (let ImageElement of document.getElementsByTagName("img")) { | |
| if (ImageElement.getAttribute("id")) { | |
| let str = ImageElement.getAttribute("src") | |
| s += `'${str.substr(2, str.length)}',` | |
| } | |
| } | |
| s += "]" | |
| c = `import shutil, requests\\ns=${s}\\ni=0\\nfor u in s:\\n\\tb = requests.get('https://'+(u.replace('-large.','-xxlarge.')), stream=True)\\n\\twith open(str(i)+'.png','wb') as f:\\n\\t\\tshutil.copyfileobj(b.raw,f)\\n\\t\\ti+=1` | |
| console.log(`python -c "exec(\\"${c}\\")"`) |
NewerOlder