This file contains 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
import random | |
import re | |
#Text to be Encoded | |
text = "This is a test sentance this should come out garbled but readable" | |
#Regex to strip out any special characters | |
regex = re.compile('[^a-zA-Z ]') | |
cleaned = regex.sub('', text) |
This file contains 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
# This Script uses the following dependancies | |
# pip install nums_from_string | |
# | |
# To Run this script type: | |
# python snow.py <Log File Name> | |
# | |
# Example: | |
# python snow.py snow.log | |
# | |
# Written By Allstreamer_ |
This file contains 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
Arch: win64 | |
Creation_Date: | |
Custom_Path: false | |
DLL_Overrides: {} | |
DXVK: | |
Environment: Custom | |
Environment_Variables: {} | |
Installed_Dependencies: | |
- allfonts | |
- dotnet40 |