Skip to content

Instantly share code, notes, and snippets.

View callahanca's full-sized avatar

Conor A. Callahan callahanca

  • Buena Vista, CO
View GitHub Profile

Keybase proof

I hereby claim:

  • I am callahanca on github.
  • I am c0nur (https://keybase.io/c0nur) on keybase.
  • I have a public key ASAhBxdDatv6tTDoT51vpzstxPqt-20z-kITCimRdvD9VAo

To claim this, I am signing this object:

@callahanca
callahanca / hw2.py
Created September 26, 2012 01:10 — forked from anonymous/hw2.py
homework 2 sales
def main():
divisions = [1, 2]
quarters = [1, 2, 3, 4]
sales = []
# get the sale figures per quarter by division
# loop through divisions
for division in divisions:
# loop through quarters
for quarter in quarters:
@callahanca
callahanca / hw3.py
Created July 10, 2012 01:37
ashley hw3
# File: hw3.py
# Author: Ashley Thomas
# Date: 07/09/12
# Section: 10
# E-mail: ashley28@umbc.edu
# Description:
# This program will tell the user what CMSC course requirements
# they must meet to complete the Computer Science major at UMBC.
def main ():