-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
694 lines (658 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
685
686
687
688
689
690
691
692
693
694
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="shortcut icon" href="assets/img/logo.png" type="image/x-icon">
<!-- Remixicon -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Swiper CSS -->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css" />
<!-- CSS -->
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/media-queries.css">
<meta name="description" content="Experienced R/Shiny developer delivering successful data analysis, visualization, and machine learning projects globally — explore my portfolio on my personal website." />
<title>Jehangeer | R/Shiny Developer</title>
</head>
<body>
<!-- HEADER -->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo"><img src="assets/img/logo.png" alt=""></a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list grid">
<li class="nav__item">
<a href="#about" class="nav__link">
<i class="ri-home-5-line"></i> INTRO
</a>
</li>
<li class="nav__item">
<a href="#qualification" class="nav__link">
<i class="ri-book-open-line"></i> EXPERIENCE
</a>
</li>
<li class="nav__item">
<a href="#services" class="nav__link">
<i class="ri-briefcase-line"></i> SERVICES
</a>
</li>
<li class="nav__item">
<a href="#projects" class="nav__link">
<i class="ri-image-line"></i> PROJECTS
</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">
<i class="ri-chat-3-line"></i> CONTACT
</a>
</li>
</ul>
<!-- Close button -->
<div class="nav__close" id="nav-close">
<i class="ri-close-line"></i>
</div>
</div>
<div class="nav__buttons">
<!-- Theme change button -->
<!-- <i class="ri-moon-line change-theme" id="theme-button"></i> -->
<!-- Toggle button -->
<div class="nav__toggle" id="nav-toggle">
<i class="ri-menu-4-line"></i>
</div>
</div>
</nav>
</header>
<!-- MAIN -->
<main class="main">
<!-- HOME -->
<section id="profile" class="particle-js">
<!-- Particle.js container -->
<div id="particles-js"></div>
<div class="section__pic-container">
<img
src="./assets/img/profile.png"
alt="Jehangeer profile picture"
/>
</div>
<div class="section__text">
<p class="section__text__p1">Hello, I'm</p>
<h1 class="title">Jehangeer</h1>
<p class="section__text__p2">
R/Shiny Developer & Junior Data Scientist
</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="window.open('./assets/img/Jehangeer-CV.pdf')"
>
Download CV
</button>
<button
class="btn btn-color-1"
onclick="location.href='./#contact'"
>
Contact Info
</button>
</div>
<div id="socials-container">
<a
href="https://www.linkedin.com/in/aswanijehangeer/"
target="_blank"
class="footer__social-link"
>
<i class="ri-linkedin-box-line"></i>
</a>
<a
href="https://github.com/aswanijehangeer"
target="_blank"
class="footer__social-link"
>
<i class="ri-github-line"></i>
</a>
<a
href="https://www.instagram.com/_aswanijehangeer/"
target="_blank"
class="footer__social-link"
>
<i class="ri-instagram-line"></i>
</a>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about" class="about section">
<h2 class="section__title">About</h2>
<span class="section__subtitle">Get to know more</span>
<div class="about__container container grid">
<div class="section__pic-container">
<img src="assets/img/about-pic.jpg" alt="About pic" class="about-pic">
</div>
<div class="about-text">
<p>Hi, I'm Jehangeer. <br> <br>
A recent <strong>statistics</strong> graduate with over two years of experience as a freelance <strong>R Shiny developer</strong>. <br><br>
My job consists of helping researchers and companies to analyze and visualize their datasets. I am skilled for most data-science steps: data <strong>pre-processing</strong>, application of <strong>statistical methods</strong>, data<strong> visualization</strong>, shiny <strong>dashboards</strong>, and <strong>machine learning</strong>. <br> <br>
I'm a quick learner, always trying to improve. I've developed skills in web development and am learning Rust. 🔥 <br> <br>
I'm passionate about <strong>chess</strong> and continuously working to enhance my skills in the game. ♟️
</p>
</div>
</div>
</section>
<!-- EXPERIENCE -->
<section class="qualification section" id="qualification">
<h2 class="section__title">Experience</h2>
<span class="section__subtitle">Education & Experience</span>
<div class="qualification__container container grid section__border">
<!-- Education -->
<div class="qualification__content">
<h3 class="qualification__title">
Education <i class="ri-pencil-ruler-2-line"></i>
</h3>
<div class="qualification__info">
<div>
<h3 class="qualification__name">Bachelor's in Statistics</h3>
<span class="qualification__country"
>Quaid-e-Azam University - Islamabad</span
>
<span class="qualification__year">2018 - 2023</span>
</div>
<div>
<h3 class="qualification__name">Learning Something Great 😉</h3>
<span class="qualification__country"
>We continue learning everyday.</span
>
<span class="qualification__year">Currently</span>
</div>
</div>
</div>
<!-- Experience -->
<div class="qualification__content">
<h3 class="qualification__title">
Work <i class="ri-building-line"></i>
</h3>
<div class="qualification__info">
<div>
<h3 class="qualification__name">
R/Shiny & Junior Data Scientist
</h3>
<span class="qualification__country">UpWork - Freelance</span>
<span class="qualification__year">Jul 2021 - Present</span>
</div>
</div>
</div>
</div>
<!-- Skills -->
<!-- <h2 class="section__title skills">Skills</h2> -->
<span class="section__subtitle"> Areas of Expertise </span>
<div class="skills__container container grid section__border">
<div class="skills__content">
<h3 class="skills__title">
RShiny & Data Analytics<i class="ri-bar-chart-box-fill"></i>
</h3>
<div class="skills__info">
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/favicon.png" alt="RStudio"/>
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/shiny.png" alt="R Shiny" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/rhino.png" alt="Rhino" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/mysql.svg" alt="MySQL" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/git-icon.svg" alt="Git" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/linux.png" alt="Linux" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
</div>
</div>
<!-- SKILLS 2 -->
<div class="skills__content">
<h3 class="skills__title">
Web Development<i class="ri-braces-fill"></i>
</h3>
<div class="skills__info">
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/html-1.svg" alt="HTML" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/css-3.svg" alt="CSS" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img
src="assets/img/logo-javascript.svg"
alt="JavaScript"
/>
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
<div class="skills__data">
<div class="skills__blob">
<img src="assets/img/vscode.png" alt="VS Code" />
</div>
<h3 class="skills__name"></h3>
<span class="skills__subtile"></span>
</div>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section class="services section" id="services">
<h2 class="section__title">Services</h2>
<span class="section__subtitle">
Let me help make better use of your data.
</span>
<div class="services__container container grid section__border">
<div class="services__card">
<i class="ri-search-line"></i>
<h2 class="services__title">Data Analysis</h2>
<p class="services__description">
Data exploration, application of statistical methods, reproducible
data analysis.
</p>
<div class="services__border"></div>
</div>
<div class="services__card">
<i class="ri-bar-chart-fill"></i>
<h2 class="services__title">Data<br />Visualization</h2>
<p class="services__description">
Creation of static and interactive dataviz and dashboards, review
of scientific figures.
</p>
<div class="services__border"></div>
</div>
<div class="services__card">
<i class="ri-code-s-slash-line"></i>
<h2 class="services__title">RShiny <br />Development</h2>
<p class="services__description">
Dynamic R Shiny solutions for immersive data visualization and
actionable insights.
</p>
<div class="services__border"></div>
</div>
</div>
</section>
<!-- PROJECTS -->
<section class="projects section" id="projects">
<h2 class="section__title">Projects</h2>
<span class="section__subtitle"
>A glimpse of the projects I've been working on
</span>
<div class="container section__border">
<div class="projects__container swiper">
<div class="swiper-wrapper">
<!-- PROJECT 01 -->
<div class="projects__content swiper-slide">
<img
src="assets/img/chess-grandmasters.png"
alt="Project 01"
class="projects__img"
/>
<div>
<span class="projects__subtitle">Shiny Application</span>
<h1 class="projects__title">Chess Grand Masters</h1>
<a href="https://github.com/aswanijehangeer/Chess-Grandmaster-Shiny-App"
target="_blank"
class="projects__button">
Live <i class="ri-arrow-right-line"> </i>
</a>
</div>
</div>
<!-- PROJECT 02 -->
<div class="projects__content swiper-slide">
<img
src="assets/img/bike-collisions-dashboard.png"
alt="Project 02"
class="projects__img"
/>
<div>
<span class="projects__subtitle">Shiny Dashboard</span>
<h1 class="projects__title">London Bike Collisions</h1>
<a href="https://github.com/aswanijehangeer/London-Bike-Collisions-Dashboard"
target="_blank"
class="projects__button">
Live <i class="ri-arrow-right-line"> </i>
</a>
</div>
</div>
<!-- PROJECT 03 -->
<div class="projects__content swiper-slide">
<img
src="assets/img/ChessGMsdata.png"
alt="Project 03"
class="projects__img"
/>
<div>
<span class="projects__subtitle">R Package</span>
<h1 class="projects__title">ChessGMsdata</h1>
<a href="https://github.com/aswanijehangeer/ChessGMsdata"
target="_blank"
class="projects__button">
Live <i class="ri-arrow-right-line"> </i>
</a>
</div>
</div>
<!-- PROJECT 04 -->
<div class="projects__content swiper-slide">
<img
src="assets/img/global-cereal-production.png"
alt="Project 04"
class="projects__img"
/>
<div>
<span class="projects__subtitle">Shiny Application</span>
<h1 class="projects__title">Global Cereal Production</h1>
<a href="https://github.com/aswanijehangeer/Shiny-App-Global-Cereal-Production"
target="_blank"
class="projects__button">
Live <i class="ri-arrow-right-line"> </i>
</a>
</div>
</div>
<!-- PROJECT 05 -->
<div class="projects__content swiper-slide">
<img
src="assets/img/sales-dashbaord.png"
alt="Project 04"
class="projects__img"
/>
<div>
<span class="projects__subtitle">Shiny Dashboard</span>
<h1 class="projects__title">Sales Dashboard</h1>
<a href="https://github.com/aswanijehangeer/European-Sales-Shiny-Dashboard"
target="_blank"
class="projects__button">
Live <i class="ri-arrow-right-line"> </i>
</a>
</div>
</div>
</div>
<!-- Swiper arrows -->
<div class="swiper-button-next">
<i class="ri-arrow-right-s-line"></i>
</div>
<div class="swiper-button-prev">
<i class="ri-arrow-left-s-line"></i>
</div>
<!-- Swiper pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- TESTIMONIAL -->
<section class="testimonial section">
<h2 class="section__title">Testimonials</h2>
<span class="section__subtitle">Voices of Appreciation</span>
<div class="container section__border">
<div class="testimonial__container swiper">
<div class="swiper-wrapper">
<!-- Testimonial 01 -->
<div class="testimonial__content swiper-slide">
<p class="testimonial__description">
"I recommend Jehangeer for his very good expertise in RShiny development. Over the past two years, I've witnessed his dedication and passion shine through in every RShiny project he undertakes, showcasing his commitment to delivering high-quality solutions. His impressive GitHub portfolio and personal website demonstrate his expertise in creating RShiny projects that make an impact."
</p>
<div>
<h3 class="testimonial__name">Dr. Zahid Asghar</h3>
<span class="testimonial__subtitle">Professor - School of Economics, QAU</span>
</div>
</div>
<!-- Testimonial 02 -->
<div class="testimonial__content swiper-slide">
<p class="testimonial__description">
"Working with Jehangeer was a great experience. He was a quick
to understand my project needs and had a working draft quickly
after our first discussion. I learned a lot from the code he
produced and would look forward to working together again.
Thanks Jehangeer!"
</p>
<div>
<h3 class="testimonial__name">Benjamin Meyer</h3>
<span class="testimonial__subtitle">UpWork Client</span>
</div>
</div>
<!-- Testimonial 03 -->
<div class="testimonial__content swiper-slide">
<p class="testimonial__description">
"Jehangeer is honest about their expertise, polite, and a good
communicator. He has completed the necessary work,
communicated clearly, and shown flexibility. I would recommend
him and would work with him again."
</p>
<div>
<h3 class="testimonial__name">William Harrington</h3>
<span class="testimonial__subtitle">UpWork Client</span>
</div>
</div>
<!-- Testimonial 04 -->
<div class="testimonial__content swiper-slide">
<p class="testimonial__description">
"Jehangeer is an amazing person to work with! Always
available, cooperative and patient, he explained everything
until it was crystal-clear. He knows R very well. I highly
recommend him - you won't be disappointed!"
</p>
<div>
<h3 class="testimonial__name">Eva Apostolopoulou</h3>
<span class="testimonial__subtitle">UpWork Client</span>
</div>
</div>
<!-- Testimonial 05 -->
<div class="testimonial__content swiper-slide">
<p class="testimonial__description">
"Jehangeer tutored my neice in R-Studio - he was extremely
helpful and patient, and possesses great subject-matter
expertise. Jehangeer was able to assist immediately and fit
into our tight time schedule which was superb. Thank you,
Jenhangeer!"
</p>
<div>
<h3 class="testimonial__name">Karl Mit</h3>
<span class="testimonial__subtitle">UpWork Client</span>
</div>
</div>
</div>
<!-- Swiper arrows -->
<div class="swiper-button-next">
<i class="ri-arrow-right-s-line"></i>
</div>
<div class="swiper-button-prev">
<i class="ri-arrow-left-s-line"></i>
</div>
</div>
</div>
<img
src="assets/img/testimonial-pic.png"
alt="Testimonial Image"
class="testimonial__img"
/>
</section>
<!-- CONTACT -->
<section class="contact section" id="contact">
<h2 class="section__title">Contact Me</h2>
<span class="section__subtitle">Get in Touch</span>
<div class="contact__container container grid section__border">
<div class="contact__content">
<h3 class="contact__title">
Talk to me <i class="ri-chat-3-line"></i>
</h3>
<div class="contact__info">
<div class="contact__data">
<span class="contact__data-title">Email</span>
<span class="contact__data-info"
>[email protected]</span
>
</div>
<div class="contact__data">
<span class="contact__data-title">Whatsapp</span>
<span class="contact__data-info">+92 3353711462</span>
<a
href="https://api.whatsapp.com/send?phone=923353711462&text=Hello, more information!"
target="_blank"
class="contact__button"
>
Write me <i class="ri-arrow-right-line"></i
></a>
</div>
<div class="contact__data">
<span class="contact__data-title">LinkedIn</span>
<span class="contact__data-info">@aswanijehangeer</span>
<a
href="https://www.linkedin.com/in/aswanijehangeer/"
target="_blank"
class="contact__button"
>
Write me <i class="ri-arrow-right-line"></i>
</a>
</div>
</div>
</div>
<div class="contact__content">
<h3 class="contact__title">
Tell Me About Your Project <i class="ri-send-plane-line"></i>
</h3>
<form class="contact__form" id="contact-form">
<div class="contact__form-div">
<label class="contact__form-tag">Name</label>
<input
type="text"
name="user_name"
required
placeholder=""
class="contact__form-input"
id="contact-name"
/>
</div>
<div class="contact__form-div">
<label class="contact__form-tag">Email</label>
<input
type="email"
name="user_email"
required
placeholder=""
class="contact__form-input"
id="contact-email"
/>
</div>
<div class="contact__form-div contact__form-area">
<label for="" class="contact__form-tag">Message</label>
<textarea
name="user_message"
id="contact-project"
class="contact__form-input"
></textarea>
</div>
<p class="contact__message" id="contact-message"></p>
<button type="submit" class="contact__button">
Submit <i class="ri-arrow-right-up-line"></i>
</button>
</form>
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="footer__container container">
<h1 class="footer__title">Jehangeer</h1>
<p>R/Shiny Developer & Junior Data Scientist</p>
<ul class="footer__list">
<li>
<a href="#" class="footer__link">Home</a>
</li>
<li>
<a href="#qualification" class="footer__link">Experience</a>
</li>
<li>
<a href="#projects" class="footer__link">Projects</a>
</li>
</ul>
<ul class="footer__social">
<a
href="https://www.linkedin.com/in/aswanijehangeer/"
target="_blank"
class="footer__social-link"
>
<i class="ri-linkedin-box-line"></i>
</a>
<a
href="https://github.com/aswanijehangeer"
target="_blank"
class="footer__social-link"
>
<i class="ri-github-line"></i>
</a>
<a
href="https://www.instagram.com/_aswanijehangeer/"
target="_blank"
class="footer__social-link"
>
<i class="ri-instagram-line"></i>
</a>
</ul>
<span class="footer__copy">
Copyright © 2023 Jehangeer. All Rights Reserved
</span>
</div>
</footer>
<!-- SCROLL UP -->
<a href="#" class="scrollup" id="scroll-up">
<i class="ri-arrow-up-line"></i>
</a>
<!-- SCROLLREVEAL -->
<!-- <script src="assets/js/scrollreveal.min.js"></script> -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- SWIPER JS -->
<script src="assets/js/swiper-bundle.min.js"></script>
<!-- EMAIL JS -->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
<!-- Particle JS -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- MAIN JS -->
<script src="assets/js/main.js"></script>
</body>
</html>