-novid -nojoy -nosteamcontroller -nohltv -particles 1 -precachefontchars -noquicktime
$STEAM_LIBRARY\steamapps\common\Team Fortress 2\tf\custom\module.cfg
:
# Debian | |
sudo apt install clang libc++-dev libc++abi-dev libunwind-dev | |
# Red Hat | |
## yum | |
sudo yum install libcxx-devel libunwind-devel | |
## dnf | |
sudo dnf install libcxx-devel libunwind-devel |
CC = clang | |
CFLAGS = -std=c11 -O0 -g3 -Wall -Wextra | |
ASAN_FLAGS = -fsanitize=address -fsanitize-address-use-after-scope -fsanitize-recover=address | |
CSRC = $(wildcard *.c) | |
COBJ = $(patsubst %.c, %.o, $(CSRC)) | |
.PHONY: all | |
all: main |
#include <ostream> | |
#include <string> | |
#include <type_traits> | |
#include <utility> | |
template <typename CharT, typename Arg> | |
auto | |
Print(std::ostream &os, [[maybe_unused]] CharT delimiter, const Arg &arg) | |
-> std::ostream & { | |
static_assert( |
sudo apt install nmap | |
curl -sSf --tlsv1.2 --proto '=https' -LO https://nmap.org/svn/scripts/ssl-enum-ciphers.nse | |
nmap --script ./ssl-enum-ciphers.nse -p 443 ${DOMAIN} |
app.normandy.api_url = ""
app.normandy.enabled = false
app.shield.optoutstudies.enabled = false
app.update.auto = false [OS except Windows]
app.update.background.scheduling.enabled = false [Windows]
beacon.enabled = false
breakpad.reportURL = ""
body { | |
height: 100dvh; | |
display: flex; | |
flex-direction: column; | |
} | |
main { | |
flex-grow: 1; | |
overflow: auto; | |
} |
#include <security/pam_appl.h> | |
#include <security/pam_client.h> | |
#include <security/pam_ext.h> | |
#include <security/pam_filter.h> | |
#include <security/pam_misc.h> | |
#include <security/pam_modules.h> | |
#include <security/pam_modutil.h> |