-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
68 lines (65 loc) · 3.59 KB
/
education.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
<!DOCTYPE html>
<html>
<head id="head">
<title>Andy Strong</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fragment+Mono&display=swap" rel="stylesheet">
<script src="js/getheader.js"></script>
</head>
<body class="body-class">
<div id="header-placeholder"></div>
<div class="page-content">
<div class="page-name">Education</div>
<div class="education-content">
<div class="cu-flexbox">
<div class="job-img-container">
<img class="job-img" src="img/culogo.png" alt="Code Ninjas logo">
</div>
<div class="job-text">
I'm currently in the fourth year of my computer science degree at CU Boulder. Here are some of the classes I've taken: ↓
</div>
</div>
<div class="classes-box">
<div class="school-class">
<img src="img/agile.png" class="class-image">
<p class="class-name">CSCI-3308 Software Development Methods and Tools</p>
<p style="font-size:0.9rem;">
Learned about and implemented software development cycles including agile while working on Visify (my group's final project). In this class, I started learning HTML, CSS, and Javascript.
</p>
</div>
<div class="school-class">
<img src="img/graph.png" class="class-image">
<p class="class-name">CSCI-4022 Advanced Data Science</p>
<p style="font-size:0.9rem;">
Learned and implemented (from scratch) a breadth of methods to organize and draw conclusions from data, including Google's Page Rank algorithm, K-means clustering, regression, GMMs, Apriori, and more.
</p>
</div>
<div class="school-class">
<img src="img/ffalgo.png" class="class-image">
<p class="class-name">CSCI-3104 Algorithms</p>
<p style="font-size:0.9rem;">
Discovered various algos that operate on data structures taught in 2270. Most of the class content was theoretical and involved proving, finding the runtime of, and looking at implementations of algos.
</p>
</div>
<div class="school-class">
<img src="img/datastructures.png" class="class-image">
<p class="class-name">CSCI-2270 Data Structures</p>
<p style="font-size:0.9rem;">
Class involved writing implementations in C++ for popular data structures such as stacks, hash maps, and linked lists.
</p>
</div>
<div class="school-class">
<img src="img/pipeline.png" class="class-image">
<p class="class-name">CSCI-2400 Computer Systems</p>
<p style="font-size:0.9rem;">
Low level class where I learned the details of how a computer executes instructions, allocates memory, etc. Lab assignments had us create a dynamic memory allocator, a shell, and much more.
</p>
</div>
</div>
</div>
</div>
</body>
</html>