Skip to content

Instantly share code, notes, and snippets.

View thethrasher666's full-sized avatar

Jamie Kenyon thethrasher666

View GitHub Profile
@thethrasher666
thethrasher666 / 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'
@thethrasher666
thethrasher666 / 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