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
#!/bin/bash | |
set -eu -o pipefail | |
test $# -eq 2 || { | |
echo "Usage: $0 <RULE_NAME> <EXE_DIRECTORY>" >&2 | |
echo " | |
This script creates a Windows Firewall rule that block outgoing internet connections \ | |
for each and every .exe file that exists within the given <EXE_DIRECTORY>. |
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
# Export All Public | |
gpg -a --export > pubkeys.asc | |
# Export All Secrets | |
gpg -a --export-secret-keys > secretkeys.asc | |
# Export TrustDB | |
gpg -a --export-ownertrust > ownertrust.txt | |
# Checking |
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
# pip install xlib | |
# Usage: | |
# Go to https://mail.google.com/mail/u/1/#section_query/(in%3Ainbox+OR+label%3A%5Eiim)+is%3Aunread/p5 | |
# Then run the script. | |
from time import time, sleep | |
from typing import Tuple, Union, Optional | |
from Xlib import X | |
from Xlib.X import ButtonPress, ButtonRelease |
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
.playground > div:first-child { | |
overflow-x: auto !important; | |
} |
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
; Script generated by the Inno Setup Script Wizard. | |
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! | |
#define AppName "Urbanotopus" | |
#define AppEntryPoint "Urbanotopus.exe" | |
#define AppURL "https://github.com/Urbanotopus/urbanotopus/releases" | |
[Setup] | |
; NOTE: The value of AppId uniquely identifies this application. | |
; Do not use the same AppId value in installers for other applications. | |
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) |