Skip to content

Instantly share code, notes, and snippets.

View gdifiore's full-sized avatar
💻

Gabriel DiFiore gdifiore

💻
View GitHub Profile
#
# clip_sorter.py
#
# code to help sort through folder of videos (e.g. video game clips)
# to determine which ones you want to keep and which to delete
#
# "yes" to move into new folder
# "no" to do nothing, then delete original folder
#
#
# how_did_you_lose_cfb.py
#
# code to determine games where teams favored by X points (spread) lost
# e.g. OSU losing to Michigan (2024) as 22.5pt favorites
#
import requests
SPREAD = 20.0 # spread to compare against
add $t2, $t0, $t0
lw $t1, 0($t2)
addi $t3, $t1, 20
add $t1, $t2, $t0
or $t1, $t2, $t0
#
# rename_arxiv_pdf.py - rename arXiv pdf to the contents of the first line (hopefully the title)
#
# (C) 2024 Gabe DiFiore <[email protected]>
#
import PyPDF2
import os
import sys