-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
350 lines (317 loc) · 17.1 KB
/
project.html
File metadata and controls
350 lines (317 loc) · 17.1 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mg/Portfolio</title>
<!--Bootstrap CSS-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!---->
<!--Fonts-->
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900|Ubuntu:300,300i,400,400i,500,500i,700,700i&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Varela&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=La+Belle+Aurore&display=swap" rel="stylesheet">
<!---->
<!--Font Awesome Link-->
<script src="https://kit.fontawesome.com/6fef79736a.js" crossorigin="anonymous"></script>
<!-- Glitch-->
<link rel="stylesheet" href="./Resources/profileGlitch.css">
<!---->
<!--Main Css-->
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./project.css">
</head>
<body>
<!--Navbar-->
<body>
<!-- Navbar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark">
<div class="container-fluid" style="height: 60px; padding-left: 0px;padding-right: 1rem;">
<div class="wrapper">
<a class="navbar-brand glitch" href="./index.html" style="height: 53px; margin-right: 0px;">
<h1 class=" glitch" style="padding-left: 15px;">MG</h1>
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto" style="padding-right: 0px;">
<li class="nav-item">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./gallery.html">Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar fixed-top navbar-expand-lg navbar-dark" style="background-color: black;">
<div class="container-fluid" style="height: 60px; padding-left: 0px;padding-right: 1rem;">
<div class="wrapper">
<a class="navbar-brand glitch" href="./index.html" style="height: 53px; margin-right: 0px;">
<h1 class=" glitch" style="padding-left: 15px;">MG</h1>
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto" style="padding-right: 0px; background-color: black;">
<li class="nav-item">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="./gallery.html">Work<span
class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar Ending -->
<div class="heading">
<h1>― PROJECTS ―</h1>
</div>
<div class="project1.0 row">
<div class="col-lg-6 part1 text-center">
<img class="projectLP" src="./Images/project1LP2.png" alt="" srcset="">
</div>
<div class="col-lg-6 part2">
<h4>Project in Coforge: DOMAIN</h4>
<p>
<ul style="line-height: 2rem; font-size: medium;">
<li>Implemented Snowpipe for real-time data ingestion from external sources. </li>
<li>Utilize Streams to capture and replicate data changes in real-time.</li>
<li>Developed Python scripts to automate data processing and data quality checks.</li>
<li>Use Zero Copy Clone to quickly create clones of data sets for testing and development purposes.</li>
<li>Utilize Time Travel to query historical data and track changes over time.</li>
<li>Familiarity with Agile methodologies and project management tools such as JIRA.</li>
<li>Worked on handling Data warehouse in snowflake and ETL using Airflow.</li>
<li>Develop and update technical documentation</li>
</ul>
</p>
<br>
<h4>Tools & Technologies Used</h4>
<ul class="Tools">
<li class="Tools-item">SQL</li>
<li class="Tools-item">Snowflake</li>
<li class="Tools-item">Apache Airflow</li>
<li class="Tools-item">AWS S3, Glue</li>
<li class="Tools-item">Python</li>
</ul>
</div>
</div>
<div class="project1.1 row">
<div class="col-lg-6 part1 text-center">
<img class="projectLP" src="./Images/project1LP2.png" alt="" srcset="">
</div>
<div class="col-lg-6 part2">
<h4>Project in BOLD: ResumeNow</h4>
<p>
<ul style="line-height: 2rem; font-size: medium;">
<li>Designed and implemented ETL processes using Apache Airflow </li>
<li>Managed 600+ ETL pipelines extracting data using Airflow Dags.</li>
<li>Developed Python scripts to automate data processing and data quality checks.</li>
<li>Conduct unit testing and troubleshooting</li>
<li>Evaluate and improve existing BI systems</li>
<li>Collaborate with teams to integrate systems</li>
<li>Developed and maintained complex SQL scripts to transform and manipulate data.</li>
<li>Extracted data from different Rest API like GoogleAds API</li>
<li>Develop and update technical documentation</li>
</ul>
</p>
<br>
<h4>Tools & Technologies Used</h4>
<ul class="Tools">
<li class="Tools-item">SQL</li>
<li class="Tools-item">Snowflake</li>
<li class="Tools-item">Apache Airflow</li>
<li class="Tools-item">AWS S3, Glue</li>
<li class="Tools-item">Python</li>
</ul>
</div>
</div>
<div class="project1.2 row">
<div class="col-lg-6 part1 text-center">
<img class="projectLP" src="./Images/project1LP2.png" alt="" srcset="">
</div>
<div class="col-lg-6 part2">
<h4>Project in TCS: SPM </h4>
<p>
<ul style="line-height: 2rem; font-size: medium;">
<li>Involved in the analysis of requirements/defects, coding and testing.</li>
<li>Developed code from scratch and high priority defect fixing.</li>
<li>Optimised SQL code in production which reduces the defect by 20%.</li>
<li>Created and developed mappings to load the data from diffferent sources to target database i.e. Teradata.</li>
<li>Implemented CDC which minimized the resources required for ETL</li>
<li>CWorked on Informatica transformations such as Lookup, Aggregator, Expression, Joiner, Filter,Router, Rank.</li>
<li>Interacted with clients for getting and understanding the business requirement.</li>
<li>Created 50+ ETL data pipelines for bringing data from different sources to ODS layer using Informatica.</li>
<li>Resolved failed workflows and fix the issues.</li>
</ul>
</p>
<br>
<h4>Tools & Technologies Used</h4>
<ul class="Tools">
<li class="Tools-item">SQL</li>
<li class="Tools-item">Teradata</li>
<li class="Tools-item">Excel</li>
<li class="Tools-item">Tableau</li>
<li class="Tools-item">Python</li>
</ul>
</div>
</div>
<!-- Project-2 -->
<div class="project2 row">
<div class="col-lg-6 part1 text-center">
<img class="projectLP1" src="./Images/poster1.png" alt="" srcset="">
</div>
<div class="col-lg-6 part2">
<h4>Project in College: Trash Classifier</h4>
<p>
<ul style="line-height: 1.5rem; font-size: 1rem;">
<li>A computer vision approach </li>
<li>Classifying garbage into recycling categories.</li>
<li>Used Support Vector Machine (SVM) as phase 1</li>
<li>SVM is a traditional machine learning algorithm to classify the image into different categories
</li>
<li>For 2nd Phase, pretrained CNN with 34 layers was used</li>
<li>The problem involves receiving images of a single object and classifying it into a recycling
material type. </li>
<li> The input to our pipeline are images in which a single object is present on a clean white
background.</li>
<li>I used SVM to classify the image into five categories of garbage classes.</li>
</ul>
</p>
<br>
<h4>Tools & Technologies Used</h4>
<ul class="Tools">
<li class="Tools-item">Anaconda 3</li>
<li class="Tools-item">Python</li>
<li class="Tools-item">OpenCV</li>
<li class="Tools-item">MatplotLib</li>
<li class="Tools-item">Pandas</li>
</ul>
</div>
</div>
<!-- Project-3 -->
<div class="project3 row">
<div class="col-lg-6 part1 text-center">
<img class="projectLP" src="./Images/project3LP1.png" alt="" srcset="">
</div>
<div class="col-lg-6 part2">
<h4>Web-Portfolio</h4>
<p>
<ul style="line-height: 2rem; font-size: medium;">
<li>Converted digital portfolio into website</li>
<li>UX/UI designed by using illustrator</li>
<li>Applied core concepts of HTML,CSS and Bootstrap</li>
<li>Used Javascript for some transitions</li>
<li>Jquery was used in order to achieve animations on page</li>
</ul>
</p>
<br>
<h4>Tools & Technologies Used</h4>
<ul class="Tools">
<li class="Tools-item">HTML</li>
<li class="Tools-item">CSS</li>
<li class="Tools-item">Javascript</li>
<li class="Tools-item">JQuery</li>
<li class="Tools-item">Bootstrap</li>
</ul>
</div>
</div>
<!-- Project-4 -->
<!-- <div class="project4 row">
<div class="col-lg-6 part1 text-center">
<img class="projectLP" src="/Images/Layer 2.png" alt="" srcset="">
</div>
<div class="col-lg-6 part2">
<h4>Budget Calculator</h4>
<p>
<ul style="line-height: 2rem; font-size: medium;">
<li>Translate business needs to technical specifications </li>
<li>Design, build and deploy BI solutions</li>
<li>Maintain and support data analytics platforms</li>
<li>Conduct unit testing and troubleshooting</li>
<li>Evaluate and improve existing BI systems</li>
<li>Collaborate with teams to integrate systems</li>
<li>Develop and execute database queries and conduct analyses</li>
<li>Create visualizations and reports for requested projects</li>
<li>Develop and update technical documentation</li>
</ul>
</p>
<br>
<h4>Tools & Technologies Used</h4>
<ul class="Tools">
<li class="Tools-item">HTML</li>
<li class="Tools-item">Css</li>
<li class="Tools-item">Javascript</li>
<li class="Tools-item">JQuery</li>
<li class="Tools-item">Bootstrap</li>
</ul>
</div>
</div> -->
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12">
<p class="copyright-text">Copyright © 2020 All Rights Reserved.
<!-- <p class="love">Made with <i class="icon ion-heart"></i> in Chicago</p> -->
</p>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<p class="copyright-text" style="text-align: center;">Made with <span
style="color: orange; font-family: monospace"><⁄></span>
<!-- <p class="love">Made with <i class="icon ion-heart"></i> in Chicago</p> -->
</p>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<ul class="social-icons">
<li><a target="_blank" class="facebook" href="https://www.facebook.com/manasgarg3026"><i
class="fa fa-facebook"></i></a></li>
<li><a target="_blank" class="instagram" href="https://www.instagram.com/__kree8__/"><i
class="fab fa-instagram"></i></a></li>
<li><a target="_blank" class="github" href="https://www.github.com/Manas26"><i
class="fab fa-github"></i></a></li>
<li><a target="_blank" class="linkedin"
href="https://www.linkedin.com/in/manas-garg-040436153/"><i
class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Footer Ending -->
<!--Bootstrap Scripts-->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
</body>
</html>