I hereby claim:
- I am 1fabunicorn on github.
- I am 1fabunicorn (https://keybase.io/1fabunicorn) on keybase.
- I have a public key whose fingerprint is E8C2 0934 3604 3EE5 4FC2 225F 52D0 FC58 A950 5445
To claim this, I am signing this object:
| /* | |
| Base machine | |
| Choose one option below to define machine size, board, and parameters | |
| Select machine size | |
| */ | |
| //#define MachineEnder2 | |
| //#define MachineEnder3 | |
| //#define MachineEnder4 |
I hereby claim:
To claim this, I am signing this object:
| // forEachIn | |
| function forEachIn(object, action) { | |
| for (var property in object) { | |
| if (Object.prototype.hasOwnProperty.call(object, property)) | |
| action(property, object[property]); | |
| } | |
| } | |
| // Dictionary type | |
| function Dictionary(startValues) { |
| #!/usr/bin/env python | |
| #-------------------------------------------------------------------------- | |
| # Tic Tac Toe game in Python | |
| # Author: Mawuli Adzaku <[email protected]> | |
| # Date: 20-05-2013 | |
| # Tested with Python 2.7 | |
| # TO RUN: | |
| # sudo chmod a+x tictactoe.py | |
| # ./tictactoe.py | |
| # OR JUST RUN : python tictactoe.py |
| import os | |
| from subprocess import check_output | |
| from time import sleep | |
| from json import loads | |
| from shlex import split | |
| #run this module while ./dashd is running | |
| class Dashpylib: | |
| def __init__(self, dir): |
| import threading | |
| from time import sleep | |
| import random | |
| y = random.randint | |
| z = sleep | |
| class testA(threading.Thread): | |
| def run(self): |
| from time import sleep | |
| cat = " A___A \n A___A |o o|\n ____ / o o \ |='=|\n___/~____ ='= /_____/ |_________\n (______)__m_m_) / ||||\n |___||||]" | |
| def al(): | |
| print "Al, you are a wonderfull person" | |
| sleep(4) | |
| print "\nyou bring joy to me, and support.\nyour words feel like a big hug," | |
| sleep(6) | |
| print "\n\n" + cat | |
| sleep(.5) | |
| print "this is TWO cats if you can't tell" |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- | |
| I attemted to clean this up, but it can't be super pretty cause its an html email. | |
| --> | |
| </head> | |
| <body> | |
| <div style="font-family: sans-serif;font-stretch: ultra-expanded;border-style:dashed"> |
| import os | |
| import gnupg | |
| from subprocess import call | |
| directory_use = str(raw_input("Please specify the directory to make the keys in. Please include the full path. This script will delete everything in this directory so please be carfull\n")) | |
| keyring_name = str(raw_input("please specify the file name you woulk like to name the public key\n")) | |
| secret_name = str(raw_input("please specify the file name you woulk like to name the PRIVATE key\n")) | |
| pub_key_type = str(raw_input("please specify what type of key you want the public key to be. RSA or DSA? This is not case sensitive\n").upper()) | |
| pub_length = int(raw_input("please specify how big you want the pubic key to be. between 1024 and 2048 Bytes ")) | |
| name = str(raw_input("please specify the name you would like to be associated to these keys\n")) | |
| comment = str(raw_input("Make a comment for the key. If left blank, comment will be 'Generated by gnupg.py' ")) |