-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
684 lines (545 loc) · 27.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Find out what Manas Makde is upto">
<link rel="stylesheet" type="text/css" href="styles.css" />
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"> -->
<title>Manas Makde | Portfolio</title>
<style>
#project_fullscreen_wrapper {
position: absolute;
height: 100%;
width: 100%;
opacity: 0;
pointer-events: none;
z-index: 5;
transition: opacity 0.1s ease-in;
}
.project_fullscreen_open {
opacity: 1 !important;
pointer-events: auto !important;
}
</style>
</head>
<body>
<div id="option_dark"></div>
<!-- <input type="checkbox" id="theme_btn"> -->
<div id="menu_bar">
<div id="hamburger">
<div class="hamline"></div>
</div>
<h1>Manas <div>Makde</div>
</h1>
<div class="options">
<a onclick="window.scrollTo({top: 0, behavior: 'smooth'});toggle_options(false)"
id="option_intro">Welcome</a>
<a onclick="view_option_item(1)" id="option_contact">About</a>
<a onclick="view_option_item(2)" id="option_skills">Skillset</a>
<a onclick="view_option_item(3)" id="option_projects">Projects</a>
<a onclick="view_option_item(4)" id="option_contact">Experience</a>
<a onclick="view_option_item(5);toggle_options(false)" id="option_contact" class="hidden_option">Contact</a>
</div>
</div>
<div id="right_content">
<div id="project_fullscreen_wrapper">
<div id="project_fullscreen">
<div id="proj_screen" onclick="event.stopPropagation()">
<div id="proj_close"></div>
<div id="proj_title"></div>
<img src="">
<div id="proj_tools"></div>
<div id="proj_description"></div>
<div id="proj_links"></div>
</div>
</div>
</div>
<div id="intro_wrapper" class="absolute_sticky option_item">
<div id="profile_wrapper" class="animate_hidden">
<!-- Inspecting the code just for my picture? How sweet -->
<img src="Images/Profile.jpg" ondragstart="(event)=>{event.preventDefault();return false;}">
</div>
<div class="typed_container">
<p><span class="typed-text"></span><span class="cursor"> </span></p>
</div>
<ul class="intro_txt animate_hidden">
<li>My name is Manas R. Makde</li>
<li>I've been developing software for 5+ years.</li>
<li>Freelancing Web, App & Game developer.</li>
</ul>
<div class="arrow">
<div></div>
<div></div>
<div></div>
</div>
</div>
<div id="about_wrapper" class="option_item">
<h1><span>About</span></h1>
<div class="quote">
<h1>
I dream of painting and then I paint my dream
</h1>
<i>- Vincent van Gogh</i>
</div>
<div class="about animate_hidden">
<div class="about_content">
<b>Who Am I?</b>
<br>
<br>
Just an enthusiastic & ambitious programmer bringing ideas to life. <br>
I create websites, apps, video games, 3D automation, etc you name it! <br><br>
I enjoy making visual software that people can interact with <br>
and aspiring to build something that the world has never seen before.
</div>
</div>
<div class="interests animate_hidden">
<h2>Interests</h2>
<ul>
<li>Game Development</li>
<li>Sketching & Art work</li>
<li>Gym & Exercise</li>
<li>Basketball & Badminton</li>
<li>All genres of music</li>
</ul>
</div>
<div class="education animate_hidden">
<h2>Education</h2>
<ul>
<li>
<div>
Vellore Institue of Technology<br>
<span>BTech CSE | 2020 - 2024</span>
</div>
</li>
<li>
<div>
Atomic Energy Central School Indore<br>
<span>Secondary | 2014 - 2019</span>
</div>
</li>
<li>
<div>
Atomic Energy Central School-2 Mumbai<br>
<span>Primary | 2011 - 2013</span>
</div>
</li>
<li>
<div>
Easterly Parkway Elementary, Pennsylvania<br>
<span>kindergarten | 2009 - 2010</span>
</div>
</li>
</ul>
</div>
</div>
<div id="skills_wrapper" class="option_item">
<div class="skills_container">
<h1>Skillset</h1>
<div class="skill_category animate_hidden">
<h2>Game Development</h2>
<hr>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Godot.png';">
<div>Godot</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Unity.png';">
<div>Unity</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Blender.png';">
<div>Blender</div>
</div>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/BlenderScripting.png';">
<div>Blender Scripting</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Photoshop.png';">
<div>Photoshop</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/PremierePro.png';">
<div>Premiere Pro</div>
</div>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Aseprite.png';">
<div>Aseprite</div>
</div>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Gimp.png';">
<div>Gimp</div>
</div>
</div>
<div class="skill_category animate_hidden">
<h2>Web & App Development</h2>
<hr>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/ReactNative.png';">
<div>React Native</div>
</div>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Redux.png';">
<div>Redux</div>
</div>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/AndroidStudio.png';">
<div>Android Studio</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Reactjs.png';">
<div>React.js</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Nextjs.png';">
<div>Next.js</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Sass.png';">
<div>Sass</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/EJS.png';">
<div>EJS</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/JavaScript.png';">
<div>JavaScript</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/CSS3.png';">
<div>CSS3</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/HTML5.png';">
<div>HTML5</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Extension.png';">
<div>Extensions</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Netlify.png';">
<div>Netlify</div>
</div>
</div>
<div class="skill_category animate_hidden">
<h2 class="h2_right">Backend Development</h2>
<hr>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Nodejs.png';">
<div>Node.js</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Php.png';">
<div>Php</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/MongoDB.png';">
<div>MongoDB</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/MySQL.png';"
style="filter:brightness(150%) staturate(1.5)">
<div>MySQL</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/JWT.png';">
<div>JWT</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Python.png';">
<div>Python</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Selenium.png';">
<div>Selenium</div>
</div>
<div class="skill_card skill_card_no_pad">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/SeleniumOld.png';">
<div>Selenium<br>(C#)</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Postman.png';">
<div>Postman</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Heroku.png';">
<div>Heroku</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Cyclic.png';">
<div>Cyclic.sh</div>
</div>
</div>
<div class="skill_category animate_hidden">
<h2>Additional</h2>
<hr>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Cpp.png';">
<div>C++</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/C_Hash.png';">
<div>C#</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Pillow.png';">
<div>Pillow</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Tkinter.png';">
<div>Tkinter</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Matplotlib.png';">
<div>Matplotlib</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Numpy.png';">
<div>Numpy</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Pyglet.png';">
<div>Pyglet</div>
</div>
<div class="skill_card">
<img src="" onError="this.onerror=null;this.src='Images_Bkup/Turbo.png';">
<div>Turbo C++</div>
</div>
</div>
<h3 style="color: rgb(255 255 255 / 50%);font-size:100%"> & much more left to learn... </h3>
</div>
</div>
<div id="projects_wrapper" class="option_item">
<h1>Projects</h1>
<div id="projects_container">
<div class="project_card">
<div class="project_expand"></div>
<div class="project_heading">
<img src="Images/TennysonTacticalTraining.png">
<div class="project_title">Tennyson Tactical Training</div>
</div>
<div class="project_details">
<div class="p_tools">Godot</div>
<div class="p_description">
My first game / learning project to test the limits of godot, The idea behind it was to make
an actual functioning omnitrix
which rewrites the code of the wearer based on selected character species.
The player must unlock all the genetic samples and use their abilities to complete all the
levels to unlock a hidden mission where you meet an old friend.
</div>
<div class="p_links">
<a href="https://github.com/ManasMakde/tennyson-tactical-training" target="_blank">Visit Git
Repo</a>
</div>
</div>
</div>
<div class="project_card">
<div class="project_expand"></div>
<div class="project_heading">
<img src="Images/Tetris_MainMenu.png">
<div class="project_title">Turbo Tetris</div>
</div>
<div class="project_details">
<div class="p_tools">Turbo C++</div>
<div class="p_description">
An old yet cherished project of mine, an entire tetris game made pixel by pixel.
This game was the very foundation of my confidence in programming, A testament that anything
can be made as long as you can visualize it. I still count this game as one of my greatest
achievements.
</div>
<div class="p_links">
<a href="https://github.com/ManasMakde/Turbo-Tetris" target="_blank">Visit Git Repo</a>
</div>
</div>
</div>
<div class="project_card">
<div class="project_expand"></div>
<div class="project_heading">
<img src="Images/Paint_Example.png">
<div class="project_title">Turbo Paint</div>
</div>
<div class="project_details">
<div class="p_tools">Turbo C++</div>
<div class="p_description">
Another old project, A simple paint application made pixel by pixel to draw, store & import.
It allowed the user to draw shapes such as lines, squares, circles, etc.
It was a pinnacle in understanding how graphics rudimentarily work on computers.
</div>
<div class="p_links">
<a href="https://github.com/ManasMakde/Turbo-Paint" target="_blank">Visit Git Repo</a>
</div>
</div>
</div>
<div class="project_card">
<div class="project_expand"></div>
<div class="project_heading">
<img src="Images/CodeSnipit.png">
<div class="project_title">CodeSnipit</div>
</div>
<div class="project_details">
<div class="p_tools">Next.js 13, MongoDB</div>
<div class="p_description">
A website to store small reusable code segments to copy paste into your project without
wasting any time.
</div>
<div class="p_links">
<a href="https://www.codesnipit.net/" target="_blank">Visit Site</a>
</div>
</div>
</div>
<div class="project_card">
<div class="project_expand"></div>
<div class="project_heading">
<img src="Images/VBB_Example.png">
<div class="project_title"> Virtual Bulletin Board </div>
</div>
<div class="project_details">
<div class="p_tools">HTML, CSS, JavaScript</div>
<div class="p_description">
My very first website, I made to apply my skills & test the limits of raw HTML, CSS &
Javascript.
Inspired by detective bulletin boards in vintage movies, It can be used to format data into
a visual interconnectable format using simple items like profiles, notes, pins & frames.
</div>
<div class="p_links">
<a href="https://manasmakde.github.io/Virtual-Bulletin-Board" target="_blank">Visit Site</a>
<a href="https://github.com/ManasMakde/Virtual-Bulletin-Board" target="_blank">Visit Git
Repo</a>
</div>
</div>
</div>
<div class="project_card">
<div class="project_expand"></div>
<div class="project_heading">
<img src="Images/DeadsimpleCalendar.jpg">
<div class="project_title">Deadsimple Calendar Widget</div>
</div>
<div class="project_details">
<div class="p_tools">JavaScript, React Native</div>
<div class="p_description">
A small react native calendar widget ready to go out of the box
</div>
<div class="p_links">
<a href="https://github.com/ManasMakde/react-native-deadsimple-calendar" target="_blank">Visit Git Repo</a>
<a href="https://www.npmjs.com/package/react-native-deadsimple-calendar" target="_blank">Visit npm</a>
</div>
</div>
</div>
</div>
</div>
<div id="exp_wrapper" class="option_item">
<div id="exp_timeline"></div>
<h1>Experience</h1>
<div class="exp_card">
<div class="exp_content animate_hidden">
<img src="Images/Internship.jpg">
<div class="exp_description">
<h2>
Internship at IIT Indore
</h2>
<div class="exp_txt">
<div class="exp_tools">Python, Pyvisa, Tkinter</div>
An opportunity to design & build a temperature dependent dielectric measurements interface
application.
<br>
<br>
The task of the internship was to create a software that varies the temperature of a sample
through an aglorithm
while balancing it at certain points to read and store measurements data. The project was
then used to automate
the entire process within subsequent measurement experiments.
<br>
<br>
<a style="color:inherit"
href="https://www.linkedin.com/feed/update/urn:li:activity:7092177145912791041/">View
Certification</a>
</div>
</div>
</div>
</div>
<div class="exp_card">
<div class="exp_content animate_hidden">
<img src="Images/Rentux.png">
<div class="exp_description">
<h2>
Rentux Prototype Website
</h2>
<div class="exp_txt">
<div class="exp_tools">HTML, CSS, Javascript, Git Manager, Next.js</div>
I designed a website for a renting based company. Roles such as orgranizing data,
updating information, tracking bookings, etc were undertaken.
The entire site was hosted on github and any additional entry was updated on the server via
git manger.
</div>
</div>
</div>
</div>
<div class="exp_card">
<div class="exp_content animate_hidden">
<img src="Images/SportzfyWebsite.png">
<div class="exp_description">
<h2> Sportzfy Website</h2>
<div class="exp_txt">
<div class="exp_tools">HTML, CSS, Javascript</div>
A synthetic turf based organization hosting various sports activities hired me to design and
deploy their fullstack website.
The site contains details about the turf and it's whereabouts along with the contact for
booking. It also displays ongoing events
and offers which the customer can avail.
</div>
</div>
</div>
</div>
<div class="exp_card exp_portrait">
<div class="exp_content animate_hidden">
<img src="Images/SportzfyApp.jpg">
<div class="exp_description">
<h2>Sportzfy App</h2>
<div class="exp_txt">
<div class="exp_tools">React Native, Context API</div>
This app is an extension of the website, designed for the owners to manage booking queries
such as adding, updating, canceling verifying, etc. The app also allows the information on
the site to be updated such as a notice for a new event or offer.
<br>
<br>
All this while keeping in sync between all the managers and relaying information between
them to avoid clashing of schedule.
</div>
</div>
</div>
</div>
</div>
<div id="contact_wrapper" class="option_item">
<div class="contact_title">
<div class="arrow_wrapper">
<img src="Images/Arrow.png">
</div>
<div class="contact_heading">
</div>
</div>
<div class="contact_container">
<a href="https://github.com/ManasMakde">
<i class="fab fa-github"></i>
</a>
<a href="https://www.instagram.com/manas_makde/">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/manas-makde/">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://join.skype.com/invite/wpCe3x4i9YHc">
<i class="fab fa-skype"></i>
</a>
<a href="mailto:[email protected]">
<i class="fab fa-envelope"></i>
</a>
</div>
</div>
</div>
<script defer src="script.js"></script>
</body>
</html>