Skip to content

Instantly share code, notes, and snippets.

View rdermer's full-sized avatar
🍄
Having fun with python in private repos - so there

rdermer

🍄
Having fun with python in private repos - so there
View GitHub Profile
@rdermer
rdermer / cribbage.py
Created May 21, 2026 18:05
average score of all possible cribbage hands
#!/usr/bin/env python3
# Results of averaging all
# HANDS 12994800 AVG 4.7691522762951335
import itertools
# Rank values for 15s
rank_values = {
'A': 1, '2': 2, '3': 3, '4': 4, '5': 5,
@rdermer
rdermer / gist:2b04239fdb05e27b9c322e8a75d15817
Created January 15, 2025 20:30
Latest filename from directory or list of files - whitespace safe
#!/usr/bin/env python3
import sys
import os
# prints name of newest file - ignores directories
# 3 cases
# list of files
# a single argument that is a directory