showmyip/__init__.py
# showmyip/__init__.py
from pyray import *
import requests
def main():
init_window(200, 200, "Whats My IP?")
while not window_should_close():| [ | |
| [ | |
| "_record", | |
| "cmd", | |
| [ | |
| "norecord", | |
| "release" | |
| ], | |
| "Record a demo incrementally.\n" | |
| ], |
| #!/bin/bash | |
| SRCDS_TOKEN="..." | |
| CS2_RCON_PORT=1002 | |
| CS2_PORT=27015 | |
| CS2_RCONPW="changeme" | |
| CS2_PW="changeme" | |
| CS2_MAXPLAYERS=10 | |
| CS2_ADDITIONAL_ARGS="" | |
| CS2_GAMEALIAS="competitive" # competitive, wingman, casual, deathmatch, custom | |
| CS2_MAPGROUP="mg_active" |
| #!/usr/bin/env python3 | |
| """ | |
| License: MIT License | |
| Copyright (c) 2023 Miel Donkers | |
| Very simple HTTP server in python for logging requests | |
| Usage:: | |
| ./server.py [<port>] | |
| """ | |
| from http.server import BaseHTTPRequestHandler, HTTPServer |
| #!/bin/bash | |
| # Usage: killover.sh nginx john 3 | |
| # Which means john can have maximum 3 nginx processes, the newest ones must be killed. | |
| cmd=$1 | |
| user=$2 | |
| max_pids=$3 | |
| pids="$(ps --sort=start_time --user "$user" --format pid,cmd | grep "$cmd" | awk '{print $1}')" | |
| pids_count=$(echo "$pids" | wc -l) |
| #!/bin/bash | |
| # Usage: ./conn-uptime.sh MyConnectionName | |
| conn=$1 | |
| timestamp1=$(nmcli -f connection.timestamp conn show $conn | awk '{print $2}') | |
| current_time=$(date +%s) | |
| duration=$((current_time - timestamp1)) | |
| echo "Duration since last network connection: $duration seconds" |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac | |
| # paths | |
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export PATH=$PATH:$HOME/.node/bin | |
| export PATH=$PATH:$HOME/.local/bin |
| #!/bin/bash | |
| # tested with mdbtools@0.9.1-1 on Debian@11 | |
| # | |
| # Setup: | |
| # sudo apt install mdbtools -y | |
| # | |
| # Usage: | |
| # bash ./acc2sql.sh mydb.accdb mydb.sql | |
| ## |
| import socks | |
| from time import time | |
| from dataclasses import dataclass | |
| from http.client import HTTPConnection, HTTPSConnection, HTTPResponse | |
| from urllib.parse import urlparse | |
| USER_AGENT = ( | |
| "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) " |
| #!/bin/bash | |
| # sourcemod is based on metamod | |
| tempdir="/opt/csgo-addons" | |
| csgodir="/home/steam/csgo-server/csgo" | |
| mkdir $tempdir | |
| cd $tempdir |
showmyip/__init__.py
# showmyip/__init__.py
from pyray import *
import requests
def main():
init_window(200, 200, "Whats My IP?")
while not window_should_close():