Skip to content

Instantly share code, notes, and snippets.

View kolyadin's full-sized avatar

Aleksey kolyadin

  • Easy Commerce
View GitHub Profile
<?php
[
'visitor' => [
'name' => '',
'surname' => '',
'company' => '',
'qr' => ''//todo
],
'weather' => [
@kolyadin
kolyadin / cplus_create_file.cpp
Created September 20, 2018 21:04
C++ simple create file
#include <iostream>
#include <fstream>
int main() {
std::ofstream outfile ("/path/to/dir/test.txt");
outfile << "my text here!" << std::endl;
outfile.close();
}
[
{
"type": "array",
"key": "child1",
"value": {
"gender": "male",
"name": "\u0442\u0438\u043c\u0430"
}
},
{

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',