Skip to content

Instantly share code, notes, and snippets.

View cjessamy's full-sized avatar

Christopher C. Jessamy cjessamy

View GitHub Profile
@cjessamy
cjessamy / JSON.ahk
Created July 19, 2017 06:49 — forked from hoppfrosch/JSON.ahk
JSON Utilities for AutoHotkey #ahk #script #function #json
/*
Title: JSON
JSON Utilities for AutoHotkey
Details:
Internally the ActiveX Control "Windows Script Control " (http://www.microsoft.com/de-de/download/details.aspx?id=1949) is used by those functions
Author:
Compilation by hoppfrosch; Original work by Wicked and tmplinshi
@cjessamy
cjessamy / combinations.py
Created July 21, 2016 16:08 — forked from dougwt/combinations.py
Python: All Possible Combinations
def combinations(n, list, combos=[]):
# initialize combos during the first pass through
if combos is None:
combos = []
if len(list) == n:
# when list has been dwindeled down to size n
# check to see if the combo has already been found
# if not, add it to our list
if combos.count(list) == 0: