-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
475 lines (413 loc) · 18 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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Md Nehal Amin-portfolio</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/landing-page.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
</head>
<body>
<style type="text/css">
.italic{
color: #262626;
font-style: italic;
}
.heading1{
color: #ffffff;
}
.blink {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
</style>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top topnav" role="navigation">
<div class="container topnav">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand topnav" href="#">Md Nehal Amin</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#services">Experience</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Header -->
<a name="about"></a>
<div class="intro-header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="intro-message">
<h1 class="heading1"><strong>MD NEHAL AMIN</strong><span class="blink">|</span></h1>
<h3 class="italic">developer, geek and coffee addict</h3>
<hr class="intro-divider">
<ul class="list-inline intro-social-buttons">
<li>
<a href="resume/nehal.pdf" class="btn btn-default btn-lg"><i class="glyphicon glyphicon-list-alt"></i> <span class="network-name"> Resume</span></a>
</li>
<!--li>
<a href="https://github.com/nehalamin93" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
</li-->
<li>
<a href="https://www.linkedin.com/in/md-nehal-amin-690a023b" class="btn btn-default btn-lg"><i class="fa fa-linkedin fa-fw"></i> <span class="network-name">Linkedin</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.intro-header -->
<!-- Page Content -->
<div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">About me</h2>
<h4 class="italic">Never lose hope and keep working!</h4>
<p class="lead">My name is <strong>Md Nehal Amin</strong>, and I'm pursuing my <strong>5 year Integrated M.Sc.</strong> degree in <strong>Mathematics and Computing</strong> at <strong>Indian Institute of Technology Kharagpur</strong>. As a rising senior, my final days in college are quickly approaching. Looking forward, I plan to join the industry as a full stack engineer.</p>
<p class="lead">
I love coding and I'm very good at algorithms. I'm excited about developing reliable, elegant code and working on products that simplify the lives of others. If you think our interests align, feel free to reach out!
</p>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<img class="img-responsive img-circle" src="img/nehal.jpg" alt="">
</div>
</div>
</div>
<!-- /.container -->
</div>
<a name="services"></a>
<!-- /.content-section-a -->
<div class="content-section-b">
<div class="container">
<div class="row">
<div class="col-lg-offset-1">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Work Experience</h2>
<!-- Panel for work experience -->
<div class="panel-group">
<div class="panel panel-info">
<div class="panel-heading"><strong>Product Development Internship, Shine.com(HT Media Limited)   [May-July 2015]</strong></div>
<div class="panel-body">
<ul>
<li>Software development oriented internship primarily focused on Web Application Development</li>
<li>Extensive use of python based Web Frameworks, namely Django for designing "Generic Crawler" for scraping all web sites of relevance to the organisation using one code</li>
<li>Created a crawler testing interface for making crawled data homogeneous</li>
<li>Built an automated system which directly adds crawler to the back-end</li>
<li>Developed a moderator interface for filtering out irrelevant data from raw crawled data</li>
<li>Comprehensive use of DBMS primarily focusing on non-relational databases like MongoDB and relational database like MySQL</li>
<li>Front-end development using Twitter-Bootstrap, HTML, CSS and JavaScript</li>
<li>Development of search feature using Mongo-Search with auto-suggestion feature</li>
<li>Speeding up of Data Analytics Repository by 2000%</li>
</ul>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading"><strong>Summer Internship, Department of Computer Science at Indian Institute of Technology Guwahati   [May-July 2013]</strong> </div>
<div class="panel-body">
<ul>
<li>Internship project was based on Computational Biology</li>
<li>Topic was “Inferring high-confidence human protein-protein interaction” under Professor Dr. Ashish Anand</li>
<li>Used unsupervised statistical approach to score and rank a set of diverse, experimentally identified Protein-Protein Interactions</li>
</ul>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">S<strong>ocial Internship on Education Scenario, IITians for Youth    [May 2012]</strong></div>
<div class="panel-body">
<ul>
<li>It was an educational yatra, which aims at promoting quality learning and creating awareness about career opportunities after classes X and XII among rural and underprivileged students</li>
<li>It was a 20 days trip of investigation and social awareness, in association of Bihar (state) police and it was funded by Central government, India</li>
</ul>
</div>
</div>
</div>
<!-- End Panel-->
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-b -->
<!-- section a -->
<div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Education</h2>
<h4>
Indian Institute of Technology Kharagpur
</h4>
<p class="lead">
Bachelor and Master Of Science in<br><strong>Mathematics and Computing</strong> | 2011 - 2016<br>
(Current CGPA : 7.81/10)
</p>
</div>
<div class="col-lg-5 col-sm-pull-5 col-sm-5">
<img class="img-responsive" src="img/iit.gif" height="250" width="250" align="middle" alt="">
</div>
</div>
</div>
<!-- /.container -->
</div>
<div class="content-section-b">
<div class="container">
<div class="row">
<div class="col-lg-offset-1">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Projects</h2>
<!-- Panel for projects -->
<div class="panel-group">
<div class="panel panel-info">
<div class="panel-heading"><strong>Design and Development of Online Tutor Service, Department of Mathematics at Indian Institute of Technology Kharagpur   [Oct-till_now 2015]</strong></div>
<div class="panel-body">
<ul>
<li>Integrated M.Sc. Project(Web Application Development) under the guidance of Prof. Dharmendra Kumar Gupta</li>
<li>Provide a platform for Teachers and Students interaction</li>
<li>Design a generic front-end for Online Tutor Service using Bootstrap, HTML, CSS and
JavaScript which can run on any device</li>
<li>Back-end Development using Python/Django and Front-end development using Bootstrap, HTML, JavaScript and CSS</li>
</ul>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading"><strong>Android Application Development, Department of Computer Science at Indian Institute of Technology Kharagpur   [May 2014]</strong> </div>
<div class="panel-body">
<ul>
<li>Developed an android background application which creates a shortcut of frequently used applications</li>
<li>Created a sorted list of foreground running application on the basis of its frequency and duration of usage</li>
</ul>
</div>
</div>
</div>
<!-- End Panel-->
</div>
</div>
</div>
<!-- /.container -->
</div>
<div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Skills</h2>
<div class="container">
<div class="row">
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width:90%">
90%
</div>
</div>
<h4>C++</h4>
</div>
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
80%
</div>
</div>
<h4>C</h4>
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
80%
</div>
</div>
<h4>Python</h4>
</div>
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width:50%">
50%
</div>
</div>
<h4>Java</h4>
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width:60%">
60%
</div>
</div>
<h4>MongoDB</h4>
</div>
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width:50%">
50%
</div>
</div>
<h4>MySQL</h4>
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
80%
</div>
</div>
<h4>Bootstrap</h4>
</div>
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%">
80%
</div>
</div>
<h4>HTML/CSS</h4>
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width:50%">
50%
</div>
</div>
<h4>MATLAB</h4>
</div>
<div class="col-sm-6 text-center">
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar"
aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width:50%">
50%
</div>
</div>
<h4>JavaScript</h4>
</div>
</div>
</div>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<img class="img-responsive" src="" alt="">
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-a -->
<a name="contact"></a>
<div class="banner">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>Contact:</h2>
<h4>Email: [email protected]</h4>
<h4>Phone: +91-9002873066</h4>
</div>
<div class="col-lg-6">
<ul class="list-inline banner-social-buttons">
<li>
<a href="https://www.facebook.com/nehalamin93" class="btn btn-default btn-lg"><i class="fa fa-facebook fa-fw"></i> <span class="network-name">Facebook</span></a>
</li>
<!--li>
<a href="https://github.com/IronSummitMedia/startbootstrap" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
</li-->
<li>
<a href="https://www.linkedin.com/in/md-nehal-amin-690a023b" class="btn btn-default btn-lg"><i class="fa fa-linkedin fa-fw"></i> <span class="network-name">Linkedin</span></a>
</li>
</ul>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.banner -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12">
<ul class="list-inline">
<li>
<a href="#">Home</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#about">About</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#services">Resume</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
<p class="copyright text-muted small">Copyright © nehalamin.com</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>