-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
102 lines (79 loc) · 3.95 KB
/
experience.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
<!DOCTYPE html>
<html>
<head>
<title>Experience</title>
<link rel="icon" href="assets/img/logo2.png">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/experience.css">
<link rel="stylesheet" href="assets/css/mobile.css">
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@400;500&family=Roboto&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<!-- NAVBAR -->
<div id="navbar">
<a class="clk" href="index.html"><img class="clk" id="logo" src="assets/img/logo2.png" alt=""></a>
<div id="navbar-items" class="roboto">
<a class="item web clk" id="about" href="about.html">About Me</a>
<a class="item web clk active" id="experience" href="experience.html">Experience</a>
<a class="item web" id="resume" href="assets/pdf/HaotianResume.pdf" target="_blank">Resume</a>
</div>
<img id="menu-icon" src="assets/img/menu.png" alt="">
</div>
<div id="mobile-nav">
<a class="item clk" id="about" href="about.html">About Me</a>
<a class="item clk active" id="experience" href="experience.html">Experience</a>
<a class="item" id="resume" href="assets/pdf/HaotianResume.pdf" target="_blank">Resume</a>
</div>
<div id="everything" class="section">
<!-- EXPERIENCE -->
<h1>Experience</h1>
<div id="experience">
<div class="row">
<div class="img-div"><img id="apple" src="assets/img/apple.png" alt=""></div>
<div class="position">
<h2>Software Engineering Intern</h2>
<h3>Apple</h3>
<h4>June 2020 - August 2020</h4>
<p>Designed and implemented automated update mechanism of lexical data in Siri. Set up a pipeline service for weekly automated checks and updates. Saves ~1 hour of manual work per update; reduces people involved from 4 to just 1.</p>
</div>
</div>
<hr>
<div class="row">
<div class="img-div"><img id="panw" src="assets/img/panw.png" alt=""></div>
<div class="position">
<h2>Software Engineering Intern</h2>
<h3>Palo Alto Networks</h3>
<h4>May 2019 - August 2019</h4>
<p>Developed resource manager/abstraction layer (device manager & API) for SD-WAN. Implemented generic interface manager using Python & OOP that detects connected and
available network devices across a wider range of hardware. Stored device attributes in SQLite database used for assigning/allocating/querying
interface in specific order of udev net rules.</p>
</div>
</div>
<hr>
<div class="row">
<div class="img-div"><img id="wdd" src="assets/img/wdd.png" alt=""></div>
<div class="position">
<h2>Course Instructor</h2>
<h3>Web Design DeCal</h3>
<h4>July 2019 - Present</h4>
<p>Teach a class of 120+ students the basics of web design through HTML, CSS, and JavaScript. Lead lectures, host weekly office hours, write/adjust curriculum, grade assignments. Adjusted all curriculum to fit online teaching environment for Fall 2020 semester.</p>
</div>
</div>
<hr>
<div class="row">
<div class="img-div"><img id="codeology" src="assets/img/codeology.png" alt=""></div>
<div class="position">
<h2>Director of Web</h2>
<h3>Berkeley Codeology</h3>
<h4>May 2020 - Present</h4>
<p>Led a team of 10 people to work on a redesign of our club website during Summer 2020. Ensure continual development of useful features on our website.</p>
</div>
</div>
</div>
</div>
<script src="assets/script/mobile_nav.js"></script>
</body>
</html>