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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import sys | |
import urllib, json, time | |
''' | |
Download your order from Humble Bundle. | |
* Usage: |
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 PIL import Image | |
import face_recognition | |
import time | |
import datetime | |
import sqlite3 | |
from sqlite3 import Error | |
import os | |
import logging | |
import subprocess |
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 RPi.GPIO as GPIO | |
import time | |
import datetime | |
import sqlite3 | |
from sqlite3 import Error | |
import os | |
import logging | |
text_file = os.path.join(os.path.dirname(os.path.realpath(__file__)), "last_move.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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import json | |
from geojson import Feature, Point, FeatureCollection | |
from lxml import etree, html | |
from urllib2 import urlopen | |
import re | |
from tqdm import * |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""Small script for parsing the time estate to a correctly displayed enddate in ICS format. | |
Please do 'pip install ics' before using.""" | |
# Python 2 and 3 switch for importing urllib | |
try: | |
from urllib.request import urlopen | |
except ImportError: | |
from urllib2 import urlopen |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>Doing</title> | |
<!-- | |
uncomment if you'd like an favicon | |
<link rel="shortcut icon" href="//i.imgur.com/MLB8ZWH.png"> | |
--> | |
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure.css"> |