-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork-experience.html
101 lines (97 loc) · 5.94 KB
/
work-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ashmit Gupta - Work Experience</title>
<meta name="description" content="Ashmit Gupta's work experience in various software development and tech roles.">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;600&family=Poppins:wght@600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/89efaed827.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-white py-3 shadow-sm fixed-top">
<div class="container">
<a class="navbar-brand fw-bold fs-3 text-accent" href="index.html">Ashmit Gupta</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav align-items-center">
<li class="nav-item mx-2">
<a class="nav-link text-dark" href="index.html">Home</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link text-dark" href="work-experience.html">Work Experience</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link text-dark" href="projects.html">Projects</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link text-dark" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="main-section">
<div class="container">
<h1 class="display-4 fw-bold text-black mb-5">Work Experience</h1>
<div class="work-experience-item mb-5">
<h2 class="text-accent">Software Development Intern - Boeing
<a href="https://www.boeing.ca" target="_blank" class="link-icon">
<i class="fas fa-external-link-alt ms-2"></i>
</a>
</h2>
<p class="text-muted">May 2024 - Present | Vancouver, Canada</p>
<ul class="text-secondary">
<li>Created graph databases using Neo4j and queried them using GPT-4 to generate Cypher queries for efficient data retrieval.</li>
<li>Built APIs to query SQL data and integrated data using XML parsing for seamless data management.</li>
<li>Developed a frontend using Flask, HTML, CSS, and JavaScript, allowing mechanics to access necessary information easily.</li>
</ul>
</div>
<div class="work-experience-item mb-5">
<h2 class="text-accent">Software Development Intern - Motorola Solutions
<a href="https://www.motorolasolutions.com" target="_blank" class="link-icon">
<i class="fas fa-external-link-alt ms-2"></i>
</a>
</h2>
<p class="text-muted">January 2023 - August 2023 | Vancouver, Canada</p>
<ul class="text-secondary">
<li>Developed and deployed a React-based search feature with custom hooks, debouncing, and lazy-loading for the ACM portal, improving search efficiency.</li>
<li>Managed end-to-end delivery by automating CI/CD pipelines using Docker and Jenkins, and resolving bugs using C++, JavaScript, and Ruby.</li>
<li>Collaborated with Bitbucket and Jira, reviewed pull requests, and participated in daily scrum meetings.</li>
</ul>
</div>
<div class="work-experience-item mb-5">
<h2 class="text-accent">CTO - CaterDash
<a href="https://www.caterdash.com" target="_blank" class="link-icon">
<i class="fas fa-external-link-alt ms-2"></i>
</a>
</h2>
<p class="text-muted">January 2024 - Present | Vancouver, Canada</p>
<ul class="text-secondary">
<li>Partnered with restaurants across Vancouver and Toronto, catering to 90% of tech events, including events for Google Developer Club, Microsoft, SAP, and BMO.</li>
<li>Developed a full-stack site with MongoDB to manage orders and customer data, and integrated payment functionality.</li>
<li>Deployed Python code using Google Cloud Functions with an API Gateway for secure data exchange and automated tasks with Google Tasks.</li>
</ul>
</div>
<div class="work-experience-item mb-5">
<h2 class="text-accent">Lead Developer - Nnect
<a href="https://www.nnect.ca" target="_blank" class="link-icon">
<i class="fas fa-external-link-alt ms-2"></i>
</a>
</h2>
<p class="text-muted">August 2022 - December 2023 | Vancouver, Canada</p>
<ul class="text-secondary">
<li>Led a team of 4 developers to build a web app for bulk food and meal plan orders, benefiting 60+ restaurants and 500+ customers.</li>
<li>Developed scripts to generate optimal delivery routes, improving delivery efficiency for drivers.</li>
</ul>
</div>
</div>
</section>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>