View netzplan.py
class Process(object): | |
def __init__(self, name, duration, next_processes=[]): | |
self.name = name | |
self.duration = duration | |
self.previous_processes = [] | |
self.next_processes = next_processes | |
for process in next_processes: | |
process.previous_processes.append(self) | |
def earliest_starting_point(self): |
View jobtitle.py
adjectives = { | |
'A': 'International', | |
'B': 'Coporate', | |
'C': 'National', | |
'D': 'Lead', | |
'E': 'Executive', | |
'F': 'Acting', | |
'G': 'District', | |
'H': 'Internal', | |
'I': 'Central', |
View doxygen.config
# Doxyfile 1.8.11 | |
# This file describes the settings to be used by the documentation system | |
# doxygen (www.doxygen.org) for a project. | |
# | |
# All text after a double hash (##) is considered a comment and is placed in | |
# front of the TAG it is preceding. | |
# | |
# All text after a single hash (#) is considered a comment and will be ignored. | |
# The format is: |
View pack.py
#!usr/bin/python3 | |
import os | |
from PIL import Image | |
from rectpack import newPacker | |
IMAGES = [] | |
# to lazy to handle rotation right now | |
PACKER = newPacker(rotation=False) |
View archnews.py
#!/usr/bin/python | |
""" | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2017 Vinzenz Johann Sinapius <vinzenz.sinapius@gmail.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. |