This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Simple progress bar. | |
Copyright (c) 2024 - Felix Drees - WTFPL | |
Do What the Fuck You Want to Public License | |
""" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
pytime.py - Display current time or countdown as ASCII art in the terminal | |
""" | |
# add to .zshrc | |
# alias pytime="$HOME/pytime.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import glob | |
from pdf2image import convert_from_path | |
# Get a list of all PDF files in the current directory | |
pdf_files = glob.glob('*.pdf') | |
# Loop through each PDF file and convert it to a PNG image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3.9 | |
# -*- coding: utf-8 -*- | |
""" | |
Do What the Fuck You Want To Public License - Use at your own risk, no warranty! | |
""" | |
import os | |
import sys | |
import argparse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%! Author = felix | |
%! Date = 12.06.2022 | |
%! License = The Unlicense | |
\documentclass[fromemail=on, fromphone=on, fromalign=right, DIN]{scrlttr2} | |
\usepackage[T1]{fontenc} | |
\usepackage[utf8]{inputenc} | |
\usepackage[ngerman]{babel} | |
\usepackage{eurosym} |