Skip to content

Instantly share code, notes, and snippets.

View felixbd's full-sized avatar
💭
I may be slow to respond. ^^

Felix D felixbd

💭
I may be slow to respond. ^^
View GitHub Profile
@felixbd
felixbd / pytime.py
Created September 17, 2023 17:42
pytime
#!/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"
@felixbd
felixbd / pdfsInDir2png.py
Created April 30, 2023 13:15
requires: pdfinfo (apt install poppler-utils) and pdf2image (pip3 install pdf2image)
#!/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
@felixbd
felixbd / convert-dicom-images.py
Last active June 22, 2022 09:18
convert dicom images
#!/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
@felixbd
felixbd / din-letter-template.tex
Last active January 9, 2024 14:43
Simple letter template. (DIN, LaTeX)
%! 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}