I hereby claim:
- I am hathawsh on github.
- I am hathawsh (https://keybase.io/hathawsh) on keybase.
- I have a public key ASD3fWkhrwqCpOMjCSa1cSgwL8Uo8gi4McxMef6die0_HAo
To claim this, I am signing this object:
| import random | |
| earth_total = 0 | |
| ship_total = 0 | |
| for particle in range(1000): | |
| earth_result = random.random() >= 0.5 | |
| if earth_result: | |
| ship_result = random.random() >= 0.6 |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| """Alter Original Prusa i3 MMU tool changes to stop internal stringing. | |
| This changes the filament unload procedure so that right after pulling out, | |
| the extruder pauses (for a little cooling), pushes back in | |
| (to compress the string), and pulls out again (to break the string.) | |
| See: https://github.com/prusa3d/Slic3r/issues/396 | |
| """ |
| """Message encryption/decryption with compression.""" | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Cipher import PKCS1_OAEP | |
| from Crypto.Signature import PKCS1_PSS | |
| from Crypto.Hash import SHA | |
| from base64 import urlsafe_b64encode | |
| from base64 import urlsafe_b64decode | |
| import zlib |