Skip to content

Instantly share code, notes, and snippets.

View juliusmh's full-sized avatar

Julius Hinze juliusmh

View GitHub Profile
@juliusmh
juliusmh / python_facebook_login.py
Last active October 18, 2024 13:04
Facebook Login through HTTP using python requests.
#-------------------------------------------------------------------------------
# Name: FACEBOOK TEST
# Purpose:
#
# Author: Julius
#
# Created: 16.06.2015
# Copyright: (c) Julius 2015
# Licence: <APACHE>
#-------------------------------------------------------------------------------
@juliusmh
juliusmh / python_soundcloud_dl.py
Last active August 29, 2015 14:18
Simple Soundcloud Download Script
#SIMPLE SC DOWNLOAD SCRIPT BY JULIUS HINZE
#07.04.2015
#USE THIS SCRIPT AS YOU WANT (WAS ONLY 5 MINUTES OF WORK SO I DO NOT CARE)
import json
import urllib2
#ALL PARAMETER FOR DOWNLOAD HERE
@juliusmh
juliusmh / python_projector_tk.py
Last active August 29, 2015 14:15
Python Projections, printet in Tkinter Canvas
#PROJECTOR VERSION 2 USING MATPLOTLIB (AKA PYPLOT)
#BY JULIUS HINZE
from math import *
from time import *
from tkinter import *
#UPDATER
master = Tk()
master.title("3D Plotter")