Skip to content

Instantly share code, notes, and snippets.

View postylem's full-sized avatar
🔣
these are status symbols

Jacob Louis Hoover postylem

🔣
these are status symbols
View GitHub Profile
@ihoover
ihoover / sort.py
Created August 12, 2014 01:12
The naivest sorting algorithm
import itertools
def is_sorted(l, comp = None):
"""
Is the the list l sorted, given the comparetor comp
"""
if(len(l) == 2):
if comp is None:
return l[0] < l[1]
else:
@tgarc
tgarc / example_usage
Last active March 25, 2022 13:44
Jekyll IPython notebook converter
ipython nbconvert --to markdown <notebook>.ipynb --config jekyll.py
@ganapativs
ganapativs / iTerm2 + oh-my-zsh + Pure theme + zsh plugins setup.md
Last active June 23, 2024 10:41
iTerm2 + oh-my-zsh + Pure theme + zsh plugins setup