-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
398 lines (379 loc) · 14.3 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
---
layout: default
permalink: /
description: "Hello, I am Prathamesh Sable, a dedicated computer engineer proficient in Python, C/C++, Django, web
development, and SQL. Explore my portfolio to discover innovative projects and a passion for crafting exceptional
software solutions."
title: Prathamesh Sable
---
<!-- include header -->
{% include navbar.html %}
<!--================Home Banner Area =================-->
<section class="home_banner_area">
<div class="banner_inner">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="home_left_img">
<img src="/img/banner/home-left-1.png" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="banner_content">
<h5>Hi, This is me</h5>
<h2>Prathamesh Sable</h2>
<p> <strong>Welcome!</strong>
I am a skilled and experienced programmer with a passion for creating innovative software
solutions.
Currently, I am an Undergraduate Student at MES Wadia College of Engineering, Pune. I have
developed a diverse range of
skills in
Programming Languages & Technologies. I am excited to continue growing as a programmer and
to take
on new
challenges.
<br />
<i style="color: #8490ff;">
Thank you for visiting, I would like to connect with you!
</i>
</p>
<a class="banner_btn" href="{{ site.data.vars.resume.link }}"
download="{{ site.data.vars.resume.name }}">Download My Resume</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================End Home Banner Area =================-->
<!--================Welcome Area =================-->
<section class="welcome_area p_120">
<div class="container">
<div class="row welcome_inner">
<div class="col-lg-6">
<div class="welcome_text">
<h4>About Myself</h4>
<p class="sample-text-justify">
<strong>About:</strong> {{ site.data.vars.about.bio }}
<br />
<strong>Languages Known:</strong> {{ site.data.vars.about.languages | join: ', ' }}
<br />
<strong>Interests:</strong> {{ site.data.vars.about.interests | join: ', ' }}
<br />
<strong>Education:</strong> {{ site.data.vars.about.education }}
<br />
<strong>Address:</strong> {{ site.data.vars.about.location }}, {{ site.data.vars.about.pin_code
}}
</p>
<div class="row">
<div class="col-md-4">
<div class="wel_item">
<i class="lnr lnr-database"></i>
<h4> <span id="experience_year"></span> Years</h4>
<p>Experience</p>
</div>
</div>
<div class="col-md-4">
<div class="wel_item">
<i class="lnr lnr-book"></i>
<h4>{{ site.projects | where: "is_public", true | size }}</h4>
<p>Total Projects</p>
</div>
</div>
<div class="col-md-4">
<div class="wel_item">
<i class="lnr lnr-users"></i>
<h4>{{ site.data.vars.total_connections }}+</h4>
<p>Connections</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="tools_expert">
<h3>My Skills</h3>
<div class="skill_main">
{% for skill in site.data.skills %}
<div class="skill_item">
<h4>{{ skill.name }} - <span class="counter">{{ skill.percentage }}</span>%</h4>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="{{ skill.percentage }}"
aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
{% endfor %}
<!-- <div class="skill_item">
<h4>Linux <span class="counter">75</span>%</h4>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!--================End Welcome Area =================-->
<!--================Feature Area =================-->
<section class="feature_area p_120">
<div class="container">
<div class="main_title">
<h2>What I know about ______?</h2>
<p>If you are looking for My Specific Knowledge in Programming have a look here</p>
</div>
<div class="feature_inner row" style="align-items: stretch;">
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<img class="center" height="80" width="80" src="/img/proglang/pythoncolor.png"
alt="Logo"><br><br>
<h4>Python</h4>
</div>
<p>I am working with Python from last 3 Years. No doubt it is my first Programming Language. I
know all the Important Concepts in python, and all basics are clear. I have used python in
many of my projects.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<img class="" height="80" width="80" src="/img/proglang/c++color.png" alt="Logo"><br><br>
<h4>C / C++</h4>
</div>
<p>I am working in C/C++ from almost a year now,
I have indepth understanding of object-oriented programming and other programming concepts
as STL in C++. But yes there is lot to Explore as well.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<img class="" height="80" width="80" src="/img/proglang/githubcolor.png" alt="Logo">
<br><br>
<h4>Git and Github</h4>
</div>
<p>I am working with Git and GitHub from last 2 Years. I have the sufficient Knowledge and hands
on Experience working with version control softwares.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<img class="" height="80" width="80" src="/img/proglang/djangocolor.png" alt="Logo">
<br><br>
<h4>Django</h4>
</div>
<p>I have been working with Django for over a year now.I like Django due to its simplicity and the
powerful tools it provides. I have used Django in several of my projects and web applications.
Specifically in Django REST Framework</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<img class="" height="80" width="80" src="/img/proglang/mysqlcolor.png" alt="Logo">
<br><br>
<h4>SQL</h4>
</div>
<p>I have been working with SQL, specifically MySQL and PL/SQL, for past three years. I have a
strong understanding of database concepts. I am proficient in writing SQL queries. I have used
SQL extensively in my projects.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<img class="" height="80" width="80" src="/img/proglang/javacolor.png" alt="Logo">
<br><br>
<h4>Java</h4>
</div>
<p>I have just started learning Java so just Completed Java basics. On the way to learn much
more. Soon I'll complete it.</p>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6">
<div class="feature_item">
<div class="center">
<i class="flaticon-skyline"></i>
</div>
<h4></h4>
<p>If you are looking at blank cassettes on the web, you may be very confused at the difference
in price. You may see some for as low as $17 each.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="feature_item">
<i class="flaticon-sketch"></i>
<h4>Concept Design</h4>
<p>If you are looking at blank cassettes on the web, you may be very confused at the difference
in price. You may see some for as low as $17 each.</p>
</div>
</div> -->
</div>
</div>
</section>
<!--================End Feature Area =================-->
<!--================Start Education Area =================-->
<section class="blog_area">
<div class="container">
<div class="main_title">
<h2>Education</h2>
<p>Which has helped me to develop and flourish throughout my life.</p>
</div>
<div class="blog_left_sidebar">
<div class="">
<article class="row blog_item" id="mescoepune">
<div class="col-md-3">
<div class="blog_info text-right">
<div class="post_tag">
<h3 class="active">Under Graduation</h3>
</div>
<ul class="blog_meta list">
<li><a class="edudetails">From <!-- <i class="lnr lnr-arrow-down"></i> --></a></li>
<li><a class="edudetails">Nov, 2021<i class="lnr lnr-calendar-full"></i></a></li>
<li><a class="edudetails">To <!-- <i class="lnr lnr-arrow-down"></i> --></a></li>
<li><a class="edudetails">Current<i class="lnr lnr-calendar-full"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-9">
<div class="blog_post">
<img class="eduimg" src="/img/edu/mescoe-1.png" alt="">
<div class="blog_details col-md-8">
<a href="https://mescoe.mespune.org/">
<h2>Modern Education Society's College Of Engineering, Pune</h2>
</a>
<p>With the motto 'For the Spread of Light', Modern Education Society has been
pioneering the education sector since its establishment in 1932. The MES college
of engineering in particular was founded in 1999 with the aim of providing the
best education to aspiring engineers in the nation."</p>
<a href="https://mescoe.mespune.org/" class="blog_btn">Visit Website</a>
</div>
</div>
</div>
</article>
<article class="row blog_item" id="jnvtuljapur">
<div class="col-md-3">
<div class="blog_info text-right">
<div class="post_tag">
<h3 class="active">Higher Secondary</h3>
<h3 class="active">& Secondary</h3>
</div>
<ul class="blog_meta list">
<li><a class="edudetails">From <!-- <i class="lnr lnr-arrow-down"></i> --></a></li>
<li><a class="edudetails">July, 2017<i class="lnr lnr-calendar-full"></i></a></li>
<li><a class="edudetails">To <!-- <i class="lnr lnr-arrow-down"></i> --></a></li>
<li><a class="edudetails">May, 2021<i class="lnr lnr-calendar-full"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-9">
<div class="blog_post">
<img class="eduimg" src="/img/edu/jnvtuljapur-1.jpg" alt="">
<div class="blog_details col-md-8">
<a href="https://www.navodaya.gov.in/nvs/nvs-school/Osmanabad/en/home/">
<h2>Jawahar Navodaya Vidyalaya,Tuljapur, Dist - Dharashiv (Osmanabad)</h2>
</a>
<p>JNV Osmanabad has proved a milestone in providing good quality Education to the
student of the district. The team work here is an example of excellence, also by
their dedication and hard work awaken the young in creative expressions and
knowledge."</p>
<a href="https://www.navodaya.gov.in/nvs/nvs-school/Osmanabad/en/home/"
class="blog_btn">Visit Website</a>
</div>
</div>
</div>
</article>
<article class="row blog_item">
<div class="col-md-3">
<div class="blog_info text-right">
<div class="post_tag">
<h3 class="active">Primary</h3>
</div>
<ul class="blog_meta list">
<li><a class="edudetails">From <!-- <i class="lnr lnr-arrow-down"></i> --></a></li>
<li><a class="edudetails">Aug, 2009<i class="lnr lnr-calendar-full"></i></a></li>
<li><a class="edudetails">To <!-- <i class="lnr lnr-arrow-down"></i> --></a></li>
<li><a class="edudetails">Jun, 2017<i class="lnr lnr-calendar-full"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-9">
<div class="blog_post">
<img class="eduimg" src="/img/edu/rhsbhoom-1.jpg" alt="">
<div class="blog_details col-md-8">
<a>
<h2>Ravindra High School, Bhoom, Dist - Osmanabad</h2>
</a>
<p>In 1971, Ravindra High School was launched. This school's primary medium of
instruction is Marathi. The school tries to provide best learning
environment.This school runs classes from 1 to 10 to provide education to
students. The school has given exceptional results in the academic sphere and
its students have excelled in extra co-curricular activities too."</p>
<!-- <a class="blog_btn">Visit Website</a> -->
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<!--================End Education Area =================-->
<!--================Testimonials Area =================-->
<!-- <section class="testimonials_area p_120">
<div class="container">
<div class="main_title">
<h2>Testimonials</h2>
<p>See what others think about me...</p>
<p>If you want to write about me here then write me at <a
href="/about_contact.html#testimonial"> This Form</a> or just send me a mail at
<a
href="mailto:prathameshks2003@gmail.com">prathameshks2003@gmail.com</a></p>
</div>
<div class="testi_inner">
<div class="testi_slider owl-carousel">
<div class="item">
<div class="testi_item">
<p>This is a sample space</p>
<h4>No Content</h4>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star-half-o"></i></a>
</div>
</div>
<div class="item">
<div class="testi_item">
<p>As conscious traveling Paup ers we must always be oncerned about our dear Mother Earth.
If you think about it, you travel across her face</p>
<h4>Fanny Spencer</h4>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star"></i></a>
<a href="#"><i class="fa fa-star-half-o"></i></a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- ================End Testimonials Area ================= -->
<!-- Footer -->
{% include footer.html %}
<!-- Credits -->
<div style="display: flex; justify-content: right;width: 95%;">
{% include credits.html %}
</div>
<script>
document.getElementById("homenavlink").classList.add("activenav");
var currentYear = new Date().getFullYear();
var startYear = {{ site.data.vars.start_year }};
var exp_years = currentYear - startYear;
document.getElementById('experience_year').innerText = exp_years;
</script>