Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
'''
Id: "$Id$"
Description:
Test:
'''
"""
Given a list of probabilities (floats), and a list of values (anything), write a function/class/whatever:
@akumria
akumria / find-forks.py
Last active March 9, 2024 01:39
A quick way to find all the forks of a particular github project. see: https://github.com/akumria/findforks for a version which works now
#!/usr/bin/env python
import os
import urllib2
import json
import subprocess
user=None
repo=None