-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.html
152 lines (148 loc) · 6.4 KB
/
classes.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classes Taken</title>
<link rel="stylesheet" href="./fonts/LittleMissLoudFont.css">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/commonStyles.css">
<link rel="stylesheet" href="css/classesStyles.css">
<link rel="stylesheet" href="fontawesome-5.14.0/css/all.min.css">
</head>
<body>
<div class="body-wrapper">
<div id="all-class-info-container">
<div id="display-hide-btn-container">
<div id="display-all-btn-wrapper">
<button id="display-all-btn">Display All Class Details</button>
</div>
<div id="hide-all-btn-wrapper">
<button id="hide-all-btn">Hide All Class Details</button>
</div>
</div>
<br>
<div id="class-details-container" class="container-fluid">
<div class="row">
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="webdesign-btn">Intro to Web Design</button>
<div id="webdesign-content" class="dropdown-content">
<p>
Developed a personal site throughout the term, while learning HTML, CSS, and JavaScript. Utilized Bootstrap, JQuery, and Photoshop for assignments.
</p>
</div>
</div> <br>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="discrete-btn">Discrete Mathematics</button>
<div id="discrete-content" class="dropdown-content">
<p>
Learned how to use a number of various proof techniques such as contradiction, induction, and etc. Studied set theory, boolean logic and various theorems such as graph theory, number theory, and group theory.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="datastructs-btn">Data Structures</button>
<div id="datastructs-content" class="dropdown-content">
<p>
Implemented Stacks, Queues, Linked lists, and Binary Trees from scratch in Java. Analyzed algorithm efficiency and how to modify said algorithms to become more efficient.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="cso-btn">Computer Systems Organization</button>
<div id="cso-content" class="dropdown-content">
<p>
Learned the internal structure of computers, Assembly language, and how to use pointers in C.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="os-btn">Operating Systems</button>
<div id="os-content" class="dropdown-content">
<p>
Learned about process scheduling and synchronization, deadlocks, memory management, input-output, and file systems.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="algos-btn">Basic Algorithms</button>
<div id="algos-content" class="dropdown-content">
<p>
Designed appropriate data structures and analyzed the efficiency of the algorithms which use them. Implemented Dijkstra's, Greedy Algorithms, Dynamic Programming, BFS, and more.
</p>
</div>
</div>
</div>
<!-- end of first row -->
<div class="row">
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="linear-btn">Linear Algebra</button>
<div id="linear-content" class="dropdown-content">
<p>
Studied Systems of linear equations, matrices, vectors, vector spaces, linear transformations, Eigenvalues, eigenvectors, Gaussian elimination, and Cramer’s rule.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="interactive-btn">Interactive Computing</button>
<div id="interactive-content" class="dropdown-content">
<p>
Utilized mainly p5 and JavaScript to create interactive graphical environments. Topics covered were virtual reality, image processing, video games, and augmented reality.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="parallel-btn">Parallel Computing</button>
<div id="parallel-content" class="dropdown-content">
<p>
Utilized CUDA, MPI, and OpenMP in C to write parallel code. Analyzed speedup of code relative to sequential solutions.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="artificial-btn">Artificial Intelligence</button>
<div id="artificial-content" class="dropdown-content">
<p>
Focused on the learning, representation and reasoning, and natural language processing areas of A.I. Learned about state spaces, implemented the Davis-Putnam algorithm, completed predicate calculus assignments, and more.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="networks-btn">Computer Networks</button>
<div id="networks-content" class="dropdown-content">
<p>
Learned about the architecture of networks and the algorithms that enable large-scale networks and smaller scale networks.
</p>
</div>
</div>
<div class="col-lg-2 col-md-4 col-12 dropdown">
<button class="dropbtn" id="devops-btn">Agile Software Dev and DevOps</button>
<div id="devops-content" class="dropdown-content">
<p>
Developed a web application with two other classmates that lasted throughout the entire semester. Delved into topics such as design, modeling, databases, project methodologies, continuous integration, and more.
</p>
</div>
</div>
</div>
<!-- end of second row -->
</div>
</div>
<div class="footer-div">
<footer>
<div id="dialogue-container">
<a id="home-link" href="./index.html">
<span id="home-page-icon-wrapper">
<i class="fas fa-home"></i>
</span>Go Home
</a>
</div>
</footer>
</div>
</div>
<!-- end of body wrapper -->
<script src="js/jquery-compressed.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="js/classes-script.js"></script>
</body>
</html>