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
#ifndef FN_TO_BLOCK_H | |
#define FN_TO_BLOCK_H | |
#include <stdarg.h> | |
#ifdef __cplusplus | |
extern "C" { | |
#endif | |
// See: https://clang.llvm.org/docs/Block-ABI-Apple.html#high-level |
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
// the only dependency on node js | |
import { JSDOM } from 'jsdom'; | |
const dom = new JSDOM(); | |
Object.assign(globalThis, { | |
window: dom.window, | |
document: dom.window.document | |
}); |
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
/* | |
* ArgParse v5 | |
*/ | |
#ifndef ARGPARSE_H | |
#define ARGPARSE_H | |
#include <any> | |
#include <cstdint> | |
#include <cstring> | |
#include <exception> |
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
@echo off | |
cd %USERPROFILE%/Downloads/ | |
mkdir wgcf 2>nul | |
cd wgcf | |
echo Downloading wgcf... | |
curl -GSLZs "https://github.com/ViRb3/wgcf/releases/download/v2.2.22/wgcf_2.2.22_windows_amd64.exe" -o wgcf.exe | |
echo Generating key... | |
wgcf register & wgcf generate |