Skip to content

Instantly share code, notes, and snippets.

View sskenner's full-sized avatar
🔫
"[movin'] like they do"

santana kenner sskenner

🔫
"[movin'] like they do"
View GitHub Profile
@sskenner
sskenner / WAHH_Task_Checklist.md
Created September 15, 2022 21:20 — forked from amotmot/WAHH_Task_Checklist.md
The Web Application Hacker's Handbook - Task Checklist - Github-Flavored Markdown
@sskenner
sskenner / install_python3_6_on_C9.md
Created May 11, 2019 16:31 — forked from espozbob/install_python3_6_on_C9.md
Install Python3.6 on the C9
$ wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz

$ tar xvf Python-3.6.3.tgz

$ cd Python-3.6.3

$ ./configure --enable-optimizations

$ make -j8
@sskenner
sskenner / gist:9458873
Created March 10, 2014 03:17
recursive sort
def sort arr
rec_sort arr, []
end
def rec_sort unsorted, sorted
if unsorted.length <= 0
return sorted
end
# if get to here then more work to do