-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
536 lines (479 loc) · 27.9 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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
<!DOCTYPE html>
<html>
<head>
<title>Azhar | Portfolio</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Nunito|Raleway" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="materialize/css/materialize.css" media="screen,projection" />
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/home.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:url" content="https://azharullah.github.io" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Azharullah | Portfolio" />
<meta property="og:description" content="I'm a final year computer science undergrad at NIT Calicut." />
<meta property="og:image" content="http://athena.nitc.ac.in/azharullahshariff_b130727cs/mysite/img/azhar_full.jpg" />
<link rel="shortcut icon" type="image/png" href="img/azhar_small.jpg" />
<!-- Google website tracking -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-84799110-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Twitter SDK -->
<script>
window.twttr = (function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function (f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
</script>
</head>
<body>
<div class="navbar-fixed">
<nav class="z-depth-2">
<div class="nav-wrapper">
<a href="#0" class="brand-logo">
<img id="res_img" src="img/azhar_small.jpg">
<span> Azhar </span>
</a>
<a href="#" data-activates="mobile-demo" class="button-collapse">
<i class="material-icons">menu</i>
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down section table-of-contents">
<li>
<a href="#aboutme">About</a>
</li>
<li>
<a href="#career">Career</a>
</li>
<li>
<a href="#code">Code</a>
</li>
<li>
<a href="#presentations">Talks</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
<ul class="side-nav section table-of-contents" id="mobile-demo">
<li>
<a href="#aboutme">About</a>
</li>
<li>
<a href="#career">Career</a>
</li>
<li>
<a href="#code">Code</a>
</li>
<li>
<a href="#presentations">Talks</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<div id="main_contents" class="row col s12 l12 m12">
<img id="myimagemain" class="responsive-img center-align" src="img/azhar_full.jpg">
<!--<div class="act_icons">
<h2 class="center-align red-text" style="margin-bottom:50px;font-family: 'Baloo Bhaina', cursive;"> <span style="color:orange"> Hi! I'm </span> Md.<span style="color:#ffeb3b"> Azhar</span>ullah Shariff</h2>
<a href="https://www.facebook.com/mohammedazharullah.shariff" title="Facebook" target="_blank"><img class="responsive-img social_icons" src="social/fb.png"></a>
<a href="https://twitter.com/md_azharullah" title="Twitter" target="_blank"><img class="responsive-img social_icons" src="social/twitter.png"></a>
<a href="mailto:[email protected]" title="Gmail" target="_blank"><img class="responsive-img social_icons" src="social/email.png"></a>
<a href="https://plus.google.com/u/0/+azharullahshariff" title="Google Plus" target="_blank"><img class="responsive-img social_icons" src="social/googleplus.png"></a>
<a href="https://in.linkedin.com/pub/mohammed-azharullah-shariff/b4/a38/473" title="LinkedIn" target="_blank"><img class="responsive-img social_icons" src="social/linkedin.png"></a>
<a href="https://github.com/azharullah" title="Github" target="_blank"><img class="responsive-img social_icons" src="social/github.png"></a>
</div>-->
<a href="./resume.pdf" class="waves-effect waves-light btn-large resume">
<i class="material-icons right">assignment</i>My Resume</a>
<div class="fb_section hide-on-med-and-down">
<iframe src="https://www.facebook.com/plugins/follow.php?href=https%3A%2F%2Fwww.facebook.com%2Fmohammedazharullah.shariff&width=450&height=80&layout=standard&size=small&show_faces=true&appId=1718200528464920"
width="450" height="80" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
</div>
<a class="twitter-follow-button hide-on-med-and-down" style="float:right !important;" href="http://twitter.com/md_azharullah">Follow @ md_azharullah</a>
<br>
<!-- Place this tag where you want the button to render. -->
<a class="github-button hide-on-med-and-down" href="https://github.com/azharullah" data-style="mega" data-count-href="/azharullah/followers"
data-count-api="/users/azharullah#followers" data-count-aria-label="# followers on GitHub" aria-label="Follow @azharullah on GitHub">Follow @azharullah</a>
</div>
<div id="aboutme" class="container section scrollspy">
<h3 class="center-align">
<i class="medium material-icons" style="vertical-align: middle;">perm_identity</i> Firstly, a little about me!</h3>
<p>I'm
<span style="color:yellow; font-size:larger">Azhar</span>! I currently work as a full time python developer at
<a href="http://nutanix.com" target="_blank">
Nutanix</a>, Bangalore hacking enterprise-grade web applications and micro-service architecture based back-end
applications using Docker services. A developer by passion, a night-owl, a great foodie and a true hyderabadi
at heart! I ♥ making things that make people's lives simpler and easier. Also, I do occasionally
<a href="https://azharullah.wordpress.com" target="_blank"> blog </a> and write on
<a href="https://www.quora.com/profile/Azharullah-Shariff" target="_blank"> quora. </a> I am a hard-core gamer, the Assasins' Creed and FIFA series being my all-time favourites. Find me
on
<a href="https://www.facebook.com/mohammedazharullah.shariff" target="_blank"> facebook </a> or
<a href="https://twitter.com/md_azharullah" target="_blank"> twitter </a>, my code on
<a href="https://github.com/azharullah" target="_blank"> github </a>, or simply write to me @
<a href="mailto:[email protected]"> [email protected]</a>.</p>
</div>
<div id="career" class="container section scrollspy">
<h3 class="center-align">
<i class="medium material-icons" style="vertical-align: middle;">person_pin</i>I've marked my presence at a few places!</h3>
<ul class="collapsible popout" data-collapsible="accordion">
<li>
<div class="collapsible-header active">
<i class="material-icons medium" style="vertical-align: middle;">work</i>Nutanix
<span class="career_dates">| May 2017 - Present </span>
</div>
<div class="collapsible-body">
<p>I currently work as a full stack python developer on enterprise-grade web applications using Django and
MongoDB
<br> I also work on developing micro-service architecture based back-end applications using Docker services.</p>
</div>
</li>
<li>
<div class="collapsible-header">
<i class="material-icons medium" style="vertical-align: middle;">work</i>National Institute Of Technology, Calicut
<span class="career_dates">| Summer Intern, 2015 </span>
</div>
<div class="collapsible-body">
<p>I interned at NIT Calicut in summer, 2015 under Dr. Vinod Pathari. I implemented a biometric finger-print
attendance management system in the Civil engineering department, NITC. The application is now being
used in the Computer Science, Civil and Electrical departments of NITC. </p>
</div>
</li>
<li>
<div class="collapsible-header">
<i class="material-icons medium" style="vertical-align: middle;">work</i>Panorbit
<span class="career_dates">| Summer Intern, 2015 </span>
</div>
<div class="collapsible-body">
<p>I interned at Panorbit, a bangalore based startup during the summer of 2015. I developed built a face
recognition tool using a few javascript libraries. </p>
</div>
</li>
<li>
<div class="collapsible-header">
<i class="material-icons medium" style="vertical-align: middle;">library_books</i>National Institute Of Technology, Calicut
<span class="career_dates">| 2013 - 2017 </span>
</div>
<div class="collapsible-body">
<p>I graduated from NIT Calicut, Kerala with majors in Computer Science and Engineering in May 2017.</p>
</div>
</li>
<li>
<div class="collapsible-header">
<i class="material-icons medium" style="vertical-align: middle;">library_books</i>FIITJEE Junior College
<span class="career_dates">| 2011 - 2013 </span>
</div>
<div class="collapsible-body">
<p>I did my +2 at FORUM FOR IITJEE (FIITJEE), Hyderabad, with Math, Physics and Chemistry as major subjects
and English and French as languages, from 2011 - 2013.</p>
</div>
</li>
<li>
<div class="collapsible-header">
<i class="material-icons medium" style="vertical-align: middle;">library_books</i>All Saints High School
<span class="career_dates">| 1999 - 2011</span>
</div>
<div class="collapsible-body">
<p>I did my schooling from All Saints High School, Hyderabad.</p>
</div>
</li>
</ul>
</div>
<div id="code" class="container col s8 l3 section scrollspy">
<h3 class="center-align">
<i class="material-icons medium" style="vertical-align: middle;">language</i> I've developed things, some of which people actually use!</h3>
<div id="projects">
<ul class="collection">
<li class="collection-item avatar">
<img src="img/libra.png" class="circle responsive-img projects_img">
<span class="title">Libra</span>
<p>Libra is one place online destination where you can compare prices of a product from different online
shopping sites and buy them. </p>
<p>
<div class="chip">
<a target="_blank" href="https://libra0.herokuapp.com">
<img src="img/website.png"> PHP Site</a>
</div>
<div class="chip">
<a target="_blank" href="https://libracompare.herokuapp.com">
<img src="img/website.png"> Django Site</a>
</div>
<div class="chip">
<a target="_blank" href="#0">
<img src="img/playstore.png"> Android App</a>
</div>
<div class="chip">
<a target="_blank" href="https://www.youtube.com/watch?v=tE9VQOqef-E">
<img src="img/youtube.ico"> Promo Video</a>
</div>
</p>
</li>
<li class="collection-item avatar">
<!--<img src="img/libra.png" class="circle responsive-img projects_img">-->
<span class="title">Friends With Books</span>
<p>Friends With Books is an online book sharing mobile application, currently being developed with the mobile
application developed in Ionic framework and the backend in NodeJS and MongoDB.</p>
<!--<p>
<div class="chip"><a target="_blank" href="https://libra0.herokuapp.com">PHP Site</a></div>
<div class="chip"><a target="_blank" href="https://libracompare.herokuapp.com">Django Site</a></div>
<div class="chip"><a target="_blank" href="#0">Android App</a></div>
<div class="chip"><a target="_blank" href="https://www.youtube.com/watch?v=tE9VQOqef-E">Promo Video</a></div>
</p>-->
</li>
<li class="collection-item avatar">
<img src="img/tathva.jpg" class="circle responsive-img projects_img">
<span class="title">Tathva '15</span>
<p>Tathva, the annual techno-management festival of NIT Calicut, is one of the biggest fests in India. I
developed the website for the fest, also a few other websites for various events during the fest.</p>
<p>
<div class="chip">
<a target="_blank" href="http://athena.nitc.ac.in/azharullahshariff_b130727cs/tathva/#/home">
<img src="img/website.png"> Tathva '15 Site</a>
</div>
<div class="chip">
<a target="_blank" href="http://athena.nitc.ac.in/azharullahshariff_b130727cs/wheels/">
<img src="img/website.png"> Wheels Site</a>
</div>
<div class="chip">
<a target="_blank" href="http://athena.nitc.ac.in/azharullahshariff_b130727cs/aavishkaar/">
<img src="img/website.png"> Aavishkaar Site</a>
</div>
</p>
</li>
<li class="collection-item avatar">
<img src="img/fingerprint.png" class="circle responsive-img projects_img">
<span class="title">Biometric Attendance Management System</span>
<p>This is a fingerprint based attendance system, being now used in the Civil, Electrical and Computer Science
departments of NITC. This application has a windows application and a web page for managing the attendance
of the students.</p>
<p>
<div class="chip">
<a target="_blank" href="http://athena.nitc.ac.in/chaudhary_bcs11/ams_modified1/">
<img src="img/website.png"> Link to the site</a>
</div>
</p>
</li>
<li class="collection-item avatar">
<img src="img/tow.png" class="circle responsive-img projects_img">
<span class="title">Tux-Of-War 2015</span>
<p>Tux-Of-War is a shell scripting contest for all the linux afficionados, held as a part of Tathva. I was
the co-ordinator for the event and developed the application for conducting the contest as well.</p>
<p>
<div class="chip">
<a target="_blank" href="http://athena.nitc.ac.in/tuxofwar/">
<img src="img/website.png"> Link to the site</a>
</div>
</p>
</li>
<li class="collection-item avatar">
<img src="img/estatosol.jpg" class="circle responsive-img projects_img">
<span class="title">Estatosol</span>
<p>'Estatosol' stands for 'Estate Solutions'. It is a scalable online real estate management system. It
provides the property buyers and sellers a platform to purchase and upload properties.</p>
<p>
<div class="chip">
<a target="_blank" href="http://athena.nitc.ac.in/azharullahshariff_b130727cs/estatosol/">
<img src="img/website.png"> Estatosol</a>
</div>
</p>
</li>
</ul>
</div>
</div>
<div id="presentations" class="container col s8 l3 section scrollspy">
<h3 class="center-align">
<i class="material-icons medium" style="vertical-align: middle;">slideshow</i> I've presented at a few places! </h3>
<ul class="collection">
<li class="collection-item avatar">
<img src="img/ionic.png" class="circle responsive-img projects_img">
<span class="title">Cross Platform App Development with Ionic Framework</span>
<br>
<p>
<span class="subtitle">Google Developers Group, Kozhikode, Feb 2017</span>
</p>
<p>I delivered a session on Hybrid cross-platform app development using the
<a target="_blank" href="http://ionicframework.com">Ionic Framework</a> at the
<a target="_blank" href="https://developers.google.com/groups/chapter/114055418793204110473/">Google Developers Group, Kozhikode</a> on 4th February, 2017 at the
<a href="https://www.google.co.in/maps/place/UL+Cyber+Park/@11.2550743,75.826398,17z/data=!3m1!4b1!4m5!3m4!1s0x3ba65beca37af1e3:0x7549076c85e91304!8m2!3d11.255069!4d75.828592"
target="_blank">UL Cyber Park, Kozhikode</a>
</p>
<p>
<div class="chip">
<a target="_blank" href="ionic/presentation">
<img src="img/slides.png"> Presentation Slides</a>
</div>
<div class="chip">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLj7RgvlBYxbMItxJIvcf3s2WcU8mXt3Bc">
<img src="img/youtube.ico"> Presentation Video</a>
</div>
</p>
</li>
<li class="collection-item avatar">
<img src="img/github.png" class="circle responsive-img projects_img">
<span class="title">GIT and Heroku workshop</span>
<br>
<p>
<span class="subtitle">NIT Calicut, March 2017</span>
</p>
<p>I had taken a hands-on-session on development with GIT and uploading apps to Heroku at NIT Calicut in March,
2017.
</p>
<p>
<div class="chip">
<a target="_blank" href="git/">
<img src="img/slides.png"> Presentation Slides</a>
</div>
</p>
</li>
<li class="collection-item avatar">
<img src="img/staruml.png" class="circle responsive-img projects_img">
<span class="title">Software design</span>
<br>
<p>
<span class="subtitle">NIT Calicut, February 2017</span>
</p>
<p>I had delivered a session on Software Designing and a workshop on developing UML diagrams using
<a target="_blank" href="http://staruml.io">Star UML 2</a> at NIT Calicut in February, 2017.
</p>
</li>
</ul>
</div>
<div id="contact" class="section scrollspy">
<h3 class="center-align">
<i class="material-icons medium" style="vertical-align: middle;">message</i> Want to connect with me?</h3>
<div class="row col s12">
<div class="col s12 m12 l6">
<h4 class="center-align" style="margin-bottom:80px;">Find me online</h4>
<p class="socal_tags">
<div class="chip last_chips odd">
<img src="img/fb.png">
<a href="https://www.facebook.com/mohammedazharullah.shariff"> mohammedazharullah </a>
</div>
<div class="chip last_chips">
<img src="img/quora.png">
<a href="https://www.quora.com/profile/Azharullah-Shariff"> Azharullah-Shariff </a>
</div>
</p>
<p class="socal_tags">
<div class="chip last_chips odd">
<img src="img/github.png">
<a href="https://github.com/azharullah"> azharullah </a>
</div>
<div class="chip last_chips">
<img src="img/linkedin.png">
<a href="https://in.linkedin.com/in/mohammed-azharullah-shariff-473a38b4"> mohammed-azharullah-shariff </a>
</div>
</p>
<p class="socal_tags">
<div class="chip last_chips odd">
<img src="img/twitter.png">
<a href="https://twitter.com/md_azharullah"> md_azharullah </a>
</div>
<div class="chip last_chips">
<img src="img/gmail.png">
<a href="mailto:[email protected]"> [email protected] </a>
</div>
</p>
<p class="socal_tags">
<div class="chip last_chips odd">
<img src="img/gplus.png">
<a href="https://plus.google.com/+azharullahshariff"> azharullahshariff </a>
</div>
</p>
<!-- <p><div class="chip last_chips"><img src="img/"><a href=""> </a></div></p>
<p><div class="chip last_chips"><img src="img/"><a href=""> </a></div></p>
<p><div class="chip last_chips"><img src="img/"><a href=""> </a></div></p> -->
</div>
<div class="col s12 m12 l6 hide-on-med-and-down">
<h4 class="center-align">Or visit me at</h4>
<iframe style="margin-left: 8vw !important;" width="450" height="350" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=12.915314%2C%2077.678822&key=AIzaSyBhfKJjHH9Qg6gc8YGgdiC0kv8SdQwfLV8"
allowfullscreen></iframe>
</div>
</div>
</div>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">This website</h5>
<p>Powered by
<a target="_blank" href="https://jquery.com">jQuery</a>,
<a target="_blank" href="http://materializecss.com"> MaterializeCSS</a>,
<a target="_blank" href="https://github.com"> Github</a>.</p>
<!-- <p> Inspired by
<a target="_blank" href="https://ashishkedia.me">Ashish Kedia</a>,
<a target="_blank" href="http://debarghyadas.com">Debarghya Das</a>
</p> -->
<p>For any issues, mailto:
<a href="mailto:[email protected]">[email protected]</a>
</p>
<!-- <p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p> -->
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Info for Nerds</h5>
<ul>
<li>
<a href="sitemap.xml">Site Map</a>
</li>
<li>Hosted on
<a href="http://www.ubuntu.com">Ubuntu machine</a>, running on
<a href="https://www.apache.org">Apache server</a>
</li>
<li>Source Code available on
<a href="https://github.com/AZHARULLAH/azharullah.github.io">Github</a>
</li>
<br>
<!--Github star button-->
<li>
<a class="github-button" href="https://github.com/azharullah/azharullah.github.io" data-style="mega" data-count-href="/azharullah/azharullah.github.io/stargazers"
data-count-api="/repos/azharullah/azharullah.github.io#stargazers_count" data-count-aria-label="# stargazers on GitHub"
aria-label="Star azharullah/azharullah.github.io on GitHub">Star</a>
<!-- Github watch button-->
<a class="github-button" href="https://github.com/azharullah/azharullah.github.io/subscription" data-style="mega" data-count-href="/azharullah/azharullah.github.io/watchers"
data-count-api="/repos/azharullah/azharullah.github.io#subscribers_count" data-count-aria-label="# watchers on GitHub"
aria-label="Watch azharullah/azharullah.github.io on GitHub">Watch</a>
</li>
<!-- <li><a class="grey-text text-lighten-3" href="#!">Link 4</a></li> -->
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container" style="font-weight:bold; text-align: center;">
© 2018, Md. Azharullah Shariff
</div>
</div>
</footer>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
<script type="text/javascript" src="materialize/js/materialize.js"></script>
<script type="text/javascript" src="js/home.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>