Martin has been talking a lot about the "Tim Table" lately...
Katja Steiger's FFPE use case
https://samply.github.io/tabelle-mock/ffpe-english/table.html
Martin has been talking a lot about the "Tim Table" lately...
Katja Steiger's FFPE use case
https://samply.github.io/tabelle-mock/ffpe-english/table.html
l
key by defaultpalettegen
feature of ffmpeg for better colors#!/usr/bin/python | |
# wordlist.txt is a tab-delimited word frequency list. | |
# A list for the German language can be found here: | |
# https://github.com/gambolputty/dewiki-wordrank | |
import sys | |
import re | |
from collections import Counter | |
from string import ascii_lowercase as letters |
#!/usr/bin/python3 | |
import math | |
DIGITS = 4 | |
class Body: | |
def __init__(self, pos, vel, mass): | |
self.pos = float(pos) | |
self.vel = float(vel) |