From 1710a9ca178de1c6f60fcdb7d71031a835505d44 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Mon, 18 Feb 2019 08:49:50 -0500 Subject: Adds README and gitignore --- .gitignore | 2 ++ README.txt | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 .gitignore create mode 100644 README.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..926346e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.tar* +*.bak diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..192a265 --- /dev/null +++ b/README.txt @@ -0,0 +1,54 @@ +Landmark CS Assignments +======================= +Compiled February 2019 + +This is a collection of all of my Computer Science assignments at +Landmark College. + +All assignments that were in a git repo were joined using a edited +copy of this script: + +(Other assignments are included in their final form). +These classes were taken before I understood how to use git, please +excuse the poor/non-existent commit quality. + +Classes +------- +CS2771 : Embedded Systems (Fall 2017) +CS3871 : Operating Systems (Fall 2017) +CSC2621: Web Science (Fall 2017) +CS2501 : Data Structures and Algorithms (Spring 2017) +CS2452 : Computer Science 2 (Fall 2016) + +Info on specific assignments +---------------------------- +CS2771/alarm: + This program was designed to work with the edsim51 8051 + simulator which can be found here: + +CS3871/os: + This project includes a bootloader which loads a "os" that echos + the command and arguments given. + +CS3871/timing: + This program connects to a server that sends numbers, this client + then keeps a running average of the numbers over the last 60 + seconds. + +CS3871/jobScheduler: + This program implements shortest job first for dummy programs + (using function). + +CS3871/filesystem: + Given a dummy disk driver this attempts to create a filesystem to + utilize said driver. + +CS2771/Assebly1: + A quick assignment to convert c code to assembly. + +CS2501/trees: + Various programs working with trees (details in file comments). + +CS2452: + Most of these programs are building up to the final project + (Skype) which implements a voice calling system. -- cgit v1.1