-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1308 lines (1224 loc) · 75.6 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">
<title>Aravind Govindhasamy's Portpolio Profile</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="aravind-govindhasamy,aravindapg,aravindapg06,aravindapg06">
<meta name="description"
content="Aravind Govindhasamy - Junior Developer at 2CQR. Passionate about creating innovative solutions and leveraging technology to drive positive change. Skilled in web development, programming, and problem-solving.">
<!-- Favicon -->
<link href="img/favicon.png" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Devicon CSS -->
<link rel="stylesheet" href="https://cdn.rawgit.com/devicons/devicon/master/devicon.min.css">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<link href="css/animation.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="51">
<!-- Theme button -->
<button id="theme-button" class="theme-btn"
style="position: absolute; top: 20px; right: 20px; z-index: 2;">🌙</button>
<!-- Navbar Start -->
<nav class="navbar fixed-top shadow-sm navbar-expand-lg bg-light navbar-light py-3 py-lg-0 px-lg-5">
<a href="index.html" class="navbar-brand ml-lg-3">
<h1 class="m-0 display-5">
<span class="text-warning">A</span>ravind <span class="text-warning">G</span>ovindhasamy
</h1>
</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse px-lg-3" id="navbarCollapse">
<div class="navbar-nav m-auto py-0">
<a href="#home" class="nav-item nav-link active">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#qualification" class="nav-item nav-link">Qualification</a>
<a href="#skills" class="nav-item nav-link">Skills</a>
<a href="#service" class="nav-item nav-link">Service</a>
<a href="#projects" class="nav-item nav-link">Projects</a>
<a href="#socialLinks" class="nav-item nav-link">Social Connects</a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Header Start -->
<div class="container-fluid bg-dark d-flex mb-5 py-5" id="home"
style="min-height: 100vh; background-image: url('img/3.png'); background-size: cover; background-position: center; transition: background 0.5s ease-in-out;"
class="day-background">
<!-- Background animation -->
<div class="area">
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<!-- Content in front of the background -->
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-lg-7 col-md-8 col-sm-10 text-center text-lg-left" id="content">
<h3 class="font-weight-normal" id="greeting">Welcome to My Portfolio!</h3>
<h1 class="display-3 text-uppercase mb-2" id="name">I'm Aravind Govindhasamy</h1>
<!-- <p class="lead mb-4">As a passionate backend software developer, I thrive on transforming complex challenges into innovative solutions. Whether it's building robust applications or exploring new technologies, I'm here to make an impact through my work. Join me on this journey where creativity meets technology, and let's create something amazing together!</p> -->
<h1 class="typed-text-output d-inline font-weight-lighter" id="typed-output"></h1>
<div class="typed-text d-none" id="typed-text">#Jr Developer, #Introvert, #Gamer, #Memer, #Tech Enthusiast, #Problem Solver, #Open Source Contributor</div>
<div class="p-0 m-0 text-center mt-4">
<p id="qr-label">Scan My Smart Contact Card</p>
<img id="qr-code" class="card-img-top img-fluid" alt="Scannable QR code with contact info"
src="img/qr.svg" style="max-width: 200px;">
</div>
<div class="mt-4 text-center">
<a href="resume/ARAVIND G - Updated 24-09-2024.pdf" target="_blank" class="btn btn-primary"
download="AravindGResume.pdf">Download CV</a>
</div>
</div>
</div>
</div>
</div>
<!-- Header End -->
<!-- About Start -->
<div class="container-fluid py-5" id="about">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center text-center">
<h1 class="display-1 text-uppercase text-white certification-heading stroke-text">
About
</h1>
<h1 class="position-absolute text-uppercase text-primary">About Me</h1>
</div>
<div class="row align-items-center">
<!-- Adjusted image column -->
<div class="col-lg-5 pb-4 pb-lg-0 d-flex justify-content-center">
<img class="img-fluid rounded w-75" src="img/UG.jpeg" alt="Aravind GovindhaSamy" id="img-image">
</div>
<div class="col-lg-7 text-center text-lg-start">
<h3 class="mb-4">Backend Software Developer | Python & C# Expert</h3>
<p>With over <span id="totalWorkExpSummary"></span> of experience, I specialize in backend
development, web application services, and IoT RFID solutions. I have hands-on experience in
Python, C#, Node.js, SQL, and API Development, continuously exploring cybersecurity and backend
innovations.</p>
<p>I am driven by my passion for solving complex problems with technology and making an impact
through open-source development. My latest projects involve custom ERP solutions and RFID
implementations, enhancing retail business operations and efficiency.</p>
<p>Let's connect if you're looking for someone who can bring creativity, efficiency, and a
problem-solving mindset to your team.</p>
<div class="row mb-3">
<div class="col-12 py-2">
<h6>Name: <span class="text-secondary">Aravind GovindhaSamy</span></h6>
</div>
<div class="col-12 py-2">
<h6>Birthday: <span class="text-secondary">08 June 2000</span></h6>
</div>
<div class="col-12 py-2">
<h6>Degree: <span class="text-secondary">Master of Computer Application</span></h6>
</div>
<div class="col-12 py-2">
<h6>Phone: <span class="text-secondary">+91 93616 21891</span></h6>
</div>
<div class="col-12 py-2">
<h6>Email: <span class="text-secondary">[email protected]</span></h6>
</div>
<div class="col-12 py-2">
<h6>Nationality: <span class="text-secondary">Indian</span></h6>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Qualification Start -->
<div class="container-fluid py-5" id="qualification">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center text-center">
<!-- Responsive display text -->
<h1 class="display-1 text-uppercase text-white certification-heading stroke-text">
Qualification
</h1>
<h1 class="position-absolute text-uppercase text-primary">Education & Experience</h1>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="mb-4">My Education</h3>
<div class="border-left border-primary pt-2 pl-4 ml-2">
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute"
style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Masters In Computer Application</h5>
<h6>at Sri Ramakrishna Mission Vidyalaya College Of Arts and Science,</h6>
<p class="mb-2"><strong>Bharathiyar University, Coimbatore</strong> | <small>2022 -
2024</small></p>
<p>Graduated with First Class with Distinction</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute"
style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Bachelors In Computer Science</h5>
<h6>at Sri Ramakrishna Mission Vidyalaya College Of Arts and Science,</h6>
<p class="mb-2"><strong>Bharathiyar University, Coimbatore</strong> | <small>2019 -
2022</small></p>
<p>Graduated with First Class</p>
<p class="mt-3">Class representative and active member of NCC in college.</p>
<p class="mt-3">Received a Good Discipline Award in the 2nd year.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute"
style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Higher Secondary Certificate</h5>
<h6>at Govt Hr Sec School, Periyampatti</h6>
<p class="mb-2"><strong>State Board of School Examinations, Tamil Nadu</strong> |
<small>2016 - 2017</small></p>
<p>Completed with 74.9 percentile.</p>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute"
style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Secondary School Certificate</h5>
<h6>at Govt Hr Sec School, Periyampatti</h6>
<p class="mb-2"><strong>State Board of School Examinations, Tamil Nadu</strong> |
<small>2014 - 2015</small></p>
<p>Completed with 86 percentile.</p>
<p>Enjoyed school life and helped classmates with their studies.</p>
</div>
</div>
</div>
<div class="col-lg-6">
<h3 class="mb-4">My Experience</h3>
<div class="border-left border-primary pt-2 pl-4 ml-2">
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute"
style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">Junior Software Developer</h5>
<p class="mb-2"><strong>2CQR Automation Private Limited, Coimbatore</strong> <br />
<small>May 2024 - Oct 2024</small></p>
<p>
<ul>
<li>Developed and maintained Retail, Customer Feedback, and CRM applications using
Node.js APIs and C#.</li>
<li>Worked on both backend development and integration of external hardware (RFID
readers) for various systems.</li>
<li>Collaborated with cross-functional teams to deliver solutions that met client
requirements within a 3-month deadline.</li>
<li>Quickly learned and implemented Node.js, despite it being a new technology, and
efficiently handled both C# and Node.js simultaneously.</li>
</ul>
</p>
<h6><strong>Achievements:</strong></h6>
<ul>
<li>Delivered multiple high-priority projects in under 3 months, demonstrating quick
adaptability to new technologies.</li>
<li>Successfully integrated multiple APIs and external systems into a cohesive,
well-functioning product.</li>
<li>Identified customer-side issues promptly, providing effective solutions and
showcasing strong debugging and troubleshooting skills.</li>
</ul>
<h6><strong>Learnings:</strong></h6>
<ul>
<li>Mastered working with Node.js APIs, a new platform for me, and balanced it with C#
development.</li>
<li>Gained experience in project management by handling multiple projects
simultaneously.</li>
<li>Developed strong problem-solving skills, particularly in integrating hardware with
software systems.</li>
</ul>
</div>
<div class="position-relative mb-4">
<i class="far fa-dot-circle text-primary position-absolute"
style="top: 2px; left: -32px;"></i>
<h5 class="font-weight-bold mb-1">.NET Developer Intern</h5>
<p class="mb-2"><strong>2CQR Automation Private Limited, Coimbatore</strong> <br />
<small>Jan 2024 - May 2024</small></p>
<p>
<ul>
<li>Developed desktop applications in C# for library automation systems, integrating
RFID readers for seamless operation.</li>
<li>Worked on backend tasks, including API development, database management, and
hardware integration.</li>
<li>Gained hands-on experience in .NET Core, C#, Python, and SQL, contributing to
meaningful, real-world solutions.</li>
</ul>
</p>
<h6><strong>Achievements:</strong></h6>
<ul>
<li>Successfully delivered a C# desktop application for automating library systems using
RFID technology.</li>
<li>Contributed to the development of backend solutions that significantly improved
operational efficiency for clients.</li>
<li>Implemented GitHub workflow automation in the company, enhancing team collaboration
and development efficiency.</li>
</ul>
<h6><strong>Learnings:</strong></h6>
<ul>
<li>Learned how to effectively integrate hardware (RFID readers) with software
applications for practical automation solutions.</li>
<li>Enhanced my coding skills in C#, .NET Core, and backend systems while working on
real-world projects.</li>
<li>Improved my ability to collaborate with team members and manage tasks in a
structured development environment.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Qualification End -->
<!-- Skills Section -->
<div class="container-fluid py-5" id="skills">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center text-center">
<!-- Responsive display text -->
<h1 class="display-1 text-uppercase text-white certification-heading stroke-text">
Skills
</h1>
<h1 class="position-absolute text-uppercase text-primary">Technical Skills</h1>
</div>
<div class="row">
<!-- Programming Languages -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Programming Languages</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-csharp-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>C#</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-python-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Python</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-nodejs-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Node.js</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-javascript-plain colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>JavaScript</span>
</li>
</ul>
</div>
<!-- Databases -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Databases</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-mysql-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>MySQL</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-mariadb-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>MariaDB</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-microsoftsqlserver-plain colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>MS SQL Server</span>
</li>
</ul>
</div>
<!-- Frameworks & Libraries -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Frameworks & Libraries</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-dot-net-plain-wordmark colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>.NET</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-express-original colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>Express.js</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-tailwindcss-plain colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>Tailwind CSS</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-bootstrap-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Bootstrap CSS</span>
</li>
</ul>
</div>
</div>
<div class="row">
<!-- Environments & Tools -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Environments & Tools</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-github-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>GitHub</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-visualstudio-plain colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>Visual Studio</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-vscode-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>VS Code</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-postman-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Postman</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-jupyter-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Jupyter Notebook</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-linux-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>WSL</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-powershell-plain colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>PowerShell</span>
</li>
</ul>
</div>
<!-- IoT & Hardware -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">IoT & Hardware</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-raspberrypi-line colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>Raspberry Pi</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-arduino-plain-wordmark colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>IoT RFID</span>
</li>
</ul>
</div>
<!-- Web Technologies -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Web Technologies</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-html5-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>HTML5</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-css3-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>CSS3</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-json-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>JSON</span>
</li>
</ul>
</div>
</div>
<div class="row">
<!-- Operating Systems -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Operating Systems</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-windows11-original colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>Windows</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-linux-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Linux</span>
</li>
</ul>
</div>
<!-- Productivity Tools -->
<div class="col-lg-4 mb-5">
<h4 class="font-weight-bold mb-4">Productivity Tools</h4>
<ul class="list-unstyled">
<li class="d-flex align-items-center mb-3">
<i class="devicon-windows11-original colored"
style="font-size: 40px; margin-right: 10px;"></i>
<span>Microsoft Office</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="devicon-canva-plain colored" style="font-size: 40px; margin-right: 10px;"></i>
<span>Canva</span>
</li>
<li class="d-flex align-items-center mb-3">
<img src="img/chat-gpt.png" alt="ChatGPT" style="width: 40px; height: 40px;">
<span>ChatGPT</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Freelance Services Start -->
<div class="container-fluid py-5" id="service">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center text-center">
<!-- Responsive display text -->
<h1 class="display-1 text-uppercase text-white certification-heading stroke-text">
Freelance
</h1>
<h1 class="position-absolute text-uppercase text-primary">What I Offer</h1>
</div>
<div class="row justify-content-center align-items-center text-center">
<p class="lead mb-4">As a passionate backend software developer, I thrive on transforming complex challenges into innovative solutions. Whether it's building robust applications or exploring new technologies, I'm here to make an impact through my work. Join me on this journey where creativity meets technology, and let's create something amazing together!</p>
</div>
<div class="row justify-content-center">
<!-- ERPNext Implementation -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/erp.jpg" class="card-img-top-ser" alt="ERPNext Implementation">
<div class="card-body">
<h5 class="card-title">ERPNext Implementation</h5>
<p class="card-text">I provide end-to-end ERPNext implementation, customizing the solution to fit your retail and business operations.</p>
</div>
</div>
</div>
<!-- Open Source Solutions Consultation -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/opensource.jpg" class="card-img-top-ser"
alt="Open Source Solutions">
<div class="card-body">
<h5 class="card-title">Open Source Solutions Consultation</h5>
<p class="card-text">I provide guidance on implementing open-source tools tailored to your
business needs, optimizing cost and flexibility.</p>
</div>
</div>
</div>
<!-- Research & Development (R&D) -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/r&d.jpg" class="card-img-top-ser"
alt="Research and Development">
<div class="card-body">
<h5 class="card-title">Research & Development (R&D)</h5>
<p class="card-text">I help businesses explore new technologies, conduct proof-of-concept
projects, and push the boundaries with innovative R&D.</p>
</div>
</div>
</div>
<!-- RFID Reader Integration -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/rfid.png" class="card-img-top-ser"
alt="RFID Reader Integration">
<div class="card-body">
<h5 class="card-title">RFID Reader Integration</h5>
<p class="card-text">I specialize in integrating RFID readers for seamless IoT solutions and
tracking systems.</p>
</div>
</div>
</div>
<!-- Custom Report Applications -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/reports.jpg" class="card-img-top-ser"
alt="Custom Report Applications">
<div class="card-body">
<h5 class="card-title">Custom Report Applications</h5>
<p class="card-text">I develop tailored report applications for your business, helping you
manage and analyze data effectively.</p>
</div>
</div>
</div>
<!-- Free Tutoring & Software Installation -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/tutor&installation.jpg" class="card-img-top-ser"
alt="Free Tutoring and Software Installation">
<div class="card-body">
<h5 class="card-title">Free Tutoring & Software Installation</h5>
<p class="card-text">I offer free tutoring on tech topics and affordable software
installation and OS updates for your devices.</p>
</div>
</div>
</div>
<!-- Simple Automation Scripts -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/script.jpg" class="card-img-top-ser"
alt="Automation Scripts">
<div class="card-body">
<h5 class="card-title">Simple Automation Scripts</h5>
<p class="card-text">I create efficient scripts to automate repetitive tasks, saving you
time and reducing manual effort.</p>
</div>
</div>
</div>
<!-- Web Scraping -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/Scraping.jpg" class="card-img-top-ser" alt="Web Scraping">
<div class="card-body">
<h5 class="card-title">Web Scraping</h5>
<p class="card-text">I gather valuable data from websites with custom web scraping solutions
that deliver precise and actionable results.</p>
</div>
</div>
</div>
<!-- Account Recovery -->
<div class="col-md-4 mb-4">
<div class="card h-100 shadow">
<img src="img/services/account-recovery.jpg" class="card-img-top-ser" alt="Account Recovery">
<div class="card-body">
<h5 class="card-title">Account Recovery</h5>
<p class="card-text">I assist in recovering lost or compromised accounts using secure and
effective recovery strategies.</p>
</div>
</div>
</div>
<!-- Add more services here as needed -->
</div>
</div>
</div>
<!-- Freelance Services End -->
<!-- projects Start -->
<div class="container-fluid pt-5 pb-3" id="projects">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center text-center">
<!-- Responsive display text -->
<h1 class="display-1 text-uppercase text-white certification-heading stroke-text">
Projects
</h1>
<h1 class="position-absolute text-uppercase text-primary">My GitHub Repositories</h1>
</div>
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card shadow">
<div class="card-body text-center">
<h1><span id="repoCount"></span> Projects</h1>
<a href="https://github.com/aravind-govindhasamy?tab=repositories" target="_blank"
class="btn btn-primary mb-3">Take me there</a>
<div id="githubsection" class="mb-3">
<img id="image2"
src="https://github-readme-streak-stats.herokuapp.com/?user=aravind-govindhasamy"
class="img-fluid" alt="GitHub Streak Stats">
</div>
<img src="img/github-contribution.svg" alt="Github Contribution Snake"
class="img-fluid card shadow mb-3">
<h3 class="mt-3">✍️ Random Dev Quote</h3>
<img src="https://quotes-github-readme.vercel.app/api?type=horizontal&theme=radical"
alt="Random Dev Quote" class="img-fluid card shadow mb-3">
<div class="d-flex justify-content-center">
<a href="https://visitcount.itsvg.in/api?id=aravindapg&icon=0&color=0" target="_blank">
<img src="https://visitcount.itsvg.in/api?id=aravindapg&icon=0&color=0"
alt="Visitor Count" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid py-5" id="projects">
<div class="container">
<div class="position-relative d-flex align-items-center justify-content-center text-center">
<!-- Responsive display text -->
<h1 class="display-1 text-uppercase text-white certification-heading stroke-text">
Projects
</h1>
<h1 class="position-absolute text-uppercase text-primary">My Projects</h1>
</div>
<div class="row">
<!-- Project 1: Bitcoin Mining Setup -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Bitcoin Mining Setup using Raspberry Pi and Kali Linux</h5>
<p class="card-text">
<strong>(UG Project)</strong> <br>
<strong>Duration:</strong> Jan 2022 - Apr 2022 <br>
<strong>Description:</strong> Developed a low-cost Bitcoin mining system using Raspberry
Pi and open-source software, exploring the feasibility of mining cryptocurrencies with
energy-efficient hardware. <br>
<strong>Technologies Used:</strong> Raspberry Pi, Kali Linux, Python <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Configured Raspberry Pi for optimal performance.</li>
<li>✨ Implemented Bitcoin mining software on Kali Linux.</li>
<li>✨ Analyzed mining performance and optimized configurations for efficiency.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/BifidCipher-Web-Tool"
target="_blank">Bitcoin Mining</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/Bitcoin-Mining Setup using Raspberry Pi and Kali Linux.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<!-- Project 2: IoT-Based Smart Library System -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀IoT-Based Smart Library System using RFID</h5>
<p class="card-text">
<strong>(2CQR Project)</strong> <br>
<strong>Duration:</strong> Jan 2023 - May 2023 <br>
<strong>Description:</strong> Developed a smart library system using RFID and IoT
technology to automate book check-in/check-out processes with real-time tracking of book
inventory and patron transactions. <br>
<strong>Technologies Used:</strong> C#, ASP.NET, SQL Server, RFID, IoT <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Designed user interface using C# and ASP.NET.</li>
<li>✨ Integrated RFID readers for real-time tracking.</li>
<li>✨ Created SQL Server databases for book and patron information.</li>
<li>✨ Optimized backend for speed and accuracy.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/IoT-Based-Smart-Library-System-using-RFID"
target="_blank">IoT-Based Smart Library System using RFID</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/Smart-Library-System-using-RFID.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<!-- Project 3: Library Fine Collection Kiosk -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Library Fine Collection Kiosk Software Using RFID and Razor Payment
Gateway</h5>
<p class="card-text">
<strong>(2CQR Project)</strong> <br>
<strong>Duration:</strong> Aug 2023 - Dec 2023 <br>
<strong>Description:</strong> Developed a desktop application to automate library fine
collection using RFID, integrated with Razor payment gateway for seamless payment
processing. <br>
<strong>Technologies Used:</strong> C#, .NET, RFID, Razor Payment Gateway, MSSQL <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Designed and developed the desktop form application using C# and .NET.</li>
<li>✨ Integrated RFID to track books and calculate fines.</li>
<li>✨ Implemented Razor payment gateway for secure payments.</li>
<li>✨ Managed data with MSSQL for fine transactions and user details.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/Library-Fine-Collection-Kiosk"
target="_blank">Library Fine Collection Kiosk</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/Library Fine Collection Kiosk.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<!-- Project 4: Stock Control Inventory Management -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Stock Control Inventory Management Application Using RFID</h5>
<p class="card-text">
<strong>(2CQR Project)</strong> <br>
<strong>Duration:</strong> Jan 2024 - May 2024 <br>
<strong>Description:</strong> Contributed to developing an inventory management
application using RFID for real-time tracking of stock levels. <br>
<strong>Technologies Used:</strong> C#, ASP.NET, RFID, MSSQL, REST API <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Developed and maintained backend REST APIs for inventory management.</li>
<li>✨ Created MSSQL stored procedures for data retrieval and manipulation.</li>
<li>✨ Integrated RFID for automated stock tracking.</li>
<li>✨ Optimized database queries for better performance.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/Stock-Control-Inventory-Management"
target="_blank">Stock Control Inventory Management</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/Stock-Control-Inventory-Management.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<!-- Project 5: Bulk Image Downloader from CSV Using Streamlit -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Bulk Image Downloader from CSV Using Streamlit</h5>
<p class="card-text">
<strong>(Project)</strong> <br>
<strong>Duration:</strong> [Your Duration] <br>
<strong>Description:</strong> This Streamlit app allows users to upload CSVs, select
columns with image URLs, and bulk download images. <br>
<strong>Technologies Used:</strong> Streamlit, Python, CSV <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Developed the Streamlit app for CSV uploads and image processing.</li>
<li>✨ Implemented functionality to parse URLs and download images efficiently.</li>
<li>✨ Designed a user-friendly interface for selecting and managing downloads.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/GamersNearMe/Bulk-Image-Downloader-from-CSV-using-streamlit" target="_blank">Bulk
Image Downloader</a> <br>
<strong>PPT Link:</strong> <a
href="img/presentation/bulk_image_downloader.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<!-- Project 6: Python Licensing System -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Python Licensing System</h5>
<p class="card-text">
<strong>(Project)</strong> <br>
<strong>Duration:</strong> [Your Duration] <br>
<strong>Description:</strong> A licensing system in Python using cryptography for
encryption and MAC address validation. <br>
<strong>Technologies Used:</strong> Python, Cryptography <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Implemented AES encryption for secure license generation and validation.</li>
<li>✨ Developed MAC address validation for license tracking.</li>
<li>✨ Created a user interface for managing licenses and users.</li>
</ul>
<strong>GitHub Link:</strong> <a href="https://github.com/aravind-govindhasamy/PythonLic"
target="_blank">Python Licensing System</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/python_lic.pptx"
target="_blank">View PPT</a> <br>
</p>
</div>
</div>
</div>
<!-- Additional Projects -->
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀BulkDBBackup_NodeJS_MySQL</h5>
<p class="card-text">
<strong>(Node.js Project)</strong> <br>
<strong>Description:</strong> MySQL Backup Script that backs up all user databases from
a MySQL server. <br>
<strong>Technologies Used:</strong> Node.js, MySQL <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Automated the backup process, reducing manual intervention.</li>
<li>✨ Implemented error handling to ensure backup integrity and reliability.</li>
<li>✨ Developed a scheduling feature to run backups at specified intervals.</li>
<li>✨ Created a detailed log system to track backup activities and outcomes.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/BulkDBBackup_NodeJS_MySQL"
target="_blank">Bulk Database Backup NodeJS MySQL</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/presentation.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀AES Encryption and Decryption Using CryptoJS</h5>
<p class="card-text">
<strong>(Web Project)</strong> <br>
<strong>Description:</strong> Demonstrates AES encryption/decryption with CryptoJS in
HTML/JS. <br>
<strong>Technologies Used:</strong> JavaScript, HTML, CryptoJS <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Implemented secure data transmission using AES encryption standards.</li>
<li>✨ Designed a user-friendly interface for easy input and output handling.</li>
<li>✨ Utilized best practices for cryptographic functions to enhance security.</li>
<li>✨ Provided detailed documentation for users on encryption/decryption processes.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/AES-Encryption-Decryption"
target="_blank">AES Encryption and Decryption Using CryptoJS</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/AES-Encryption-and-Decryption-Using-CryptoJS.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀WishYouHBD - Digital Birthday Card</h5>
<p class="card-text">
<strong>(Web Project)</strong> <br>
<strong>Description:</strong> An interactive virtual birthday card with custom messages,
animations, and more. <br>
<strong>Technologies Used:</strong> HTML, CSS, JavaScript <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Created customizable templates for users to personalize their cards.</li>
<li>✨ Incorporated animations to enhance user engagement and experience.</li>
<li>✨ Implemented responsive design for optimal viewing on various devices.</li>
<li>✨ Integrated sharing features for users to send cards via social media.</li>
</ul>
<strong>GitHub Link:</strong> <a href="https://github.com/aravind-govindhasamy/WishYouHBD"
target="_blank">WishYouHBD</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/WishYouHBD.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Bifid Cipher Web Tool</h5>
<p class="card-text">
<strong>(Web Tool)</strong> <br>
<strong>Description:</strong> A simple tool for encrypting and decrypting text using the
Bifid cipher. <br>
<strong>Technologies Used:</strong> HTML, JavaScript <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Developed a user-friendly interface for encryption and decryption processes.</li>
<li>✨ Included features to visualize the encryption/decryption steps for educational
purposes.</li>
<li>✨ Allowed for customizable parameters for the Bifid cipher, enhancing usability.
</li>
<li>✨ Provided clear instructions and examples for users to understand cipher mechanics.
</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/BifidCipher-Web-Tool"
target="_blank">Bifid Cipher Web Tool</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/Bifid Cipher Web Tool.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀Bulk Image Downloader from CSV</h5>
<p class="card-text">
<strong>(Streamlit Project)</strong> <br>
<strong>Description:</strong> A Streamlit app that allows users to upload CSVs, select
columns with image URLs, and bulk download images. <br>
<strong>Technologies Used:</strong> Python, Streamlit <br>
<strong>Key Contributions:</strong>
<ul>
<li>✨ Facilitated bulk image downloads from CSV files, improving user efficiency.</li>
<li>✨ Implemented a clear user interface for selecting URL columns and managing
downloads.</li>
<li>✨ Optimized image handling for faster downloads and better performance.</li>
<li>✨ Included logging features to track download progress and issues.</li>
</ul>
<strong>GitHub Link:</strong> <a
href="https://github.com/aravind-govindhasamy/Bulk-Image-Downloader"
target="_blank">Bulk Image Downloader from CSV</a> <br>
<strong>PPT Link:</strong> <a href="img/presentation/Bulk Image Downloader from CSV.pptx" target="_blank">View
PPT</a> <br>
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="card h-100 shadow">
<div class="card-body">
<h5 class="card-title">🚀 PDF Image Extractor Using Gemini 1.5 AI</h5>
<p class="card-text">
<strong>(Python Project)</strong> <br>