-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyear3.html
119 lines (115 loc) · 4.82 KB
/
year3.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Year 3</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link href="gruvbox-dark.css" rel="stylesheet" type="text/css">
<link href="font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="fullPage.js/dist/fullpage.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="fullpage-wrapper" id="fullpage">
<div class="section">
<div class="slide">
<div class="container-fluid">
<div class="row">
<h1>Honors 220: DNA and Evolution</h1>
<div class="col-sm-7">
<h2>Although I primarily focused on my major during junior year, I found an opportunity for
taking an Honors class.
While I anticipated this would be very similar to my introductory Biology coursework, I
found this class
to be an excellent building block: it described broader trends and applications in biology,
which inspired me
to continue working in that field.
</h2>
</div>
<div class="col-sm-7">
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="slide">
<div class="container-fluid">
<div class="row">
<h1>CSE 452: Distributed Systems</h1>
<div class="col-sm-7">
<h2> I stepped out of my comfort zone again and took a class on distributed systems.
Although it was incredibly challenging and time-consuming (implementing Paxos took at least
100 hours),
it was absolutely worth it. I gained an appreciation of the workings of large-scale computer
systems, and
discovered my future path in computer science.
</h2>
</div>
<div class="col-sm-5">
<img alt="Paxos demo" class="img-responsive" src="paxos.gif" width="100%">
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="slide">
<div class="container-fluid">
<div class="row">
<h1>Amazon Internship</h1>
<div class="col-sm-7">
<h2> The internship on the EBS replication team was an unprecedented opportunity
to put my CS skills into practice. Working with a real distributed system was a challenge,
but it was worth it for the feeling of contributing to a real product improving people's
lives every single day. With the help of my mentors, I was successfully able to lower
the system upgrade time by about 80%.
</h2>
</div>
<div class="col-sm-5">
<img alt="EBS logo" src="AWS_Simple_Icons_Storage_Amazon_EBS.svg"
class="img-responsive" width="100%">
</div>
</div>
</div>
</div>
</div>
</div>
<script src="fullPage.js/vendors/scrolloverflow.min.js" type="text/javascript"></script>
<script src="fullPage.js/src/fullpage.js" type="text/javascript">
</script>
<script type="text/javascript">
var myFullpage = new fullpage('#fullpage', {
sectionsColor: ['#282828', '#282828', '#282828', '#282828', '#282828'],
licenseKey: 'pobwH@p8',
navigation: true
});
</script>
</body>
<nav class="navbar">
<span class="navbar-toggle" id="js-navbar-toggle">
<i class="fas fa-bars"></i>
</span>
<ul class="main-nav" id="js-menu">
<li>
<a class="nav-links" href="index.html">Home</a>
</li>
<li>
<a class="nav-links" href="year1.html">Year 1</a>
</li>
<li>
<a class="nav-links" href="year2.html">Year 2</a>
</li>
<li>
<a class="currPage" href="year3.html">Year 3</a>
</li>
<li>
<a class="nav-links" href="year4.html">Year 4</a>
</li>
</ul>
</nav>
<footer>
</footer>
</html>