-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
906 lines (878 loc) · 62.2 KB
/
index.html
File metadata and controls
906 lines (878 loc) · 62.2 KB
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
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
<!doctype html>
<html lang="en" data-safeMod="false" data-autoHideScrollbar="true" data-safeModPageInAnimation="fadeIn" data-inAnimation="fadeInUp" data-outAnimation="fadeOutDownBig" data-cover-h1-tune=".85" data-cover-h2-tune="2.3" data-cover-h3-tune=".6" data-cover-h3-span-tune=".8" data-twitter-name="pixelwarsdesign">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Fadil R — AI-Driven PHP / Symfony Developer in Mauritius</title>
<meta name="description" content="Got an idea? I build & ship it. AI-augmented PHP / Symfony developer in Mauritius — web apps, mobile, DevOps & cloud. 10+ years shipping production.">
<meta name="author" content="Fadil Rosun-Mungur (fadilxcoder)">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<meta name="googlebot" content="index, follow">
<link rel="canonical" href="https://fadilxcoder.github.io/">
<!-- Local SEO (Mauritius) -->
<meta name="geo.region" content="MU">
<meta name="geo.placename" content="Mauritius">
<meta name="ICBM" content="-20.348404, 57.552152">
<!-- Open Graph -->
<meta property="og:type" content="profile">
<meta property="og:site_name" content="Fadil R — fadilxcoder">
<meta property="og:title" content="Fadil R — AI-Driven PHP / Symfony Developer in Mauritius">
<meta property="og:description" content="Tell me the idea, I build & deploy it. AI-augmented developer in Mauritius — PHP / Symfony, mobile, DevOps & cloud. 10+ years shipping production.">
<meta property="og:url" content="https://fadilxcoder.github.io/">
<meta property="og:image" content="https://fadilxcoder.github.io/images/site/og-image.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Fadil R — AI-Driven Web Developer in Mauritius. PHP / Symfony, Mobile, DevOps.">
<meta property="og:locale" content="en_US">
<meta property="profile:first_name" content="Fadil">
<meta property="profile:last_name" content="Rosun-Mungur">
<meta property="profile:username" content="fadilxcoder">
<!-- Twitter / X Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Fadil R — AI-Driven PHP / Symfony Developer in Mauritius">
<meta name="twitter:description" content="Tell me the idea, I build & deploy it. AI-augmented developer in Mauritius — PHP / Symfony, mobile, DevOps & cloud. 10+ years shipping production.">
<meta name="twitter:image" content="https://fadilxcoder.github.io/images/site/og-image.jpg">
<meta name="twitter:image:alt" content="Fadil R — AI-Driven Web Developer in Mauritius. PHP / Symfony, Mobile, DevOps.">
<!-- PWA / mobile -->
<meta name="theme-color" content="#1a1a1a">
<meta name="apple-mobile-web-app-title" content="Fadil R">
<meta name="application-name" content="Fadil R">
<meta name="format-detection" content="telephone=no">
<link rel="manifest" href="/manifest.webmanifest">
<!-- Icons -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="shortcut icon" href="/favicon.png">
<!-- Resource hints -->
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="dns-prefetch" href="https://www.googletagmanager.com">
<link rel="dns-prefetch" href="https://ajax.googleapis.com">
<link rel="preload" as="image" href="images/site/cover.jpg" fetchpriority="high">
<!-- FONTS (consolidated, font-display: swap) -->
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Alfa+Slab+One|Nixie+One|Raleway:200,800|Tulpen+One|Sacramento&display=swap" rel="stylesheet">
<!-- STYLES -->
<link rel="stylesheet" type="text/css" media="print" href="css/print.css">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link rel="stylesheet" type="text/css" href="css/book.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/jquery.fancybox-1.3.4.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link class="cover-skin" rel="stylesheet" type="text/css" href="css/skins/cover/standart.css">
<link class="base-skin" rel="stylesheet" type="text/css" href="css/skins/base/clean.css">
<link class="paper-bg-skin" rel="stylesheet" type="text/css" href="css/skins/paper-bg/cream-dust.css">
<link class="body-bg-skin" rel="stylesheet" type="text/css" href="css/skins/body-bg/wood.css">
<!-- Modernizr is required at runtime by main.js for css-transform feature detection -->
<script src="js/modernizr.js" defer></script>
<!--[if lte IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/selectivizr-min.js"></script>
<![endif]-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-11NB32DC03"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-11NB32DC03');
</script>
<!-- Structured data: Person -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://fadilxcoder.github.io/#person",
"name": "Fadil Rosun-Mungur",
"alternateName": ["Fadil R", "fadilxcoder"],
"url": "https://fadilxcoder.github.io/",
"image": "https://fadilxcoder.github.io/images/site/og-image.jpg",
"jobTitle": "AI-Driven Senior PHP / Symfony Web Architect & Full-Stack Developer",
"description": "AI-augmented senior PHP / Symfony web architect and full-stack developer based in Mauritius. Hand me an idea — I architect, build, ship and deploy the product. 10+ years across web apps, SaaS, e-commerce, mobile apps, REST/GraphQL APIs and DevOps, now turbo-charged with AI tooling.",
"email": "mailto:fadilrm@hotmail.com",
"address": {
"@type": "PostalAddress",
"addressCountry": "MU",
"addressRegion": "Mauritius"
},
"worksFor": {
"@type": "Organization",
"name": "BOCASAY (Maurice) Limitée"
},
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "Université des Mascareignes"
},
{
"@type": "CollegeOrUniversity",
"name": "Université de Limoges"
}
],
"knowsAbout": [
"AI-augmented development", "AI-driven web development", "Vibe coding",
"LLM-assisted coding", "GitHub Copilot", "Claude Code", "Cursor",
"AI integration into web apps", "OpenAI API", "Anthropic API",
"PHP", "Symfony", "API Platform", "Laravel", "Lumen", "CodeIgniter",
"WordPress", "PrestaShop", "Hexagonal Architecture", "REST API", "GraphQL",
"Microservices", "Elasticsearch", "Redis", "MySQL", "PostgreSQL", "MongoDB",
"Docker", "Kubernetes", "CI/CD", "GitHub Actions", "GitLab CI", "DevOps",
"Golang", "Python", "Node.js", "TypeScript", "Vue.js", "React",
"Android development", "Flutter", "Apache Cordova", "Adobe PhoneGap",
"Progressive Web Apps", "WebSockets", "Mercure", "Firebase",
"Stripe", "MCB payment gateway", "Cybersecurity", "Penetration testing"
],
"knowsLanguage": ["en", "fr"],
"nationality": {
"@type": "Country",
"name": "Mauritius"
},
"sameAs": [
"https://github.com/fadilxcoder",
"https://gitlab.com/fadil.xcoder",
"https://dev.to/fadilxcoder",
"https://packagist.org/users/fadilxcoder/",
"https://www.facebook.com/fadil.xcoder",
"https://g.dev/fadilxcoder",
"https://goo.gl/rdJ2yn"
]
}
</script>
<!-- Structured data: WebSite -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"@id": "https://fadilxcoder.github.io/#website",
"url": "https://fadilxcoder.github.io/",
"name": "Fadil R — AI-Driven Web Developer in Mauritius",
"description": "Portfolio of Fadil R (fadilxcoder), AI-augmented senior PHP / Symfony web architect & full-stack developer in Mauritius — building web apps, mobile apps, APIs and DevOps pipelines from idea to live product.",
"inLanguage": "en",
"author": { "@id": "https://fadilxcoder.github.io/#person" },
"publisher": { "@id": "https://fadilxcoder.github.io/#person" }
}
</script>
<!-- Structured data: ProfessionalService (local SEO Mauritius) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfessionalService",
"@id": "https://fadilxcoder.github.io/#service",
"name": "fadilxcoder — AI-Augmented Web Development Services in Mauritius",
"description": "AI-augmented web development services in Mauritius. You describe the idea — I architect, build, test and deploy. Custom web apps, SaaS, e-commerce, REST/GraphQL APIs, Android apps, DevOps pipelines and cloud deployment, accelerated with AI tooling (Claude, GitHub Copilot, Cursor).",
"url": "https://fadilxcoder.github.io/",
"image": "https://fadilxcoder.github.io/images/site/og-image.jpg",
"provider": { "@id": "https://fadilxcoder.github.io/#person" },
"areaServed": [
{ "@type": "Country", "name": "Mauritius" },
{ "@type": "Place", "name": "Worldwide (remote)" }
],
"serviceType": [
"AI-augmented web development",
"AI-assisted product engineering",
"Custom website development",
"Web application development",
"E-commerce development (PrestaShop, custom)",
"SaaS development (multi-tenant)",
"REST and GraphQL API development",
"Symfony and Laravel development",
"Android mobile app development",
"DevOps and CI/CD pipelines",
"Cloud deployment and hosting",
"Database design and tuning",
"API integration",
"LLM / AI integration into web apps"
],
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "AI-Augmented Web Development Services",
"itemListElement": [
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "AI-augmented full-stack development", "serviceType": "AI-driven engineering" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "LLM / AI integration into web apps", "serviceType": "AI integration" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Custom website development", "serviceType": "Web design" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Symfony / API Platform application", "serviceType": "Backend development" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "SaaS platform development", "serviceType": "Product engineering" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "E-commerce development", "serviceType": "E-commerce" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "DevOps & CI/CD setup", "serviceType": "DevOps" } },
{ "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Android mobile app development", "serviceType": "Mobile development" } }
]
}
}
</script>
<!-- Structured data: BreadcrumbList (URLs match in-page nav with SPA hash routing) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://fadilxcoder.github.io/#/home" },
{ "@type": "ListItem", "position": 2, "name": "Resume", "item": "https://fadilxcoder.github.io/#/resume" },
{ "@type": "ListItem", "position": 3, "name": "Portfolio", "item": "https://fadilxcoder.github.io/#/portfolio" },
{ "@type": "ListItem", "position": 4, "name": "Contact", "item": "https://fadilxcoder.github.io/#/contact" }
]
}
</script>
</head>
<body>
<section class="main" role="main" aria-label="Fadil R portfolio">
<div id="rm-container" class="rm-container rm-closed">
<header id="header">
<nav aria-label="Primary">
<ul>
<li><a href='#/home' aria-label="Home"></a></li>
<li><a href='#/resume' aria-label="Resume"></a></li>
<li><a href='#/portfolio' aria-label="Portfolio"></a></li>
<li><a href='#/contact' aria-label="Contact"></a></li>
</ul>
</nav>
</header>
<div class="rm-wrapper">
<div class="rm-cover">
<div id="home" class="rm-front page" role="region" aria-label="Home">
<h1 style="position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden;">
Fadil R — AI-Driven Senior PHP / Symfony Web Architect & Full-Stack Developer in Mauritius. Tell me the idea, I build & deploy it.
</h1>
<div class="antiscroll-wrap">
<div class="antiscroll-inner">
<div class="cover">
<div class="cover-image-holder">
<img src="images/site/cover.jpg" alt="Fadil R — PHP / Symfony web architect and full-stack developer based in Mauritius" fetchpriority="high">
</div>
<h1>PHP</h1>
<h1>Symfony</h1>
<h1>🎮 💻 🎧 ☕</h1><br>
<h1>Web Architect</h1>
<h1>App Developer</h1>
<a href="#/resume" class="rm-button-open ribbon">
<span class="ribbon-stitches-top"></span>
<strong class="ribbon-content">CLICK ME !</strong>
<span class="ribbon-stitches-bottom"></span>
</a>
</div>
</div>
</div>
</div>
<div id="resume" class="rm-back page">
<div class="antiscroll-wrap">
<div class="antiscroll-inner">
<div class="content">
<h2><span>WHO AM I ?</span></h2>
<h4 class="about-text">
I am <strong>M. Fadil Rosun-Mungur</strong>, a seasoned <strong>PHP / Symfony Developer</strong>, Web Architect, and Beginner DevOps Engineer, with over 10 years of experience in full-stack development. I’m also known as <strong>fadilxcoder</strong>.
<br><br>
I specialize in building scalable web solutions, having developed Android applications, API gateways, and both web / desktop GUI applications using top PHP frameworks like Symfony, Laravel, CodeIgniter, and even my custom micro PHP MVC framework <strong>HFX</strong> (based on Symfony components).
<br><br>
My expertise extends to DevOps / Docker, setting up GitHub Actions, and implementing CI/CD pipelines for GitLab. I’m also deeply passionate about cybersecurity without forgetting some AI vibe coding.
<br><br>
I work with modern technologies including Golang, Python and various JavaScript tools such as TypeScript, Node.js, Webpack, Babel, Laravel Mix, and Vue.js. I also have experience in cross-platform mobile app development using Apache Cordova, Adobe PhoneGap, and Flutter.
<br><br>
<strong>Open Source & Community:</strong>
<br>
</h4>
<h5>
• Contributor on <strong><a href="https://dev.to/fadilxcoder" target="_blank" rel="me noopener noreferrer">DEV Community</a></strong> since 2019<br><br>
• Published <strong><a href="https://packagist.org/users/fadilxcoder/" target="_blank" rel="me noopener noreferrer">PHP packages</a></strong> on Packagist with over 100K installs<br><br>
• Cybersecurity - Pentester and analyzing 3rd-party apps for vulnerabilities.
</h5>
<h3><span>EMPLOYMENT</span></h3>
<div class="history-group">
<div class="history-unit">
<h4 class="work-time">2019 - NOW</h4>
<div class="work-desc">
<h4>Sr. PHP / Symfony Developer</h4>
<h5>BOCASAY (Maurice) Limitée</h5>
<p> </p>
</div>
</div>
<div class="history-unit">
<h4 class="work-time">2016 - 2019</h4>
<div class="work-desc">
<h4>Sr. Full Stack Web Developer</h4>
<h5>Technology10 Ltd</h5>
<p> </p>
</div>
</div>
<div class="history-unit">
<h4 class="work-time">2014 - 2016</h4>
<div class="work-desc">
<h4>Trainee / Junior</h4>
<h5>Technology10 Ltd</h5>
<p> </p>
</div>
</div>
<div class="history-unit">
<h4 class="work-time">2014 (3")</h4>
<div class="work-desc">
<h4>Internship</h4>
<h5>Technology10 Ltd</h5>
<p> </p>
</div>
</div>
</div>
<h3><span>EDUCATION</span></h3>
<div class="history-group">
<div class="history-unit">
<h4 class="work-time">2014 - 2016</h4>
<div class="work-desc">
<h4>Licence (Bsc) Informatique Appliqué</h4>
<h5>Université des Mascareigne / Université de Limoges</h5>
<p>Part Time</p>
</div>
</div>
<div class="history-unit">
<h4 class="work-time">2012 - 2014</h4>
<div class="work-desc">
<h4>Diplome Informatique Appliqué</h4>
<h5>Université des Mascareigne / Université de Limoges</h5>
<p>Full Time</p>
</div>
</div>
</div>
<h3><span>DEVELOPMENT SKILLS</span></h3>
<div class="skill-group">
<div class="skill-unit"><h4>• PHP (CLI / OOP / MVC / Hexagonal Architecture)</h4></div>
<div class="skill-unit"><h4>• Symfony & API Platform</h4></div>
<div class="skill-unit"><h4>• Laravel (Lumen & Jigsaw)</h4></div>
<div class="skill-unit"><h4>• Codeigniter</h4></div>
<div class="skill-unit"><h4>• CMS (WordPress & plugins / Prestashop)</h4></div>
<div class="skill-unit"><h4>• Android (Adobe PhoneGap / Apache Cordova / Flutter)</h4></div>
<div class="skill-unit"><h4>• Testing (Selenium) / PHPUnit / Pest</h4></div>
<div class="skill-unit"><h4>• DBMS (DBA, MySQL / SQLite / MariaDB / PostgreSQL / MongoDB)</h4></div>
<div class="skill-unit"><h4>• Microservices / REST API / GraphQL</h4></div>
<div class="skill-unit"><h4>• Elasticsearch</h4></div>
<div class="skill-unit"><h4>• Redis / Memcache</h4></div>
<div class="skill-unit"><h4>• Docker / Kubernetes / .helms / CI-CD / VCS / Github Action</h4></div>
<div class="skill-unit"><h4>• PWA / HTML / CSS / JS / Typescript / Vue.js / Node</h4></div>
<div class="skill-unit"><h4>• Golang</h4></div>
<div class="skill-unit"><h4>• Python</h4></div>
<div class="skill-unit"><h4>• Automation jobs</h4></div>
<div class="skill-unit"><h4>• Agile Methodology</h4></div>
<div class="skill-unit"><h4>• Stripe / MCB payment gateway</h4></div>
<div class="skill-unit"><h4>• Makefile / Bash scripting</h4></div>
<div class="skill-unit"><h4>• Firebase</h4></div>
<div class="skill-unit"><h4>• Websockets</h4></div>
<div class="skill-unit"><h4>• Mercure</h4></div>
</div>
<h3><span>Work Experience</span></h3>
<div class="skill-group">
<div class="skill-unit"><h5><strong>Real Estate Search Engine</strong></h5></div>
<div class="skill-unit"><h5>The project comprises of PostgreSQL, Symfony 1, Symfony 4, Api platform, Golang. Optimization of system performance and database queries for faster response times. Integration of 3rd parties (AWS S3, Azure, Apryse, Imagekit, tilkee). Maintained and enhanced API performance and security across microservices.</h5></div>
<div class="skill-unit"><h5><strong>Saas with payment</strong></h5></div>
<div class="skill-unit"><h5>Developed a web-based SaaS application for nutritionists to manage their patients. Built using Symfony 5 with a multi-tenant architecture shared database (MySQL), the platform includes Stripe integration for subscription billing and an automated invoicing system. Ensured data security and compliance by implementing encryption on HDS-certified servers.</h5></div>
<div class="skill-unit"><h5><strong>Saas without payment</strong></h5></div>
<div class="skill-unit"><h5>Developed a web-based SaaS platform for companies to deliver training courses and MCQ-based exams to their staff. Built with Symfony 4 and MySQL, the system features automated certificate generation.</h5></div>
<div class="skill-unit"><h5><strong>Ecommerce / Apps / TPAM</strong></h5></div>
<div class="skill-unit"><h5>
• Maintaining and enhancing an eCommerce application built with PrestaShop (Admin), Laravel Lumen (Shop) ElasticSearch, Redis, MySQL. Migration to Symfony 4. The architecture include a Symfony client, an API proxy, and PrestaShop as the API server.
<br><br>
• Maintaining Symfony 3 web application designed to provide custom made artworks and printing
<br><br>
• Car rental system - Symfony 4 / MySQL
</h5></div>
</div>
<h3><span>Personal Experience</span></h3>
<div class="skill-group">
<div class="skill-unit"><h5><strong>Streaming App</strong></h5></div>
<div class="skill-unit"><h5>Developed an automated scraper that extracts content and delivers it through a centralized API, designed to serve multiple clients, including web and mobile apps.</h5></div>
<div class="skill-unit"><h5><strong>Marketplace Saas</strong></h5></div>
<div class="skill-unit"><h5>Ongoing development of a multi-tenant application using FrankenPHP - Symfony 7 and API Platform with MySQL. The project features custom encryption for secure client-server communication, a React.js frontend, and Redis for caching and circuit breaker support to ensure high availability and fault tolerance.</h5></div>
<div class="skill-unit"><h5><strong>GUI Reporting System</strong></h5></div>
<div class="skill-unit"><h5>
• Developed a desktop application for doctors to manage patient health records, including a report tracking system powered by SQLite.
<br><br>
• Built a web-based platform for dentists to efficiently manage their appointment schedules and agenda using.
</h5></div>
<div class="skill-unit"><h5><strong>Tools / PoC</strong></h5></div>
<div class="skill-unit"><h5>
• Developed a custom Git GUI tool tailored for QA testers to streamline version control and improve workflow efficiency.
<br><br>
• Multiple PoC (developer tools, reverse proxies, Chrome extensions, PHP packages, custom micro framework) available on github.
<br><br>
• Implemented continuous monitoring and performance testing to ensure application stability and responsiveness.
<br><br>
• Android apps ( Flutter, jQuery Mobile, Cordova, PhoneGap Service Workers)
<br><br>
• Designed client-server architectures, leveraging RESTful APIs, OAuth2, JWT, and Bearer tokens for secure and scalable communication.
</h5></div>
</div>
<h3><span>PARTICIPATION</span></h3>
<div class="skill-group">
<div class="skill-unit"><h4>MCB INOVAPP 2.0 (2019)</h4></div>
<div class="skill-unit"><h4>MCB INOVAPP 1.0 (2018)</h4></div>
<div class="skill-unit"><h4>Krakathon by ict.io (2017)</h4></div>
<div class="skill-unit"><h4>WebCup Mauritius (2017)</h4></div>
</div>
</div>
</div>
</div>
<div class="rm-overlay"></div>
</div>
</div><!-- /rm-cover -->
<div id="portfolio" class="rm-middle portfolio page">
<div class="rm-inner">
<div class="antiscroll-wrap">
<div class="antiscroll-inner">
<div class="content">
<h2><span>PORTFOLIO</span></h2>
<div class="portfolio-items">
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/55.jpg" alt="Portfolio project — Marketplace ((under dev*)) by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Marketplace <small>(under dev*)</small></h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/54.jpg" alt="Portfolio project — LPDI - API by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>LPDI - API</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/53.jpg" alt="Portfolio project — LPDI - Search Engine by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>LPDI - Search Engine</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/52.jpg" alt="Portfolio project — Stream TV Shows - API by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Stream TV Shows - API</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/51.jpg" alt="Portfolio project — API Client UI by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>API Client UI</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/50.jpg" alt="Portfolio project — Watches E-Commerce by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Watches E-Commerce</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/49.jpg" alt="Portfolio project — Al Hayaat Calligraphy by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Al Hayaat Calligraphy</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/48.jpg" alt="Portfolio project — Online Lecture Presentation App by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Online Lecture Presentation App</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/47.jpg" alt="Portfolio project — Laravel Lumen Dev. by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Laravel Lumen Dev.</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/46.jpg" alt="Portfolio project — Laravel 8 Blog Dev. by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Laravel 8 Blog Dev.</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/45.jpg" alt="Portfolio project — Firebase Micro App by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Firebase Micro App</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/44.jpg" alt="Portfolio project — Private Sport Shop - Redesign by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Private Sport Shop - Redesign</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/43.jpg" alt="Portfolio project — Saas - Nutry.fr by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Saas - Nutry.fr</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/42.jpg" alt="Portfolio project — 2FA - Patient Reporting System by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>2FA - Patient Reporting System</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/41.jpg" alt="Portfolio project — QR Ticket Scanner Mobile App by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>QR Ticket Scanner Mobile App</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/40.jpg" alt="Portfolio project — Symfony / API Platform by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Symfony / API Platform </h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/39.jpg" alt="Portfolio project — Saas - Valdesco Courses by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Saas - Valdesco Courses</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/38.jpg" alt="Portfolio project — Technotronics by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Technotronics</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/37.jpg" alt="Portfolio project — ALVIS Mauritius by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>ALVIS Mauritius</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/36.jpg" alt="Portfolio project — CSEOBA E-Ticket Management by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>CSEOBA E-Ticket Management</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/35.jpg" alt="Portfolio project — SUPERDIST (hiperdist-io) Stock Management by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>SUPERDIST (hiperdist-io) Stock Management</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/34.jpg" alt="Portfolio project — A J Contracting Ltd by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>A J Contracting Ltd</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/33.jpg" alt="Portfolio project — MauBank WithMe by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>MauBank WithMe</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/32.jpg" alt="Portfolio project — Panzani Marketing Campaign by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Panzani Marketing Campaign</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/31.jpg" alt="Portfolio project — eSolusoft Ltd by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>eSolusoft Ltd</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/30.jpg" alt="Portfolio project — Forum SportColl by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Forum SportColl</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/29.jpg" alt="Portfolio project — Binding Estates Saving Calculator - UK by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Binding Estates Saving Calculator - UK </h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/28.jpg" alt="Portfolio project — SCS Mauritius by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>SCS Mauritius</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/27.jpg" alt="Portfolio project — Rodrigues Kitesurfing Association by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Rodrigues Kitesurfing Association</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/26.jpg" alt="Portfolio project — Tailored Accounting App by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Tailored Accounting App</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/25.jpg" alt="Portfolio project — Nin's Marketing Campaign by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Nin's Marketing Campaign</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/24.jpg" alt="Portfolio project — Ferrari Dubai Newsletter by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Ferrari Dubai Newsletter</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/23.jpg" alt="Portfolio project — Ferrari Dubai Catalogue App by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Ferrari Dubai Catalogue App</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/22.jpg" alt="Portfolio project — Create-WW by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Create-WW</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/21.jpg" alt="Portfolio project — Zarrin Tejarat - en-US|ar-AE (RTL) by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Zarrin Tejarat - en-US|ar-AE (RTL)</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/20.jpg" alt="Portfolio project — Furniture Store by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Furniture Store</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/19.jpg" alt="Portfolio project — University Courses / Quiz System by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>University Courses / Quiz System</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/18.jpg" alt="Portfolio project — Jquey Mobile App Dev by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Jquey Mobile App Dev</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/17.jpg" alt="Portfolio project — Marketing Campaign Ultra Doux Adv. by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Marketing Campaign Ultra Doux Adv.</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/16.jpg" alt="Portfolio project — Marketing Campaign Mixa - Slot Machine by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Marketing Campaign Mixa - Slot Machine</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/15.jpg" alt="Portfolio project — Marketing Campaign Ultra Doux by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Marketing Campaign Ultra Doux</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/14.jpg" alt="Portfolio project — Doctor / Patient Management System by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Doctor / Patient <br>Management System</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/13.jpg" alt="Portfolio project — Great Place To Work (LP) by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Great Place To Work (LP)</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/12.jpg" alt="Portfolio project — Le Peninsula Bay by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Le Peninsula Bay</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/11.jpg" alt="Portfolio project — Parallax Website by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask">
<a href="#" target="_blank" class="ajax" rel="noopener noreferrer"></a>
</div>
</div>
<h4>Parallax Website</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/10.jpg" alt="Portfolio project — Maubank Quiz by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Maubank Quiz</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/09.jpg" alt="Portfolio project — Desktop Based Website by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Desktop Based Website</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/08.jpg" alt="Portfolio project — First Auto Car Rental by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>First Auto Car Rental</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/07.jpg" alt="Portfolio project — Dive Passion Mauritius by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Dive Passion Mauritius</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/06.jpg" alt="Portfolio project — Danpoly Mauritius by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Danpoly Mauritius</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/05.jpg" alt="Portfolio project — Car Rental Web App by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Car Rental Web App</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/04.jpg" alt="Portfolio project — Raid Des Alizes by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Raid Des Alizes</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/03.jpg" alt="Portfolio project — La Vallee Des Couleur by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>La Vallee Des Couleur</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/02.jpg" alt="Portfolio project — TVSport Events by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>TVSport Events</h4>
</div>
<div class="hentry">
<div class="media-box">
<img src="images/portfolio/01.jpg" alt="Portfolio project — Open Sud De France by Fadil R (fadilxcoder)" loading="lazy" decoding="async">
<div class="mask"></div>
</div>
<h4>Open Sud De France</h4>
</div>
</div>
</div>
</div>
</div>
<div class="rm-overlay"></div>
</div>
</div>
<div class="rm-right">
<div class="rm-front">
<div class="cover">
<div class="cover-image-holder">
<img src="images/site/cover-2.jpg" alt="Contact Fadil R — Web Architect & Full-Stack Developer in Mauritius" loading="lazy" decoding="async">
</div>
</div>
</div>
<div id="contact" class="rm-back page">
<div class="antiscroll-wrap">
<div class="antiscroll-inner">
<div class="content">
<h2><span>CONTACT</span></h2>
<h3><span>LET'S SOCIALIZE</span></h3>
<ul class="social">
<li><a class="facebook" title="Facebook" href="https://www.facebook.com/fadil.xcoder" target="_blank" rel="me noopener noreferrer"></a></li>
<li><a class="linkedin" title="LinkedIn" href="https://goo.gl/rdJ2yn" target="_blank" rel="me noopener noreferrer"></a></li>
<li><a class="google" title="Google Me" href="https://goo.gl/EbHMQX" target="_blank" rel="me noopener noreferrer"></a></li>
<li><a class="github" title="Github" href="https://github.com/fadilxcoder" target="_blank" rel="me noopener noreferrer"></a></li>
<li><a class="blogger" title="Gitlab" href="https://gitlab.com/fadil.xcoder/" target="_blank" rel="me noopener noreferrer"></a></li>
<li><a class="tumblr" title="Google Developer Program" href="https://g.dev/fadilxcoder" target="_blank" rel="me noopener noreferrer"></a></li>
</ul>
<p class="center">
<a href="https://goo.gl/hdeVBj" target="_blank" title="DEV Community" rel="me noopener noreferrer">
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" alt="fadilxcoder's DEV Profile" style="width:10%!important; height:10%!important;" />
</a>
</p>
<h3><span>DROP ME A LINE!</span></h3>
<div class="contact-form">
<div class="letter cf">
<div class="letter-info">
<h4>Fadil R. - 🎮 💻 🎧 ☕</h4>
<p><a href="mailto:fadilrm@hotmail.com"><i>fadilrm@hotmail.com</i></a></p>
</div>
</div>
</div>
</div>
</div>
<a class="rm-close"><span></span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="p-overlay"></div>
<div class="p-overlay"> </div>
<div class="loader"></div>
<div class="alert"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" defer></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.8.3.min.js" defer><\/script>')</script>
<script src="js/jquery.address-1.5.min.js" defer></script>
<script src="js/antiscroll.js" defer></script>
<script src="js/jquery.fittext.js" defer></script>
<script src="js/jquery.imagesloaded.min.js" defer></script>
<script src="js/jquery.isotope.min.js" defer></script>
<script src="js/jquery.fitvids.js" defer></script>
<script src="js/jquery.validate.min.js" defer></script>
<script src="js/jquery.fancybox-1.3.4.pack.js" defer></script>
<script src="js/send-mail.js" defer></script>
<script src="js/twitterFetcher_v10_min.js" defer></script>
<script src="js/main.js" defer></script>
</body>
</html>