Coursera :
https://www.coursera.org/
kaggle :
https://www.kaggle.com/
codecademy :
https://www.codecademy.com/
flicklearning :
https://www.flicklearning.com/courses/
Data Structure And Algorithms :
https://freecoursesite.com/master-the-coding-interview-data-structures-algorithms/
Senior Web Developer Guide:
https://www.freetutorialsus.com/the-complete-junior-to-senior-web-developer-roadmap-udemy-course-free-download/
Advanced JavaScript Concepts:
https://freecoursesite.com/advanced-javascript-concepts/
Learn React Zero to Hero:
https://freecoursesite.com/complete-react-developer-in-2019-w-redux-hooks-graphql/
React Native:
https://freecoursesite.com/the-complete-react-native-and-redux-course-1/
React Native Advanced Concepts :
https://freecoursesite.com/1-react-native-advanced-concepts/
JavaScript Advance Concept Book:
https://github.com/getify/You-Dont-Know-JS
Complete Nodejs Course:
https://www.freetutorialsus.com/the-complete-node-js-developer-course-3rd-edition/
NextJs Complete Guide :
https://www.freecodecamp.org/news/the-next-js-handbook/
Concepts:
https://javascript.info/js
Course :
https://courses.wesbos.com/account/access/5fb24c8b24b5071fef487d36/view/194837696
Book JS :
https://github.com/getify/You-Dont-Know-JS
Advanced Js :
https://www.udemy.com/course/advanced-javascript-concepts/
Algorithms :
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/
https://freecoursesite.com/the-complete-python-3-masterclass-from-beginner-to-pro/
https://pythonbestcourses.com/complete-python-developer-in-2020/
https://freecoursesite.com/data-science-deep-learning-machine-learning-with-python-1/
will be adding soon
(1) Google Cloud Training:
https://cloud.google.com/training/
(2) Youtube Video :
https://www.youtube.com/watch?v=LICA-ILkO4w
(3) Google Cloud Architecture Specialization :
https://www.coursera.org/professional-certificates/gcp-cloud-architect
(1) Version Control Git course on Coursera offered :
(https://lnkd.in/gfEaa2b)
(2)GitHub labs :
(https://lab.github.com/)
(3)Github GraphQL Explorer :
(https://lnkd.in/g9vh2bn)
(4)For Github REST APIs, the best resource is the documentation :
(https://lnkd.in/gWjAsSp)
https://education.github.com/pack
1. Fork
-
Forking will create a personal copy of another user's repository that lives on your account. Forks allow you to freely make changes to a project without affecting the original upstream repository.
-
Go to https://github.com/WomeninTech-jamshoro/Lets-Learn-together
-
See on top right corner fork the repository from there.
2. Clone
- Clone is a copy of repository on your local instead of on a website's server where you edit file in your preffered editor.
command for git clone : $ git clone [URL]
[URL]-url that was copied in clipboard
3. Create your Branch
$ git checkout -b <branch-name>
4. Make some contribution
You can add or edit any file.
5. Add Changes and Commit Changes
-
$ git add <file-name>
or$ git add .
-
git commit -m "Add my-commit"
6. Push changes to GitHub
git push origin <branch-name>
Once you push your code to GitHub, now it's time to create your pull request
, you will go to the repository click on compare and pull request
and submit the pull request.