redis-server --version
redis-cli --version
apt-get install build-essential
| from random import randint | |
| def thanos_sort(array): | |
| while not is_sorted(array): | |
| target_length = int(len(array)/2) | |
| while len(array) > target_length: | |
| del array[randint(0, len(array)-1)] | |
| return array | |
| def is_sorted(array): |
I’m looking for any tips or tricks for making chrome headless mode less detectable. Here is what I’ve done so far:
Set my args as follows:
const run = (async () => {
const args = [
'--no-sandbox',
'--disable-setuid-sandbox',
'--disable-infobars',| // httpget.js: download a file (Windows Script Host) | |
| // usage: cscript httpget.js <url> <file> | |
| (function() { | |
| if (WScript.Arguments.Length != 2) { | |
| WScript.Echo("Usage: httpget.js <url> <file>") | |
| WScript.Quit(1) | |
| } | |
| var url = WScript.Arguments(0) |