-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
161 lines (144 loc) · 4.71 KB
/
Copy pathcv.html
File metadata and controls
161 lines (144 loc) · 4.71 KB
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
153
154
155
156
157
158
159
160
161
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Julie Yuan</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--Custom fonts. To improve load times, remove this and update the h1 styling in style.css-->
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Serif:600&display=swap" rel="stylesheet">
<!-- stylesheets -->
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- just in case viewer is using Internet Explorer -->
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div class="container">
<div class="row">
<div class="grid-6" id="centered-content">
<img src="images/me.jpg" alt="Julie profile">
</div>
</div>
<div class="Topbar">
<div class="header-text">
Hi, I'm Julie.
</div>
</div>
<div class="Topbar">
<div class="Topbar-link">
<a href="index.html">Home</a>
</div>
<div class="Topbar-link">
<a href="cv.html">CV</a>
</div>
<div class="Topbar-link">
<a href="research.html">Research</a>
</div>
</div>
<section>
<div class="row">
<div class="grid">
<h2>Education</h2>
</div>
</div>
<div class="row">
<div class="grid-4">
<p>University of Minnesota, Twin Cities <br> B.S., Computer Science and Mathematics</p>
</div>
<div class="grid-2" id="date">
<p>June 2020</p>
</div>
</div>
<div class="row">
<div class="grid-3">
<ul>
<li>CSCI 4041 - Algorithms</li>
<li>CSCI 4511W - Intro. AI</li>
<li>CSCI 5521 - Intro. Machine Learning</li>
<li>CSCI 4061 - Operating Systems</li>
</ul>
</div>
<div class="grid-3">
<ul>
<li>MATH 5651 - Theory of Probability</li>
<li>MATH 8201 - Abstract Algebra</li>
<li>MATH 5615 - Real Analysis</li>
<li>MATH 5345H - Topology</li>
</ul>
</div>
</div>
</section>
<hr>
<!--Experience Tables-->
<section class="experience">
<div class="row">
<div class="grid-2">
<h2>Target Corp.</h2>
<p>Software Engineering Intern</p>
<p>Jun. 2019 - Aug. 2019</p>
</div>
<div class="grid-4">
<ul>
<li>Developed a REST API using Spring Boot to provide backend support for a new guest profile feature.</li>
<li>Integrated data storage in Cassandra and Google Cloud Platform using a layered microservice-based architecture.</li>
<li>Incorporated end-to-end testing through unit and functional tests, code coverage tools, and a front-end UI built with React and Node.js.</li>
</ul>
</div>
</div>
<div class="row">
<div class="grid-2">
<h2>Williams College</h2>
<p>Undergraduate Researcher</p>
<p>Jun. 2018 - Aug. 2018</p>
</div>
<div class="grid-4">
<ul>
<li>Studied connections between combinatorial invariants of graphs.</li>
<li>Developed Python modules which were used by our research group to validate conjectures and provide computational evidence.</li>
<li>Collaborated to produce five research papers and two conference presentations.</li>
</ul>
</div>
</div>
<div class="row">
<div class="grid-2">
<h2>University of Minnesota</h2>
<p>Undergraduate Teaching Assistant</p>
<p>Sept. 2017 - May 2019</p>
</div>
<div class="grid-4">
<ul>
<li>Co-led two lab sections of 30+ students per week.</li>
<li>Answered student questions in office hours and via email.</li>
<li>Graded projects and assessments while providing constructive feedback.</li>
</ul>
</div>
</div>
</section>
<hr>
<section>
<!--List of skills-->
<div class="row">
<div class="grid-3">
<h1>Languages</h1>
<ul>
<li>Python</li>
<li>Java</li>
<li>C/C++</li>
<li>OCaml</li>
<li>Matlab</li>
</ul>
</div>
<div class="grid-3">
<h1>Tools</h1>
<ul>
<li>Spring Boot</li>
<li>Docker</li>
<li>Cassandra</li>
<li>Git/GitHub</li>
<li>LaTeX</li>
</ul>
</div>
</div>
</section>
</div><!-- End Container -->
</body>