I hereby claim:
- I am greghilston on github.
- I am grehg (https://keybase.io/grehg) on keybase.
- I have a public key ASCOOcDrU1i_l9t_2Fe5SKfOOUKZ_hY3R32NJLxENliGXgo
To claim this, I am signing this object:
#!/usr/bin/python3 | |
response = "" | |
affirmative = "y" | |
negative = "n" | |
while(response != affirmative and response != negative): | |
response = input("Do you miss Grehg? [{}/{}]".format(affirmative, negative)) |
I hereby claim:
To claim this, I am signing this object:
import sys | |
def eprint(*args, **kwargs): | |
"""Prints a message to stderr | |
:param args: variable amount of arg Strings to print to stderr | |
:param kwargs: variable amount of keyword arg Strings to print to stderr | |
""" |
# contains helpful premade actions we'll be using later. | |
# Anything that starts with os. came from this | |
import os | |
# gets a list of all the items in the current directory | |
file_names = os.listdir(".") | |
# we'll loop over every file in the current directory | |
for file_name in file_names: | |
# define the prefix we're looking to remove |
#!/usr/local/bin/phantomjs | |
var page = require('webpage').create(); | |
var system = require('system'); | |
// ***** Argument handling | |
function isInt(value) { | |
return !isNaN(value) && | |
parseInt(Number(value)) == value && |
# ensure our graphs are displayed inline | |
%matplotlib inline | |
import os | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import seaborn as sb | |
import numpy as np | |
import folium | |
from folium import plugins |
# Data from NASA on meteorite landings | |
df = pd.read_json(data_directory + "y77d-th95.json") |
# Hey everyone, I was having a tough time cleaning up my ROMs, as there would be multiple versions of the same game, like: | |
# Super-Smash(Japan).rom | |
# Super-Smash(Europe).rom | |
# Super-Smash(USA).rom | |
# I ended up writing this small Python (3.6) script that you can use to cleanup duplicate files. | |
# Execution looks like this, if you want to keep only USA files: |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
country=US | |
network={ | |
ssid="" | |
psk="" | |
key_mgmt=WPA2-PSK | |
} |