I hereby claim:
- I am ddasilva on github.
- I am dasilva (https://keybase.io/dasilva) on keybase.
- I have a public key ASDrk8YS24wcMfH-XmJdIyEGExACJCIsQ-5aJ-a5Q8Fl5Ao
To claim this, I am signing this object:
times,electron_num_density | |
2015-10-16 12:30:01.769898,11.839947 | |
2015-10-16 12:30:06.269934,13.191844 | |
2015-10-16 12:30:10.769961,13.824406 | |
2015-10-16 12:30:15.269996,13.736514 | |
2015-10-16 12:30:19.770024,14.049794 | |
2015-10-16 12:30:24.270058,13.686511 | |
2015-10-16 12:30:28.770086,13.511434 | |
2015-10-16 12:30:33.270121,13.368389 | |
2015-10-16 12:30:37.770148,12.302047 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
from datetime import datetime | |
import itertools | |
import socket | |
import time | |
LINE = 'Hello Brenden. This is your mother. Have you brushed your teeth today?' | |
while True: |
#!/usr/bin/python | |
""" | |
Usage: figdemo <message> | |
Example: figdemo "what's up github" | |
""" | |
import commands | |
import sys |
#!/usr/bin/python | |
""" | |
Prints ID3 tag information about files. | |
Usage: print_id3 *.mp3 | |
""" | |
import sys | |
import os | |
from ID3 import ID3 | |
from termcolor import cprint |