-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
476 lines (428 loc) Β· 23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ganesh's Resume</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Font Awesome Icons -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/js/all.min.js"></script>
<style>
body {
background-color: #87CEEB; /* Sky Blue Background */
color: #333; /* Dark Text Color */
}
headerbody {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #343a40;
margin: 0;
padding: 0;
}
header {
background-color: #007bff;
padding: 20px;
text-align: center;
}
header h1 {
color: #ffffff;
font-size: 36px;
margin-bottom: 0;
}
header p {
color: #ffffff;
font-size: 18px;
margin-top: 5px;
}
header i {
font-style: normal;
}
#web {
font-size: 16px;
color: #ffffff;
}
.profile-img {
border-radius: 50%;
border: 5px solid #ffffff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
color: red;
background-color: forestgreen;
text-align: center;
padding: 10px;
}
p i {
color: hotpink;
}
#web {
color: #eb6a31;
}
.navbar {
color: #21eded;
background-color: #343a40; /* Dark Navbar Background */
}
.navbar-brand {
color: #007bff; /* Navbar Brand Color */
}
.navbar-nav .nav-link {
color: #ffffff; /* Navbar Links Color */
}
section {
background-color: #f8f9fa; /* Light Gray Background for Sections */
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}
table {
background-color: #fff; /* White Background for Tables */
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th {
color: #ffc107; /* Table Header Text Color */
}
td {
color: #6610f2; /* Table Data Text Color */
}
.carousel-indicators button {
background-color: #007bff; /* Carousel Indicators Color */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
color: #007bff; /* Carousel Control Icons Color */
}
.list-group-item {
background-color: #fff; /* White Background for List Items */
color: #06785c; /* List Item Text Color */
}
.card {
background-color: #fff; /* White Background for Cards */
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}
.card a {
color: #007bff; /* Card Link Color */
text-decoration: none;
}
footer {
background-color: #343a40; /* Dark Footer Background */
color: #ffffff; /* Footer Text Color */
padding: 20px;
text-align: center;
}
footer a {
color: #ffffff; /* Footer Link Color */
text-decoration: none;
}
</style>
</head>
<body>
<header>
<div class="container" id="headerbody">
<div class="row align-items-center">
<div class="col-md-4">
<a href="https://github.com/GaneshPawar-DotNetDeveloper/get-url.git">
<img class="profile-img" width="200" src="image/my profile image.jpg" alt="ganesh pawar's Photo">
</a>
</div>
<div class="col-md-8">
<h1>Ganesh Pawar</h1>
<p>
<i>
Top-Notch .NET Full Stack Engineer |
Unleashing Digital Excellence π₯ |
Angular | MVC | Web API |
.NET Core Expert | Seeking New Challenges
</i>
</p>
<p id="web">I β€οΈ Web Development and I live and breathe coding π</p>
</div>
</div>
</div>
<hr>
</header>
<main>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="image/ramkrushna math logo.png">Index</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#certification">Certification</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Skill">Skill</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Exprience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#internships">Internships</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#language">Language</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#References">Study Reference</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contactme">Connect with Me</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="education">
<h2>Education</h2>
<div class="container mt-4">
<table class="table table-bordered">
<thead>
<tr class="text-center">
<th>Course</th>
<th>Institute</th>
<th>Year</th>
<th>Location</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr class="text-center">
<td>BTech</td>
<td>BSKKV, Dapoli</td>
<td>2021</td>
<td>Ratnagiri</td>
<td>78.9%</td>
</tr>
<tr class="text-center">
<td>12<sup>th</sup> Std</td>
<td>WCS, Solapur</td>
<td>2017</td>
<td>Solapur</td>
<td>75.34%</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="certification">
<h2>Certification</h2>
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<ul>
<li>1. HackerRank</li>
<li>2. Code_Chef</li>
<li>3. Great Learning</li>
<li>4. Opp's Concept</li>
<li>5. Google</li>
</ul>
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="2"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="3"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="image/SQL Basic HackerRank.PNG" alt="HackerRank Certificate" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="image/code_chef.jpeg" alt="CodeChef Certificate" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="image/great learning.jpeg" alt="Great Learning Certificate" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="image/OOP'S concept.jpeg" alt="OOP's Concept Certificate" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="image/google.jpeg" alt="Google Certificate" class="d-block w-100">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
</section>
<section id="Skill">
<h2>Skills</h2>
<div class="container mt-4">
<div class="list-group mt-3">
<a href="#" class="list-group-item list-group-item-action">SQL</a>
<a href="#" class="list-group-item list-group-item-action">C#</a>
<a href="#" class="list-group-item list-group-item-action">LINQ</a>
<a href="#" class="list-group-item list-group-item-action">HTML</a>
<a href="#" class="list-group-item list-group-item-action">CSS</a>
<a href="#" class="list-group-item list-group-item-action">JavaScript</a>
<a href="#" class="list-group-item list-group-item-action">jQuery</a>
<a href="#" class="list-group-item list-group-item-action">Bootstrap</a>
<a href="#" class="list-group-item list-group-item-action">ADO.NET</a>
<a href="#" class="list-group-item list-group-item-action">Entity Framework</a>
<a href="#" class="list-group-item list-group-item-action">ASP.NET</a>
<a href="#" class="list-group-item list-group-item-action">MVC</a>
<a href="#" class="list-group-item list-group-item-action">WEB API</a>
<a href="#" class="list-group-item list-group-item-action">ANGULAR</a>
</div>
</div>
</section>
<section id="Exprience">
<h2>Experience</h2>
<div class="container mt-5">
<div class="experience-card">
<h2>π Hi, I'm Ganesh, a .NET Full Stack Developer!</h2>
<p>πΌ Currently working at Square Vision Technologies for the past 2 years, where I've had the privilege to dive deep into a diverse range of technologies and responsibilities.</p>
<h3>π¨βπ» My Expertise:</h3>
<ul class="expertise-list">
<li>π Full Stack Development: Proficient in Angular, .NET Core, HTML, CSS, JavaScript, jQuery, Bootstrap, and SQL.</li>
<li>π¨ Backend Skills: Strong in C#, LINQ, ADO.NET, Entity Framework Core, MVC, and Web API.</li>
<li>𧩠Technical Knowledge: I bring a deep understanding of Object-Oriented Programming (OOP), SOLID principles, and Design Patterns to my work.</li>
</ul>
<h3>π‘ My Passion:</h3>
<ul class="passion-list">
<li>π I love building robust and efficient software solutions.</li>
<li>π Continuously learning and implementing the latest industry trends.</li>
<li>π Thrive on problem-solving and turning ideas into functional applications.</li>
</ul>
<p>π€ I'm always open to new opportunities and collaborations, so feel free to connect with me. Let's connect and chat about the fascinating world of software development!</p>
</div>
</div>
</section>
<section id="internships">
<h2>Internship</h2>
<div class="container mt-5">
<div class="experience-card">
<h2>Internship at KB Biotech, Satara</h2>
<p>During my internship at KB Biotech in Satara, I had the opportunity to work on Tissue Culture for Bananas. It was an exciting project where we aimed to improve the production and quality of banana plants through tissue culture techniques.</p>
<h3>Project Highlights:</h3>
<p>We achieved significant success in our tissue culture experiments, resulting in healthier and more robust banana plants. Our efforts focused on optimizing growth media, sterilization techniques, and plant acclimatization processes.</p>
<h3>Images from the Project:</h3>
<div class="row">
<div class="col-md-4">
<img src="image/Banana-Tissue-Culture-in-the-lab..jpg" alt="Tissue Culture Image 1">
</div>
<div class="col-md-4">
<img src="image/tissue of banana.png" alt="Tissue Culture Image 2">
</div>
</div>
<h3>Location:</h3>
<p>The internship took place at the KB Biotech facility located in Phaltan, Satara.</p>
<h3>About KB Biotech:</h3>
<p>KB Biotech is a leading biotechnology company specializing in agricultural innovations. They are dedicated to developing sustainable and efficient solutions for crop production, with a strong emphasis on research and development.</p>
<p>For more information about KB Biotech and their work, please visit their <a href="https://kbbiotech.com" target="_blank">website</a>.</p>
</div>
</div>
</section>
<section id="projects">
<h2>Project</h2>
<div class="container mt-5">
<div class="project-card">
<h2>Health-Online Documentation (Hospitality) Project</h2>
<p>In this project, I developed an innovative application designed for US base hospitals to streamline the patient documentation process. The goal was to provide a convenient and secure platform for patients to access and share their health data, eliminating the need to carry physical documents.</p>
<h3>Project Features:</h3>
<ul>
<li>π₯ Centralized Health Data: Patients can store and manage their medical records, prescriptions, test results, and other health-related documents securely on our platform.</li>
<li>π Secure Access Control: Implemented robust security measures to ensure patient data privacy and compliance with healthcare regulations such as HIPAA.</li>
<li>π± Mobile Accessibility: The application is accessible on both web and mobile devices, allowing patients to access their data anytime, anywhere.</li>
<li>π©Ί Doctor Integration: Hospital staff and doctors have access to a dedicated portal where they can retrieve patient data quickly and efficiently during consultations.</li>
<li>π Document Sharing: Patients can easily share specific documents or their entire medical history with healthcare providers, improving communication and treatment accuracy.</li>
</ul>
<h3>Technologies Used:</h3>
<ul>
<li>Frontend: HTML, CSS, JavaScript, Bootstrap</li>
<li>Backend: Node.js, Express.js, C#</li>
<li>Database: MongoDB, SQL Server</li>
<li>APIs: RESTful API for communication between frontend and backend</li>
</ul>
<h3>Impact:</h3>
<p>The Health-Online Documentation Project received positive feedback from hospital administrators, doctors, and patients alike. It significantly reduced paperwork, improved data accessibility, and enhanced the overall efficiency of healthcare operations.</p>
<h3>Future Enhancements:</h3>
<p>For future iterations, I plan to incorporate AI-powered features for predictive analysis of patient health data, further enhancing the value and insights provided by the platform.</p>
</div>
</div>
</section>
<section id="language">
<h2>Languages</h2>
<div class="container mt-4">
<div class="list-group mt-3">
<a href="#" class="list-group-item list-group-item-action">English</a>
<a href="#" class="list-group-item list-group-item-action">Marathi</a>
<a href="#" class="list-group-item list-group-item-action">Hindi</a>
</div>
</div>
</section>
<section id="References">
<h2>Study Reference</h2>
<div class="container mt-5">
<div class="card">
<h3>Top Books for Software Developers:</h3>
<ul>
<li><a href="https://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882" target="_blank">"Clean Code" by Robert C. Martin</a></li>
<li><a href="https://www.amazon.com/Pragmatic-Programmer-journey-mastery-Anniversary/dp/0135957052" target="_blank">"The Pragmatic Programmer" by Andrew Hunt and David Thomas</a></li>
<li><a href="https://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612" target="_blank">"Design Patterns: Elements of Reusable Object-Oriented Software" by Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides</a></li>
</ul>
<h3>Top Online Courses for Developers:</h3>
<ul>
<li><a href="https://www.udemy.com/course/complete-web-development-bootcamp/" target="_blank">"The Complete Web Development Bootcamp" on Udemy</a></li>
<li><a href="https://www.coursera.org/specializations/full-stack-react" target="_blank">"Full-Stack Web Development with React" on Coursera</a></li>
<li><a href="https://www.udemy.com/course/complete-react-developer-zero-to-mastery/" target="_blank">"Complete React Developer in 2022" on Udemy</a></li>
</ul>
<h3>Top Websites for Developer Resources:</h3>
<ul>
<li><a href="https://stackoverflow.com/" target="_blank">Stack Overflow</a></li>
<li><a href="https://github.com/" target="_blank">GitHub</a></li>
<li><a href="https://www.codecademy.com/" target="_blank">Codecademy</a></li>
</ul>
</div>
</div>
</section>
<section id="contactme">
<h2>Connect with Me</h2>
<div class="container mt-5">
<div class="card">
<h3>Contact Details:</h3>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Phone:</strong> +91 9011542575</p>
<h3>Social Media:</h3>
<ul>
<li><a href="https://www.linkedin.com/in/ganesh-pawar-dotnet" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/GaneshPawar-DotNetDeveloper" target="_blank">GitHub</a></li>
<li><a href="https://twitter.com/Ganesh010203/likes" target="_blank">Twitter</a></li>
</ul>
<h3>Location:</h3>
<p>Pune, Maharashtra, India</p>
<h3>Let's Connect!</h3>
<p>Feel free to reach out to me for collaborations, job opportunities, or just a chat about tech and coding. I'm always eager to connect with fellow developers and tech enthusiasts!</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Ganesh Pawar | All Rights Reserved | Developed with β€οΈ and β</p>
<p>Email: [email protected] | Phone: +91 9011542575</p>
<p>Connect with Me:</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="https://www.linkedin.com/in/ganesh-pawar-dotnet" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li class="list-inline-item"><a href="https://github.com/GaneshPawar-DotNetDeveloper" target="_blank"><i class="fab fa-github"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/Ganesh010203/likes" target="_blank"><i class="fab fa-twitter"></i></a></li>
</ul>
</footer>
</body>
</html>