Skip to content

Instantly share code, notes, and snippets.

View Allstreamer's full-sized avatar
🇩🇪

Allstreamer Allstreamer

🇩🇪
  • Germany
  • 16:48 (UTC +02:00)
View GitHub Profile
Arch: win64
Creation_Date:
Custom_Path: false
DLL_Overrides: {}
DXVK:
Environment: Custom
Environment_Variables: {}
Installed_Dependencies:
- allfonts
- dotnet40
@Allstreamer
Allstreamer / snow.py
Created April 19, 2022 18:36
A script to Summarize a Snowflake(Tor Project) Log file
# 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_
@Allstreamer
Allstreamer / wordFucker.py
Created June 6, 2021 19:58
Swaps letters within words
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)