-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
123 lines (122 loc) · 7.09 KB
/
experience.html
File metadata and controls
123 lines (122 loc) · 7.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-26509540-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-26509540-4');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Experience</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/global-showcase.css">
<link rel="stylesheet" type="text/css" href="css/experience.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<!--Navigation Bar-->
<div id="nav-placeholder"></div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<!--End Navigation Bar-->
<div class="container">
<h1>My experience.</h1>
<hr/>
<div class="project-wrapper">
<div class="project-container">
<div class="project-content">
<div class="job-title">Software Engineer Intern - Search</div>
<div class="job-company">Tableau</div>
<div class="job-date">Jan 2020 - Apr 2020</div>
</div>
<img src="assets/logo-tableau.png" alt="Tableau logo">
</div>
<i class="material-icons collapsible">expand_more</i>
<div class="collapsible-content">
Internship on the Search team, facilitating improvement in search experience across all Tableau products.<br><br>
<ul>
<li>Architected an Elasticsearch query modification library in Java for independent versioning, testing, and isolation of search relevance functionality</li>
<li>Collected search data for development of ML models by designing telemetry and a relevance rating tool using React, AWS Lambda, and DynamoDB</li>
<li>Added AWS SQS integration to a Java Spring service to allow for data ingestion from a new product offering</li>
<li>Created a mock server to decouple development from other services, reducing blockers and simplifying integration testing</li>
</ul>
</div>
</div>
<hr class="project-divider">
<div class="project-wrapper">
<div class="project-container">
<div class="project-content">
<div class="job-title">Software Engineer Intern</div>
<div class="job-company">Connected</div>
<div class="job-date">May 2019 - Aug 2019</div>
</div>
<img src="assets/logo-connected.jpg" alt="Connected logo">
</div>
<i class="material-icons collapsible">expand_more</i>
<div class="collapsible-content">
<ul>
<li>Created new conversation flows for a top North American music provider's Alexa skill using Node.js and AWS Lambda</li>
<li>Collaborated with product/design teams to improve skill interaction model, helping to improve channel-matching success rate by ~60%</li>
<li>Led development of an automated voice testing tool using Python, C++, and Alexa Voice SDK, improving test consistency and reducing testing time by over 95%</li>
<li>Engaged in Test Driven Development and wrote unit/regression tests with Jest to improve code quality and reliability</li>
</ul>
</div>
</div>
<hr class="project-divider">
<div class="project-wrapper">
<div class="project-container">
<div class="project-content">
<div class="job-title">Project Developer</div>
<div class="job-company">UW Blueprint</div>
<div class="job-date">Jan 2019 - Dec 2019</div>
</div>
<img src="assets/logo-blueprint.png" alt="UW Blueprint logo">
</div>
<i class="material-icons collapsible">expand_more</i>
<div class="collapsible-content">
Blueprint partners with non-profits to provide technology services such as websites, mobile applications, analysis tools—free of charge. <br><br>
<b>OSS DanceFest:</b>
<ul>
<li>Built Android app with Kotlin to digitize grading and ranking for a provincial dance competition, streamlining the judging process for 500+ contestants</li>
<li>Retrieved display data and submitted forms to Firebase with real-time updates</li>
</ul>
<b>Social Development Centre:</b>
<ul>
<li>Worked on a Ruby on Rails API for a flowchart creation tool, enabling creation of more accessible flowcharts for social service information</li>
</ul>
</div>
</div>
<hr class="project-divider">
<div class="project-wrapper">
<div class="project-container">
<div class="project-content">
<div class="job-title">Mobile Applications Developer</div>
<div class="job-company">TD Bank Group</div>
<div class="job-date">May 2018 - Aug 2018</div>
</div>
<img src="assets/logo-td.svg" alt="TD Bank logo">
</div>
<i class="material-icons collapsible">expand_more</i>
<div class="collapsible-content">
<ul>
<li>Worked in cross-platform team to develop workspace booking app in Java, reducing time needed to do booking tasks by over 90%</li>
<li>Integrated Firebase Realtime Database using MVVM architecture, allowing the service layer to be easily swappable with alternative service providers in the future</li>
<li>Utilized latest Android architecture components like Data Binding, LiveData, and ViewModels to manage UI component state and lifecycles</li>
</ul>
</div>
</div>
<hr class="project-divider">
</div>
</body>
</html>