Skip to content

Instantly share code, notes, and snippets.

View Allstreamer's full-sized avatar
🇩🇪

Allstreamer Allstreamer

🇩🇪
  • Germany
  • 18:51 (UTC +02:00)
View GitHub Profile
@Allstreamer
Allstreamer / symbols.csv
Created January 3, 2025 18:53
Complete list of Stock Symbols (ISINs) listed on the NYSE as of 2023-09-23
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
Symbol
US5949181045
US0378331005
US67066G1040
US0231351067
US02079K3059
US30303M1027
US02079K1079
US5324571083
US11135F1012
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)