-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyear2.html
119 lines (115 loc) · 5.1 KB
/
year2.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 2</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 211/SLAV 425: Ways of Meaning</h1>
<div class="col-sm-12">
<h2>Honors 211 was an introduction to linguistics and understanding the concept of meaning.
I was able to further study Spanish which I had already taken some classes of in high
school, and I wrote <a href="https://1drv.ms/b/s!Ai4AkhEEhtq6haIUjMiWONu1EdNgFw"> this
paper </a> which won an award from the Slavic Languages and Literatures
department. as well as <a href="https://1drv.ms/w/s!Ai4AkhEEhtq6hZxCIp3gaur7sY8l6w"> this
Honors reflection</a> about why I took the class.</h2>
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="slide">
<div class="container-fluid">
<div class="row">
<h1>CSE 143X</h1>
<div class="col-sm-7">
<h2>I had decided to try something new, namely computer science. Due to time constraints,
I had to join CSE 143X, the combined version of 142/143. It was extremely daunting, both due
to the
pace of the material as well as the huge amount of knowledge everyone else in the class
already had.
However, it turned out to be a truly rewarding experience, and I emerged with a brand new
understanding
and appreciation of the fundamentals of programming and computer science as a whole.
</h2>
</div>
<div class="col-sm-5">
<img alt="padString code" class="img-responsive" src="padString.png" width="100%">
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="slide">
<div class="container-fluid">
<div class="row">
<div class="col-sm-7">
<h1>Brunton Lab</h1>
<h2>The Brunton Lab was my first major experience not only with computational neuroscience, but
with
applied computer science as a whole. My project involved using facial recognition and
machine learning
techniques to automatically determine facial pose, and then correlate it with emotion.
It was a fantastic opportunity to apply my skills
from my intro CSE classes as well as learn more about neurobiology and machine
learning.</h2>
</div>
<div class="col-sm-5">
<img alt="Facial recognition example" class="img-responsive" src="coconut_face_rec_tall.png"
width="70%">
</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="currPage" href="year2.html">Year 2</a>
</li>
<li>
<a class="nav-links" href="year3.html">Year 3</a>
</li>
<li>
<a class="nav-links" href="year4.html">Year 4</a>
</li>
</ul>
</nav>
<footer>
</footer>
</html>