View client.py
This file contains 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 time | |
import socket | |
for pings in range(10): | |
client_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) | |
client_socket.settimeout(1.0) | |
message = b'test' | |
addr = ("127.0.0.1", 12000) | |
start = time.time() |
View get_dbpedia_people.py
This file contains 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
from SPARQLWrapper import SPARQLWrapper, JSON | |
import html, datetime, os, json, glob, time | |
def send_sparql_query(q, timeout=None, sleep=0): | |
time.sleep(sleep) | |
try: | |
sparql = SPARQLWrapper("http://dbpedia.org/sparql") | |
sparql.setReturnFormat(JSON) | |
if timeout: sparql.setTimeout(timeout) | |
sparql.setQuery(q) |
View functions.py
This file contains 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
from fractions import Fraction | |
import music21 | |
import glob | |
# remove leading / trailing whitespace | |
music21.defaults.ticksAtStart = 0 | |
notes = set([12*j + i for i in [0,2,4,5,7,9,11] for j in [0,1,2,3,4,5,6,7,8,9,10] ]) | |
def constrain_pitch(val): |
View get_wiki_people.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View chopin.txt
This file has been truncated, but you can view the full file.
This file contains 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
View gist:aa132323aca8aa50587331267def162d
This file contains 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
from SPARQLWrapper import SPARQLWrapper, JSON | |
from collections import defaultdict | |
from bs4 import BeautifulSoup | |
import numpy as np | |
import json, os, glob, subprocess, string | |
import nltk, codecs, re, shutil, sys | |
################################################## | |
# Wrapper to find nested location of stored data # | |
################################################## |
View phyllotaxis.py
This file contains 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
%matplotlib inline | |
from math import cos, sin, sqrt, pi | |
import numpy as np | |
import matplotlib.pyplot as plt | |
# golden angle definition | |
ga = 360/((1+sqrt(5))/2)**2 | |
# initialize random array | |
a = np.zeros((1000, 2)) |
View imagenet1000_clsidx_to_labels.txt
This file contains 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
{0: 'tench, Tinca tinca', | |
1: 'goldfish, Carassius auratus', | |
2: 'great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias', | |
3: 'tiger shark, Galeocerdo cuvieri', | |
4: 'hammerhead, hammerhead shark', | |
5: 'electric ray, crampfish, numbfish, torpedo', | |
6: 'stingray', | |
7: 'cock', | |
8: 'hen', | |
9: 'ostrich, Struthio camelus', |
View ingest_epo.py
This file contains 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 itertools | |
import argparse | |
import MySQLdb | |
import json | |
import glob | |
import os | |
# for usage run `python ingest_epo.py -h` | |
defaults = { |
View turing.py
This file contains 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
from machine import Pin | |
import serial | |
# serial: https://pythonhosted.org/pyserial/pyserial.html#overview | |
# create an output pin on pin #8 | |
out_pin = Pin(8, Pin.OUT) | |
# set the output pin to high mode | |
out_pin.value(1) |
NewerOlder