Skip to content

Instantly share code, notes, and snippets.

View TheDataLeek's full-sized avatar

Zoë TheDataLeek

View GitHub Profile
#!/usr/bin/env python
'''
Linked list Python style
See cpp submission for function descriptions
Will Farmer
CSCI2270
@TheDataLeek
TheDataLeek / binary_search_tree.py
Created January 29, 2013 04:10
First file is my test code, second is my actual python code.
#!/usr/bin/env
#
# binary_search_tree.py
#
class bt_node:
data = 0
left = None
right = None
@TheDataLeek
TheDataLeek / binary_search_tree.py
Created February 1, 2013 04:28
Binary Search Tree implementation and test harness
#!/usr/bin/env
#
# binary_search_tree.py
#
import sys
class bt_node:
data = 0
@TheDataLeek
TheDataLeek / sorting.cpp
Created February 7, 2013 05:21
Homework 3 submission
/*
sorting.cpp
William Farmer
*/
#include "sorting.h"
#include <cstdio>
@TheDataLeek
TheDataLeek / Mandelbrot
Last active August 29, 2015 14:00
A Simple Mandelbrot Set Generator
{
"metadata": {
"name": "",
"signature": "sha256:f55f6c39d0553372356143e3f1c9009717f5c32352916730d9ce295484ed3bbe"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@TheDataLeek
TheDataLeek / Takehome_Final.ipynb
Last active August 29, 2015 14:00
APPM4570 Statistics Takehome Final iPython Notebook
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@TheDataLeek
TheDataLeek / f-stat
Last active August 29, 2015 14:00
F Statistic Issue
{
"metadata": {
"name": "",
"signature": "sha256:c0c35d4739a8dfbfcb06697f3c95b44631ed2541420c0d68dccf7feacac61695"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@TheDataLeek
TheDataLeek / gist:35c031e99d3b1ee63f29
Created January 21, 2015 23:21
Chaotic Dynamics HW2
{
"metadata": {
"name": "",
"signature": "sha256:f3ead9d33bd18d3cf420ff0dec9fa0718ef0e2b28812e9b1f825fcbc3f3feed1"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% LaTeX Imports
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amsfonts} % Math fonts
\usepackage{amsmath} % Math formatting
\usepackage{amssymb} % Math formatting
\usepackage{amsthm} % Math Theorems
%\usepackage{arydshln} % Dashed hlines
\usepackage{attachfile} % AttachFiles
\usepackage{cancel} % Cancelled math
\documentclass[10pt]{article}
\input{./tex/header.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Beginning of document items - headers, title, toc, etc...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{fancy} % Establishes that the headers will be defined
\fancyhead[LE,LO]{Numerical Analysis Notes} % Adds header to left
\fancyhead[RE,RO]{William Farmer} % Adds header to right
\cfoot{\mlptikz[size=0.25in, text=on, textposx=0, textposy=0, textvalue=\thepage, textscale=0.75in]{applejack}}