record and playback mouse movement; useful for veracrypt.
Python3 -m venv venv
Source venv/bin/activate
pip install pyautogui numpy matplotlib scipy pynput
| ## ok.ru | |
| ## Chatango | |
| ## 247CTF | |
| ## Znanija | |
| ## zhihu | |
| ## These are the results you need to look out for. | |
| ## Use libreoffice calc, use auto-filter for any site name you want to get rid of. |
| #!/bin/bash | |
| # User configuration file for IOPaint | |
| # Edit these settings to customize your IOPaint installation | |
| # GPU Configuration | |
| GPU_VENDOR="cpu" # nvidia, amd, or cpu | |
| # Virtual environment settings | |
| VENV_DIR="${HOME}/.iopaint_venv" |
This gist has two files in it: first-names.txt and last-names.txt, each with 4096 names taken from some unnamed database.
Useful for generating mock data for testing or for opfuscating production data for testing.
See https://stackoverflow.com/a/50242368/15109 for some thoughts about data obfuscation.
| #!/bin/bash | |
| # Check if the script is run as root | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root. Please use sudo or run as root." | |
| exit 1 | |
| fi | |
| # Function to install packages based on the distribution | |
| install_packages() { |
| #!/bin/bash | |
| # Set up some variables to store the dialogue | |
| ch1="Well, Seymour, I made it, despite your directions." | |
| sk1="Ah, Superintendent Chalmers, welcome. I hope you're prepared for an unforgettable luncheon!" | |
| ch2="Yeah." | |
| sk2="Oh, ye Gods! My roast is ruined! But what if I were to purchase fast food and disguise it as my own cooking? [chuckles] Delightfully devilish, Seymour." | |
| ch20="SEEEEEYMOOUUURRR!!!" | |
| sk3="Superintendent! I was just...uh---just stretching my calves on the windowsill. Isometric exercise! Care to join me?" | |
| ch3="Why is there smoke coming out of your oven, Seymour?" |
| #!/bin/bash | |
| echo -n "This script will configure your venv for AUTOMATIC1111 webui, first the venv has to be removed" | |
| echo " and reinstalled or existing venv for AMD can be used (or NVIDIA)." | |
| read -p "Continue configuration for AMD or NVIDIA? [y/n] " answer | |
| if [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then | |
| echo "Ok continuing the install of either AMD or Nvidia venv, will take a few moments." | |
| else | |
| exit 0 | |
| fi |
| #!/bin/bash | |
| if [ $EUID -ne 0 ] | |
| then | |
| echo "This program must run as root to function." | |
| exit 1 | |
| fi | |
| # to see if the service is already started |