-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
619 lines (593 loc) · 21.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
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
<!DOCTYPE html>
<html class="no-js" 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" />
<title>My Portfolio</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900"
rel="stylesheet"
/>
<link rel="stylesheet" href="libs/font-awesome/css/font-awesome.min.css" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<div class="preloader"></div>
<div id="mobile-menu-open" class="shadow-large">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<!-- End #mobile-menu-toggle -->
<header>
<div id="mobile-menu-close">
<i class="fa fa-times" aria-hidden="true"></i>
</div>
<ul id="menu" class="shadow">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#experience">Experience</a>
</li>
<li>
<a href="#education">Education</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</header>
<!-- End header -->
<div id="lead">
<div id="lead-content">
<h1 style="font-family: 'Lato', sans-serif">Ashutosh Shrimal</h1>
<!-- <h2>Software Engineer</h2> -->
<h2 style="margin-top: 10px; margin-bottom: 10px">
<a
class="typewrite"
data-period="2000"
data-type='[ "Software Engineer!", "Web Developer...", "Problem Solver!", "Programming is ♥" ]'
style="
text-decoration: none;
color: white;
font-family: 'Waiting for the Sunrise';
"
>
<span class="wrap"></span>
</a>
</h2>
<a
target="_blank"
style="text-decoration: none"
href="https://drive.google.com/file/d/17kHkLeIMieKj6287fzbd83_vBmXdbTbY/view?usp=share_link"
download
class="btn-rounded-white"
>Download Resume</a
>
</div>
<!-- End #lead-content -->
<div id="lead-overlay"></div>
<div id="lead-down">
<span>
<i class="fa fa-chevron-down" aria-hidden="true"></i>
</span>
</div>
<!-- End #lead-down -->
</div>
<!-- End #lead -->
<div
id="about"
style="
margin: 20px 20px;
padding-top: 50px;
border: 5px #808087;
border-style: solid;
"
>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2
class="fade heading"
style="
padding-left: 40px;
padding-top: 50px;
padding-right: 40px;
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
"
>
About Me
</h2>
</div>
<div class="col-md-8">
<p
style="
font-size: large;
text-align: left;
font-family: Georgia, 'Times New Roman', Times, serif;
"
>
I am a full stack developer specialized in MERN stack current working as a
SDE Intern at Scaler by InterviewBit. I have experience working with both relational
& No SQL databases. I am also interested in Machine Learning, I love
solving problems. I am quite active on github and linkedin. Highly experienced in
React and a bunch of commonly used libraries like bootstrap, ant-design
etc. I am quite curious about new technologies and believe in
working on one product at a time.
<br />Connect with me at
<a href="mailto:pshrimal000@gmail.com">pshrimal000@gmail.com</a>
</p>
</div>
</div>
</div>
</div>
<!-- End #about -->
<div id="experience" class="background-alt">
<h2
class="heading"
style="
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
"
>
Experience
</h2>
<div id="experience-timeline">
<div data-date="Feb 2022 - Present" class="fade">
<a style="display: flex;justify-content: space-between;text-decoration: inherit; color: inherit; " href="https://www.scaler.com/" target="_blank" >
<div>
<h3>Scaler by InterviewBit</h3>
<h4>Software Enginer</h4>
<p>
Working in the Learner Tech Team to enhance paid learner experience<br />
</p>
</div>
<img style="max-height: 15rem;" src="images/scaler.jpeg" />
</a>
</div>
<div data-date="May 2021 – Dec 2021" class="fade">
<a style="display: flex;justify-content: space-between;text-decoration: inherit; color: inherit;" href="https://www.unicepts.in/" target="_blank" >
<div>
<h3>Trinty Unicepts</h3>
<h4>Software Development Intern</h4>
<p>
Worked as a Software Development Intern<br />
Worked mainly in ReactJS to convert wireframes to actual code,
Had daily connects with clients to understand requirements and implemented
them in the project. Worked on multiple features from scratch( ideation -> implementation)
like query builder, react-table etc.
</p>
</div>
<img style="max-height: 15rem;" src="images/trinity.jpeg" />
</a>
</div>
<div data-date="November 2020 – March 2021" class="fade">
<a style="display: flex;justify-content: space-between;text-decoration: inherit; color: inherit; " href="https://olcademy.com/" target="_blank" >
<div>
<h3>Olcademy</h3>
<h4>Backend Intern</h4>
<p>
Worked on the creation of REST APIs and coordinated with team for
optimization of website. Implemented authentication across entire application.
Created util apis to convert uploaded images to webp extension to optimize performance.
Worked on the Ideation part of the blogs and how they should be stored in the db
and successfully implemented it.
</p>
</div>
<img style="max-height: 15rem;" src="images/olcademy.png" />
</a>
</div>
<div data-date="August 2019 – July 2020" class="fade">
<a style="display: flex;justify-content: space-between;text-decoration: inherit; color: inherit; " href="https://www.facebook.com/JuetFirefoxClub/" target="_blank" >
<div>
<h3>Mozilla Phoenix Club JUET</h3>
<h4>Joint Secretary</h4>
<p>
Worked as the Joint Secretary of programming Club of the Mozilla's
technical Club. and conducted several programming sessions and
workshops
</p>
</div>
<img style="max-height: 15rem;" src="images/mozilla.webp" />
</a>
</div>
<div data-date="August 2018 – July 2019" class="fade">
<a style="display: flex;justify-content: space-between;text-decoration: inherit; color: inherit; " href="https://in.linkedin.com/company/juetyouthclub" target="_blank" >
<div>
<h3>Jaypee Youth Club</h3>
<h4>Cultural Volunteer</h4>
<p>Worked as the Volunteer of Music Wing of the Cultural Wing JYC</p>
</div>
<img style="max-height: 15rem;" src="images/jyc.jpeg" />
</a>
</div>
</div>
</div>
<!-- End #experience -->
<div
id="education"
style="border: 5px solid #808087; margin: 20px; padding-top: 50px"
>
<h2
class="heading"
style="
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
"
>
Education
</h2>
<div class="fade education-block">
<h3>Delhi Rajasthan Public School</h3>
<span class="education-date">2015-2016</span>
<h4>Secondary(X<sup>th</sup>)</h4>
<p>90.33%</p>
</div>
<!-- End .education-block -->
<div class="fade education-block">
<h3>Ch. Kehar Singh Divya Public School</h3>
<span class="education-date">2017-2018</span>
<h4>Senior Secondary(XII<sup>th</sup>)</h4>
<p>89.66%</p>
</div>
<div class="fade education-block">
<h3>Jaypee University of Engineering and Technology,Guna</h3>
<span class="education-date">2018-2022</span>
<h4>Bachelor of Technology in Computer Science</h4>
<p>9.1CGPA</p>
</div>
<!-- End .education-block -->
</div>
<!-- End #education -->
<div id="projects" class="background-alt">
<h2
class="heading"
style="
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
"
>
Projects
</h2>
<div class="container">
<div class="row">
<div class="fade project shadow-large">
<div class="project-image">
<img src="images/stremio.png" />
</div>
<!-- End .project-image -->
<div class="project-info">
<h3 class="heading">Stremio</h3>
<p style="font-size: large">
A Web Application where user can watch or upload Videos,like and
comment on other user's video,user can subsribe to other users
and enjoy many more functionalities.
</p>
<a
target="_blank"
href="https://stremiovid.herokuapp.com/"
class="btn-rounded-blue"
>View Project</a
>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
<div class="fade project shadow-large">
<div class="project-image">
<img src="images/code.jpg" />
</div>
<!-- End .project-image -->
<div class="project-info">
<h3 class="heading">Code-Editor</h3>
<p style="font-size: large">
An Online Code Editor built with ReactJS where user can create a
website with HTML,CSS and JS with Live preview,user can also
download the entire project as a zip file,also user can create
markdown file with live preview and download it.
</p>
<a
target="_blank"
href="https://pshrimal000.github.io/code-editorr"
class="btn-rounded-blue"
>View Project</a
>
</div>
<!-- End .project-info -->
</div>
<div class="fade project shadow-large">
<div class="project-image">
<img src="images/int-res.png" />
</div>
<!-- End .project-image -->
<div class="project-info">
<h3 class="heading">Interactive Resume</h3>
<p style="font-size: large">
Interactive Resume built with plain HTML, CSS, JavaScript. Ready
for a Fun Ride? Press Button to start.
</p>
<a
target="_blank"
href="https://pshrimal000.github.io/resume-interactive/"
class="btn-rounded-blue"
>View Project</a
>
</div>
<!-- End .project-info -->
</div>
<div class="fade project shadow-large">
<div class="project-image">
<img src="images/phone.png" />
</div>
<!-- End .project-image -->
<div class="project-info">
<h3 class="heading">Phonebook</h3>
<p style="font-size: large">
A Phonebook application created with Tkinter(Pyhthon GUI
Framework) and sqlite3.It includes all phonebook functionalities
like searching, deleting and editing contacts.
</p>
<a
target="_blank"
href="https://www.github.com/pshrimal000/Phonebook"
class="btn-rounded-blue"
>View Project</a
>
</div>
<!-- End .project-info -->
</div>
<div class="fade project shadow-large">
<div class="project-image">
<img src="images/2048.png" />
</div>
<!-- End .project-image -->
<div class="project-info">
<h3 class="heading">2048</h3>
<p style="font-size: large">
Classic 2048 Game made with react♥.
</p>
<a
target="_blank"
href="https://pshrimal000.github.io/2048/"
class="btn-rounded-blue"
>View Project</a
>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
</div>
</div>
</div>
<!-- End #projects -->
<div id="skills">
<h2
class="heading"
style="
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
"
>
Skills
</h2>
<ul>
<li class="fade">React</li>
<li class="fade">JavaScript</li>
<li class="fade">Python</li>
<li class="fade">Node.js</li>
<li class="fade">C++</li>
<li class="fade">MongoDB</li>
<li class="fade">PostmanAPI</li>
<li class="fade">RestAPI</li>
<li class="fade">ExpressJS</li>
<li class="fade">TensorFlow</li>
<li class="fade">keras</li>
<li class="fade">Git</li>
</ul>
</div>
<!-- End #skills -->
<div id="contact">
<h2
style="
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
"
>
Get in Touch
</h2>
<div id="contact-form">
<form method="POST" action="https://formspree.io/f/xoqyvebl">
<input
type="hidden"
name="_subject"
value="Contact request from personal website"
/>
<input
type="email"
name="_replyto"
placeholder="Your email"
required
/>
<textarea
name="message"
placeholder="Your message"
required
></textarea>
<button type="submit">Send</button>
</form>
</div>
<!-- End #contact-form -->
</div>
<!-- End #contact -->
<footer>
<div class="container">
<div class="row">
<div class="fade col-sm-5 copyright">
<p>Copyright © 2021 Ashutosh Shrimal</p>
</div>
<div class="col-sm-2 top">
<span id="to-top">
<i class="fa fa-chevron-up" aria-hidden="true"></i>
</span>
</div>
<div class="col-sm-5 social">
<ul>
<li>
<a href="https://github.com/pshrimal000" target="_blank"
><i class="fa fa-github" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://stackoverflow.com/users/13738073/pshrimal000"
target="_blank"
><i class="fa fa-stack-overflow" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/ashutosh-shrimal-8273b3174/"
target="_blank"
><i class="fa fa-linkedin" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://www.facebook.com/aashutosh.shrimal.3"
target="_blank"
><i class="fa fa-facebook" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://www.codechef.com/users/pshrimal000"
target="_blank"
><i class="fa fa-code" aria-hidden="true"></i
></a>
</li>
<!-- <li>
<a href="https://twitter.com/" target="_blank"
><i class="fa fa-twitter" aria-hidden="true"></i
></a>
</li>
<li>
<a href="https://plus.google.com/" target="_blank"
><i class="fa fa-google-plus" aria-hidden="true"></i
></a>
</li> -->
</ul>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/scripts.min.js"></script>
<script>
$(window).on("load", function () {
$(window)
.scroll(function () {
var windowBottom = $(this).scrollTop() + $(this).innerHeight();
$(".fade").each(function () {
/* Check the location of each desired element */
var objectBottom = $(this).offset().top + $(this).outerHeight();
/* If the element is completely within bounds of the window, fade it in */
if (objectBottom < windowBottom) {
//object comes into view (scrolling down)
if ($(this).css("opacity") == 0) {
$(this).fadeTo(500, 1);
}
} else {
//object goes out of view (scrolling up)
if ($(this).css("opacity") == 1) {
$(this).fadeTo(500, 0);
}
}
});
})
.scroll(); //invoke scroll-handler on page-load
});
var TxtType = function (el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = "";
this.tick();
this.isDeleting = false;
};
TxtType.prototype.tick = function () {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">' + this.txt + "</span>";
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) {
delta /= 2;
}
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === "") {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function () {
that.tick();
}, delta);
};
window.onload = function () {
var elements = document.getElementsByClassName("typewrite");
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute("data-type");
var period = elements[i].getAttribute("data-period");
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".typewrite > .wrap { border-right: 0.08em solid #fff}";
document.body.appendChild(css);
};
$(window).load(function () {
$(".preloader").fadeOut(2500);
});
</script>
</body>
</html>