Skip to content

Instantly share code, notes, and snippets.

View rickthackeray's full-sized avatar

Rick Thackeray rickthackeray

View GitHub Profile
@rickthackeray
rickthackeray / make-boosters.py
Last active August 9, 2024 13:14
MTG cube booster generator
import random
import sys
import pandas
import numpy
input_file = sys.argv[1]
num_boosters = int(sys.argv[2]) if len(sys.argv) > 2 else 24
@rickthackeray
rickthackeray / cmdlet.ps1
Last active May 18, 2022 15:35
Template for a PowerShell cmdlet
# Below is the syntax for Get-Help compatibility
<#
.SYNOPSIS
Write something here.
.DESCRIPTION
Write something here.
.NOTES
Write something here.