A revised version of IBEXSOFT awesome start up tools list.
Adding and updating as I go along.
Security and Risk Management | |
The CIA Triad: | |
- Confidentialility | |
- no unauthorized person can access (password protect) | |
- Integrity | |
- encryption of data | |
- cryptography | |
- Availability |
Security + | |
Spam filter | |
- Spam defined. | |
- in most cases, spam is defined as unsolicited bulk email(ube), or junk email. The spammer is hoping that the recipient will buy a product or service. | |
- Filters for spam |
## an attempt to listen to keypresses and monitor window focus | |
import time | |
import random | |
import re | |
import sys | |
import enum | |
import six | |
from six.moves import queue |
def hilbert_sort(data): | |
""" | |
Sorts an input array using Hilbert curve mapping. | |
Parameters: | |
data (list): The input array to be sorted. | |
Returns: | |
sorted_data (list): The sorted input array. | |
""" |
#!/bin/bash | |
# free time plus a need to build a screensaver in bash, enjoy the cascade. | |
# ps. the key to this is the "eval" function. | |
# - gary | |
# clear the screen and hide the cursor | |
echo -e "\033[2J\033[?25l" | |
# get the number of lines and columns of the terminal | |
R=$(tput lines) |
# services and policies :\ | |
# New names for the accounts | |
$NewAdminName = "GaryAdmin" | |
$NewGuestName = "GaryGuest" | |
# Define the services to be disabled | |
$servicesToDisable = @( | |
"MapsBroker", # Downloaded Maps Manager | |
"lfsvc", # Geolocation Service |
++++++++++[>++++++++++<-]>+++.------.+++++++++++++++++.+++++++.[-]++++++++++++++++++++++++++++++++.<+++++++[>+++++++++++++++++<-]>.----------------------.++++++++++++++++++.[-]++++++++++++++++++++++++++++++++.<++++++++[>+++++++++++++<-]>..---.+++++++++++++.-------------. |
#!/bin/bash | |
mkdir -p trocr_app | |
cd trocr_app | |
cat << 'EOF' > ocr.py | |
import sys | |
from PIL import Image | |
from transformers import TrOCRProcessor, VisionEncoderDecoderModel |