Skip to content

Instantly share code, notes, and snippets.

@benjamincohen1
Created March 13, 2013 03:21
Show Gist options
  • Save benjamincohen1/5149138 to your computer and use it in GitHub Desktop.
Save benjamincohen1/5149138 to your computer and use it in GitHub Desktop.
from Education import RIT, Princeton Day School
from RIT import Computer Science (Expected Graduation 2016)
class Benjamin_Cohen(self):
__slots__=('objective','experience','projects','notable_classes','languages','software','accomplishments')
def __init__(self):
self.objective="Software Engineering position where I can apply my skills in a creative and rewarding manner and continue to gain experience in the field"
self.experience = {"Freelance iOS Development":"10/2010-12/2011",'Mathematics and Computer Tutoring':'10/2011-Present','Princeton Day School Computer Dept. Summer Assistant':'6/09-8/09'}
self.projects = ["English-Lojban Translator","Multiple iOS apps",'Rho Epsilon Pi Website','ReadyToPay']
self.notable_classes=['iOS Development','Object Oriented Programming','Data Structures for Problem Solving','Differential Equations','Computer Science Theory','Software Engineering','AI','Programming Language Concepts','Special Topics: Language Technology']
self.languages=['HTML','CSS','JAVA','C++','Python','Objective-C','Haskell','Prolog','LISP']
self.software=['Photoshop','Windows XP/Vista/7','Mac OSx 10.4-10.8','Ubuntu','Microsoft Office']
self.accomplishments["Finalist, University Hacker Olympics"]
def get_in_contact(self):
return ("bn.chn2@gmail.com",'609-651-0233')
def see_references(self):
return "Just ask!"
def __str__(self):
return "Ben Cohen: Math Oriented Computer Science student who would love to further his experience at a software development company"
def isWillingToRelocate(self):
return True
def checkOutMyCode(self):
return "https://github.com/benjamincohen1"
$python
Python 2.7.3 (default, Dec 18 2012, 13:50:09)
[GCC 4.5.3] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>>from resume.py import *
>>>Ben=Benjamin_Cohen()
>>>Ben+anotherSoftwareEngineer
A great team
>>>Ben+newTechnology
NameError: name 'test' is not defined
>>>Time+=a little bit
>>>Ben+newTechnology
Learned!
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment