This file contains 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
Rem means comments | |
Rem command for creating virtualenv (make the virtualenv name same as foldername | |
for %I in (.) do echo %~nxI & workon %~nxI & mkvirtualenv -a %cd% %~nxI | |
Rem launching arguments for cmd | |
for %I in (.) do echo %~nxI & workon %~nxI |
This file contains 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 os | |
import glob | |
import shutil | |
import pathlib | |
import ffmpeg | |
current_path = pathlib.Path(__file__).parent.resolve() | |
videos = glob.glob(os.path.join(current_path, '**', '*.mkv'), recursive=True) |
This file contains 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
bind "N" "buy p250" | |
bind "H" "buy smokegrenade;buy decoy" | |
bind "V" "buy flashbang;buy molotov;buy hegrenade" |
This file contains 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
server { | |
resolver 1.1.1.1 1.0.0.1 valid=300s; | |
resolver_timeout 5s; | |
ssl_buffer_size 8k; | |
ssl_verify_client off; | |
client_body_timeout 12; | |
client_header_timeout 12; | |
client_max_body_size 900m; |