This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import csv | |
| import sys | |
| #Author: Anthony Hess | |
| #File: csvSearch.py | |
| # This file searches the corresponding .csv file for the taf or metar | |
| # related to the airport ID. | |
| # ARGV [1] accepts airport identifier eg. KSEA | |
| # ARGV[2] accepts "tafs" or "metars" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Author: Anthony Hess | |
| ; Description: This program will take in user input as 15 integers in a string, converts the | |
| ; numbers to numeric, stores them in an array, then converts them back into a string array | |
| ; before displaying the numbers, their sum, and their average. | |
| INCLUDE Irvine32.inc | |
| ;================================== | |
| ; MACRO to display a string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TITLE Program Template (template.asm) | |
| ; Author: Anthony Hess | |
| ; Description: This program takes input from the user indicating how many prime numbers they would like to see. | |
| ; The limited input is between 1 and 300. If another number is entered, the user will be asked to | |
| ; try again. | |
| INCLUDE Irvine32.inc | |
| .data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Author: Anthony Hess | |
| //Date: 2/30/14 | |
| //Project 5 for CS165 | |
| //Purpose: To simulate "Conways Game of Life" | |
| //Input: User can choose from 2 different starting points and watch | |
| // as the game simulates the life cycle. | |
| #include <iostream> | |
| #include <iterator> | |
| #include <string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is the implementation file for the cow game | |
| // Author Tony Hess | |
| // Date: 3/12/14 | |
| // Purpose: This file holds the classes and functions which are used for the cow and the players information | |
| #include <iostream> | |
| #include <fstream> | |
| #include <ctime> | |
| #include <cstdlib> |