Skip to content

Instantly share code, notes, and snippets.

View cujomalainey's full-sized avatar
🚲

Curtis Malainey cujomalainey

🚲
View GitHub Profile
@cujomalainey
cujomalainey / i2c_decoder.py
Created March 3, 2024 18:28
simple 1 byte register i2c command parser
# Written by Curtis Malainey
# MIT License
from csv import DictReader
from argparse import ArgumentParser
from enum import Enum
class Transaction:
def __init__(self):
self.data = []
@cujomalainey
cujomalainey / negative-binomial.py
Last active March 7, 2021 02:11
Negative Binomial tool
import random
import argparse
def negative_binomial(number_of_tests, probability):
"""
simple negative_binomial random number generator for
range [1, number_of_tests]. In the event all tests
fail the generator falls back to uniform distribution
"""
random.seed()
@cujomalainey
cujomalainey / generateMultiGource.py
Last active December 3, 2016 04:48
A simple script to generate a multi-repo log for a gource render. Run this a directory consisting for just the targeted repositories and it will generate a common.txt for gource. Useful for when sed regex isn't behaving.
import csv
import os
import subprocess
ignores = ["/build"]
l = []
repos = os.walk(".").__next__()[1]