forked from pranavjain97-zz/pranavjain97.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
671 lines (571 loc) · 30.2 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
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<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>Pranav's Portfolio</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/mySheet.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<link rel="icon" type="image/png" href="img/logo.png" />
</head>
<body>
<!------------------------------------------------------------ Navigation -------------------------------------------------------------->
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll robot2" href="#top" style="color:black">Pranav's Portfolio</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 class="page-scroll robot2" style="color:black" href="#about">Profile</a>
</li>
<li>
<a class="page-scroll robot2" style="color:black" href="#services">Skills</a>
</li>
<li>
<a class="page-scroll robot2" style="color:black" href="#projects">Projects</a>
</li>
<li>
<a class="page-scroll robot2" style="color:black" href="#contact">Contacts</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!------------------------------------------------------------ Navigation -------------------------------------------------------------->
<!------------------------------------------------------------ Header ------------------------------------------------------------------>
<header id="top" class="header">
<div class="text-vertical-center">
<div style="margin-top: 10%">
<h1 style="color:white">Welcome to <span>Pro</span>nav.jain </h1>
<p>
<h2 style="color:white"> Aspiring Software Engineer </h2>
</p>
<ul class="social-buttons" id="demo1">
<li>
<a href="https://github.com/pranavjain97"><i class="fa fa-github-square" style="font-size:45px; color:black"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/pranav-jain-01b7b6a1/"> <i class="fa fa-linkedin-square" style="font-size:45px; color:black"></i>
</a>
<!--<a href="#" class="fa fa-linkedin" style="color:black; font-size:45px "></a>-->
</li>
</ul>
<div style="margin-top:100px; ">
<ul class="list-inline intro-social-buttons">
<li>
<p class="link"><a href="#about" style="color:black"><strong> Profile </strong> </a> </p>
</li>
<li>
<p class="link"><a href="#projects" style="color:black"><strong> Projects </strong> </a> </p>
</li>
<li>
<p class="link"><a href="#contact" style="color:black"><strong>Contact </strong> </a> </p>
</li>
</ul>
</div>
</div>
</div>
</header>
<!------------------------------------------------------------ Header ------------------------------------------------------------------>
<!------------------------------------------------------------ About ------------------------------------------------------------------->
<section id="about" class="about">
<div class="container">
<div class="text-center" style="margin: 30px">
<img src="img/profile.jpg" class="img-thumbnail pagination-center" width="250px">
</div>
<h2>About Me</h2>
<div class="section-text mb-50 mb-sm-20" style="margin-top: 10px">
<div class="row">
<div class="col-md-4 col-sm-6 mb-xs-30">
<p style="font-size: 14px">I am an aspiring Software Engineer who loves <strong>learning </strong>new technologies, using that to develop something creative and innovative. My ideas to solve problems around me can sometimes be silly or funny, but I like to build them anyway, just for personal satisfaction and fun! Having a strong analytical and logical thinking approach, I am able to solve complex problems, and with my passion I try to turn those into a real world model.</p>
</div>
<div class="col-md-4 col-sm-6 mb-xs-30">
<p><strong>I dream</strong> to travel the world, in a beautiful car, with a coke can in my hand, contributing cool real-world projects during this journey. So you'l usually find me sketching cars, or living them in video games as my hobbies.</p><br>
<p style="font-size:15px">My goal is to stay <strong style="color:red">motivated</strong>, to not give up no matter how much failure I come across. Because... </p>
</div>
<div class="col-md-4 col-sm-12 mb-xs-30">
<blockquote style="border-left:transparent">
<p>
"In order to create anything exceptional, it is not the idea which is the soul, but only the motivation that makes it successful"
</p>
<footer style="margin-top: -70px">
Pranav Jain
</footer>
</blockquote>
</div>
</div>
</div>
<!-------------------------Work Experience --------------------------->
</section>
<!------------------------------------------------------------ About ------------------------------------------------------------------->
<!------------------------------------------------------------ Skills ------------------------------------------------------------------>
<section id="services" class="services bg-primary callout" style="margin-top:210px">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center" style="margin-top:-35px">
<h2 class="section-heading" style="color:white">My Skills</h2>
<!--<hr class="primary" >-->
</div>
</div>
</div>
<div class="container" style="color:black; margin-top:30px">
<div class="row">
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-3x fa-code"></i>
<h3>Languages</h3>
<br>
<ul class="robot2">
<li>Java</li>
<li>Python</li>
<li>Javascript</li>
<li>JSX</li>
<li>C++</li>
<li>HTML/CSS</li>
<li>SQL</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-3x fa-lightbulb-o text-primary sr-icons" style="color:black"></i>
<h3>Technologies</h3>
<br>
<ul class="robot2">
<li>iOS</li>
<li>Android</li>
<li>NodeJS</li>
<li>React</li>
<li>Angular</li>
<li>VueJS</li>
<li>Selenium</li>
<li>Flask</li>
<li>MongoDB</li>
<li>Pandas</li>
<li>MySQL</li>
</ul>
<p class="text-muted"></p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-cog fa-spin fa-3x fa-fw" aria-hidden="true"></i>
<span class="sr-only"></span>
<h3>Software</h3>
<br>
<ul class="robot2">
<li>AWS</li>
<li>Docker</li>
<li>Celery</li>
<li>XCode</li>
<li>Webstorm</li>
<li>Git</li>
</ul>
<p class="text-muted"></p>
</div>
</div>
</div>
</div>
</section>
<!------------------------------------------------------------ Skills ------------------------------------------------------------------>
<!------------------------------------------------------------ Projects ---------------------------------------------------------------->
<section id="projects" class="portfolio" style="margin-top:65px">
<div class="col-lg-12 text-center" style="margin-bottom:66px">
<h2 class="section-heading">Top projects I worked on!</h2>
<ul class="grid cs-style-3" style="margin-top:30px">
<li>
<figure>
<img src="img/projects/weatherForMe.png" class="proj" alt="img03">
<figcaption>
<h3>WeatherForMe</h3>
<h5>Android Weather App</h5>
<a href="#weatherModal" class="portfolio-link" data-toggle="modal">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/projects/gradAnalyser.png" class="proj">
<figcaption>
<h3>Gradschool Analyser</h3>
<h5>Data analyser for my<br> grad school</h5>
<a href="#gradModal" class="portfolio-link" data-toggle="modal">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/projects/bouncy.png" class="proj" alt="img01">
<figcaption>
<h3>Bouncy</h3>
<h5>Arcade Java Game</h5>
<a href="#bouncyModal" class="portfolio-link" data-toggle="modal">Take a look</a>
</figcaption>
</figure>
</li>
<br>
<li>
<figure>
<img src="img/projects/messaging.png" class="proj" alt="img02">
<figcaption>
<h3>Messenger Pro</h3>
<h5>A simple Messaging <br>app</h5>
<a href="#messagingModal" class="portfolio-link" data-toggle="modal">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/projects/billingSystem.png" class="proj" alt="img03">
<figcaption>
<h3>Billing System</h3>
<h5>Multiplatform Cashier</h5>
<a href="#billingModal" class="portfolio-link" data-toggle="modal">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/projects/website.png" class="proj" alt="img03">
<figcaption>
<h3>Personl Website</h3>
<h5>My portfolio</h5>
<a href="#websiteModal" class="portfolio-link" data-toggle="modal">Take a look</a>
</figcaption>
</figure>
</li>
</ul>
</div>
</section>
<!------------------------------------------------------------ Projects ---------------------------------------------------------------->
<!------------------------------------------------------------ Contact ---------------------------------------------------------------->
<section id="contact" class="contactBack">
<div class="container" style="margin-top:30px; margin-bottom: 30px">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading" style="color:white; margin-bottom:30px">Contact Me</h2>
<!--<hr class="primary">-->
<p style="color:black">Ready to start your next project with me? That's great! Give me a call or send me an email
and I will get back to you as soon as possible!</p>
</div>
<div class="col-lg-4 col-lg-offset-2 text-center" style="color:black">
<i class="fa fa-phone fa-3x sr-contact"></i>
<p>226-899-2999</p>
</div>
<div class="col-lg-4 text-center" style="color:black">
<i class="fa fa-envelope-o fa-3x sr-contact"></i>
<p style="color:black"><a href="[email protected]" style="color:black">[email protected]</a>
</p>
</div>
</div>
</div>
</section>
<!------------------------------------------------------------ Contact ---------------------------------------------------------------->
<!------------------------------------------------------------ Project Modals ---------------------------------------------------------------->
<div class="portfolio-modal modal fade" id="weatherModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>WeatherForMe</h2>
<hr class="star-primary">
<p>
<h3>About</h3>A cloud-connected Android app which displays the week's weather forecast.
<br>
<br>
<h3>My story</h3> My purpose of creating this app was to learn best practices of Android development,
understanding the complete Android application life-cycle. The app runs asynchronously,
fetching information back and forth from the SQLite database and Content Providers.
It displays the data in list form making use of RecyclerViews and Adapters.</p>
<br>
<a href="https://github.com/pranavjain97/WeatherForMe">See on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="gradModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Gradschool Analyser</h2>
<hr class="star-primary">
<p>
<h3>About</h3>We all know higher studies cost a fortune. Choosing the BEST one making sure it
meets your budget and needs, can be very challenging and stressful.
<br>
<br> For this purpose, I created an app which scraps big data from Top 100 ranked graduation
schools, to compare on the basis of their Tuition, Living Costs, Rankings and Acceptance
rates. I used Python Pandas for Data Analysis and Matplotlib for Data Visualization.
<br>
<br>
<h3> My story</h3>
Results were awesome! You can see for yourself! Here are a few of them which I
could find-
<br> 1.) Top 10-20 universities have almost the same costs.
<br> 1.) Rankings and fees were NOT proportional.
<br> 2.) How most of the top universities don't differentiate between In-state and
Out-of-state students regarding Fees and are purely merit based.
<br> 3.) Gave an idea that there are universites where living off-campus could actually
cost me more!
<br> 4.) Growth between 2016 and 2017 fees.
<br>
<br> But would I suggest someone to make a decision of their future based on this?
Probably not. This is just a prototype that can help in giving an idea, but is
not 100% accurate.
</p>
<br>
<a href="https://github.com/pranavjain97/gradSchool-analyser">See on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="bouncyModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Bouncy</h2>
<hr class="star-primary">
<p>
<h3> About</h3>It's a Desktop java game. The aim is simple, just try not to bounce off the bricks?!
The difficulty level gets higher with your score, each ball collected giving you
bonus points.
<br>
<br>
<h3> My story</h3>The learning curve was really steep for me in this one. Being a passionate gamer,
I had only just enjoyed the games, but never knew how they actually worked. I got
exposure to collision detection, implemented theoretical physics in real world
to handle gravity, energy loss, friction of the ball and controlled the difficulty
as the game progresses. It was fun adding sound effects and shaping it's UI for
my preferences, which amazed me how the games I play are actually functioning
<br>
<br> Now every time I play a new game, my brain naturally starts thinking about the
technical way it is created!</p>
<br>
<a href="https://github.com/pranavjain97/Bouncy">See on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="messagingModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Messenger Pro</h2>
<hr class="star-primary">
<h3> About</h3>
<p style="text-align:start">
This app exchanges messages on the same computer between the Client and Server. It is a very basic 1-one-1 messaging
app which allows user to enter and exit a chat room.
<br>
<br>
<h3> My story</h3>
<p style="text-align:left; word-wrap: break-word;">
I created this project during the holidays that I got between my High School and University. It was the time when
'Java' was just a famous language to me that everyone talked about which I
was very eager to learn. I started with online tutorials and by the end of
a month had this app in my hand, along with a simple Web Browser which I created
in the learning process. This taught me a lot about networking by implementing
server sockets , streams, inheritance, arrays.
<br>
<br> <strong>Fun fact:</strong> This was the first time I realised that- all languages are pretty
much the same!
</p>
<br>
<a href="https://github.com/pranavjain97/Messenger-Pro">See on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="billingModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Billing System</h2>
<hr class="star-primary">
<p>
<h3>About</h3>A desktop application which allows admins and customers to Search, Modify, Copy,
Add and Delete records separately. It is flexible to be used by Hotels/Supermarkets
and similar fields and easy to personalise for your own field.
<br>
<br>
<h3> My story</h3>I created this application as my high school project to apply the concepts of file
handling and everything we had been taught in C++ till that point. I was tired
of studying the theory behind different searching and sorting algorithms and wanted
to create a real world project using my knowledge. This was the first ever project
I created which sparked my interest in this field.</p>
<br>
<a href="https://github.com/pranavjain97/Billing-System">See on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="websiteModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Personal Website</h2>
<hr class="star-primary">
<p><h3> About</h3> A platform which gives me an opportunity to showcase all my work and skills.
<h3> My story</h3>
I can express my thoughts and ideas to the world. A collection of all the solutions I am finding in my journey to common problems.
</p>
<a href="https://github.com/pranavjain97/pranavjain97.github.io">See on Github</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!------------------------------------------------------------ Project Modals ---------------------------------------------------------------->
<!---------------------------------------Script files in the end to make the website faster ------------------------------------------->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<script src="scrolling-nav.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Custom Theme JavaScript -->
<script>
// Scrolls to the selected menu item on the page
$(function() {
$('a[href*=#]:not([href=#],[data-toggle],[data-target],[data-slide])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') ||
location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
//#to-top button appears after scrolling
var fixed = false;
$(document).scroll(function() {
if ($(this).scrollTop() > 250) {
if (!fixed) {
fixed = true;
// $('#to-top').css({position:'fixed', display:'block'});
$('#to-top').show("slow", function() {
$('#to-top').css({
position: 'fixed',
display: 'block'
});
});
}
} else {
if (fixed) {
fixed = false;
$('#to-top').hide("slow", function() {
$('#to-top').css({
display: 'none'
});
});
}
}
});
window.sr = ScrollReveal();
sr.reveal('.fooReveal', {
container: '.fooContainer'
});
$(document).ready(function() {
$("[rel='tooltip']").tooltip();
$('.thumbnail').hover(
function() {
$(this).find('.caption').slideDown(250); //.fadeIn(250)
},
function() {
$(this).find('.caption').slideUp(250); //.fadeOut(205)
}
);
});
</script>
<script>
$(document).ready(function() {
$("[rel='tooltip']").tooltip();
$('.thumbnail').hover(
function() {
$(this).find('.caption').slideDown(250); //.fadeIn(250)
},
function() {
$(this).find('.caption').slideUp(250); //.fadeOut(205)
}
);
});
</script>
</body>
</html>