Skip to content

Instantly share code, notes, and snippets.

View michaelmotzkus's full-sized avatar

Michael Motzkus michaelmotzkus

  • Cuxhaven, Germany
View GitHub Profile
{
"PythonBaseExceptions":
{
"About": "This document covers Python exceptions and assigns them a user friendly message in several languages.",
"ScopeOfDocument": "Python BaseExceptions, to keep this document as lean as possible, there are other documents for other exceptions.",
"Languages": ["English", "German"],
"DateOfCreation": "2019-03-25",
"LastUpdate": "2019-03-26",
"License":
{
@michaelmotzkus
michaelmotzkus / WOFComplete.py
Last active March 31, 2022 23:38
These are 3 very long Files! Wheel of Fortune - Python console game + json-files
# sys and its functions are only used for the autograder, setExecutionLimit is not in the standard sys-module!
# import sys
# sys.setExecutionLimit(600000) # let this take up to 10 minutes
import json
import random
import time
VOWEL_COST = 250
from urllib.request import urlopen
import twurl # This has a red underscore, because PyCharm doesn't like imports that have no class(es)
import json
from mm_db import mm_db
import mm_file
TWITTER_URL = 'https://api.twitter.com/1.1/friends/list.json'
DB_PATH = '../../databases/'
db = mm_db(DB_PATH + 'spider.sqlite', 'sqlite3')
@michaelmotzkus
michaelmotzkus / z_graded_emaildb_1.py
Last active February 18, 2019 00:58
Grade Assignment Coursera / University of Michigan / py4e / Using Databases with Python / week2
import sqlite3
import re
db_path = '../databases/'
db = db_path + 'z_graded_emaildb_1.sqlite'
file_path = '../../text_files/'
file = file_path + 'mbox.txt'
count = {}
columns = {'org': 'Text,', 'count': 'INTEGER'}
@michaelmotzkus
michaelmotzkus / greedy.c
Created December 29, 2018 07:37
CS50 - Week 1 - Walkthrougs - greedy.c
#include <cs50.h>
#include <stdio.h>
#include <math.h>
float change;
int coins = 0;
int input_change(void);
int sum_coins(int coin_value);