-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1772 lines (1674 loc) · 63.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
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
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="description"
content="Himanshu Kumar's Personal Portfolio Website"
/>
<meta
name="keywords"
content="Himanshu Kumar, Full Stack Developer, Google DSC Lead, SIH WINNER, MERN Stack, Open Source Contributor"
/>
<meta name="author" content="Himanshu Kumar" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Himanshu Kumar's Portfolio</title>
<link
rel="icon"
href="favicon/android-chrome-512x512.png"
,
type="image/x-icon/gif"
sizes="16x50"
/>
<link rel="manifest" href="favicon/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta
name="msapplication-TileImage"
content="favicon/ms-icon-144x144.png"
/>
<meta name="theme-color" content="#ffffff" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/jquery.animatedheadline.css" />
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/owl.theme.default.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/line-icons.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
<script src="https://unpkg.com/github-calendar@latest/dist/github-calendar.min.js"></script>
<link
rel="stylesheet"
href="https://unpkg.com/github-calendar@latest/dist/github-calendar-responsive.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/octicons/2.0.2/octicons.min.css"
/>
<link rel="stylesheet" href="./github-activity.css" />
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js"
></script>
<script type="text/javascript" src="./github-activity.js"></script>
<!-- For forkaweso-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/fork-awesome.min.css"
integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY="
crossorigin="anonymous"
/>
</head>
<body>
<div class="loader_bg">
<div class="loader"></div>
</div>
<header class="nav-area navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="main-menu">
<div class="navbar navbar-cus">
<div class="navbar-header">
<span class="logo">HIMANSHU<span> KUMAR</span></span>
<button
type="button"
class="navbar-toggle"
data-toggle="collapse"
data-target=".navbar-collapse"
>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<nav>
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a class="smooth-menu" href="#home">Home</a>
</li>
<li><a class="smooth-menu" href="#about">About</a></li>
<li>
<a class="smooth-menu" href="#resume">Experience</a>
</li>
<li>
<a class="smooth-menu" href="#services">Skills</a>
</li>
<li>
<a class="smooth-menu" href="#projects">Projects</a>
</li>
<li>
<a class="smooth-menu" href="#contact">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="banner-area" id="home">
<div id="particles-js"></div>
<div class="banner-table">
<div class="banner-table-cell">
<div class="welcome-text">
<div class="container">
<div class="row">
<div class="col-md-12 col-xs-12">
<section class="intro animate-scale">
<div class="img-area">
<img
src="https://avatars.githubusercontent.com/u/83366556"
alt=""
/>
</div>
<h3>I'm Himanshu Kumar</h3>
<h1 class="ah-headline">
<span class="ah-words-wrapper">
<b class="is-visible"
>Passionate Full Stack Developer</b
>
<b>Google DSC Lead`23</b>
<b>SIH'23 WINNER 🏆</b>
<b>Open Source Contributor</b>
</span>
</h1>
<div class="social-icon">
<ul>
<li>
<a
href="https://www.linkedin.com/in/i-himanshu"
target="_blank"
title="Linkedin"
><i class="fa fa-linkedin"></i
></a>
</li>
<li>
<a
href="https://www.github.com/i-himanshu"
target="_blank"
title="Github"
><i class="fa fa-github"></i
></a>
</li>
<li>
<a
href="https://t.me/i-himanshu"
target="_blank"
title="Telegram"
><i class="fa fa-telegram"></i
></a>
</li>
<li>
<a
href="https://dev.to/ihimanshu"
target="_blank"
title="Dev.to Blog"
><i class="fa fa-dev-to" aria-hidden="true"></i
></a>
</li>
</ul>
</div>
</section>
<div class="clearfix"></div>
<a class="mouse-scroll hidden-xs dadada" href="#about">
<span class="mouse">
<span class="mouse-movement"></span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Banner area ends-->
<!--About area starts-->
<div class="about-area section-padding" id="about">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="stack">
<img
src="https://avatars.githubusercontent.com/u/83366556"
alt="about image"
/>
</div>
</div>
<div class="col-md-7 col-md-offset-1 col-sm-12">
<div class="about-right">
<h2>Full Stack Developer</h2>
<p>I am <span>Himanshu Kumar</span>.</p>
<p>
Currently a student at Bakhtiyarpur College of Engineering,
Patna. Passionate Full Stack Developer with over 1.5 years of
experience in various roles at Development & Testing. Skilled in
building innovative applications, contributing to open-source
projects, and leading teams to achieve significant milestones.
Enthusiastic about leveraging technology to create impactful
solutions and shape a better world.
</p>
<div class="row">
<div class="col-sm-6">
<ul class="about-list">
<li>
<span class="title">College</span>
<span class="value"
>Bakhtiyarpur College of Engineering, Patna
(2021-2025)</span
>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="about-list">
<li>
<span class="title">Email</span>
<span class="value">[email protected]</span>
</li>
</ul>
</div>
</div>
<a href="#skills-bd" class="skill-btn btn-a">my skills</a>
<a
href="https://i-himanshu.github.io/I-Himanshu-24.pdf"
target="_blank"
class="down-btn btn-a"
><i class="fa fa-arrow-down w3-margin-right"></i>Download
Resume</a>
</div>
</div>
</div>
</div>
</div>
<!--About area ends-->
<div class="col-twelve resume-header">
<h2>Work Experience</h2>
</div>
<!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>SALESFORCE | Salesforce Developer Virtual Internship Remote</h3>
<p>Dec 2023 - Jan 2024</p>
</div>
<div class="timeline-content text-align-justify">
<h4>Salesforce</h4>
<ul>
<li>
Completed over 20 Salesforce Trailhead modules, including
Salesforce Fundamentals, Organizational Setup, and Relationship
& Process Automation.
</li>
<li>
Mastered Types Of Flows & Security configurations for robust
application development.
</li>
<li>
Acquired proficiency in Apex programming, focusing on Testing &
Debugging for robust code quality.
</li>
<li>
Setup and configured VS Code & CLI for streamlined Salesforce
development environment.
</li>
<li>
Developed Lightning Web Components (LWC) & API integration
skills for modern UI and backend solutions.
</li>
<li>
Earned 3 prestigious Super Badges: Apex Specialist, Process
Automation Specialist, and Developer Super Set, showcasing
advanced skills and capabilities.
</li>
</ul>
</div>
</div>
<!--
--------------------
-->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-flask"></i>
</div>
<div class="timeline-header">
<h3>Machine Learning Intern</h3>
<p>YBI Foundation | Jan 2023 - Feb 2023</p>
</div>
<div class="timeline-content text-align-justify">
<h4>YBI Foundation, India</h4>
<ul>
<li>
Developed a Regression Model to predict cement compressive
strength with 75% accuracy.
</li>
<li>
Gained expertise in Regression and implemented 10+ Machine
Learning algorithms.
</li>
<li>
Used Python libraries like NumPy, Pandas, and Scikit-learn for
data preprocessing and model building.
</li>
<li>
Performed feature engineering and presented project findings to
stakeholders.
</li>
</ul>
</div>
</div>
<!-- /timeline-block -->
</div>
<!-- /timeline-wrap -->
</div>
<!-- /col-twelve -->
<!---------------------------------------------------------------------------------->
<div class="col-twelve resume-header">
<h2>Achievements</h2>
</div>
<!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>GDSC Lead</h3>
<p>August 2023 - Present</p>
</div>
<div class="timeline-content text-align-justify">
<h4>Google Developer Student Clubs, India</h4>
<ul>
<li>
Facilitated growth and learning for over 600 students through
workshops and events.
</li>
<li>
Achieved top honors in Google Cloud and Gen AI Study Jams 2023.
</li>
<li>Effectively led a team of over 30 coordinators.</li>
<li>
Collaborated with a community of 500+ leads from various
colleges, fostering growth and collaboration.
</li>
<li>Visited Google Office Bangalore as a featured event.</li>
<li>
Secured over a lakh worth of swags throughout the year as a
club.
</li>
</ul>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-code"></i>
</div>
<div class="timeline-header">
<h3>Web Developer Volunteer</h3>
<p>Aug 2022 - Jun 2023 | 11 months | India</p>
</div>
<div class="timeline-content text-align-justify">
<h4>Google Developer Student Clubs, India</h4>
<div>
As a Web Developer Volunteer, I enhanced my skills and contributed
to various projects at Google Developer Student Clubs.
Responsibilities included:
<ul>
<li>
Leading web development projects, ensuring timely delivery and
high-quality results.
</li>
<li>
Collaborating with team members to create engaging and
user-friendly websites.
</li>
<li>
Conducting workshops and sessions, improving public speaking
and teaching abilities.
</li>
<li>
Assisting in organizing events and activities to foster a
collaborative community.
</li>
</ul>
</div>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Volunteer</h3>
<p>January 2022 - August 2022</p>
</div>
<div class="timeline-content text-align-justify">
<h4>GDSC BCE Patna, Patna</h4>
<ul>
<li>
Assisted in organizing and conducting technical events and
workshops, promoting a culture of learning and innovation.
</li>
<li>
Supported the development of web applications, enhancing user
interaction and engagement.
</li>
<li>
Collaborated with team members to create and manage content for
the club's website and social media platforms.
</li>
</ul>
</div>
</div>
<!-- /timeline-block -->
</div>
<!-- /timeline-wrap -->
</div>
<!-- /col-twelve -->
<!---------------------------------------------------------------------------------->
<!--Services area starts-->
<div class="services-area section-padding" id="services">
<div class="container">
<div class="row">
<div class="section-title">
<h2>My <span>Domains</span></h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 service">
<div class="service-box">
<div class="service-icon">
<i class="icon-compass"></i>
</div>
<div class="service-content">
<h4>Full Stack Development</h4>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 service">
<div class="service-box">
<div class="service-icon">
<i class="icon-gears"></i>
</div>
<div class="service-content">
<h4>Back-End Development</h4>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 service">
<div class="service-box">
<div class="service-icon">
<i class="icon-strategy"></i>
</div>
<div class="service-content">
<h4>Devops</h4>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 service">
<div class="service-box">
<div class="service-icon">
<i class="icon-layers"></i>
</div>
<div class="service-content">
<h4>Cyber Security</h4>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 service">
<div class="service-box">
<div class="service-icon">
<i class="icon-browser"></i>
</div>
<div class="service-content">
<h4>Front-End Development</h4>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 service">
<div class="service-box">
<div class="service-icon">
<i class="icon-puzzle"></i>
</div>
<div class="service-content">
<h4>Web Scraping and Automation</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Services area ends-->
<!--Skills area starts-->
<section id="skills" class="skills-section">
<div class="container">
<div class="section-title">
<h2>My <span>Skills</span></h2>
</div>
<div class="row">
<!-- Technical Skills -->
<div class="col-lg-4 col-md-6">
<div class="skill-card">
<div class="skill-header">
<i class="fas fa-laptop-code"></i>
<h3>Technical Skills</h3>
</div>
<ul class="skill-list">
<li><span>HTML</span></li>
<li><span>CSS</span></li>
<li><span>JavaScript</span></li>
<li><span>React.JS</span></li>
<li><span>Next.JS</span></li>
<li><span>Node.JS</span></li>
<li><span>Express.JS</span></li>
<li><span>MongoDB</span></li>
<li><span>Python</span></li>
<li><span>Java</span></li>
<li><span>Kotlin</span></li>
<li><span>Jetpack Compose</span></li>
<li><span>C/C++</span></li>
<li><span>PHP</span></li>
<li><span>SQL/NoSQL</span></li>
<li><span>Firebase</span></li>
<li><span>Git Bash</span></li>
</ul>
</div>
</div>
<!-- Soft Skills -->
<div class="col-lg-4 col-md-6">
<div class="skill-card">
<div class="skill-header">
<h3>Soft Skills</h3>
</div>
<ul class="skill-list">
<li><span>Leadership</span></li>
<li><span>Teamwork</span></li>
<li><span>Communication</span></li>
<li><span>Problem Solving</span></li>
<li><span>Creativity</span></li>
<li><span>Adaptability</span></li>
<li><span>Critical Thinking</span></li>
<li><span>Decision Making</span></li>
<li><span>Conflict Resolution</span></li>
<li><span>Empathy</span></li>
<li><span>Flexibility</span></li>
<li><span>Open-Mindedness</span></li>
<li><span>Patience</span></li>
<li><span>Persuasion</span></li>
<li><span>Positivity</span></li>
<li><span>Self-Motivation</span></li>
<li><span>Self-Confidence</span></li>
<li><span>Stress Management</span></li>
<li><span>Work Ethic</span></li>
</ul>
</div>
</div>
<!-- Tools -->
<div class="col-lg-4 col-md-12">
<div class="skill-card">
<div class="skill-header">
<i class="fas fa-tools"></i>
<h3>Tools</h3>
</div>
<ul class="skill-list">
<li><span>Visual Studio Code</span></li>
<li><span>Android Studio</span></li>
<li><span>Git & GitHub</span></li>
<li><span>Postman</span></li>
<li><span>MongoDB Compass</span></li>
<li><span>PhPmyadmin</span></li>
<li><span>Jupyter Notebook</span></li>
<li><span>PyCharm</span></li>
<li><span>Linux</span></li>
<li><span>Docker</span></li>
<li><span>Google Cloud Platform</span></li>
<li><span>Figma</span></li>
<li><span>Power BI</span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--Skills area ends-->
<!-- Projects Section
<div id="PROJECT" class="projects-area section-padding">
<div class="container">
<div class="row">
<div class="section-title">
<h2>My <span>Projects</span></h2>
</div>
</div>
</div>
<div class="projects-content">
<div class="projects-nav">
<div class="container">
<div class="row">
<div class="col-xs-12">
<ul class="port-nav-list">
<li><a class="img-filter active" data-filter="*">All</a></li>
<li>
<a class="img-filter" data-filter=".ml">Data Science</a>
</li>
<li>
<a class="img-filter" data-filter=".int"
>Full Stack / Integrated</a
>
</li>
<li>
<a class="img-filter" data-filter=".osc">Open Sourced</a>
</li>
<li><a class="img-filter" data-filter=".oth">Others</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<br />
<br />
<div
class="row port-items"
id="img-filter"
style="position: relative; height: 570px"
>
<div
class="col-xs-12 single-port int"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\web-dev.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b>Sakila Film Project</b></span
>
</p>
<p><i>Full Stack Project</i><br /></p>
<p>
Full Stack ExtJs Dynamic Java-EE Film Inventory Project with
CURD Operations implemented using MySQL Server, Hibernate,
Spring MVC with Struts2.
</p>
<p class="w3-medium">
<a
href="https://github.com/i-himanshu/Java-Training-HRC"
target="_blank"
class="w3-hover-text-green"
>Repository Link</a
>
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port osc"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\ml.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b>Rare Label One-Hot-Encoder</b></span
>
</p>
<p><i>Open Sourced Python Package</i><br /></p>
<p>
Python Package for Rare Label-One-Hot Categorical Encoder
with Threshold Implementation.
</p>
<p class="w3-medium">
<a
href="https://pypi.org/project/RLOHE/"
target="_blank"
class="w3-hover-text-green"
>PyPI Documentation</a
>
</p>
<p class="w3-medium">
<a
href="https://github.com/i-himanshu/Rare-Label-One-Hot-Enocder.git"
target="_blank"
class="w3-hover-text-green"
>Repository Link</a
>
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port osc"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\python.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b>Directory Tree</b></span
>
</p>
<p><i>Open Sourced Python Package</i><br /></p>
<p>
Directory Tree is a simple python utility package that
displays out the Tree Structure of a user-defined Directory.
</p>
<p class="w3-medium">
<a
href="https://pypi.org/project/directory-tree/"
target="_blank"
class="w3-hover-text-green"
>PyPI Documentation</a
>
</p>
<p class="w3-medium">
<a
href="https://github.com/i-himanshu/Directory-Tree.git"
target="_blank"
class="w3-hover-text-green"
>Repository Link</a
>
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port osc"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\python.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b>Directory Organizer</b></span
>
</p>
<p><i>Open Sourced Python Package</i><br /></p>
<p>
Directory Organiser is an open-sourced python package that
scans your folder directory and arranges the files according
to its specific file types to its type-specific directories
making the directory neat and organized.
</p>
<p class="w3-medium">
<a
href="https://pypi.org/project/directory-organizer/"
target="_blank"
class="w3-hover-text-green"
>PyPI Documentation</a
>
</p>
<p class="w3-medium">
<a
href="https://github.com/i-himanshu/Directory-Organizer.git"
target="_blank"
class="w3-hover-text-green"
>Repository Link</a
>
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port oth"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\web_scraper.jfif"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b>Craiglist Scrapping</b></span
>
</p>
<p><i>Web Scrapping Project using Python.</i><br /></p>
<p>
Scraping Craiglist website using Selenium (Python),
BeautifulSoup (BS4) to obtain desired results, and storing
them off in a CSV for further work and analysis
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port ml"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\dl.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b>Face Mask Detector</b></span
>
</p>
<p>
<i
>Deep Learning Project using OpenCV, Keras, Tensorflow and
ResNet.</i
><br />
</p>
<p>
It is a Mask Detection Program to detect and make people
aware of wearing masks and protect themselves during the
Corona Pandemic.
</p>
<p class="w3-medium">
<a
href="https://github.com/i-himanshu/Mask-Detector.git"
target="_blank"
class="w3-hover-text-green"
>Project Link</a
>
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port osc"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\\port\python.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"><b>R07</b></span>
</p>
<p><i>Open Sourced Python Package</i><br /></p>
<p>
An Open-Source Python Package Developed for various
utilities like fast downloading YouTube videos using CLI
etc. More libraries are to be added to ‘R07’ with the course
of time.
</p>
<p class="w3-medium">
<a
href="https://pypi.org/project/R07/"
target="_blank"
class="w3-hover-text-green"
>PyPI Documentation</a
>
</p>
<p class="w3-medium">
<a
href="https://github.com/i-himanshu/PyPI-Publish.git"
target="_blank"
class="w3-hover-text-green"
>Repository Link</a
>
</p>
</li>
</ul>
</div>
<div
class="col-xs-12 single-port int"
style="position: absolute; left: 0px; top: 0px"
>
<ul class="resumes">
<li class="resume-item expr">
<img
src="images\exp\0.png"
alt="Avatar"
class="w3-left w3-circle w3-margin-right"
style="width: 80px"
/>
<p>
<span class="w3-large w3-margin-right"
><b
>AI-Enabled B2B Fin-Tech Management Dashboard for
Accounts Receivables</b
></span
>
</p>
<p><i>Full Stack AR Dashboard with Chatbot</i><br /></p>
<p>
Developed a Full Stack Dashboard Application using React,
Node, Java EE, Flask, Restful APIs, SQLServer powered by
Machine Learning and Dialogflow