-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkExperience.html
More file actions
454 lines (430 loc) · 37.5 KB
/
workExperience.html
File metadata and controls
454 lines (430 loc) · 37.5 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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/timeline.css">
<title>Work Experience | Varada Deshpande</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link href="https://bootswatch.com/5/sketchy/bootstrap.min.css" rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<!-- <style>
body {
background: url('/images/workExp_bg.png') no-repeat center fixed;
background-size: cover;
}
</style> -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XZ0MH3BF2Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XZ0MH3BF2Z');
</script>
</head>
<body>
<header class="mb-5">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/vd.jfif" alt="Logo" width="50" height="50" class="d-inline-block align-text-top logo">
<span id="nav-title">Varada Deshpande</span>
</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="d-flex">
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">Education</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Experience</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="workExperience.html">Work</a>
<a class="dropdown-item" href="leadershipExperience.html">Leadership</a>
<a class="dropdown-item" href="otherExperience.html">Other</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<main class="p-5 pt-0">
<h1 class="fs-400 text-center pt-0">Work Experience</h1>
<section class="cd-timeline js-cd-timeline">
<div class="container max-width-lg cd-timeline__container">
<div class="cd-timeline__block" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/cdac.jpeg" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Project Intern</h2>
<h3 class="mt-0 fs-200">Centre for Development of Advanced Computing (CDAC), Mumbai</h3>
<ul class="color-contrast-medium ml-3">
<li>Engaged in research and development activities in the robotics and drone technologies department.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#cdac_sept23_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#cdac_sept23_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="cdac_sept23" class="tab-content ml-0">
<div class="tab-pane fade active show" id="cdac_sept23_tech" role="tabpanel">
<div class="row technologies-used justify-content-center">
<img src="images/python.jpeg" class="mx-3 my-1" />
<img src="images/mysql.png" class="mx-3 my-1" />
<img src="images/tailwind.png" class="mx-3 my-1" />
<img src="images/jquery.png" class="mx-3 my-1" />
<img src="images/html5_css3_js.png" class="mx-3 my-1" />
</div>
</div>
<div class="tab-pane fade" id="cdac_sept23_company" role="tabpanel">
<p class="text-justify">The Centre for Development of Advanced Computing, more widely known as C-DAC, is an autonomous scientific society under the Ministry of Electronics and Information Technology (MeitY), Government of India. It plays a key role in the development and deployment of advanced computing technologies and solutions in various domains such as software technologies, cyber security, health informatics, multilingual and heritage computing, high-performance computing facilities, and much more. The organization also offers education and training programs aimed at creating skilled manpower. C-DAC is known for its contributions to supercomputing, grid computing, software development, and related fields.</p>
<!-- <ul> -->
<div class="d-flex justify-content-between mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="CDAC Official Website" href="https://www.cdac.in/"><i class="bi bi-globe2"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="CDAC on LinkedIn" href="https://www.linkedin.com/company/cdacindia"><i class="bi bi-linkedin"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="CDAC on Twitter" href="https://x.com/cdacindia"><i class="bi bi-twitter"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="CDAC YouTube Channel" href="https://www.youtube.com/c/CDACOfficial"><i class="bi bi-youtube"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="CDAC Mumbai on Instagram" href="https://www.instagram.com/cdac_mumbai/"><i class="bi bi-instagram"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="CDAC on Facebook" href="https://www.facebook.com/CDACINDIA/"><i class="bi bi-facebook"></i></a>
</div>
<!-- <a href="https://twitter.com/GSFCUniversity" class="fs-200 emphasis"><i class="bi bi-linkedin"></i></a> -->
<!-- </ul> -->
<!-- <p class="text-justify">The field of weighing machines has been dominated by “Aver India” since 1987 in various parts of India, especially Gujarat, Maharashtra and Madhya Pradesh. This makes it the only firm in Gujarat dealing Electronic Weighing Machines with an experience of more than 34 years.</p>
<p class="text-justify">The company is majorly involved in the production of electronic balances for jewellery, laboratories, pharmaceuticals, fisheries, ginning mills, spinning mills, oil mills, cement factories, grocery stores, saw mills, iron and steel merchants, scrap merchants, chemical plants, fertilizer plants, Cement Manufacturing Industries, etc.</p>
<ul>
<li>Website: <a href="https://www.aieweighbridge.com/" target="_blank" class="emphasis">https://www.aieweighbridge.com/</a></li>
</ul> -->
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">September 2023 - Present</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
<div class="cd-timeline__block" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/gsfcu.png" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Supercomputer Dashboard Developer</h2>
<h3 class="mt-0 fs-200">GSFC Unversity, Vadodara</h3>
<ul class="color-contrast-medium ml-3">
<li>Worked in a team of seven (7) students to develop a dashboard to monitor the utilization of the "Param Shavak" supercomputer on-campus.</li>
<li>The dashboard included important metrics such as real-time CPU, GPU, network and memory utilization.</li>
<li>Dashboard also provided for user management.</li>
<li>Alert mechanism incorporated to report cases of overuse.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#gsfcu_jun23_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#gsfcu_jun23_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="gsfcu_jun23" class="tab-content ml-0">
<div class="tab-pane fade active show" id="gsfcu_jun23_tech" role="tabpanel">
<div class="row technologies-used justify-content-center">
<img src="images/html5_css3_js.png" class="mx-3 my-1" />
<img src="images/bootstrap.png" class="mx-3 my-1" />
<img src="images/grafana.jpeg" class="mx-3 my-1" />
</div>
</div>
<div class="tab-pane fade" id="gsfcu_jun23_company" role="tabpanel">
<p class="text-justify">GSFC University is recognized under the Gujarat Private University (Second Amendment) Act, 2014 and is established by the GSFC Education Society - an initiative of Gujarat State Fertilizers and Chemicals Ltd, six decades old industrial giant, to continue the tradition of serving the community in multiple ways. The vision behind establishing this distinct University is societal development through relevant and cutting edge knowledge in frontier areas of professional growth.</p>
<!-- <ul> -->
<div class="d-flex justify-content-between mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="GSFCU Official Website" href="https://www.gsfcuni.edu.in/"><i class="bi bi-globe2"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="GSFCU on LinkedIn" href="https://in.linkedin.com/school/gsfcuniversity"><i class="bi bi-linkedin"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="GSFCU on Twitter" href="https://twitter.com/GSFCUniversity"><i class="bi bi-twitter"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="GSFCU YouTube Channel" href="https://www.youtube.com/c/GSFCUniversityOfficial"><i class="bi bi-youtube"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="GSFCU on Instagram" href="https://instagram.com/gsfcuniversity"><i class="bi bi-instagram"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="GSFCU on Facebook" href="https://www.facebook.com/gsfcuniversity"><i class="bi bi-facebook"></i></a>
</div>
<!-- <a href="https://twitter.com/GSFCUniversity" class="fs-200 emphasis"><i class="bi bi-linkedin"></i></a> -->
<!-- </ul> -->
<!-- <p class="text-justify">The field of weighing machines has been dominated by “Aver India” since 1987 in various parts of India, especially Gujarat, Maharashtra and Madhya Pradesh. This makes it the only firm in Gujarat dealing Electronic Weighing Machines with an experience of more than 34 years.</p>
<p class="text-justify">The company is majorly involved in the production of electronic balances for jewellery, laboratories, pharmaceuticals, fisheries, ginning mills, spinning mills, oil mills, cement factories, grocery stores, saw mills, iron and steel merchants, scrap merchants, chemical plants, fertilizer plants, Cement Manufacturing Industries, etc.</p>
<ul>
<li>Website: <a href="https://www.aieweighbridge.com/" target="_blank" class="emphasis">https://www.aieweighbridge.com/</a></li>
</ul> -->
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">June 2023 - August 2023</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
<div class="cd-timeline__block" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/gsfcu.png" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Chatbot Developer</h2>
<h3 class="mt-0 fs-200">GSFC Unversity, Vadodara</h3>
<ul class="color-contrast-medium ml-3">
<li>Responsible for developing an AI-based chatbot "Saarthi" for GSFC University, currently live on its official website.</li>
<li>Worked on technologies such as Google Dialogflow, with a team of five students and two faculty mentors.</li>
<li>Currently working on keeping the ChatBot updated with the latest information.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#gsfcu_feb22_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#gsfcu_feb22_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="gsfcu_feb22" class="tab-content ml-0">
<div class="tab-pane fade active show" id="gsfcu_feb22_tech" role="tabpanel">
<div class="row technologies-used justify-content-center">
<img src="images/dialogflow.svg" class="mx-3 my-1" />
</div>
</div>
<div class="tab-pane fade" id="gsfcu_feb22_company" role="tabpanel">
<p class="text-justify">GSFC University is recognized under the Gujarat Private University (Second Amendment) Act, 2014 and is established by the GSFC Education Society - an initiative of Gujarat State Fertilizers and Chemicals Ltd, six decades old industrial giant, to continue the tradition of serving the community in multiple ways. The vision behind establishing this distinct University is societal development through relevant and cutting edge knowledge in frontier areas of professional growth.</p>
<!-- <ul> -->
<div class="d-flex justify-content-between mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="GSFCU Official Website" href="https://www.gsfcuni.edu.in/"><i class="bi bi-globe2"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="GSFCU on LinkedIn" href="https://in.linkedin.com/school/gsfcuniversity"><i class="bi bi-linkedin"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="GSFCU on Twitter" href="https://twitter.com/GSFCUniversity"><i class="bi bi-twitter"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="GSFCU YouTube Channel" href="https://www.youtube.com/c/GSFCUniversityOfficial"><i class="bi bi-youtube"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="GSFCU on Instagram" href="https://instagram.com/gsfcuniversity"><i class="bi bi-instagram"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="GSFCU on Facebook" href="https://www.facebook.com/gsfcuniversity"><i class="bi bi-facebook"></i></a>
</div>
<!-- <a href="https://twitter.com/GSFCUniversity" class="fs-200 emphasis"><i class="bi bi-linkedin"></i></a> -->
<!-- </ul> -->
<!-- <p class="text-justify">The field of weighing machines has been dominated by “Aver India” since 1987 in various parts of India, especially Gujarat, Maharashtra and Madhya Pradesh. This makes it the only firm in Gujarat dealing Electronic Weighing Machines with an experience of more than 34 years.</p>
<p class="text-justify">The company is majorly involved in the production of electronic balances for jewellery, laboratories, pharmaceuticals, fisheries, ginning mills, spinning mills, oil mills, cement factories, grocery stores, saw mills, iron and steel merchants, scrap merchants, chemical plants, fertilizer plants, Cement Manufacturing Industries, etc.</p>
<ul>
<li>Website: <a href="https://www.aieweighbridge.com/" target="_blank" class="emphasis">https://www.aieweighbridge.com/</a></li>
</ul> -->
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">February 2022 - February 2023</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
<div class="cd-timeline__block mt-5" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/aie.png" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Research and Development Intern</h2>
<h3 class="mt-0 fs-200">Aver India Equipment, Vadodara</h3>
<ul class="color-contrast-medium ml-3">
<li>Explored the world of Application Development with .NET MAUI (Multi Application User Interface).</li>
<li>Responsible for developing a basic working prototype of an Automated Weighbridge Management System.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#aie_jan23_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#aie_jan23_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="gsfcu_feb22" class="tab-content ml-0">
<div class="tab-pane fade active show" id="aie_jan23_tech" role="tabpanel">
<div class="row technologies-used justify-content-center">
<img src="images/dotnet.png" class="mx-3 my-1" />
<img src="images/maui.png" class="mx-3 my-1" />
<img src="images/SQLite.png" class="mx-3 my-1" />
</div>
</div>
<div class="tab-pane fade" id="aie_jan23_company" role="tabpanel">
<p class="text-justify">The field of weighing machines has been dominated by “Aver India” since 1987 in various parts of India, especially Gujarat, Maharashtra and Madhya Pradesh. This makes it the only firm in Gujarat dealing Electronic Weighing Machines with an experience of more than 34 years.</p>
<p class="text-justify">The company is majorly involved in the production of electronic balances for jewellery, laboratories, pharmaceuticals, fisheries, ginning mills, spinning mills, oil mills, cement factories, grocery stores, saw mills, iron and steel merchants, scrap merchants, chemical plants, fertilizer plants, Cement Manufacturing Industries, etc.</p>
<div class="d-flex justify-content-center mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="right" data-bs-original-title="Company Website" href="https://www.aieweighbridge.com/"><i class="bi bi-globe2"></i></a>
</div>
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">January 2023</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
<div class="cd-timeline__block mt-5" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/aie.png" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Research and Development Intern</h2>
<h3 class="mt-0 fs-200">Aver India Equipment, Vadodara</h3>
<ul class="color-contrast-medium ml-3">
<li>Responsible for developing a web-based Weighbridge Management System aimed at providing a solution to automate the process of transactions carried out with weighbridges.</li>
<li>Several CRUD operations, along with automatic data capture from a connected weight indicator, automatic receipt and report generation and exporting were all included in the web application based on the MVC framework of ASP.NET.</li>
<li>Authentication and authorization with specific user roles, taking the device MAC IDs into consideration, were also incorporated.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#aie_jul22_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#aie_jul22_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="gsfcu_feb22" class="tab-content ml-0">
<div class="tab-pane fade active show" id="aie_jul22_tech" role="tabpanel">
<div class="row technologies-used justify-content-center justify-content-center">
<img src="images/asp_dotnet.jpg" class="my-1" />
<img src="images/ms_sql_server.jpg" class="my-1" />
<img src="images/html5_css3_js.png" class= my-1" />
<img src="images/bootstrap.png" class="my-1" />
</div>
</div>
<div class="tab-pane fade" id="aie_jul22_company" role="tabpanel">
<p class="text-justify">The field of weighing machines has been dominated by “Aver India” since 1987 in various parts of India, especially Gujarat, Maharashtra and Madhya Pradesh. This makes it the only firm in Gujarat dealing Electronic Weighing Machines with an experience of more than 34 years.</p>
<p class="text-justify">The company is majorly involved in the production of electronic balances for jewellery, laboratories, pharmaceuticals, fisheries, ginning mills, spinning mills, oil mills, cement factories, grocery stores, saw mills, iron and steel merchants, scrap merchants, chemical plants, fertilizer plants, Cement Manufacturing Industries, etc.</p>
<div class="d-flex justify-content-center mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="right" data-bs-original-title="Company Website" href="https://www.aieweighbridge.com/"><i class="bi bi-globe2"></i></a>
</div>
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">July 2023</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
<div class="cd-timeline__block mt-5" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/ananta.png" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Organizing Team Member and Web Developer</h2>
<h3 class="mt-0 fs-200">Ananta'22, GSFC University, Vadodara</h3>
<ul class="color-contrast-medium ml-3">
<li>Ananta'22: the annual fest of GSFC University consisted of a team of around 200 organizers and volunteers, with 1000+ participants within and outside Vadodara.</li>
<li>Actively contributed in developing the in-house web portal for the fest, mainly working on frontend development with HTML5, CSS3, JavaScript and Bootstrap.</li>
<li>Recognized as a co-event coordinator for Swift Fingers (a typing contest with over 50 participants), conducted as a part of the fest, co-leading a team of six members. Also developed the web portal for the same.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#ananta_feb22_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#ananta_feb22_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="gsfcu_feb22" class="tab-content ml-0">
<div class="tab-pane fade active show" id="ananta_feb22_tech" role="tabpanel">
<div class="row technologies-used justify-content-center justify-content-center">
<img src="images/html5_css3_js.png" class= my-1" />
<img src="images/bootstrap.png" class="my-1" />
</div>
</div>
<div class="tab-pane fade" id="ananta_feb22_company" role="tabpanel">
<p class="text-justify">“Ananta”, is a marquee annual event of GSFC university that serves as the biggest festival of the year. It derives its name from a Sanskrit word meaning “Infinite”, and it symbolizes the endless possibilities and opportunities it creates for every student connected with us. The annual fest provides a common platform for students, professionals, and enthusiasts alike, coming from different walks of life, and enables them to interact, network, and share their vital experiences.</p>
<p class="text-justify">In a nutshell, Ananta is an amalgamation of creativity, fun, technology, interaction and most importantly the अनंत joy of college life.</p>
<div class="d-flex justify-content-between mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="Ananta Website" href="https://anantagsfcu.in"><i class="bi bi-globe2"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="Ananta on LinkedIn" href="https://www.linkedin.com/company/ananta-gsfcu"><i class="bi bi-linkedin"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="Ananta on Twitter" href="https://twitter.com/agsfcu"><i class="bi bi-twitter"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="Ananta YouTube Channel" href="https://www.youtube.com/@ananta-gsfcuniversity9871"><i class="bi bi-youtube"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="Ananta on Instagram" href="https://www.instagram.com/ananta.gsfcu/"><i class="bi bi-instagram"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="Ananta on Facebook" href="https://www.facebook.com/people/Ananta23/100083604632224/"><i class="bi bi-facebook"></i></a>
</div>
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">February 2022 - April 2022</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
<div class="cd-timeline__block mt-5" data-aos="zoom-in" data-aos-duration="1000">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="images/barodaweb.png" alt="Picture">
</div> <!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2 class="mb-0">Web Development Intern</h2>
<h3 class="mt-0 fs-200">BarodaWeb, Vadodara</h3>
<ul class="color-contrast-medium ml-3">
<li>Responsible for the development of a web application titled "Resorts Pan India", that took into consideration the various stakeholders in the business of resorts (for example, resort owner, product vendor, service provider, tourist/ customer and local handicraft dealers).</li>
<li>Explored the world of Front-End Web Development with HTML5, CSS3, JavaScript, jQuery and Bootstrap.</li>
<li>Learnt about ASP.NET razor pages and the MVC framework, and worked on the development of the backend with ASP.NET MVC (repository pattern).</li>
<li>Learnt more about the industry standards in terms of the steps followed before and during an on-going project: like requirement analysis, cost analysis, competitive analysis, etc.</li>
<li>Experienced project management and presentation in real-world corporate scenarios.</li>
</ul>
<ul class="nav nav-tabs list-marker-none mt-3 justify-content-center" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#barodaweb_aug21_tech" aria-selected="true" role="tab" tabindex="-1">Technologies Used</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#barodaweb_aug21_company" aria-selected="false" role="tab">Company Profile</a>
</li>
</ul>
<div id="gsfcu_feb22" class="tab-content ml-0">
<div class="tab-pane fade active show" id="barodaweb_aug21_tech" role="tabpanel">
<div class="row technologies-used justify-content-center justify-content-center">
<img src="images/asp_dotnet.jpg" class= my-1" />
<img src="images/ms_sql_server.jpg" class= my-1" />
<img src="images/html5_css3_js.png" class= my-1" />
<img src="images/bootstrap.png" class="my-1" />
</div>
</div>
<div class="tab-pane fade" id="barodaweb_aug21_company" role="tabpanel">
<p class="text-justify">Barodaweb is an end-to-end IT outsourcing service provider that enables businesses to leverage leading-edge technology to gain a sustainable competitive advantage in today's market place.</p>
<p class="text-justify">BarodaWeb offers custom software development and web solutions from India in technologies MVC.net, C#/C++, Java, as well as in MS SQL, MS Access, and Oracle database, with a global client base with clients in Dubai, Singapore, Netherlands, Switzerland, Germany, London, U.S.A., Canada, and India.</p>
<div class="d-flex justify-content-between mx-5 px-5">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="Company Website" href="https://www.barodaweb.com/"><i class="bi bi-globe2"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="BarodaWeb on LinkedIn" href="https://in.linkedin.com/in/barodaweb"><i class="bi bi-linkedin"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="BarodaWeb on Twitter" href="https://twitter.com/barodaweb08"><i class="bi bi-twitter"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-original-title="BarodaWeb YouTube Channel" href="https://www.youtube.com/user/barodaweb08"><i class="bi bi-youtube"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="bottom" data-bs-original-title="BarodaWeb on Facebook" href="https://www.facebook.com/barodaweb.projects/"><i class="bi bi-facebook"></i></a>
</div>
</div>
</div>
<div class="flex justify-between items-center">
<span class="cd-timeline__date text-dark fs-120">August 2021 - February 2022</span>
<!-- <a href="#0" class="btn btn--subtle">Read more</a> -->
</div>
</div> <!-- cd-timeline__content -->
</div> <!-- cd-timeline__block -->
</div>
</section> <!-- cd-timeline -->
</main>
<footer class="d-flex flex-column py-2 footer-responsive" id="contact">
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="left" data-bs-original-title="My Github Profile" href="https://github.com/Varada-D/"><i class="bi bi-github"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="left" data-bs-original-title="My LinkedIn Profile" href="https://linkedin.com/in/varada-deshpande-0330331bb"><i class="bi bi-linkedin"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="left" data-bs-original-title="My Google Developer Profile" href="https://g.dev/varada"><i class="bi bi-google"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="left" data-bs-original-title="My Microsoft Learn Profile" href="https://learn.microsoft.com/en-us/users/varadadeshpande-7020/"><i class="bi bi-microsoft"></i></a>
<a target="_blank" class="fs-200 emphasis mx-1" data-bs-toggle="tooltip" data-bs-placement="left" data-bs-original-title="Get in Touch with an Email" href="mailto:vad2823@gmail.com"><i class="bi bi-envelope-at-fill"></i></a>
</footer>
<!-- <script src="js/timeline.js"></script> -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script>
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
</script>
</body>
</html>