-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
876 lines (853 loc) · 50.1 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
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META TAGS -->
<title>Shounak Bhalerao</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="Shounak Bhalerao" />
<meta name="keywords" content="Shounak,Bhalerao" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Shounak Bhalerao's Personal Website" />
<link rel="shortcut icon" href="assets/photos/favicon.png" type="image/png" />
<!-- BOOTSTRAP LINKS -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- <link rel="stylesheet" href="css/custom-css/timeline.css"> -->
<link href="css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap.js"></script>
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- FONT AWESOME LINK -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<!-- Font Style -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Ubuntu" />
<!-- Popper.js -->
<script src="https://unpkg.com/@popperjs/core@2"></script>
<!-- Typewriter.js -->
<!-- Reference: https://safi.me.uk/typewriterjs/ -->
<script src="js/typewriter.js"></script>
<!--Animate On Scroll (AOS.js)-->
<!-- Reference: https://michalsnik.github.io/aos/ -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!-- LinkedIn API Call -->
<!-- <script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script> -->
<!-- Main CSS file -->
<link rel="stylesheet" href="css/custom-css/main.css">
<!-- LIGHT/DARK THEME : deliberately left blank-->
<link rel="stylesheet" href="" id="theme-link">
<!-- Quote Generator -->
<script src="js/QuoteGenerator.js"></script>
<!-- Theme Toggle -->
<script src="js/main.js"></script>
</head>
<!-- =========================================================================================================================================== -->
<body class="bgcolor webpage-body" style="overflow-x: hidden;" onload="setThemeOnLoad()">
<div class="container-fluid">
<div class="row">
<div class="col-2">
<!-- <div class="h-100 rounded timeline-date" style="padding: 50px;">
<div class="rounded h-100 p-4" style="border: 2px solid black;">
<div class="text-center">Links</div>
<hr>
</div>
</div> -->
</div>
<div class="col-8">
<div class="websiteName">
<div id="icon" class="text-color-main text-center">Shounak Bhalerao</div>
<h2 class="text-color-main text-center">I am a <span id="typewriter"></span></h2>
</div>
</div>
<div class="col-2">
</div>
</div>
</div>
<hr>
<div class="sticky container-fluid">
<nav id="customNavbar" class="navbar navbar-expand-md navbar-light sticky">
<!-- <div> Its nice to meet you too... </div> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="navbarText">
<ul class="navbar-nav nav-fill w-100 me-auto mb-2 mb-lg-0">
<li class="nav-item"><a class=" rounded " href="#home"
style="display: block;padding: 0.5rem 1rem;text-decoration: none;transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;">
<img src="assets/svg/question-diamond.svg" class=""> About Me!!</a>
</li>
<li class="nav-item"><a class="rounded " href="#official"
style="display: block;padding: 0.5rem 1rem;text-decoration: none;transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;">
<img src="assets/svg/hdd-network.svg"> Skill Sheet</a>
</li>
<li class="nav-item"><a class="rounded " href="#experience"
style="display: block;padding: 0.5rem 1rem;text-decoration: none;transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;">
<img src="assets/svg/building.svg"> Experience</a>
</li>
<li class="nav-item"><a class="rounded " href="#contact"
style="display: block;padding: 0.5rem 1rem;text-decoration: none;transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;">
<img src="assets/svg/phone.svg"> Contacts</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item rounded">
<a class="btn btn-toggle" onclick="toggleTheme()"><img src="assets/svg/lightbulb.svg" /></a>
</li>
</ul>
</div>
</nav>
<div class="progress-container">
<div class="progress-bar" id="myBar"></div>
</div>
</div>
<hr>
<div class="container-fluid">
<br>
<div class="container-fluid" data-aos="zoom-in" data-aos-duration="1500">
<div class="row g-5">
<div class="col-lg-12 col-sm-12">
<div class="card-transparent border border-primary rounded color0 h-100">
<div class="card-body color1 text-justify">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div id="home" class="w-100">
<div class="main-font-header display-2" style="border-bottom: 0px;margin-bottom: 40px;">About Me:
Who Am I?</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-3 col-lg-3 mypicture-container" data-aos="fade-right" data-aos-duration="1500">
<img src="assets/photos/tempPhoto.jpg" class="mypicture">
<div class="color1 d-flex justify-content-between" style="vertical-align: middle;margin-top: -2rem;">
<a href="https://www.linkedin.com/in/shounak-bhalerao-275310201/" target="_blank"><i
class="fab fa-linkedin-in" style="background:transparent" id="smallicon"></i></a>
<a href="https://github.com/Shounaks" target="_blank"><i class="fab fa-github"
style="background:transparent" id="smallicon"></i></a>
<a href="#SorryGuysNoPublicInstagram"><i class="fab fa-instagram" style="background:transparent"
id="smallicon"></i></a>
<a href="#SorryGuysNoTwitter"><i class="fab fa-twitter" style="background:transparent"
id="smallicon"></i></a>
<a href="mailto:[email protected]"><i class="fab fa fa-envelope"
style="background:transparent" id="smallicon"></i></a>
</div>
</div>
<div class="col-sm-12 col-md-9 col-lg-9" data-aos="fade-left" data-aos-duration="1500">
<blockquote class="mb-0 card-body h-100"
style="padding: 10px 20px;margin: 0 0 20px;font-size: 17.5px;border-left: 5px solid ;display: flex;align-items: center;flex-direction: column;justify-content: center;">
<h2>Henlo,</h2>
<p>
I am a Computer Science graduate with a passion to learn new technologies and
gaining new Knoweledge in different fields. Outside of work, I attended RSS
Shakhas regularly and was a member of ABVP in my school and college years.
Currently I am a Systems Engineer, working with Infosys on a project for [Confidential] Having
completed my training in the JAVA-Angular stream. Currently
learning about creation of Microservices using Spring Boot!!
</p>
<p>
After Completing my schooling from <a href="https://www.tch.org.in/" target="_blank">Tender Care
Home</a>.
I did my Junior College from <a href="https://www.naikcollege.org/" target="_blank">Vasantrao Naik
College</a>
and completed my graduation from <a href="https://www.dietms.org/"
target="_blank">DIEMS,Aurangabad</a>.
I love meeting new people and debating about things that I dont know. Reading Books, Exploring
different fields and obtaining yet unknown knoweledge, and trying to learn new stuff is AWESOME!!
</p>
</blockquote>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-sm-12" data-aos="fade-down" data-aos-duration="1500">
<div id="achievements" class="w-100">
<div class="main-font-header2 display-2 mx-4 text-center">
<img src="assets/svg/star.svg">
What Am I?
</div>
<div class="col-12 main-font-subtext text-center"
style="margin-top: -10px;border-bottom: 10px solid;width: 100%;">
Here is some of the awesome info about me.
</div>
</div><br>
</div>
<div class="col-lg-6 col-sm-12 h-100" data-aos="fade-right" data-aos-duration="1500">
<div class="card-transparent mb-3">
<h5 class="card-title text-center"><b>Competitive Programming</b></h5>
<div class="card-body d-flex flex-row row">
<div class="col-md-2 col-sm-12 text-center">
<img src="assets/svg/codewars_1.svg"
style="margin-right: 10px;height: 100px;width: 100px;background-color: red; border-radius: 20%;">
</div>
<div class="col-md-10 col-sm-12">
<p class="card-text">
As an Hobby Competitive Programming allows me to learn new stuff. I am not that serious about
the competitive part, more of a learning venture.
But solving hard problem is fun and we constantly one-up ourself!</p>
<p class="card-text">
<h6> <b>-</b> 4KYU on CodeWars </h6>
<h6> <b>-</b> 4⭐ in C++ Programming Language, Java and SQL on HackerRank</h6>
<h6> <b>-</b> Solved over 200 assignments in C in my college days </h6>
<h6> <b>-</b> Completed over 200 SQL problems</h6>
<h6> <b>-</b> Solved over 150 problems of Java and Datastructures using Java Collection
Framework</h6>
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 h-100" data-aos="fade-right" data-aos-duration="1500">
<div class="card-transparent mb-3">
<h5 class="card-title text-center"><b>Linux and Open-Source Enthusiast</b></h5>
<div class="card-body d-flex flex-row row">
<div class="col-md-2 col-sm-12 text-center">
<img src="assets/svg/linux.svg"
style="margin-right: 10px;height: 100px;width: 100px;background-color: white; border-radius: 20%;">
</div>
<div class="col-md-10 col-sm-12">
<p class="card-text">The "Open Source community" is one of the most awesome community to be a
part of. We are always looking to help each other by
sharing our code and our experience with each other. As for Linux; It provides an alternative
to the Modern Operating System niche by Giving control
back to the people, Also allowing us to customize, modify, and even work on stuff other people
make.
</p>
<p class="card-text">
<h6> <b>-</b> Have managed a FTP server on Debian 10</h6>
<h6> <b>-</b> Worked on a dozen of Linux based Distributions</h6>
<h6> <b>-</b> Worked with Indian Open Source Community at College Level</h6>
<h6> <b>-</b> Tried to create a proxy server and <span class="text-danger">FAILED</span>(Better
Luck next time 😢)</h6>
</p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 h-100" data-aos="fade-right" data-aos-duration="1500">
<div class="card-transparent mb-3">
<h5 class="card-title text-center"><b>Computer Gamer</b></h5>
<div class="card-body d-flex flex-row row">
<div class="col-md-2 col-sm-12 text-center">
<img src="assets/svg/dota2.svg"
style="margin-right: 10px;height: 100px;width: 100px;background-color: orange; border-radius: 10%;">
</div>
<div class="col-md-10 col-sm-12">
<p class="card-text">
I loved computer games from when I was in kindergarden, Its fun to collect all the treasures
and complete all the missions and explore all the hidden secrets
in the game, before embarking onto another adventures.
</p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 h-100" data-aos="fade-right" data-aos-duration="1500">
<div class="card-transparent mb-3">
<h5 class="card-title text-center"><b>Avid Reader</b></h5>
<div class="card-body d-flex flex-row row">
<div class="col-md-2 col-sm-12 text-center">
<img src="assets/svg/books.svg"
style="margin-right: 10px;height: 100px;width: 100px;background-color: violet;border: 2px solid; border-radius: 20%;">
</div>
<div class="col-md-10 col-sm-12">
<p class="card-text">
The process of propogation of knoweledge was a revolution back in the days when printing press
was still a new concept. But now almost Infinite amount
of information is available at the fingertips. Hand its almost exhilarating to even try to
know-it-all, still I try, still I will try to understand
how everything works; to finally understand the structure and functioning of the world.
</p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="container-fluid" data-aos="zoom-in" data-aos-duration="1500">
<div class="row g-5">
<div class="col">
<div class="card-transparent border border-primary rounded color0 h-100">
<div class="card-body color1 text-justify">
<div class="row">
<div class="col">
<div id="official" class="w-100">
<div class="main-font-header display-2" style="border-bottom: 10px solid;">Skill Sheet:</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4" data-aos="fade-right" data-aos-duration="1500">
<div class="main-font-subtext text-center">
<img src="assets/svg/box-seam.svg" />Projects
</div>
<div class="list-group h-100">
<div class="w-100 justify-content-between">
<h4 class="mb-1">Arcania - 2D DungeonCrawler</h4>
Arcania is a video game which is scripted in C# and has elements of Role Playing Game and an Action Game created using Unity3D.
<br>
<b>Team Members: </b>
<div class="team-members px-2">
<a target="_blank" href="https://www.linkedin.com/in/akashpawar/"><img src="assets/photos/Co-Authors/akash.jpg" alt="Akash Pawar" class="rounded-circle" style="height: 50px;width: 50px;"></a>
<a target="_blank" href="https://www.linkedin.com/in/ratnesh-kumar-1nine9six/"><img src="assets/photos/Co-Authors/ratnesh.jpg" alt="Ratnesh Shah" class="rounded-circle" style="height: 50px;width: 50px;"></a>
<a target="_blank" href="https://www.linkedin.com/in/sachinkapate/"><img src="assets/photos/Co-Authors/sachin.jpg" alt="Sachin Kapate" class="rounded-circle" style="height: 50px;width: 50px;"></a>
</div>
</div>
<hr>
<div class="w-100 justify-content-between">
<h4 class="mb-1">Suvidha-Blood Bank Management System</h4>
Suvidha is a basic ERM program written in C# using .NET framework and MS-SQL with Bootstrap, PopperJS and many other AWESOME libraries in frontend.
<br>
<b>Team Members: </b>
<div class="team-members px-2">
<a target="_blank" href="https://www.linkedin.com/in/tejal-bhoge-9729081b7/"><img src="assets/photos/Co-Authors/tejal.jpg" alt="Tejal Bhoge" class="rounded-circle" style="height: 50px;width: 50px;"></a>
<a target="_blank" href="https://www.linkedin.com/in/akshay-bhaskare-888519186/"><img src="assets/photos/Co-Authors/akshay.jpg" alt="Akshay Bhaskare" class="rounded-circle" style="height: 50px;width: 50px;"></a>
</div>
</div>
<hr>
<div class="w-100 justify-content-between">
<h4 class="mb-1">Khamang-Android Cookbook and Sharing app</h4>
Khamang is a user application that is used to store and share the Recipes of the Food Dishes online built using Android studio and Firebase.
</div>
<hr>
<div class="w-100 justify-content-between">
<h4 class="mb-1">PresenT-AttendanceManagement system</h4>
Created a system which can be accessed by mobile, which is able to take attendance of Students, process it, and store the report in XLS Format.
Main Technology used was JavaEE and Apache POI.
<br>
<b>Team Members: </b>
<div class="team-members px-2">
<a target="_blank" href="https://www.linkedin.com/in/pratik-kurwalkar-91646713a/"><img src="assets/photos/Co-Authors/pratik.jpg" alt="Tejal Bhoge" class="rounded-circle" style="height: 50px;width: 50px;"></a>
<a target="_blank" href="https://www.linkedin.com/in/shlok-k-442a96126/"><img src="assets/photos/Co-Authors/shlok.jpg" alt="Shlok Kambhale" class="rounded-circle" style="height: 50px;width: 50px;"></a>
</div>
</div>
<hr>
<div class="w-100 justify-content-between">
<h4 class="mb-1">Gladiator-Console based Dungeon crawler game</h4>
Gladiatoris an angband clonepurely built using C.
</div>
</div>
</div>
<!-- education qual here -->
<div class="col-sm-12 col-md-8 col-lg-8">
<div class="row">
<div class="col" data-aos="flip-down" data-aos-duration="1500">
<div class="main-font-subtext text-center">
<!-- <div class="col-sm-12"></div> -->
<img src="assets/svg/controller.svg" alt="" />
Interests
</div>
<div class="card-transparent">
<div class="text-justify color1">
<div class="d-flex align-items-start">
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist"
aria-orientation="vertical">
<button class="nav-link active" id="cyberTab" data-bs-toggle="pill"
data-bs-target="#cyberPill" type="button" role="tab" aria-controls="cyberPill"
aria-selected="false">Cybersecurity</button>
<button class="nav-link" id="learningTab" data-bs-toggle="pill"
data-bs-target="#learningPill" type="button" role="tab" aria-controls="learningPill"
aria-selected="true">Autodidactic</button>
<button class="nav-link" id="socializerTab" data-bs-toggle="pill"
data-bs-target="#socializerPill" type="button" role="tab" aria-controls="socializerPill"
aria-selected="false">Socializer</button>
<button class="nav-link" id="adTab" data-bs-toggle="pill" data-bs-target="#adPill"
type="button" role="tab" aria-controls="adPill" aria-selected="false">Reading</button>
<button class="nav-link" id="aeTab" data-bs-toggle="pill" data-bs-target="#aePill"
type="button" role="tab" aria-controls="aePill"
aria-selected="false">Anime-enthuiast</button>
</div>
<div class="tab-content" id="v-pills-tabContent">
<div class="tab-pane fade show active p-4 text-justify" id="cyberPill" role="tabpanel"
aria-labelledby="cyberTab">
Cybersecurity is a field of Computer Science which is generally ignored by many people,
but a
good
policy and a secured enviornment is as important as the developement of new projects.
Ensuring
that
our projects are secure enough is the task of each developer. Rather than just
unit-tests and
other stuff, one should be proactively seeking about vulnerablities that can be used to
recon
the
organisation, gain access, escalate access, and ultimately accessing critical data in
our PC.
Learning about CybSec also makes a person more aware about how technology works and
communicates
with
each other.
</div>
<div class="tab-pane fade p-4 text-justify" id="learningPill" role="tabpanel"
aria-labelledby="learningTab">
There is nothing more fun than exploring new ideas and learning about new things
constantly.
Many
times it may seem bore but there are many things that we dont know and we want to know
more
about
. Learning does not stop when we graduation, it keeps on continuing until we die. but
its upon
us
about what knoweledge we interpret from this vast ocean of data. We are nothing but a
machine
controlled by a complex Biological Neural Network and yet we are more than the sum of
just our
neurons.
</div>
<div class="tab-pane fade p-4 text-justify" id="socializerPill" role="tabpanel"
aria-labelledby="socializerTab">
<p>
Who doesnt like meeting new people, collaborating with them and completing a task? or
competing with them.
I always love some healthy competition, that is when I can go all out. Creating
something new
with the help
of new friends and Increasing my Influence on other people. Understand people is very
important to know what
they are planning next.
</p>
</div>
<div class="tab-pane fade p-4 text-justify" id="adPill" role="tabpanel"
aria-labelledby="adTab">
<p>
Yeah, I read a small amout of books. Nothing much to see here. I have read everything
from
Animal Farm to
Upanishads(ongoing).
</p>
</div>
<div class="tab-pane fade p-4 text-justify w-100" id="aePill" role="tabpanel"
aria-labelledby="aeTab">
<ul class="w-100" style="list-style-type: none;">
<span style="color: purple;">NOTE: this list is not for new people.</span>
<li>Gen Urobuchi Fate/Zero,Psycho-Pass,Black Lagoon </li>
<li>Yusuke Kishi's "From the new world(Shin Sekai Yori)"</li>
<li>Paranoia Agent, Perfect Blue, Paprika</li>
<li>Serial Experiments Lain, And Ergo Proxy</li>
<li>Tatsuhiko Takimoto's "Welcome to N.H.K."</li>
<li>Ryogo Narita's "Baccano!" and "Durarara!"</li>
<li>Keiichi Sigsawa's "Kino's Journey"</li>
<li>Gankutsuou</li>
<li>Anything Animated by Ufotable</li>
<li>Kekkei Sensen and Gintama</li>
<li>Naoki Urasawa's Monster, Master Keaton</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col">
<div class="card-transparent" data-aos="flip-down" data-aos-duration="1500">
<div class="main-font-subtext text-center">
<img src="assets/svg/file-earmark-code.svg" alt="" />
Techinical Skills
</div>
<div class="text-justify color1">
<div class="d-flex align-items-start">
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist"
aria-orientation="vertical">
<button class="nav-link active" id="progTab" data-bs-toggle="pill"
data-bs-target="#progPill" type="button" role="tab" aria-controls="progPill"
aria-selected="true">Programming</button>
<button class="nav-link" id="frontendTab" data-bs-toggle="pill"
data-bs-target="#frontendPill" type="button" role="tab" aria-controls="frontendPill"
aria-selected="false">Frontend</button>
<button class="nav-link" id="BackendTab" data-bs-toggle="pill"
data-bs-target="#backendPill" type="button" role="tab" aria-controls="backendPill"
aria-selected="false">Backend</button>
<button class="nav-link" id="linuxTab" data-bs-toggle="pill" data-bs-target="#linuxPill"
type="button" role="tab" aria-controls="linuxPill" aria-selected="false">Linux</button>
<button class="nav-link" id="toolsTab" data-bs-toggle="pill"
data-bs-target="#v-pills-settings" type="button" role="tab"
aria-controls="v-pills-settings" aria-selected="false">Other
Tools</button>
</div>
<div class="tab-content w-100 m-4" id="v-pills-tabContent">
<div class="tab-pane fade show active" id="progPill" role="tabpanel"
aria-labelledby="progTab">
Java <meter value="70" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
C# <meter value="50" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
C <meter value="55" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
C++ <meter value="60" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
TypeScript <meter value="50" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
</div>
<div class="tab-pane fade w-100" id="frontendPill" role="tabpanel"
aria-labelledby="frontendTab">
HTML <meter value="60" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
CSS <meter value="60" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
Bootstrap <meter value="80" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
Javascript <meter value="40" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
Angular-5 <meter value="60" min="0" max="100" low="50" high="65" optimum="75"
class="w-100"></meter>
</div>
<div class="tab-pane fade" id="backendPill" role="tabpanel" aria-labelledby="BackendTab">
<div>
<div class="">
<div class=" text-center w-100 font-weight-bold">Databases</div>
<div class="text-center text-justify w-100">MySQL | Oracle Database (10G,11C) |
MS-SQL |
MS-Access | Firebase</div>
</div>
<hr>
<div class="">
<div class="text-center w-100 font-weight-bold">Spring Framework</div>
<div class="w-100 text-center text-justify">Spring | Spring Boot | Spring Data |
Spring AOP
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="linuxPill" role="tabpanel" aria-labelledby="linuxTab">
<div>
<div>
<div class="text-center w-100 font-weight-bold">Debian Family</div>
<div class="text-center text-justify w-100">Debian | Ubuntu | Pop!OS | Kali Linux
</div>
</div>
<hr>
<div>
<div class="text-center w-100 font-weight-bold">RedHat Family</div>
<div class="w-100 text-center text-justify">Fedora | Red Hat Enterprise Linux |
CentOS</div>
</div>
<hr>
<div>
<div class="text-center w-100 font-weight-bold">Arch Family</div>
<div class="w-100 text-center text-justify">Arch | Black Arch | Manjaro</div>
</div>
<hr>
<div>
<div class="text-center w-100 font-weight-bold">Other Linux Distros</div>
<div class="w-100 text-center text-justify">Garuda(Based on Zen Kernal) | FreeBSD |
Whonix |
Tails | Qubes OS</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="v-pills-settings" role="tabpanel"
aria-labelledby="v-pills-settings-tab">
<div class="text-center w-100 font-weight-bold">Integrated Developement Enviornment
</div>
<div class="text-center text-justify w-100"> Visual Studios Code , Eclipse for Java,
Atom,
Sublime Text, Notepad++, VIM</div>
<hr>
<div class="text-center w-100 font-weight-bold">Other Tools</div>
<div class="text-center text-justify w-100">Libre Office, GCC and GDB, .NET Framework,
Android
Studio</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" data-aos="zoom-in-right" data-aos-duration="1500">
<div id="experience" class="main-font-header2 display-2">Experience</div>
<div class="timelineContainer">
<ul class="timeline">
<!-- May/June-2014 -->
<li data-year="June-2014" data-text="Completed my Primary Education"></li>
<!-- May/June-2016 -->
<li data-year="May-2016" data-text="Completed my Secondary Education"></li>
<!-- 2020-08-17 -->
<li data-year="Aug-2020" data-text="Graduated From DIEMS, Aurangabad"></li>
<!-- 2020-11-23 -->
<li data-year="Nov-2020" data-text="Joined Infosys as Systems EngineerTrainee"></li>
<!-- 2020-02-23 -->
<li data-year="Feb-2021" data-text="Completed Generic & Stream Training"></li>
<!-- 2021-04-24 -->
<li data-year="April-2021" data-text="Working on a project by [confidential] with Infosys"></li>
<!-- <li data-year="2021" data-text="Lorem ipsum dolor sit amet, consectetur."></li> -->
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<!-- =========================================================###########ROW 3 #################============================================= -->
<div class="row g-5">
<div class="col" data-aos="zoom-in" data-aos-duration="1500">
<div class="card-transparent border border-primary rounded color0 h-100">
<div class="card-body color1 text-justify">
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4">
<div class="list-group">
<div id="qualifications" class="w-100">
<div class="main-font-subtext text-center" style="border-bottom: 10px solid;" data-aos="fade-down" data-aos-duration="1500">
<img src="assets/svg/calculator.svg">
Education
</div>
</div>
<div class="row">
<div class="card-transparent" data-aos="flip-up" data-aos-duration="2500">
<div class="card-body text-center">
<h5 class="card-title"><b>Computer Science and Engineering</b></h5>
<h6 class="card-subtitle m-2"> Deogiri Institute of Engineering and Management Studies,
Aurangabad</h6>
<h6 class="card-subtitle m-2">B.E.(CSE) - batch of 2016-2020</h6>
</div>
<hr>
</div>
<div class="card-transparent" data-aos="flip-up" data-aos-duration="2500">
<div class="card-body text-center">
<h5 class="card-title"><b>Pre-University Education</b></h5>
<h6 class="card-subtitle mb-2"> Vasantrao Naik College, Aurangabad</h6>
<h6 class="card-subtitle mb-2">12th (Physics - Chemistry - Maths - Electronics)- batch of
2014-2016
</h6>
</div>
<hr>
</div>
<div class="card-transparent" data-aos="flip-up" data-aos-duration="2500">
<div class="card-body text-center">
<h5 class="card-title"><b>Primary and Secondary Education</b></h5>
<h6 class="card-subtitle mb-2"> Tender Care Home, Aurangabad</h6>
<h6 class="card-subtitle mb-2">10th (CBSE)- batch of 2014</h6>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-8 col-lg-8 w-100">
<!-- Here! -->
<div class="main-font-subtext text-center" style="border-bottom: 10px solid;margin-bottom: 40px;" data-aos="fade-down" data-aos-duration="1500">
<img src="assets/svg/question-diamond.svg">
Courses
</div>
<div class="row">
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/cyber-security.svg" class="course-icon">
</div>
<div>
<div>Opensource Intel. Fundamentals</div>
<div>Cyberary</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/english-language.svg" class="course-icon">
</div>
<div>
<div>Business English Level 10</div>
<div>Learnship</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/photos/cyber-security.png" class="course-icon">
</div>
<div>
<div>Intro. to Security Fundamentals</div>
<div>Cyberary</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/hashtag.svg" class="course-icon">
</div>
<div>
<div>Introductory C#</div>
<div>Udemy</div>
<!-- <div>IssueDate : ExpirationDate</div> -->
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/smartphone.svg" class="course-icon">
</div>
<div>
<div>Basics of IOT and AI</div>
<div>College Level</div>
<div>2018</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/git.svg" class="course-icon">
</div>
<div>
<div>Basics of Git and GitHub</div>
<div>Indian Open Source Community</div>
<!-- <div>IssueDate : ExpirationDate</div> -->
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/photos/tata.png" class="course-icon">
</div>
<div>
<div>Career Edge</div>
<div>TCS</div>
<div>May 2020</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/java-icon.svg" class="course-icon">
</div>
<div>
<div>Infosys Certified Java SE8 Developer</div>
<div>Infosys</div>
<div>April 2021</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/springio-icon.svg" class="course-icon">
</div>
<div>
<div>Spring Ecosystem</div>
<div>Udemy</div>
<div>May/June 2021</div>
</div>
</div>
<div class="col-4 d-flex course-item" style="flex-flow: row;flex-wrap: wrap;max-width: 400px;" data-aos="flip-up" data-aos-duration="2500">
<div class="m-2">
<img src="assets/svg/agile.svg" class="course-icon">
</div>
<div>
<div>Infosys Global Agile Developer</div>
<div>Infosys</div>
<div>April 2021</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="row">
</div> -->
<br>
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="container-fluid">
<footer class="rounded m-0 p-0 color1">
<div id="contact" class="row">
<div class="col-12">
<div class="card-transparent">
<div class="card-body">
<div class="text-center main-font-header display-2" >Contact Details</div>
<div class="row">
<div class="text-center col">
Shounak Ravi Bhalerao <br>
Email:
<a class="anchor" href="mailto:[email protected]"
title="[email protected]">[email protected]</a>
<hr>
<div class="border border-danger text-center overflow-hidden">
<a href="assets/resume/Resume_Shounak.pdf" target="_blank">
<button class="cv-button btn btn-link form-control"
style="text-decoration: none;color:black;">Download My CV</button>
</a>
</div>
</div>
<br>
<div class="text-center col w-100">
<blockquote class="m-0" cite="Alexandre Dumas">
Random Quotes from "The Count of Monte Cristo": <br>
<h5 id="quotes" onclick="getNewQuote()" style="cursor: pointer;text-decoration: wavy;user-select: none;"></h5>
</blockquote>
</div>
</div>
<hr>
<div class="text-center">
This website uses <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL 3.0</a>. So you are FREE to use it as per the T&C. <br>
Art Credits Goes to <a href="https://kuvshinov_ilya.artstation.com/" target="_blank">Ilya Kuvshinov</a>
</div>
</div>
<div class="card-footer">
<!-- 👇justify-content: space-evenly; is not supported by bootstrap due to compatiblity issues with IE10 -->
<div class="d-flex" style="justify-content: space-evenly;">
<a href="mailto:[email protected]" target="_blank"><img
src="assets/svg/envelope-open.svg" title="Email" alt=""> Email</a>
|
<a href="https://www.linkedin.com/in/shounak-bhalerao-275310201/" target="_blank"><img
src="assets/svg/linkedin.svg" title="LinkedIn Link" alt=""> LinkedIn</a>
|
<a href="https://github.com/Shounaks" target="_blank"><img src="assets/svg/github.svg"
title="Github Link" alt=""> Github</a>
</div>
<!--Ends-->
</div>
</div>
</div>
</div>
</footer>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- Get New Quote After the page loads -->
<script>
getNewQuote();
</script>
<!-- Animation on Scroll Script -->
<script>
AOS.init();
</script>
<!-- Typewriter Script -->
<script>
var app = document.getElementById('typewriter');
var typewriter = new Typewriter(app, {loop: true});
var textArray = [
"Developer","Gamer","Hooman"
];
typewriter
.typeString(textArray[0])
.pauseFor(1500)
.deleteChars(textArray[0].length)
//
.typeString(textArray[1])
.pauseFor(1500)
.deleteChars(textArray[1].length)
//
.typeString(textArray[2])
.pauseFor(1500)
.deleteChars(textArray[2].length)
.deleteAll()
.start();
</script>
</html>