Skip to content

Instantly share code, notes, and snippets.

View TheRealJokerMan's full-sized avatar

Jamie Kenyon TheRealJokerMan

View GitHub Profile
@TheRealJokerMan
TheRealJokerMan / bin-file-maker.py
Created October 4, 2021 07:47
Create a zero-filled binary file.
#! /usr/bin/python3
import argparse
import enum
import pathlib
import sys
class Units(enum.Enum):
Kibibytes = 'KiB'
@TheRealJokerMan
TheRealJokerMan / tabs-to-spaces.py
Created September 15, 2021 13:07
Convert tabs to spaces and remove trailing whitespace in code files
#! /usr/bin/python3
import argparse
import functools
import multiprocessing
import pathlib
import os
import sys