Skip to main content

 



Who am i ? 

Contact Us :
Name : Mohamed Fathi 
Email : mohamedkdr66@gmail.com

About Me :
Graduation:
I've graduated from Faculty of Specific Education, Department of Computer Teacher Preparation,I choosed field of web development .
I was training with courses from the Internet and courses from Udemy website (MOOC).
I developed many websites, including an educational website for students of the first
 and second grades of high school.

Training :
After graduation I joined the course for educating one million arab programmers . I finished it in just twice
weeks , I got the certificate from the Emirates Scholarship and the educational website Udacity.
I also joined at the Information Technology Institute, which is known for its strength in Technology fields.
I graduated from the institute in 2019.

Certifications:
- One million Arab programmers certificate from Udacity and the Emirates Scholarship .
- Certificate from ITI Institute (open source track).

Tech Skills :

Languages : PHP JS/ES6 SQL Perl

DB : mongoDB , mysql , workbench
Git : Git , git lab , github
Ecosystem : JSON , Linux , Apache , Post man , OAut h , Koha , SSO (Single Sign On) , Ajax , Principals: MVC , MVVM , RESTFULL-API , SOLID , DESIGN PATTERNS ,OOP
Frameworks: Laravel , Laminas , node js,
Vue.js , JQuery , Bootstrap , Inertia.js , Livewire , Zend

Working , Experience :
Backend Developer 
Full Time
From :
1st Jan 2022 

-------
FullStack Developer (laravel / vuejs) 
Part Time
From :
Jan 2021 - Dec 2021

------
Progress It
Backend Developer 
Full Time
From:
Sep 2019 - Jan 2022

Social Links :
 

Comments

Popular posts from this blog

Adapter Design Pattern ๐Ÿ˜ƒ

  Adapter Design Pattern ๐Ÿ˜ƒ

Using Larave Api Resource , Adding Additional data to Response

  Github repository for more styled code    https://github.com/MohamedFathiM/Blogs/blob/main/apiResource.md What is the API Resource : A transformation layer that sits between your Eloquent models and the JSON responses. First Time Using It: The first time I am using the API resource, I was confused about the difference between the two classes, you will find it in the API resource of laravel (Resource, Collection), Ex: PostReource and PostCollection. Larave Api Resource has two classes you can simply make them using artisan like that. php artisan make :resource PostResource This command create a class in App\Http\Resources extends JsonResource php artisan make:resource PostCollection --collection or php artisan make :resource PostCollection name of the class with suffix collection this command create a class in App\Http\Resources extends ResourceCollection so, what is the difference between them? Resource Class Collection Class extends Jso...