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 / 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
@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 / 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 / screenshotty.py
Created November 8, 2013 01:22
OpenGL screenshots using python
#! /usr/bin/env python
'''
Simple example demonstrating how to take a screenshot
'''
import time
import sys
import os
import argparse
#OpenGL
@Jerdak
Jerdak / FreeFormDeformer.cs
Created August 12, 2013 04:24
Example of free form deformation using Unity. Full package can be found in my main repository: https://github.com/Jerdak/FreeFormDeformation/tree/master/Unity
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
/// <summary>
/// Helper class that represents a parameterized vertex
/// </summary>
public class Vector3Param {
///bernstein polynomial packing
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Jerdak
Jerdak / CoroutineTracker.cs
Created January 24, 2014 20:48
Incomplete example of how to track Unity coroutines.
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
/// <summary>
/// Coroutine tracker.
///
/// Custom handler for coroutines that tracks when they start and stop...
/// Uses Singleton class from: http://wiki.unity3d.com/index.php/Singleton
/// </summary>
# requires https://github.com/Rapptz/discord.py
# this snippet was scripted against discord.py v0.16.8 @ commit 7b806667cda6dc26b6a99d73473dcff5c2dd4044
import discord
import asyncio
import re
from types import ModuleType
sandbox = ModuleType('sandboxed_modules')
@Jerdak
Jerdak / .block
Last active May 8, 2017 19:07 — forked from mbostock/.block
Parallel Coordinates
license: gpl-3.0