I hereby claim:
- I am p4block on github.
- I am p4block (https://keybase.io/p4block) on keybase.
- I have a public key ASB_lI3yeaY3azvgjI7Oz3Wgr2PG6jdjLX6FNuKY6DSzOwo
To claim this, I am signing this object:
#!/bin/bash | |
# Variables | |
GITLAB_URL="https://gitlab.com" | |
ACCESS_TOKEN="" | |
PAGE=1 | |
CLONE_DEPTH=1 | |
REPOS=() | |
#!/bin/bash | |
LOG_FILE="benchmark_results_$(hostname)_$(date +%Y%m%d_%H%M%S).log" | |
echo "===== Linux Kernel Compile Benchmark =====" | tee -a "$LOG_FILE" | |
echo "Running on: $(hostname)" | tee -a "$LOG_FILE" | |
echo "CPU: $(lscpu | grep 'Model name')" | tee -a "$LOG_FILE" | |
echo "Cores/Threads: $(nproc)" | tee -a "$LOG_FILE" | |
echo "-----------------------------------------" | tee -a "$LOG_FILE" |
import requests | |
from bs4 import BeautifulSoup | |
import sys | |
def download_patches(game_id): | |
# Construct the URL to download the XML file | |
xml_url = f"https://a0.ww.np.dl.playstation.net/tpl/np/{game_id}/{game_id}-ver.xml" | |
# Make a request to download the XML, ignoring SSL errors | |
response = requests.get(xml_url, verify=False) |
I hereby claim:
To claim this, I am signing this object:
# Modify to get the user folder | |
export WORKDIR="${HOME}/.faforever/linux-prefix" | |
export WINEPREFIX="${WORKDIR}/prefix" | |
export DXVKVERSION=2.1 | |
# Useful environment variables | |
export WINEDLLOVERRIDES="mscoree,mshtml=" | |
export DXVK_HUD=fps,api | |
export MANGOHUD=1 |
user nginx; | |
worker_processes 12; | |
error_log /var/log/nginx/error.log warn; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} |
#!/usr/bin/env bash | |
fortune | cowsay -f `ls /usr/share/cows/ | shuf -n 1` |