View get_humble_order.py
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import sys | |
import urllib, json, time | |
''' | |
Download your order from Humble Bundle. | |
* Usage: |
View timetrack.py
from PIL import Image | |
import face_recognition | |
import time | |
import datetime | |
import sqlite3 | |
from sqlite3 import Error | |
import os | |
import logging | |
import subprocess |
View PIR.py
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") |
View mundraeuber.py
#!/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 * |
View icalParseRTM.py
#!/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 |
View index.php
<!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"> |