This file contains hidden or 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
# A python script which makes emails in all files in current directory and sub-directories anonymous. | |
# e.g. A file with the following contents: | |
# [email protected] | |
# Sid Phn#- 6385833322 | |
# [email protected] | |
# [email protected] | |
# [email protected] | |
# Would change to: |
This file contains hidden or 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 numpy as np | |
import matplotlib.pyplot as plt | |
w = 400 | |
h = 300 | |
def normalize(x): | |
x /= np.linalg.norm(x) | |
return x |
NewerOlder