Skip to content

Instantly share code, notes, and snippets.

View Jerdak's full-sized avatar
💭
Rolling only 20s.

j.carson Jerdak

💭
Rolling only 20s.
  • 50' above the ground floating on an umbrella.
View GitHub Profile
@Jerdak
Jerdak / workout.py
Last active December 27, 2021 18:45
Quick (hacky) script to print tabulated workout weights for Wendler's 531 workout program.
try:
from tabulate import tabulate as tb
tabulated_style = True
except Exception as ex:
tabulated_style = False
# Replace these maxes with *your* maxes
actual_max = {
"benchpress":305,
@Jerdak
Jerdak / example_usage.py
Last active February 13, 2022 16:32
3-Dimensional (3D) file format based on Google's protobuf API.
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import print_function
import mesh_pb2 as pobj
def dump_mesh(mesh):
""" Dump mesh data up to, at most, 10 vertices
and 10 faces.
The 10 vert/face limit is simply to limit
@Jerdak
Jerdak / README.md
Created September 23, 2023 03:00
Bulk git backup and removal using Github CLI

Linux

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install gh