-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
455 lines (438 loc) · 16.8 KB
/
index.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
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
455
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="">
<meta name="author" content="">
<title>Sourav Ganguly</title>
<link rel="stylesheet" href="static/css/color.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono|Inconsolata" rel="stylesheet">
<link href="https://cdn.materialdesignicons.com/2.0.46/css/materialdesignicons.min.css" rel="stylesheet">
<style>
.Photo{
border-radius: 50% !important;
width: 350px !important;
height: 350px !important;
vertical-align: middle !important;
}
.portfolio-cards>a{
color:#333;
}
.portfolio-cards>a:hover{
text-decoration: none;
}
.portfolio-cards>a:visited{
text-decoration: none;
}
.portfolio-cards>a:active{
text-decoration: none;
}
.portfolio-cards>a:focus{
text-decoration: none;
}
</style>
</head>
<body>
<!--Main menu-->
<div class="menu">
<div class="container">
<div class="row">
<div class="menu__wrapper d-none d-lg-block col-md-12">
<nav class="">
<ul>
<li><a href="#hello">Hello</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#portfolio">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<div class="menu__wrapper col-md-12 d-lg-none">
<button type="button" class="menu__mobile-button">
<span><i class="fa fa-bars" aria-hidden="true"></i></span>
</button>
</div>
</div>
</div>
</div>
<!--Main menu-->
<!-- Mobile menu -->
<div class="mobile-menu d-lg-none">
<div class="container">
<div class="mobile-menu__close">
<span><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<nav class="mobile-menu__wrapper">
<ul>
<li><a href="#hello">Hello</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#portfolio">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</div>
<!-- Mobile menu -->
<!--Header-->
<header class="main-header" style="background-image: url(static/img/project.jpg)">
<div class="container">
<div class="row personal-profile">
<div class="col-md-4 personal-profile__avatar">
<img class="Photo" src="static/img/photo.jpg" alt="avatar">
</div>
<div class="col-md-8">
<p class="personal-profile__name">Sourav Ganguly</p>
<p class="personal-profile__work">SDE @ Samsung R&D</p>
<div class="personal-profile__contacts">
<dl class="contact-list contact-list__opacity-titles">
<dt>Phone:</dt>
<dd><a href="tel:+916204997379">+916204997379</a></dd>
<dt>Email:</dt>
<dd><a href="mailto:[email protected]">[email protected]</a></dd>
</dl>
</div>
<p class="personal-profile__social">
<a href="https://github.com/techsouravganguly" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/sourav-ganguly-247a8318b/" target="_blank"><i class="fa fa-linkedin-square"></i></a>
</p>
</div>
</div>
</div>
</header>
<!--Header-->
<!--Hello-->
<section id="hello" class="container section">
<div class="row">
<div class="col-md-10">
<h2 id="hello_header" class="section__title">Hello there!</h2>
<p class="section__description">
" I'm Sourav Ganguly, an enthusiastic Software Development Engineer currently shaping innovations at Samsung's R&D division.
With a focus on Android framework and Android Enterprise, I've delved deep into crafting seamless user experiences.
Additionally, my curiosity led me to explore the realms of AI/ML, contributing to a diverse skill set that fuels my
passion for creating cutting-edge technology."
</p>
<a href="Resume.pdf" class="section_btn site-btn"><img src="static/img/img_btn_icon.png" alt="">Download Resume</a>
</div>
</div>
</section>
<!--Hello-->
<hr>
<!--Resume-->
<section id="resume" class="container section">
<div class="row">
<div class="col-md-10">
<h2 id="resume_header" class="section__title">Resume</h2>
</div>
</div>
<div class="row">
<div class="col-md-8 section__resume resume-list">
<h3 class="resume-list_title">education</h3>
<div class="resume-list__block">
<p class="resume-list__block-title">National Institute of Technology, Mizoram</p>
<p class="resume-list__block-date">2018 - 2022</p>
<p>
Electrical and Electronic Engineering
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">Army Public School, Danapur Cantt</p>
<p class="resume-list__block-date">2017</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">Army Public School, Danapur Cantt</p>
<p class="resume-list__block-date">2015</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 section__resume resume-list">
<h3 class="resume-list_title">Experience</h3>
<div class="resume-list__block">
<p class="resume-list__block-title">SAMSUNG R&D </p>
<p class="resume-list__block-date">July 2022 - Present </p>
<p>
SDE
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">SAMSUNG R&D </p>
<p class="resume-list__block-date">Jan 2022- June 2022</p>
<p>
Software Engineering Intern
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">AUTOMOTIVE RESEARCH ASSOCIATION OF
INDIA – IIT MADRAS
</p>
<p class="resume-list__block-date">Sep 2021- Nov 2021 </p>
<p>
Summer Research Intern
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">Deeplearning.ai</p>
<p class="resume-list__block-date">July 2021- Oct 2021 </p>
<p>
Alpha Tester for NLP
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">The Sparks Foundation</p>
<p class="resume-list__block-date">Feb 2021 - Mar 2021</p>
<p>
Computer Vision and IOT Intern
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">South Bihar Power Distribution Company Limited</p>
<p class="resume-list__block-date">March 2021 - April 2021</p>
<p>
Internship Trainee
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">Ice Technology Lab</p>
<p class="resume-list__block-date">Dec 2019 - Jan 2020</p>
<p>
PLC and SCADA
</p>
</div>
</div>
</div>
<div class="row section__resume progress-list js-progress-list">
<div class="col-md-12">
<h3 class="progress-list__title">Skills</h3>
</div>
<div class="col-md-5 mr-auto">
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">Android</span>
</p>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">Java</span>
</p>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">Python</span>
</p>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">C++</span>
</p>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">MATLAB</span>
</p>
</div>
</div>
<div class="col-md-5 mr-auto">
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">TensorFlow</span>
</p>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">Flask</span>
</p>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">git</span>
</p>
</div>
</div>
</div>
</section>
<!--Resume-->
<!--Portfolio-->
<section id="portfolio" class="container section">
<div class="row">
<div class="col-md-12">
<h2 id="portfolio_header" class="section__title">My projects</h2>
</div>
</div>
<div class="portfolio-cards">
<!-- one portfolio -->
<div class="row project-card" data-toggle="modal" data-portfolio-tag="web-sites" >
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="static/img/DelhiMetro.jpg" alt="project-img" >
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">Delhi Metro App</h3>
<p class="project-card__description">
• Your one-stop solution for all information required on Delhi Metro.<br>
• Implemented custom map for showing metro station, Google ads,
bottom sheet, and quick search bar.
</p>
<p class="project-card__stack">Used:</p>
<ul class="tags">
<li>Android</li>
<li>Google Ads</li>
</ul>
</div>
</div>
<a href="https://github.com/TECHSOURAVGANGULY/EV-LOCATOR" target="_blank">
<div class="row project-card" data-toggle="modal" data-portfolio-tag="web-sites" >
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="static/img/evlocator.jpg" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">EV-Locator</h3>
<p class="project-card__description">
• Prototype built to notify the reach of EV to the charging station,
choosing an efficient charging station on the basis of cost and type, and
battery health.<br>
• With the help of a combination of Flask and Arduino Uno which can be
embedded directly into the EV Vehicle with minor changes
</p>
<p class="project-card__stack">Used:</p>
<ul class="tags">
<li>Flask</li>
<li>Python</li>
<li>Arduino Uno</li>
</ul>
</div>
</div>
</a>
<a href="https://github.com/techsouravganguly/English_Text_to_German_Text/blob/main/Neural_Machine_Translation_English_to_German.ipynb" target="_blank">
<div class="row project-card" data-toggle="modal" data-portfolio-tag="web-sites" >
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="static/img/English_to_German_Text_converstion.jpg" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">English to German Text Conversion</h3>
<p class="project-card__description">
this project enable to convert the English sentence to the German sentence.
Implemented on the attention model in NLP and tested on the various similarity function.
</p>
<p class="project-card__stack">Used:</p>
<ul class="tags">
<li>NLP</li>
<li>Python</li>
<li>Trax</li>
</ul>
</div>
</div>
</a>
<a href="project/Amazon_clone/index.html" target="_blank">
<div class="row project-card" data-toggle="modal" data-portfolio-tag="web-sites" >
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="static/img/Amazon-website.jpg" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">Amazon Website</h3>
<p class="project-card__description">
Websites Highlights:-
=> Full visual Degin
=> Add to cart function
=> Live Relaoding
=> Fully Dynamic
</p>
<p class="project-card__stack">Used:</p>
<ul class="tags">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Firebase</li>
</ul>
</div>
</div>
</a>
<a href="project/blackjack_game/black_jack.html" target="_blank">
<div class="row project-card" data-toggle="modal" data-portfolio-tag="web-sites" >
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="static/img/Blackjack Game.jpg" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">BlackJack and Rock, Paper, Scissor Game</h3>
<p class="project-card__description">
Two most popular childhood game BlackJack and Rock,
Paper, Scissor implemented solmenly on HTML, JavaScript and CSS
</p>
<p class="project-card__stack">Used:</p>
<ul class="tags">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
</ul>
</div>
</div>
</a>
</div>
<!--Portfolio-->
<!--Contact-->
<div class="background" style="background-image: url(static/img/img_bg_main.jpg)">
<div id="contact" class="container section">
<div class="row">
<div class="col-md-12">
<p id="contacts_header" class="section__title">Get in touch</p>
</div>
</div>
<div class="row contacts">
<div class="col-md-5 col-lg-4">
<div class="contacts__list">
<dl class="contact-list">
<dt>Phone:</dt>
<dd><a href="tel:+916204997379">+916204997379</a></dd>
<dt>Email:</dt>
<dd><a href="mailto:[email protected]">[email protected]</a></dd>
</dl>
</div>
<div class="contacts__social">
<ul>
<li><a href="">Linkedin</a></li>
<li><a href="">GitHub</a></li>
</ul>
</div>
</div>
<div class="col-md-7 col-lg-5">
<div class="contacts__form">
<p class="contacts__form-title">Or just write me a letter here</p>
<form class="js-form" action="mail.php" method="POST">
<div class="form-group">
<input class="form-field js-field-name" type="text" placeholder="Your name" required>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<div class="form-group">
<input class="form-field js-field-email" type="email" placeholder="Your e-mail" required>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<div class="form-group">
<textarea class="form-field js-field-message" placeholder="Type the message here" required></textarea>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<button class="site-btn site-btn--form" type="submit" value="Send">Send</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!--Contact-->
<script src="static/js/jquery-2.2.4.min.js"></script>
<script src="static/js/popper.min.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<script src="static/js/menu.js"></script>
<script src="static/js/jquery.waypoints.js"></script>
<script src="static/js/progress-list.js"></script>
<script src="static/js/section.js"></script>
<script src="static/js/portfolio-filter.js"></script>
<script src="static/js/slider-carousel.js"></script>
<script src="static/js/mobile-menu.js"></script>
<script src="static/js/contacts.js"></script>
<script src="static/js/mbclicker.min.js"></script>
<script src="static/js/site-btn.js"></script>
<script src="static/js/style-switcher.js"></script>
</body>
</html>