-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmycourses.html
109 lines (107 loc) · 6.53 KB
/
mycourses.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Michael Hayworth ePortfolio</title>
<link rel="stylesheet" href="css/mycourses.css">
</head>
<body>
<div class="nav">
<a href="https://mhayworth.github.io" target="_parent">Home</a>
<a href="https://mhayworth.github.io/careergoals.html" target="_parent">Career Goals</a>
<a href="https://mhayworth.github.io/mycourses" target="_parent">My Courses</a>
<a href="https://mhayworth.github.io/experientiallearning.html" target="_parent">Experiential Learning</a>
<a href="https://mhayworth.github.io/resume.html" target="_parent">Resume</a>
<a href="https://mhayworth.github.io/contact.html" target="_parent">Contact</a>
</div>
<h1>My Courses</h1>
<div class="text">
<div class ="link">
<a href="https://mhayworth.github.io/about.html">EME2040 - Introduction to Educational Technology Course ePortfolio</a> <br><br>
<a href="https://mhayworth.github.io/EME3319/home.html">EME3319 - Design and Development of Educational Multimedia Course ePortfolio</a> <br><br>
<a href="https://mhayworth.github.io/EME3813/home.html">EME3813 - Technology-Enhanced Learning Environments Course ePortfolio</a> <br><br>
<a href="https://mhayworth.github.io/EME4673/home.html">EME4673 - Introduction to Instructional Design Course ePortfolio</a> <br><br>
<a href="https://mhayworth.github.io/EME4320/home.html">EME4320 - Instructional Development for Teaching and Learning ePortfolio</a>
</div>
<h2>GPA: 4.00/4.00<br><br>
Select a course to learn about its contents and any relevant projects:</h2>
<div id="COP3502" class="button"><h3>COP3502 - Programming Fundamentals 1 (Java)</h3></div>
<p id="COP3502Body" class="body">
Semester Taken: Fall 2020 <br>
Grade: A <br>
Course Description: Fundamentals of Object Oriented Programming through Java.<br><br>
Projects:<br>
Blackjack Simulator<br>
Image Displayer and storage with RLE<br>
Pac-Man auto player
</p>
<div id="COP3503" class="button"><h3>COP3503 - Programming Fundamentals 2 (C++)</h3></div>
<p id="COP3503Body" class="body">
Semester Taken: Spring 2021<br>
Grade: A<br>
Course Description: Fundamentals of Object Oriented Programming through C++.<br><br>
Projects:<br>
Linked List from scratch<br>
Image Editor<br>
MineSweeper Full Game with SFML Library
</p>
<div id="COP3530" class="button"><h3>COP3530 - Data Structures and Algorithms (C++)</h3></div>
<p id="COP3530Body" class="body">
Semester Taken: Fall 2021<br>
Grade: A<br>
Course Description: Implementation of and Theory Behind Important Data Structures and Algorithms.<br><br>
Projects:<br>
AVL Tree from scratch<br>
Unordered Hash Map from scratch<br>
Group Project: Movie Marathon Maker - Uses Dijkstra's, A*, and BFS to find links between movie actors - <a href="https://github.com/Adamkadaban/MovieMarathonMaker">GitHub</a>
</p>
<div id="CEN3031" class="button"><h3>CEN3031 - Introduction to Software Engineering (Python)</h3></div>
<p id="CEN3031Body" class="body">
Semester Taken: Spring 2022<br>
Grade: A<br>
Course Description: Introduction to Agile Methodolgy and Software Engineering Principles.<br><br>
Projects:<br>
Open Source Contribution: Mumble Chat Software (C++)<br>
Due Desk: Project Manager for time management software using python - <a href="https://github.com/CEN3031-G33/due-desk">GitHub</a><br>
</p>
<div id="CDA3101" class="button"><h3>CDA3101 - Computer Organization</h3></div>
<p id="CDA3101Body" class="body">
Semester Taken: Spring 2022<br>
Grade: A<br>
Course Description: Introduction to computer architecture and assembly programming.<br><br>
Projects:<br>
Code Translation - C++ to Assembly<br>
Assembly Code Simulator (python)
</p>
<div id="EEL3701" class="button"><h3>EEL3701 - AI Fundamentals</h3></div>
<p id="EEL3701Body" class="body">
Semester Taken: Spring 2022<br>
Grade: A<br>
Course Description: Introduction to AI Concepts including Machine Learning, Neural Networks, and ethical practices.<br><br>
Project (Semester Long):<br>
AI For Oceans: Traing a chatbot to answer sea turtle questions, predict species from images (image recognition), and predict sea turtle weight given
</p>
<div id="CIS4930" class="button"><h3>CIS4930 - Enterprise Software Engineering Practices</h3></div>
<p id="CIS4930Body" class="body">
Semester Taken: Fall 2022<br>
Grade: A<br>
Course Description: Introduction to software engineering best practices in large-scale software enterprises.<br><br>
Projects:<br>
Open source project contribution: requests Python Library
AWS Webhooks Project: Automatically generate Slack messages for GitHub pull requests
</p>
<div id="COP4020" class="button"><h3>COP4020 - Programming Language Concepts</h3></div>
<p id="COP4020Body" class="body">
Semester Taken: Fall 2022<br>
Grade: A<br>
Course Description: In depth analysis of compilers and interpreters focused on Java.<br><br>
Project:<br>
Custom programming language lexer, parser, and interpreter + transpiler to Java source code
</p>
</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/a.js"></script>
</body>
</html>