├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── artificial-intelligence │ ├── artificial-intelligence.md │ ├── computer-vision.md │ ├── deep-learning.md │ ├── machine-learning.md │ └── resources.md ├── contribution-guide.md ├── data-science │ ├── big-data.md │ └── statistical-learning.md ├── databases │ ├── mongodb.md │ ├── mssql.md │ ├── mysql.md │ ├── postgresdb.md │ └── sql-tsql-plsql.md ├── development-tools │ ├── android-studio.md │ ├── aws.md │ ├── azure.md │ ├── docker.md │ ├── git.md │ ├── kubernetes.md │ ├── vim.md │ ├── visual-studio-code.md │ └── visualstudio.md ├── embedded-systems │ ├── arduino.md │ ├── arm.md │ └── raspberry-pi.md ├── game-development │ ├── unity.md │ └── unreal-engine.md ├── graphic-design │ ├── general-design.md │ ├── illustrations.md │ ├── misc-design.md │ ├── motion-design.md │ ├── photo-and-video.md │ ├── sound-design.md │ └── ui-ux-design.md ├── mobile-development │ ├── android.md │ ├── flutter.md │ ├── ios.md │ ├── reactnative.md │ └── xamarin.md ├── network-programming │ ├── ipv4-ipv6.md │ ├── network.md │ └── tcpip.md ├── operating-systems │ ├── gnu-linux.md │ ├── macos.md │ ├── other.md │ └── windows.md ├── programming-languages │ ├── assembly.md │ ├── c.md │ ├── computer-science.md │ ├── cplusplus.md │ ├── csharp.md │ ├── dart.md │ ├── go.md │ ├── java.md │ ├── kotlin.md │ ├── lua.md │ ├── matlab.md │ ├── python.md │ ├── r.md │ ├── ruby.md │ ├── rust.md │ └── swift.md ├── style-guide.md └── web-development │ ├── angularjs.md │ ├── asp-net-mvc.md │ ├── asp-net-webform.md │ ├── back-end.md │ ├── css.md │ ├── denojs.md │ ├── django.md │ ├── flask.md │ ├── front-end.md │ ├── hosting-and-servers.md │ ├── html.md │ ├── java-spring.md │ ├── javascript.md │ ├── jquery.md │ ├── laravel.md │ ├── netcore.md │ ├── nodejs.md │ ├── php.md │ ├── reactjs.md │ ├── ruby-on-rails.md │ ├── typescript.md │ ├── vuejs.md │ └── wordpress.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src ├── css │ └── custom.css └── pages │ ├── index.js │ └── styles.module.css ├── static ├── .nojekyll └── img │ ├── favicon.ico │ └── logo.svg └── yarn.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # This is a comment. 2 | # Each line is a file pattern followed by one or more owners. 3 | 4 | * @damla 5 | 6 | CONTRIBUTING.md @damla 7 | CODE_OF_CONDUCT.md @damla 8 | .github/ @damla 9 | 10 | # The `docs/*` pattern will match files like 11 | # `docs/getting-started.md` but not further nested files like 12 | docs/*/* @damla @YusufBilgin @flavianooo @AbdullahOztuurkk 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | --- 5 | 6 | 7 | 8 | 9 | 10 | **Describe the bug** 11 | 12 | 13 | 14 | **To Reproduce** 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | **Expected behavior** 24 | 25 | 26 | 27 | **Screenshots** 28 | 29 | 30 | 31 | **Desktop (please complete the following information):** 32 | 33 | - OS, version: 34 | - Browser, version: 35 | 36 | **Smartphone (please complete the following information):** 37 | 38 | - Device: 39 | - OS, version: 40 | - Browser, version: 41 | 42 | **Additional context** 43 | 44 | 45 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | --- 5 | 6 | **Is your feature request related to a problem? Please describe.** 7 | 8 | 9 | 10 | **Describe the solution you'd like** 11 | 12 | 13 | 14 | **Describe alternatives you've considered** 15 | 16 | 17 | 18 | **Additional context** 19 | 20 | 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 16 | 17 | ## What type of PR is this? (check all applicable) 18 | 19 | - [ ] Added new link to category 20 | - [ ] New category added 21 | - [ ] Fixed broken link 22 | - [ ] Typo fix 23 | - [ ] Readme update 24 | - [ ] Optimization 25 | - [ ] Documentation update 26 | - [ ] Frontend update 27 | 28 | ## Description 29 | 30 | ## [optional] Related Issues & Documents 31 | 32 | ## [optional] QA Instructions, Screenshots, Recordings 33 | 34 | _Please replace this line with instructions on how to test your changes, as well 35 | as any relevant images for UI changes._ 36 | 37 | ## [optional] Anything Else? 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | 7 | # Generated files 8 | .docusaurus 9 | .cache-loader 10 | 11 | # Misc 12 | .DS_Store 13 | .env.local 14 | .env.development.local 15 | .env.test.local 16 | .env.production.local 17 | .env 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | We pledge to act and interact in ways that contribute to an open, welcoming, 12 | diverse, inclusive, and healthy community. 13 | 14 | ## Our Standards 15 | 16 | Examples of behavior that contributes to a positive environment for our 17 | community include: 18 | 19 | * Demonstrating empathy and kindness toward other people 20 | * Being respectful of differing opinions, viewpoints, and experiences 21 | * Giving and gracefully accepting constructive feedback 22 | * Accepting responsibility and apologizing to those affected by our mistakes, 23 | and learning from the experience 24 | * Focusing on what is best not just for us as individuals, but for the 25 | overall community 26 | Examples of unacceptable behavior include: 27 | * The use of sexualized language or imagery, and sexual attention or 28 | advances of any kind 29 | * Trolling, insulting or derogatory comments, and personal or political attacks 30 | * Public or private harassment 31 | * Publishing others' private information, such as a physical or email 32 | address, without their explicit permission 33 | * Other conduct which could reasonably be considered inappropriate in a 34 | professional setting 35 | 36 | ## Enforcement Responsibilities 37 | 38 | Community leaders are responsible for clarifying and enforcing our standards of 39 | acceptable behavior and will take appropriate and fair corrective action in 40 | response to any behavior that they deem inappropriate, threatening, offensive, 41 | or harmful. 42 | Community leaders have the right and responsibility to remove, edit, or reject 43 | comments, commits, code, wiki edits, issues, and other contributions that are 44 | not aligned to this Code of Conduct, and will communicate reasons for moderation 45 | decisions when appropriate. 46 | 47 | ## Scope 48 | 49 | This Code of Conduct applies within all community spaces, and also applies when 50 | an individual is officially representing the community in public spaces. 51 | Examples of representing our community include using an official e-mail address, 52 | posting via an official social media account, or acting as an appointed 53 | representative at an online or offline event. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported to the community leaders responsible for enforcement at 59 | [this mail](mailto:me@damlakoksal.com). 60 | All complaints will be reviewed and investigated promptly and fairly. 61 | All community leaders are obligated to respect the privacy and security of the 62 | reporter of any incident. 63 | 64 | ## Enforcement Guidelines 65 | 66 | Community leaders will follow these Community Impact Guidelines in determining 67 | the consequences for any action they deem in violation of this Code of Conduct: 68 | 69 | ### 1. Correction 70 | 71 | **Community Impact**: Use of inappropriate language or other behavior deemed 72 | unprofessional or unwelcome in the community. 73 | **Consequence**: A private, written warning from community leaders, providing 74 | clarity around the nature of the violation and an explanation of why the 75 | behavior was inappropriate. A public apology may be requested. 76 | 77 | ### 2. Warning 78 | 79 | **Community Impact**: A violation through a single incident or series 80 | of actions. 81 | **Consequence**: A warning with consequences for continued behavior. No 82 | interaction with the people involved, including unsolicited interaction with 83 | those enforcing the Code of Conduct, for a specified period of time. This 84 | includes avoiding interactions in community spaces as well as external channels 85 | like social media. Violating these terms may lead to a temporary or 86 | permanent ban. 87 | 88 | ### 3. Temporary Ban 89 | 90 | **Community Impact**: A serious violation of community standards, including 91 | sustained inappropriate behavior. 92 | **Consequence**: A temporary ban from any sort of interaction or public 93 | communication with the community for a specified period of time. No public or 94 | private interaction with the people involved, including unsolicited interaction 95 | with those enforcing the Code of Conduct, is allowed during this period. 96 | Violating these terms may lead to a permanent ban. 97 | 98 | ### 4. Permanent Ban 99 | 100 | **Community Impact**: Demonstrating a pattern of violation of community 101 | standards, including sustained inappropriate behavior, harassment of an 102 | individual, or aggression toward or disparagement of classes of individuals. 103 | **Consequence**: A permanent ban from any sort of public interaction within 104 | the community. 105 | 106 | ## Attribution 107 | 108 | This Code of Conduct is adapted from the Contributor Covenant, 109 | version 2.0, available at 110 | [v2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html). 111 | Community Impact Guidelines were inspired by 112 | Mozilla's code of conduct enforcement ladder. 113 | For answers to common questions about this code of conduct, see the FAQ at 114 | [FAQ](https://www.contributor-covenant.org/faq). 115 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | When contributing to this repository, please first discuss the change you wish to make via issue, 4 | email, or any other method with the owners of this repository before making a change. 5 | Please note we have a [code of conduct](https://github.com/Source-Pocket/source-pocket/blob/main/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project. 6 | 7 | ## Pull Request Process 8 | 9 | 1. Ensure any install or build dependencies are removed before the end of the layer when doing a 10 | build. 11 | 2. Update the README.md with details of changes to the interface, this includes new environment 12 | variables, exposed ports, useful file locations and container parameters. 13 | 3. Increase the version numbers in any examples files and the README.md to the new version that this 14 | Pull Request would represent. The versioning scheme we use is [SemVer](https://semver.org/). 15 | 4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you 16 | do not have permission to do that, you may request the second reviewer to merge it for you. 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Source Pocket 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # What is Source Pocket? 2 | 3 | Source Pocket has been created to help developer community to easily find most useful resources according to their level. Everyone is free to share their favorite resources, simply by adding their links according to our [Contribution Guide](https://sourcepocket.netlify.app/docs/ "Contribution Guide"). 4 | 5 | [🖊 Semantic Commits](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716) are important for everyone. We would be very happy if you pay attention to this. 6 | 7 | # Technologies 8 | 9 | Project is created with: 10 | 11 | - [Docusaurus](https://v2.docusaurus.io "Docusaurus"): 2.0.0-alpha.69 12 | - [ReactJS](https://reactjs.org "ReactJS"): 16.8.4 13 | - [MDX](https://mdxjs.com "MDX"): 1.6.21 14 | - [clsx](https://www.npmjs.com/package/clsx "clsx"): 1.1.1 15 | - Passion of software developers with some coffee and black tea 👩🏼‍💻☕️👨🏼‍💻☕️ 16 | 17 | # Setup 18 | 19 | In order run this project you need to have an [Algolia API Key](https://www.algolia.com/doc/guides/security/api-keys/). 20 | Then, you can run it with the following commands. 21 | 22 | ```bash 23 | $ export API_KEY={YOUR_ALGOLIA_API_KEY} 24 | $ yarn 25 | $ yarn start 26 | ``` 27 | 28 | # Code Owners 29 | 30 |

31 | 32 | 33 | 34 | 35 |

36 | 37 | # License 38 | 39 | [MIT](https://choosealicense.com/licenses/mit/) 40 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')], 3 | }; 4 | -------------------------------------------------------------------------------- /docs/artificial-intelligence/artificial-intelligence.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: artificial-intelligence 3 | title: Artificial Intelligence 4 | sidebar_label: Artificial Intelligence 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Artificial Intelligence Full Course| Simplilearn](https://www.youtube.com/watch?v=8Pyy2d3SZuM) 10 | 11 | ## Intermediate 12 | 13 | ## Advanced 14 | -------------------------------------------------------------------------------- /docs/artificial-intelligence/computer-vision.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: computer-vision 3 | title: Computer Vision 4 | sidebar_label: Computer Vision 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/artificial-intelligence/deep-learning.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: deep-learning 3 | title: Deep Learning 4 | sidebar_label: Deep Learning 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Pytorch for Deep Learing - Full Course/ Tutorial](https://www.youtube.com/watch?v=GIsg-ZUy0MY) 10 | - [Applied Deep Learning With Pytorch - Full Course](https://www.youtube.com/watch?v=CNuI8OWsppg) 11 | - [Deep Learning Book - Goodfellow&Bengio&Courville](https://www.deeplearningbook.org) 12 | - [Deep Learning Specialization](https://www.coursera.org/specializations/deep-learning) 13 | - [Deep Learning Full Course | Simplilearn](https://www.youtube.com/watch?v=ve-Tj7kUemg) 14 | - [TensorFlow Tutorial For Beginners | Simplilearn](https://www.youtube.com/watch?v=wMJQ04-AwNo) 15 | 16 | ## Intermediate 17 | 18 | - [Dive Into Deep Learning](https://www.d2l.ai/index.html) 19 | - [freecodecamp.org Playlist](https://www.youtube.com/watch?v=tPYj3fFJGjk&list=PLWKjhJtqVAblStefaz_YOVpDWqcRScc2s) 20 | - [Stanford CS231n: Convolutional Neural Networks for Visual Recognition](https://cs231n.github.io) 21 | - [Stanford CS224n: Natural Language Processing with Deep Learning](http://web.stanford.edu/class/cs224n/index.html#coursework) 22 | 23 | ## Advanced 24 | 25 | - [Reinforcement Learning Sources Repo](https://github.com/dennybritz/reinforcement-learning) 26 | - [DeepLearning.AI TensorFlow Developer Professional Certificate](https://www.coursera.org/professional-certificates/tensorflow-in-practice) 27 | -------------------------------------------------------------------------------- /docs/artificial-intelligence/machine-learning.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: machine-learning 3 | title: Machine Learning 4 | sidebar_label: Machine Learning 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Stanford ML Course on Coursera](https://www.coursera.org/learn/machine-learning) 10 | - [Google ML Crash Course](https://developers.google.com/machine-learning/crash-course) 11 | - [Kaggle Intro ML Course](https://www.kaggle.com/learn/intro-to-machine-learning) 12 | - [ML PDF Resources](https://drive.google.com/drive/folders/1tsQ_EWtv5pC73CAqcnz07aCMKFLQGnKX?usp=sharing) 13 | 14 | ## Intermediate 15 | 16 | - [Datacamp ML Scientist Career Track](https://learn.datacamp.com/career-tracks/machine-learning-scientist-with-python) 17 | - [Kaggle Intermediate ML Course](https://www.kaggle.com/learn/intermediate-machine-learning) 18 | - [Codeacademy ML Skill Path](https://www.codecademy.com/learn/paths/machine-learning) 19 | - [Machine Learning Algorithms | Simplilearn](https://www.youtube.com/playlist?list=PLEiEAq2VkUULNa6MHQAZSOBxzB6HHFXj4) 20 | - [Machine Learning for Forex and Stock analysis and algorithmic trading | sentdex](https://www.youtube.com/playlist?list=PLQVvvaa0QuDe6ZBtkCNWNUbdaBo2vA4RO) 21 | 22 | ## Advanced 23 | 24 | - [Machine Learning Tutorial Videos | Simplilearn](https://www.youtube.com/playlist?list=PLEiEAq2VkUULYYgj13YHUWmRePqiu8Ddy) 25 | - [Machine Learning with Python | sentdex](https://www.youtube.com/playlist?list=PLQVvvaa0QuDfKTOs3Keq_kaG2P55YRn5v) 26 | -------------------------------------------------------------------------------- /docs/artificial-intelligence/resources.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: resources 3 | title: Resources 4 | sidebar_label: Resources 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/contribution-guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: contribution-guide 3 | title: Contribution Guide 4 | sidebar_label: Contribution Guide 5 | slug: / 6 | --- 7 | ## Contribution Without Forking the Project 8 | 9 | 1- Open `https://sourcepocket.netlify.app` 10 | 11 | 2- Click on [Source Pocket](https://sourcepocket.netlify.app/docs/) 12 | 13 | 3- Open the pocket you want to contribute. 14 | > Example: [NodeJS](https://sourcepocket.netlify.app/docs/web-development/nodejs) 15 | 16 | 4- Click on `Edit this page` link at the bottom of page. 17 | 18 | 5- Sign in/up to Github because edits will be done from Source Pocket's Github repository. 19 | 20 | 6- Click to the `pen icon` at top right of the page appeared. 21 | 22 | 7- Add links you have under the level they are belong to. 23 | 24 | 8- In the `Propose changes` section, which is found at the bottom of the page, write your commit message in to first box and add your optional description if you have to second box. 25 | 26 | 9- Click on `Propose Changes`. 27 | 28 | 10- Click on `Create Pull Request`. 29 | 30 | 11- Fill the PR according to description. 31 | 32 | 12- Click on `Create Pull Request`. 33 | 34 | You are done, thank you for contributing! 🥳 35 | 36 | > Note: If there is a problem with your PR, Code Owners will add their reviews. Therefore, please check your PR constantly if it is not merged. 37 | -------------------------------------------------------------------------------- /docs/data-science/big-data.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: big-data 3 | title: Big Data 4 | sidebar_label: Big Data 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Big Data Tutorial For Beginners | Simplilearn](https://www.youtube.com/watch?v=uzIlR5eoqmo) 10 | 11 | ## Intermediate 12 | 13 | ## Advanced 14 | -------------------------------------------------------------------------------- /docs/data-science/statistical-learning.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: statistical-learning 3 | title: Statistical Learning 4 | sidebar_label: Statistical Learning 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Beginner Kaggle Data Science Project Walk-Through (Titanic)](https://www.youtube.com/watch?v=I3FBJdiExcg) 10 | - [Python for Data Science | Beginner Friendly Full Course in 5 Hours](https://www.youtube.com/watch?v=yGN28LY5VuA) 11 | 12 | ## Intermediate 13 | 14 | - [Data Science Full Course | Simplilearn](https://www.youtube.com/watch?v=Vn7-jOUbVpw) 15 | - [Data Analysis with Python - Full Course for Beginners (Numpy, Pandas, Matplotlib, Seaborn)](https://www.youtube.com/watch?v=r-uOLxNrNk8) 16 | - [Learn Data Science Tutorial - Full Course for Beginners](https://www.youtube.com/watch?v=ua-CiDNNj30) 17 | - [Python for Data Science and Machine Learning Bootcamp - Udemy](https://www.udemy.com/course/python-for-data-science-and-machine-learning-bootcamp/) 18 | 19 | ## Advanced 20 | 21 | - [DataSchool](https://www.dataschool.io/) 22 | - [100+ Free Data Science Books](https://www.learndatasci.com/free-data-science-books/) 23 | - [Hackr.io - Data Science](https://hackr.io/data-science) 24 | -------------------------------------------------------------------------------- /docs/databases/mongodb.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: mongodb 3 | title: MongoDB 4 | sidebar_label: MongoDB 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Official MongoDB Documentation](https://docs.mongodb.com/v3.4/introduction/) 10 | - [MongoDB University](https://university.mongodb.com/) 11 | - [MongoDB Tutorial For Beginners | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9jpvoYriLI0bY8DOgWZfi6u) 12 | - [MongoDB Tutorial for Beginners | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIZtR6bncmSaH8fB81oRl6MP) 13 | - [MongoDB Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQk5r6iN4Q7h-xonV3F2HwT3) 14 | 15 | ## Intermediate 16 | 17 | ## Advanced 18 | -------------------------------------------------------------------------------- /docs/databases/mssql.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: mssql 3 | title: MsSQL 4 | sidebar_label: MsSQL 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/databases/mysql.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: mysql 3 | title: MySQL 4 | sidebar_label: MySQL 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [🎥 MySQL Giriş Kurulum ve MAMP Paketleri | Sadi Evren Seker 🎥](https://youtu.be/OvGrFVeSsqo "MySQL Giriş Kurulum ve MAMP Paketleri | Sadi Evren Seker") 10 | - [MySQL Eğitim Seti | Bilgisayar Kavramlari](https://youtube.com/playlist?list=PLh9ECzBB8tJNp5a5yjuuqL6jMbSXcTxHo) 11 | - [MySQL Tutorial For Beginners | Programming With Mosh(EN)](https://youtu.be/7S_tz1z_5bA) 12 | - [MySQL Dersleri | Emrah Yüksel](https://youtube.com/playlist?list=PLZtkgIR0fgTHA65DNW04WfpRYuZpQpTs_) 13 | 14 | ## Intermediate 15 | 16 | - [MySQL LogIn & Blog With PHP | Lucas Vyhnalek](https://youtu.be/BIuHHXLQG1w) 17 | 18 | ## Advanced 19 | -------------------------------------------------------------------------------- /docs/databases/postgresdb.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: postgresdb 3 | title: PostgresDB 4 | sidebar_label: PostgresDB 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [PostgreSQL Tutorial For Beginners | Simplilearn](https://www.youtube.com/watch?v=eMIxuk0nOkU) 10 | 11 | ## Intermediate 12 | 13 | - [PostgresSQL Course | AmigosCode](https://www.youtube.com/playlist?list=PLwvrYc43l1MxAEOI_KwGe8l42uJxMoKeS) 14 | 15 | ## Advanced 16 | -------------------------------------------------------------------------------- /docs/databases/sql-tsql-plsql.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: sql-tsql-plsql 3 | title: SQL-TSQL-PLSQL 4 | sidebar_label: SQL-TSQL-PLSQL 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/development-tools/android-studio.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: android-studio 3 | title: Android Studio 4 | sidebar_label: Android Studio 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/development-tools/aws.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: aws 3 | title: AWS 4 | sidebar_label: AWS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [AWS Full Course For Beginners | Simplilearn](https://www.youtube.com/watch?v=9Kvf12FOVW4) 10 | 11 | ## Intermediate 12 | 13 | - [Ultimate AWS Certified Developer Associate 2021](https://www.udemy.com/course/aws-certified-developer-associate-dva-c01) 14 | - [AWS Certified Developer Associate Exam Training 2021](https://www.udemy.com/course/aws-certified-developer-associate-exam-training) 15 | 16 | ## Advanced 17 | -------------------------------------------------------------------------------- /docs/development-tools/azure.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: azure 3 | title: Azure 4 | sidebar_label: Azure 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Microsoft Azure Training For Beginners - Learn Azure In 5 Hours | Simplilearn](https://www.youtube.com/watch?v=M4_tHfW-cCg) 10 | 11 | ## Intermediate 12 | 13 | ## Advanced 14 | -------------------------------------------------------------------------------- /docs/development-tools/docker.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: docker 3 | title: Docker 4 | sidebar_label: Docker 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [DevTips - Trying Docker for the First Time 🎥](https://youtu.be/2tvbkCW4OIY) 10 | - [freeCodeCamp - Docker Tutorial for Beginners 🎥](https://youtu.be/fqMOX6JJhGo) 11 | - [TechWorld with Nana - Docker Tutorial for Beginners 🎥](https://www.youtube.com/watch?v=3c-iBn73dDE "Docker Tutorial for Beginners") 12 | - [Docker Tutorial for Beginners | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIbLUTUpy-nEHwMJAjcfVXqP) 13 | - [Docker Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQlzv9_z1eZmZY8dzMlQFbaH) 14 | 15 | ## Intermediate 16 | 17 | - [Bret Fisher Docker and DevOps 🎥](https://www.youtube.com/c/BretFisherDockerandDevOps/featured) 18 | - [Docker El Kitabı](https://github.com/mebaysan/DockerElKitabi) 19 | 20 | ## Advanced 21 | -------------------------------------------------------------------------------- /docs/development-tools/git.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: git 3 | title: Git 4 | sidebar_label: Git 5 | --- 6 | 7 | ## Beginner 8 | - [Git Commands - FlashCards](https://app.memrise.com/course/5963550/git-komutlarikapsamli/) 9 | - [Git Tutorial](https://git-scm.com/docs/gittutorial "Git Tutorial") 10 | - [Türkçe Git 101 | Ali Öztürk](https://aliozgur.gitbooks.io/git101/content/ "Türkçe Git 101 | Ali Öztürk") 11 | - [🎥 Git Dersleri | Barış Aslan 🎥](https://youtu.be/rWG70T7fePg "Git Dersleri") 12 | - [🎥 Git & GitHub Crash Course For Beginners | Traversy Media 🎥](https://youtu.be/SWYqp7iY_Tc "Git & GitHub Crash Course For Beginners | Traversy Media") 13 | - [Yeni Başlayanlar için Git Dersleri | Tarık Güney (Youtube Playlist)](https://www.youtube.com/playlist?list=PL_Z0TaFYSF3IqQKPOmbigAOVMMlZ2yU4K "Yeni Başlayanlar için Git Dersleri") 14 | - [Learn Git in Y minutes](https://learnxinyminutes.com/docs/tr-tr/git-tr/ "Learn Git in Y minutes") 15 | - [Git Tutorial for Beginners | Programming with Mosh](https://www.youtube.com/watch?v=8JJ101D3knE&ab_channel=ProgrammingwithMosh "Git Tutorial for Beginners: Learn Git in 1 Hour") 16 | - [Learn the Basics of Git | freeCodeCamp](https://www.freecodecamp.org/news/learn-the-basics-of-git-in-under-10-minutes-da548267cc91/ "Learn the Basics of Git in Under 10 Minutes") 17 | - [Git & GitHub Tutorial for Beginners | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9goXbgTDQ0n_4TBzOO0ocPR) 18 | - [Git And Github For Beginners | ProgrammingKnowledge](https://www.youtube.com/watch?v=Ak4Kvn682WY&list=PLS1QulWo1RIanDAyZJveQqKYH-iHA7tmZ) 19 | 20 | ## Intermediate 21 | 22 | - [Git Cheat Sheet Turkish](https://github.com/arslanbilal/git-cheat-sheet/blob/master/other-sheets/git-cheat-sheet-tr.md "Git Cheat Sheet Turkish") 23 | - [Git for Computer Scientists](https://eagain.net/articles/git-for-computer-scientists/ "Git for Computer Scientists") 24 | - [Git Exercises](https://gitexercises.fracz.com/ "Git Exercises") 25 | 26 | ## Advanced 27 | -------------------------------------------------------------------------------- /docs/development-tools/kubernetes.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: kubernetes 3 | title: Kubernetes 4 | sidebar_label: Kubernetes 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours] | Techworld With Nana](https://youtu.be/X48VuDVv0do) 10 | - [Complete Kubernetes Tutorial for Beginners | Techworld With Nana](https://www.youtube.com/playlist?list=PLy7NrYWoggjziYQIDorlXjTvvwweTYoNC) 11 | - [Kubernetes Full Course For Beginners | Simplilearn](https://www.youtube.com/watch?v=0keqgvSBqxM) 12 | - [Kubernetes From Scratch](https://ansilh.com/) 13 | - [Kubernetes for the Absolute Beginners](https://www.udemy.com/course/learn-kubernetes/) 14 | 15 | ## Intermediate 16 | 17 | - [Docker And Kubernetes Full Course | Simplilearn](https://www.youtube.com/watch?v=XpiU97M3ydM) 18 | 19 | ## Advanced 20 | 21 | - [Certified Kubernetes Administrator (CKA) with Practice Tests](https://www.udemy.com/course/certified-kubernetes-administrator-with-practice-tests) 22 | - [Certified Kubernetes Application Developer (CKAD) with Tests](https://www.udemy.com/course/certified-kubernetes-application-developer) 23 | -------------------------------------------------------------------------------- /docs/development-tools/vim.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: vim 3 | title: Vim 4 | sidebar_label: Vim 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Cheat Sheet Image](https://i.imgur.com/YLInLlY.png "Cheat Sheet") 10 | - [The Ultimate Vim configuration](https://github.com/amix/vimrc "The Ultimate Vim configuration") 11 | - [Vim Cheat Sheet](https://vim.rtorr.com/ "Vim Cheat Sheet") 12 | - [Ben Awad - Vim Tutorial](https://youtu.be/IiwGbcd8S7I) 13 | 14 | ## Intermediate 15 | 16 | - [Vim Sence](https://github.com/hugolgst/vimsence "Vim Sence") 17 | - [Introduction To Vim Customization](https://www.linode.com/docs/guides/introduction-to-vim-customization/ "Introduction To Vim Customization") 18 | - [Mkaz Blog - Working with Vim](https://mkaz.blog/working-with-vim/) 19 | 20 | ## Advanced 21 | -------------------------------------------------------------------------------- /docs/development-tools/visual-studio-code.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: visual-studio-code 3 | title: Visual Studio Code 4 | sidebar_label: Visual Studio Code 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/development-tools/visualstudio.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: visualstudio 3 | title: Visual Studio 4 | sidebar_label: Visual Studio 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/embedded-systems/arduino.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: arduino 3 | title: Arduino 4 | sidebar_label: Arduino 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Arduino getting started](https://www.arduino.cc/en/Guide "Arduino getting started") 10 | - [Arduino Nedir? | Halil ÖZEL](https://halilozel1903.medium.com/arduino-nedir-722dbfda3fff "Arduino Nedir? | Halil ÖZEL") 11 | - [Robotistan Ardiuno programlama dersleri](https://maker.robotistan.com/kategori/arduino/arduino-programlama/ "Robotistan Ardiuno programlama dersleri") 12 | - [Arduino Projeler](https://www.arduinoprojeler.com/ "Arduino Projeler") 13 | - [🎥 Arduino Tarifleri 🎥](https://youtu.be/veJUayf1pxo "Arduino Tarifleri") 14 | - [🎥 Robotistan Arduino Dersleri ve Projeleri 🎥](https://youtu.be/_2JJ29kmwRU "Arduino Dersleri ve Projeleri") 15 | - [🎥 Arduino Tutorials | Paul McWhorter 🎥](https://youtu.be/fJWR7dBuc18 "Arduino Tutorials | Paul McWhorter") 16 | 17 | ## Intermediate 18 | 19 | - [Arduino Tutorial | JavaTpoint](https://www.javatpoint.com/arduino "Arduino Tutorial | JavaTpoint") 20 | 21 | ## Advanced 22 | -------------------------------------------------------------------------------- /docs/embedded-systems/arm.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: arm 3 | title: Arm 4 | sidebar_label: Arm 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/embedded-systems/raspberry-pi.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: raspberry-pi 3 | title: Raspberry Pi 4 | sidebar_label: Raspberry Pi 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Raspberry pi getting started](https://projects.raspberrypi.org/en/projects/raspberry-pi-getting-started "Raspberry pi getting started") 10 | - [W3Schools Raspberry Pi](https://www.w3schools.com/nodejs/nodejs_raspberrypi.asp "W3Schools Raspberry Pi") 11 | - [🎥 Raspberry Pi Projeleri ve Dersleri | Robotistan 🎥](https://youtu.be/uqIqutWiyhc "Raspberry Pi Projeleri ve Dersleri | Robotistan") 12 | - [🎥 Çağan'la Raspberry Pi'a Giriş | Meraklı Maymun 🎥](https://youtu.be/233JH9vHUUQ "Çağan'la Raspberry Pi'a Giriş") 13 | 14 | 15 | ## Intermediate 16 | 17 | - [Raspberry pi docs](https://www.raspberrypi.org/documentation/ "Raspberry pi docs") 18 | - [🎥 Raspberry Pi and Python Tutorials 🎥](https://youtu.be/RpseX2ylEuw "Raspberry Pi and Python Tutorials") 19 | - [🎥 Raspberry Pi with Linux LESSONS 🎥](https://youtu.be/J4fhE4Pp55E "Raspberry Pi with Linux LESSONS") 20 | 21 | 22 | ## Advanced 23 | -------------------------------------------------------------------------------- /docs/game-development/unity.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: unity 3 | title: Unity 4 | sidebar_label: Unity 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Unity's official learning series](https://learn.unity.com/) 10 | - [Brackeys How to make a 2D Game](https://www.youtube.com/playlist?list=PLPV2KyIb3jR6TFcFuzI2bB7TMNIIBpKMQ) 11 | 12 | ## Intermediate 13 | 14 | - [Unity Code Monkey tutorials](https://unitycodemonkey.com/) 15 | 16 | ## Advanced 17 | 18 | - [Jason Weimann game programming patterns](https://www.youtube.com/playlist?list=PLB5_EOMkLx_VOmnIytx37lFMiajPHppmj) 19 | -------------------------------------------------------------------------------- /docs/game-development/unreal-engine.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: unreal-engine 3 | title: Unreal Engine 4 | sidebar_label: Unreal Engine 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/graphic-design/general-design.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: general-design 3 | title: General Design 4 | sidebar_label: General Design 5 | --- 6 | 7 | ## Websites 8 | 9 | - [Behance](https://behance.net) 10 | - [Unsplash](https://unsplash.com) 11 | - [Freepik](https://freepik.com) 12 | - [DaFont](https://dafont.com) 13 | - [FontTr](https://fonttr.com) 14 | - [Google Font](https://fonts.google.com) 15 | - [Dribbble](https://dribbble.com) 16 | - [Manifold](https://manifold.press) 17 | - [GMK](http://gmk.org.tr/publications) 18 | - [Pexels](https://www.pexels.com/) 19 | - [Stock Snap](https://stocksnap.io/) 20 | - [Burst](https://burst.shopify.com/) 21 | - [Pixabay](https://pixabay.com/tr/) 22 | - [FoodiesFeed](https://www.foodiesfeed.com/) 23 | - [Gratisography](https://gratisography.com/) 24 | 25 | ## YouTube 26 | 27 | - [Designus](https://www.youtube.com/user/designusnet) 28 | - [Afgan Rasulov](https://www.youtube.com/user/afganrasulov) 29 | - [Tasarımcı Dayı](https://www.youtube.com/channel/UCAjJuQMK_bV_eElAsLZZSRQ) 30 | - [Satori Graphics](https://www.youtube.com/channel/UCoeJKtPJLoIBqWq4o8TDLpA) 31 | - [Tuncer Tuna](https://www.youtube.com/channel/UCxV8ylQVRzzRRmbIY3baTlg) 32 | - [Hakan Ertan](https://www.youtube.com/channel/UCfrO4EyEc3N5TaunnfX1uHQ) 33 | - [DesignGost](https://www.youtube.com/channel/UCMLbZZElW190lLG6YlAE61Q) 34 | - [Dijital Tasarım](https://www.youtube.com/channel/UCkrljYRt6mwrGtQAmutzTvg) 35 | - [Adobe Creative Cloud](https://www.youtube.com/c/AdobeCreativeCloud/) 36 | - [All Design Ideas](https://www.youtube.com/channel/UCLE9xzpJp7XElDs2Bxw8nLQ) 37 | - [Koray Birand](https://www.youtube.com/channel/UCKexPzIpGjE3ynXtbqWVs0A) 38 | - [Mehmet Üzüm](https://www.youtube.com/channel/UC1Vs4M8X-E41jrRHOuIUEPw) 39 | - [Ben Marriott](https://www.youtube.com/channel/UCjJk212xU15y_NPYKuCsKQA) 40 | - [Cinecom.net](https://www.youtube.com/channel/UCpLfM1_MIcIQ3jweRT19LVw) 41 | - [DesignCourse](https://www.youtube.com/channel/UCVyRiMvfUNMA1UPlDPzG5Ow) 42 | - [Ferdi Çıldız](https://www.youtube.com/channel/UC-nyzphiDw13Ldwqza6bzrQ) 43 | - [Mohamed Achraf](https://www.youtube.com/channel/UCF6WjcZeVqy3MLBpp86eOyw) 44 | - [Kadir Şahin Playlist](https://www.youtube.com/playlist?list=PLqIY4SKk2-ZGXXFMXP7VjQZrb-73YzJsl) 45 | 46 | ## Books 47 | 48 | - Görsel İletişim ve Grafik Tasarım - Tevfik Fikret Uçar 49 | - Tipografinin Temelleri Orjinal İsim: The Fundamentals of Typography - Paul Harris, Gavin Ambrose 50 | - Tipografinin Temelleri - Namik Kemal Sarıkavak 51 | - Tam Benim Tipim - Simon Garfield 52 | - Modern Sanat Ve Yeni Tipografi - Emre Becer 53 | - İletişim ve Grafik Tasarım - Emre Becer 54 | - Görsel İletisimde Sayfa Düzeni ve Tipografi - Ragip Istek 55 | - Görsel İletisim Tasarimi Temel Ders Notlari - Emin Dogan Aydin 56 | - Görsel İletisim ve Grafik Tasarimi (Yongalarin 10.000 Yıllık Gizemli Dansı) - Hasan Fehmi Ketenci 57 | - Grafik Tasarım Ne İçindir? - Alice Twemlow 58 | - Grafikerin El Kitabı - Mine Tuksal (Pusula Yayıncılık) 59 | - Dünya Sanat Tarihi - Adnan Turani 60 | - Sanat ve Kuram - Paul Wood, Charles Harrison 61 | - Çağdaş Sanat Felsefesi - Adnan Turani 62 | -------------------------------------------------------------------------------- /docs/graphic-design/illustrations.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: illustrations 3 | title: Illustrations 4 | sidebar_label: Illustrations 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Blob Maker](https://www.blobmaker.app) 10 | - [Squircley](https://www.squircley.app/) 11 | - [Softr SVG Shape Generator](https://www.softr.io/tools/svg-shape-generator) 12 | - [Blobs](https://blobs.app/) 13 | - [Chart Generator](https://chartgen.frederickallen.co/) 14 | - [Haikei](https://app.haikei.app/) 15 | - [Get Waves](https://getwaves.io/) 16 | 17 | ## Intermediate 18 | 19 | - [Undraw](https://undraw.co) 20 | - [Humaaans](https://www.humaaans.com/) 21 | - [Icons8](https://icons8.com/illustrations) 22 | - [Scale](https://2.flexiple.com/scale/all-illustrations) 23 | - [DrawKit](https://www.drawkit.io) 24 | - [IRA Design](https://iradesign.io/) 25 | 26 | ## Advanced 27 | 28 | - [Illustratious](https://illustratious.com/) 29 | - [Illustration Generator By Stubborn](https://stubborn.fun/) 30 | -------------------------------------------------------------------------------- /docs/graphic-design/misc-design.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: misc-design 3 | title: Misc Design 4 | sidebar_label: Misc Design 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/graphic-design/motion-design.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: motion-design 3 | title: Motion Design 4 | sidebar_label: Motion Design 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/graphic-design/photo-and-video.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: photo-and-video 3 | title: Photo and Video 4 | sidebar_label: Photo and Video 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | 13 | - [Adobe Photoshop Scripting](https://www.adobe.com/devnet/photoshop/scripting.html) 14 | -------------------------------------------------------------------------------- /docs/graphic-design/sound-design.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: sound-design 3 | title: Sound Design 4 | sidebar_label: Sound Design 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/graphic-design/ui-ux-design.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: ui-ux-design 3 | title: UI-UX Design 4 | sidebar_label: UI-UX Design 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [UI/UX Nedir?](https://www.mediaclick.com.tr/tr/blog/ui-ve-ux-nedir) 10 | 11 | ## Intermediate 12 | 13 | - [Apple Design Resources](https://developer.apple.com/design/resources/) 14 | - [Material Design](https://material.io) 15 | 16 | ## Advanced 17 | 18 | - [Figma Avatar Creator](https://www.figma.com/file/AZ9FvrUbt5ULKSy3ckO7Db/Avatar-Illustration-System-Community?node-id=65%3A1499) 19 | -------------------------------------------------------------------------------- /docs/mobile-development/android.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: android 3 | title: Android 4 | sidebar_label: Android 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Android Roadmap](https://github.com/mobile-roadmap/android-developer-roadmap) 10 | - [100+ Java Android Programming Examples](https://www.sanfoundry.com/java-android-programing-examples/) 11 | - [Android Developer Fundamentals Course](https://google-developer-training.github.io/android-developer-fundamentals-course-practicals/en/) 12 | - [Master Coding](https://www.youtube.com/c/AndroidMasterApp/playlists) 13 | - [Simplified Coding](https://www.youtube.com/c/SimplifiedcodingNetOfficial/featured) 14 | - [Android Basics by Google](https://www.udacity.com/course/android-basics-nanodegree-by-google--nd803) 15 | 16 | 17 | ## Intermediate 18 | 19 | - [Database Tutorial](https://www.youtube.com/watch?v=hDSVInZ2JCs) 20 | 21 | ## Advanced 22 | -------------------------------------------------------------------------------- /docs/mobile-development/flutter.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: flutter 3 | title: Flutter 4 | sidebar_label: Flutter 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Flutter Eğitimi - Mehmet Ali Bayram](https://www.youtube.com/playlist?list=PLrWGe5fM0LZ6aJG8dWFRkqchaHENPmLET) 10 | - [Flutter Tutorial for Beginners | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9jLYyp2Aoh6hcWuxFDX6PBJ) 11 | 12 | ## Intermediate 13 | 14 | - [Flutter Eğitimi - Veli Bacık](https://www.youtube.com/playlist?list=PLw-GsrM1ukw6eTiCnf1Vg_cUGzWTh0Cgk) 15 | - [Flutter & Firebase App Build | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9j--TKIdkb3ISfRbJeJYQwC) 16 | 17 | ## Advanced 18 | -------------------------------------------------------------------------------- /docs/mobile-development/ios.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: ios 3 | title: iOS 4 | sidebar_label: iOS 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/mobile-development/reactnative.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: reactnative 3 | title: React Native 4 | sidebar_label: React Native 5 | --- 6 | 7 | ## Beginner 8 | - [React Native CLI vs Expo](https://www.youtube.com/watch?v=uHlAM4ICi1s) 9 | - [React Native Docs - Getting Started](https://reactnative.dev/docs/getting-started) 10 | - [React Native Tutorial for Beginners - Build a React Native App [2020]](https://www.youtube.com/watch?v=0-S5a0eXPoc) 11 | - [React Native Dersleri | Kursun tanıtımı](https://www.youtube.com/watch?v=zMHf5ccChoU&list=PLiYPP1v1hM958PlxbdnuNaplEucdiBntE) 12 | - [React Native - UI Hizalama (UI Layouting) ve Flexbox](https://www.youtube.com/watch?v=c-0K2LwdvGw) 13 | - [React Native Tutorial #14 - Flexbox Basics](https://www.youtube.com/watch?v=R2eqAgR_KlU) 14 | - [Getting Started with React Navigation v5 - Stack, Tabs, Drawer, Authentication](https://www.youtube.com/watch?v=nQVCkqvU1uE) 15 | - [React Native Tutorial - How To Get Data From An API With React Native](https://www.youtube.com/watch?v=u1JQwaIds7A) 16 | - [React Native Tutorial for Beginners | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9ixPU-QkScoRBVxtPPzVjrQ) 17 | - [React Native Animation Tutorials | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQmdfEyKDrlG5E0F0u7_iIUo) 18 | 19 | ## Intermediate 20 | - [👉 Build your first React Native app - Todo List Tutorial Part 1](https://www.youtube.com/watch?v=0kL6nhutjQ8) 21 | - [Build a React Native Chat App with Firebase in 20 MINUTES!](https://www.youtube.com/watch?v=eR1vP-W1emI) 22 | - [React Native Firebase | Install Firebase React Native Tutorial](https://www.youtube.com/watch?v=LYi1gwPWDto) 23 | - [Asyncstorage React Native | Async Storage Tutorial](https://www.youtube.com/watch?v=PRGHWgTydyQ) 24 | - [React Native Push Notifications #1 - IOS & Android](https://www.youtube.com/watch?v=HSS5NcrMieU&list=PLU0gbuy2HRscu5aS7WO3oOwDv5JWU-16_) 25 | - [Voice Calling in React Native using Agora - Aryan Agarwal | React Native & Flutter Virtual Meetup](https://www.youtube.com/watch?v=OBW96M_fafk) 26 | - [Manage your States Easily and Keep it Clean with Redux-Toolkit in React Native](https://ilterkose.medium.com/manage-your-states-easily-and-keep-it-clean-with-redux-toolkit-in-react-native-4c9a5c2b24cb) 27 | 28 | ## Advanced 29 | - [Build an Instagram Clone with React Native, Firebase Firestore, Redux, Expo - Full Course](https://www.youtube.com/watch?v=1hPgQWbWmEk) 30 | - [How Animations Work in React Native](https://www.freecodecamp.org/news/how-react-native-animations-work/) 31 | - [React Native ile 60 FPS Animasyonlar - Enes Ozturk](https://ozturkenes.com/blog/react-native-ile-60-fps-animasyonlar#%C3%B6rnek-uygulama) 32 | - [🔴 Let's build SIGNAL with REACT NATIVE! (Navigation, Expo & Firebase)](https://www.youtube.com/watch?v=MJzmZ9qmdaE) 33 | - [Advanced React Native FlatList animations with Animated API](https://www.youtube.com/watch?v=cGTD4yYgEHc) 34 | - [Advanced 2D Transformations in React Native](https://www.youtube.com/watch?v=YUcLbo_w_Ts) 35 | - [React Native JSI’a Derinlemesine Bakış | by Zafer Ayan | Sep, 2021 | Medium](https://zaferayan.medium.com/react-native-jsia-derinlemesine-bak%C4%B1%C5%9F-c36a2021358f) 36 | 37 | -------------------------------------------------------------------------------- /docs/mobile-development/xamarin.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: xamarin 3 | title: Xamarin 4 | sidebar_label: Xamarin 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/network-programming/ipv4-ipv6.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: ipv4-ipv6 3 | title: IPV4-IPV6 4 | sidebar_label: IPV4-IPV6 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/network-programming/network.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: network 3 | title: Network 4 | sidebar_label: Network 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/network-programming/tcpip.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: tcpip 3 | title: TCP/IP 4 | sidebar_label: TCP/IP 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/operating-systems/gnu-linux.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: gnu-linux 3 | title: GNU / Linux 4 | sidebar_label: GNU / Linux 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Linux Sohbetleri Podcast](https://open.spotify.com/show/0iMI5V85KVHFhNxe1B22zh "Linux Sohbetleri Podcast") 10 | - [The Linux Command Handbook | freecodecamp](https://www.freecodecamp.org/news/the-linux-commands-handbook/#the-linux-pwd-command "The Linux Command Handbook | freecodecamp") 11 | 12 | ## Intermediate 13 | 14 | - [Man7](https://man7.org/ "Man7") 15 | - [Linux Command](https://linuxcommand.org/index.php "Linux Command") 16 | - [Explain Shell](https://explainshell.com/ "Explain Shell") 17 | - [Linux Teknik Bilgi Arşivleri](https://www.linuxteknik.com/ "Linux Teknik Bilgi Arşivleri") 18 | - [nixCraft](https://www.cyberciti.biz "nixCraft") 19 | - [OpenServer Docs](https://osr507doc.xinuos.com/en/Navpages/index.html "OpenServer Docs") 20 | - [Linux](https://linux.com "Linux") 21 | - [Linux Command Library](https://linuxcommandlibrary.com/ "Linux Command Library") 22 | - [Linux Dersleri](https://linux-dersleri.github.io/ "Linux Dersleri") 23 | - [Linuxize](https://linuxize.com/ "Linuxize") 24 | - [Tecmint](https://tecmint.com) 25 | - [How To Geek](https://www.howtogeek.com/ "How To Geek") 26 | - [OS Technix](https://ostechnix.com/ "OS TechNix") 27 | - [The Geek Stuff](https://www.thegeekstuff.com/ "The Geek Stuff") 28 | - [Computer Networking Notes](https://www.computernetworkingnotes.com/ "Computer Networking Notes") 29 | - [Computer Hope](https://www.computerhope.com/ "Computer Hope") 30 | - [Linode Docs](https://www.linode.com/docs "Linode Docs") 31 | - [msHOWTO](https://www.mshowto.org/ "msHOWTO") 32 | - [Linux Journey](https://linuxjourney.com/ "Linux Journey") 33 | - [OverTheWire](https://overthewire.org/wargames/bandit/bandit0.html "OverTheWire") 34 | - [Linux Survival](https://linuxsurvival.com/ "Linux Survival") 35 | - [Açık Kaynak Fikirler](https://acikkaynakfikirler.com/egitimler/ "Açık Kaynak Fikirler") 36 | - [Linux Topic](https://www.linuxtopic.com/ "Linux Topic") 37 | - [Linux Hint](https://linuxhint.com/ "Linux Hint") 38 | - [2 Day Geek](https://2daygeek.com/ "2 Day Geek") 39 | - [The Geek Diary](https://www.thegeekdiary.com/ "The Geek Diary") 40 | - [Linux Shell Tips](https://www.linuxshelltips.com/ "Linux Shell Tips") 41 | - [Wizard Zines](https://wizardzines.com/ "Wizard Zines") 42 | 43 | ## Advanced 44 | 45 | - [The Linux Kernel Documentation](https://linux-kernel-labs.github.io/refs/heads/master/index.html) 46 | -------------------------------------------------------------------------------- /docs/operating-systems/macos.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: macos 3 | title: MacOS 4 | sidebar_label: MacOS 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | 13 | ## Sources and Apps 14 | 15 | - [Mac Icons for Big Sur](https://macosicons.com/) 16 | - [DuckDuckGo Privacy Extension](https://github.com/duckduckgo/duckduckgo-privacy-extension) 17 | -------------------------------------------------------------------------------- /docs/operating-systems/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: other-os 3 | title: Other OS 4 | sidebar_label: Other OS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [TempleOS Nedir?](https://suleymanfatih.medium.com/temple-os-nedi%CC%87r-77d493faff5f "TempleOS Nedir?") 10 | 11 | ## Intermediate 12 | 13 | - [OSDEV Wiki](https://wiki.osdev.org/Expanded_Main_Page) 14 | - [Baking Pi – Operating Systems Development](https://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/index.html) 15 | - [Write Your Own Operating System Playlist](https://www.youtube.com/playlist?list=PLHh55M_Kq4OApWScZyPl5HhgsTJS9MZ6M) 16 | 17 | ## Advanced 18 | -------------------------------------------------------------------------------- /docs/operating-systems/windows.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: windows 3 | title: Windows 4 | sidebar_label: Windows 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/programming-languages/assembly.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: assembly 3 | title: Assembly 4 | sidebar_label: Assembly 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [GNU Assembler Examples from CS@LMU](https://cs.lmu.edu/~ray/notes/gasexamples/) 10 | - [Introduction to ARM Assembly Basics Series from AzeriaLabs](https://azeria-labs.com/writing-arm-assembly-part-1/) 11 | - [Jacob Bramley's Condition Flags in ARM Assembly Series](https://community.arm.com/developer/ip-products/processors/b/processors-ip-blog/posts/condition-codes-1-condition-flags-and-codes) 12 | - [VisUAL2 - A modern looking ARM assembly emulator](https://tomcl.github.io/visual2.github.io/) 13 | - [OakSim - Online ARM assembly emulator](https://github.com/Wunkolo/OakSim) 14 | - [CEMU - Multiarchitecture assembly emulator](https://github.com/hugsy/cemu) 15 | - [ARM instruction cheatsheet](https://github.com/oowekyala/arm-cheatsheet/blob/master/arm-cheatsheet.pdf) 16 | - [ARMstrong - An ARM assembly emulator with GPIO functions](https://github.com/linouxis9/ARMStrong) 17 | - [Introduction to MIPS Assembly Language](https://chortle.ccsu.edu/assemblytutorial/index.html) 18 | - [Programming ARM Assembly in Raspberry Pi Playlist](https://www.youtube.com/playlist?list=PLGLfVvz_LVvQu9IwUcpn8KOZsOvoHx8sU) 19 | - [RISC-V Cheatsheet by jameslzhu in GitHub](https://github.com/jameslzhu/riscv-card/blob/master/riscv-card.pdf) 20 | - [Emu8086 ile Assembly Programlama](https://www.youtube.com/playlist?list=PL2gZB_AT1f5ahifiAt1uMwHgUDu1vgQJ_) 21 | - [x86 Assembly Language Programming From Ground Up™](https://www.udemy.com/course/x86-assembly-programming-from-ground-uptm/) 22 | - [C ve Sistem Programcıları Derneği 80x86 Assembly](https://github.com/CSD-1993/KursNotlari/blob/master/80X86-Assembly.pdf) 23 | 24 | ## Intermediate 25 | 26 | ## Advanced 27 | -------------------------------------------------------------------------------- /docs/programming-languages/c.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: c 3 | title: C 4 | sidebar_label: C 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [C ve Sistem Programcıları Derneği C Notları - Kaan Aslan](https://www.dropbox.com/sh/soe5wl982r9fl6w/AACR0uH1Vk_JcloBXl_yRTeqa?dl=0) 10 | - [Tutorialspoint](https://www.tutorialspoint.com/cprogramming/index.htm) 11 | - [Cprogramming](https://www.cprogramming.com/tutorial/c-tutorial.html?inl=nv) 12 | - [Learn C](https://www.learn-c.org/) 13 | - [Programiz](https://www.programiz.com/c-programming) 14 | 15 | ## Intermediate 16 | 17 | ## Advanced 18 | 19 | - [Necati Ergin Medium](https://necatiergin2019.medium.com) 20 | -------------------------------------------------------------------------------- /docs/programming-languages/computer-science.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: computer-science 3 | title: Computer Science 4 | sidebar_label: Computer Science 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Structure and Interpretation of Computer Programs](https://inst.eecs.berkeley.edu/~cs61a/fa20/) 10 | - [C ile Veri Yapıları - BilgisayarKavramlari](https://www.youtube.com/playlist?list=PLh9ECzBB8tJN9bckI6FbWB03HkmogKrFT) 11 | 12 | ## Intermediate 13 | 14 | - [Design Patterns](https://refactoring.guru/) 15 | 16 | ## Advanced 17 | -------------------------------------------------------------------------------- /docs/programming-languages/cplusplus.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: cplusplus 3 | title: C++ 4 | sidebar_label: C++ 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Learn C++](https://www.learncpp.com/) 10 | - [W3schools](https://www.w3schools.com/cpp/default.asp) 11 | - [ISOCPP Get Started](https://isocpp.org/get-started) 12 | - [Cherno C++ Series](https://www.youtube.com/playlist?list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb) 13 | - [Definitive C++ Book List](https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list) 14 | - [C++ Dersleri | Yazılım Bilimi](https://www.youtube.com/playlist?list=PLIHume2cwmHfmSmNlxXw1j9ZAKzYyiQAq) 15 | - [C++ Crash Course | Bro Code](https://www.youtube.com/watch?v=uhFpPlMsLzY) 16 | 17 | ## Intermediate 18 | 19 | - [Necati Ergin C++ Kaynak 2](http://elektronnot.blogspot.com/2015/11/cpp-necati-ergin.html) 20 | - [C++ Quiz](https://cppquiz.org/) 21 | - [Definitive C++ Book List](https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list) 22 | 23 | ## Advanced 24 | 25 | - [C++ Reference](https://en.cppreference.com/w/) 26 | - [C++ Draft From EEL](http://eel.is/c++draft/) 27 | - [Definitive C++ Book List](https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list) 28 | -------------------------------------------------------------------------------- /docs/programming-languages/csharp.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: csharp 3 | title: CSharp 4 | sidebar_label: CSharp 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [C# Documentation - Microsoft](https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/ "C# Documentation") 10 | - [C# Sıfırdan-Engin Demiroğ](https://www.youtube.com/playlist?list=PLqG356ExoxZU5keiJwuHDpXqULLffwRYD) 11 | - [C# Tutorial - Tutorials Point](https://www.tutorialspoint.com/csharp/index.htm "C# Tutorial - Tutorials Point") 12 | - [WPF UI Programming(C#) | AngelSix](https://www.youtube.com/watch?v=Vjldip84CXQ&list=PLrW43fNmjaQVYF4zgsD0oL9Iv6u23PI6M) 13 | - [C# Programming for Beginners](https://www.youtube.com/watch?v=STw363BHviY&list=PLrW43fNmjaQXhWOKalftye87ObZA-xNIJ) 14 | - [c# kitap|CSD-1993](https://github.com/CSD-1993/KursNotlari/blob/master/CSharp.pdf) 15 | - [C# Full Course | Bro Code](https://www.youtube.com/watch?v=7uafjsHqf4c) 16 | 17 | ## Intermediate 18 | 19 | - [Malik Masis - Medium](https://malikmasis.medium.com "Malik Masis - Medium") 20 | - [Advanced C# | Dotnet Core Central](https://www.youtube.com/playlist?list=PLXCqSX1D2fd8OTsj8Gb0pjuGnheyJv9gZ) 21 | - [Abdullah Öztürk - Medium](https://abdullahozturkk.medium.com/ "Abdullah Öztürk - Medium") 22 | 23 | ## Advanced 24 | 25 | -------------------------------------------------------------------------------- /docs/programming-languages/dart.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: dart 3 | title: Dart 4 | sidebar_label: Dart 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Dart Syntax | The App Bracket(EN)](https://youtu.be/bfKEu5rLeWU) 10 | - [Dart In 2 Hours | FreeCodeCamp(EN)](https://youtu.be/Ej_Pcr4uC2Q) 11 | - [Dart & Flutter | OA Bașaran](https://youtube.com/playlist?list=PLNRtC6HXL3EDnn4naNGqlQSFqGyMXXWow) 12 | - [Dart Official Tutorial | FreeCodeCamp(EN)](https://dart.dev/tutorials) 13 | - [Dart Academy(EN)](https://dart.academy/) 14 | - [Dart Temelleri | Emre Șurk](https://youtu.be/uuyoGOLVVO4) 15 | 16 | ## Intermediate 17 | 18 | ## Advanced 19 | -------------------------------------------------------------------------------- /docs/programming-languages/go.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: go 3 | title: Go 4 | sidebar_label: Go 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Practical Go Lessons](https://www.practical-go-lessons.com/ "Practical Go Lessons") 10 | - [Go Tour](https://tour.golang.org/welcome/1 "Go Tour") 11 | - [Go By Example](https://gobyexample.com/ "Go By Example") 12 | - [Golang](https://golang.org/ "Golang") 13 | - [Package Go](https://pkg.go.dev/ "Package Go") 14 | - [Golang By Example](https://golangbyexample.com/ "Golang By Example") 15 | - [Go Exercises](https://golangr.com/exercises/ "Go Exercises") 16 | - [Cloudhadopp](https://www.cloudhadoop.com/tags/golang/ "Cloudhadopp") 17 | - [Presentation for Beginner (tr)](https://go-talks.appspot.com/github.com/fatih/talks/go-giris/giris.slide#1) 18 | - [Article for Beginner (tr)](https://medium.com/i%CC%87yi-programlama/golang-c31ab87eb67c) 19 | - [GoLang Structs (tr)](https://handeebrar.medium.com/golang-structs-with-out-pointers-5e86f0674a55) 20 | - [GoLang E-Book (tr)](https://go.kaanksc.com/) 21 | - [GoLang Video Tutorials for Beginner (tr)](https://www.youtube.com/playlist?list=PL-Hkw4CrSVq96dPr33xTdBjSgn9wKLHPa) 22 | - [Golang Bootcamp](http://www.golangbootcamp.com/book "Golang Bootcamp") 23 | - [Go Slice Tricks](https://ueokande.github.io/go-slice-tricks/ "Go Slice Tricks") 24 | - [Learning Go](https://www.miek.nl/go/ "Learning Go") 25 | - [Go Database SQL](http://go-database-sql.org/index.html "Go Database SQL") 26 | - [Essential Go](https://essential-go.programming-books.io/ "Essential Go") 27 | - [GoLang ile Web Geliştirme | Ahmet Buğra Çakıcı](https://www.youtube.com/watch?v=P5TRNhhq00w&list=PLHnI4uXxaT1aboTBx687QV5cLvGi7882a) 28 | - [Go Programming Language Tutorial | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIaRoN4vQQCYHWDuubEU8Vij) 29 | 30 | ## Intermediate 31 | 32 | - [Jon Calhoun](https://www.calhoun.io/ "Jn Calhoun") 33 | - [Tutorial Edge Go](https://tutorialedge.net/course/golang/ "Tutorial Edge Go") 34 | - [Golang Code](https://golangcode.com/ "Golang Code") 35 | - [Golang Bot](https://golangbot.com/ "Golang Bot") 36 | - [Golang Programs](https://www.golangprograms.com/ "Golang Programs") 37 | - [Go Web Examples](https://gowebexamples.com/ "Go Web Examples") 38 | - [Your Basic Go](https://yourbasic.org/ "Your Basic Go") 39 | - [Gophercises](https://gophercises.com/ "Gophercises") 40 | - [Alex Adwards](https://www.alexedwards.net/blog/ "Alex Edwards") 41 | - [Ardan Labs](https://www.ardanlabs.com/blog/ "Ardan Labs") 42 | - [Applied Go](https://appliedgo.net/ "Applied Go") 43 | - [Shubham Chadokar](https://schadokar.dev/ "Shubham Chadokar") 44 | - [Develop Go](https://github.com/developgo "Develop Go") 45 | - [Go RESTful API Programming](https://www.youtube.com/playlist?list=PLr48dQTh3FFyWe4twhEmeoO-Yvt6rsDPw) 46 | - [Go Proverbs](https://go-proverbs.github.io/ "Go Proverbs") 47 | - [Go Web Programming E-Book](https://github.com/sakataa/Paper/blob/master/JS/Go%20Web%20Programming.pdf) 48 | - [gRPC in Go](https://grpc.io/docs/languages/go/quickstart/) 49 | - [Go gRPC Beginners Tutorial](https://tutorialedge.net/golang/go-grpc-beginners-tutorial/) 50 | - [Building an Basic API with gRPC and Protobuf](https://www.youtube.com/watch?v=Y92WWaZJl24) 51 | - [Beginners Guide to gRPC in Go!](https://www.youtube.com/watch?v=BdzYdN_Zd9Q) 52 | 53 | ## Advanced 54 | 55 | - [Go Beyond](https://www.gobeyond.dev/ "Go Beyond") 56 | - [Design Patterns](https://refactoring.guru/design-patterns/go) 57 | - [Learn Go with Tests](https://quii.gitbook.io/learn-go-with-tests/) 58 | -------------------------------------------------------------------------------- /docs/programming-languages/java.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: java 3 | title: Java 4 | sidebar_label: Java 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [JavaTurk.org](http://www.javaturk.org/ "JavaTurk.org") 10 | - [Learn Java | Codeacademy](https://www.codecademy.com/learn/learn-java "Learn Java | Codeacademy") 11 | - [W3Schools Java](https://www.w3schools.com/java/ "W3Schools Java") 12 | - [Learn Java Programming | programiz](https://www.programiz.com/java-programming "Learn Java Programming | programiz") 13 | - [🎥 Java Programlama Dersleri | Yazılım Bilimi 🎥](https://youtu.be/8WXfuEuheeE "Java Programlama Dersleri | Yazılım Bilimi") 14 | - [🎥 Java, Programlamaya Giriş | Sadi Evren Şeker 🎥](https://youtu.be/Xgj15AMkcvA "Java, Programlamaya Giriş") 15 | - [🎥 Java in 9 hours | freeCodeCamp 🎥](https://youtu.be/grEKMHGYyns "Java in 9 hours | freeCodeCamp ") 16 | - [🎥 Java full course ☕ | Bro Code 🎥](https://youtu.be/xk4_1vDrzzo "Java full course ☕ | Bro Code") 17 | - [Java Programlama | Yazılım Bilimi](https://www.youtube.com/playlist?list=PLIHume2cwmHctrHFHADb0slNyn95x2M4I) 18 | - [Java ile 2D Oyun Geliştirme | Yazılım Bilimi](https://www.youtube.com/watch?v=-tLJr7fAads&list=PLIHume2cwmHcGWl_h31xBh1zSlqmxfFRQ) 19 | - [JavaFx Tutorial For Beginners | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIaUGP446_pWLgTZPiFizEMq) 20 | - [JavaFx Tutorial | Bro Code](https://www.youtube.com/playlist?list=PLZPZq0r_RZOM-8vJA3NQFZB7JroDcMwev) 21 | - [Java Full Course | Bro Code](https://www.youtube.com/watch?v=xk4_1vDrzzo) 22 | - [Java Tutorial For Beginners (Step by Step tutorial) | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIbfTjQvTdj8Y6yyq4R7g-Al) 23 | - [Java Swing GUI Programming Tutorial | ProgrammingKnowledge](https://www.youtube.com/watch?v=mDxEGtMNPtA) 24 | 25 | ## Intermediate 26 | 27 | - [Java Documentation](https://docs.oracle.com/en/java/ "Java Documentation") 28 | - [Kurumsal Java | Özcan Acar](http://www.kurumsaljava.com/icerik/java/ "Kurumsal Java") 29 | - [Java'da Multithreading | Ufuk Uzun](https://ufukuzun.wordpress.com/yayinlarim/javada-multithreading/ "Java'da Multithreading") 30 | - [Java Tutorial | JavaTpoint](https://www.javatpoint.com/java-tutorial "Java Tutorial | JavaTpoint") 31 | - [Tutorialspoint Java Tutorial](https://www.tutorialspoint.com/java/index.htm "Tutorialspoint Java Tutorial") 32 | - [Ram N Java Tutorial](https://www.youtube.com/user/ramram43210/playlists) 33 | 34 | ## Advanced 35 | 36 | - [İleri Java | Özcan Acar](http://www.kurumsaljava.com/icerik/ileri-advanced-java/ "İleri Java | Özcan Acar") 37 | - [🎥 Data Structures Easy to Advanced Course | freeCodeCamp 🎥](https://youtu.be/RBSGKlAvoiM "Data Structures Easy to Advanced Course | freeCodeCamp") 38 | -------------------------------------------------------------------------------- /docs/programming-languages/kotlin.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: kotlin 3 | title: Kotlin 4 | sidebar_label: Kotlin 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Kotlin tutorial | tutorialkart](https://www.tutorialkart.com/kotlin-tutorial/ "Kotlin tutorial") 10 | - [Kotlin Full Course(EN) | FreeCodeCamp](https://youtu.be/F9UC9DY-vIU) 11 | - [Kotlin Uygulama Geliştirme | İbrahim Aytimur](https://youtube.com/playlist?list=PLCP6k-R8kogT5-wOw71q4lc0cai1PiaTx) 12 | - [Kotlin Eğitim Seti | Emre Köse](https://youtube.com/playlist?list=PLueFkQL21d3j-KHr6LY07mFTtv0O-pTY-) 13 | 14 | ## Intermediate 15 | 16 | - [Kotlin Giriş Sayfası Kodlama | İbrahim Aytimur](https://youtu.be/C7g4VBRSyjo) 17 | - [Build An Simple App | Traversy Media(EN)](https://youtu.be/BBWyXo-3JGQ) 18 | 19 | ## Advanced 20 | 21 | - [Notes App | Coding With Farhan](https://youtube.com/playlist?list=PLpc1_FLg4LiMzUDQO6ALRgQwZ5SMzEXo0) 22 | - [Android Food Recipe App | Coding With Farhan](https://youtube.com/playlist?list=PLpc1_FLg4LiMzUDQO6ALRgQwZ5SMzEXo0) 23 | -------------------------------------------------------------------------------- /docs/programming-languages/lua.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: lua 3 | title: Lua 4 | sidebar_label: Lua 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/programming-languages/matlab.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: matlab 3 | title: Matlab 4 | sidebar_label: Matlab 5 | --- 6 | 7 | ## Beginner 8 | 9 | [Project Euler](https://projecteuler.net/) 10 | 11 | ## Intermediate 12 | 13 | [Corrnell University](https://confluence.cornell.edu/display/SIMULATION/MATLAB+Learning+Modules) 14 | 15 | ## Advanced 16 | -------------------------------------------------------------------------------- /docs/programming-languages/python.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: python 3 | title: Python 4 | sidebar_label: Python 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Python Programlama Dili | yazbel](https://python-istihza.yazbel.com/ "Python Programlama Dili | yazbel") 10 | - [Python Programlamaya Giriş | veridefteri](http://www.veridefteri.com/category/python-giris/ "Python Programlamaya Giriş") 11 | - [Erdinç Uzun](https://erdincuzun.com/python/01-python/ "Erdinç Uzun") 12 | - [Python Türkçe Dökümanlar | Dincer Aydın ](http://www.dinceraydin.com/python/tut/tut.html "Python Türkçe Dökümanlar") 13 | - [🎥 Yeni Başlayanlar için Python Eğitim Kursu | freeCodeCamp 🎥](https://youtu.be/rfscVS0vtbw "Yeni Başlayanlar için Python Eğitim Kursu") 14 | - [🎥 Python Tutorial for Beginners | Corey Schafer 🎥](https://youtu.be/YYXdXT2l-Gg "Python Tutorial for Beginners") 15 | - [🎥 Python Programlama Dersleri | Yazılım Bilimi 🎥](https://youtu.be/tvvEqvyh_Vw "Python Programlama Dersleri") 16 | - [🎥 PYTHON v3 Giriş | Sadi Evren Şeker 🎥](https://youtu.be/AaOv4BjN2UY "PYTHON v3 Giriş") 17 | - [Tons of Algorithmic Solutions with Python](https://github.com/TheAlgorithms/Python) 18 | - [Python Projects with Beginners](https://beginnerpythonprojects.com) 19 | - [Python Programlama öğreten oyun | checkio](https://py.checkio.org/ "Python Programlama öğreten oyun") 20 | - [CSD-1993 / Kurs Notlari | Uygulamalı Notlar](https://github.com/CSD-1993/KursNotlari/blob/master/Python-App.pdf) 21 | - [Python Programlama Notları](https://github.com/e-k-eyupoglu/python_tutorial/tree/main/main) 22 | - [Python Tutorial for Beginners - Learn Python in 5 Hours | TechWorld With Nana](https://www.youtube.com/watch?v=t8pPdKYpowI) 23 | - [Python Full Course | Bro Code](https://www.youtube.com/watch?v=XKHEtdqhLK8) 24 | 25 | ## Intermediate 26 | 27 | - [Python Programlama öğreten oyun | checkio](https://py.checkio.org/ "Python Programlama öğreten oyun") 28 | - [The Python Tutorial](https://docs.python.org/3/tutorial/ "The Python Tutorial") 29 | - [RealPython Tutorials](https://realpython.com/ "RealPython Tutorials") 30 | - [The Hitchhikker's Guide to Python](https://docs.python-guide.org) 31 | - [python_mini_projeler|ozcanyarimdunya](https://github.com/ozcanyarimdunya/python_mini_projeler) 32 | - [Pygame - Making Games with Python | sentdex](https://www.youtube.com/playlist?list=PLQVvvaa0QuDcxG_Cajz1JyTH6eAvka93C) 33 | - [Intermediate Python Tutorials | sentdex](https://www.youtube.com/playlist?list=PLQVvvaa0QuDfhTF3Zfyzc_yD-Mq9iTp4G) 34 | - [Python Tutorial Videos | Simplilearn](https://www.youtube.com/playlist?list=PLEiEAq2VkUUKoW1o-A-VEmkoGKSC26i_I) 35 | 36 | ## Advanced 37 | 38 | - [Python Programlama öğreten oyun | checkio](https://py.checkio.org/ "Python Programlama öğreten oyun") 39 | - [Advanced Python Tutorials](https://realpython.com/tutorials/advanced/ "Advanced Python Tutorials") 40 | - [Cryptography with Python](https://www.tutorialspoint.com/cryptography_with_python/cryptography_with_python_quick_guide.htm "Cryptography with Python") 41 | - [🎥 Algorithmic Trading Using Python | freeCodeCamp 🎥](https://youtu.be/xfzGZB4HhEE "Algorithmic Trading Using Python | freeCodeCamp") 42 | - [🎥 Python Pandas Tutorial | Corey Schafer 🎥](https://youtu.be/ZyhVh-qRZPA "Python Pandas Tutorial") 43 | - [🎥 Matplotlib Tutorial | Corey Schafer 🎥](https://youtu.be/UO98lJQ3QGI "Matplotlib Tutorial") 44 | - [Python Tutorials | Corey Schafer](https://www.youtube.com/playlist?list=PL-osiE80TeTt2d9bfVyTiXJA-UTHn6WwU) 45 | -------------------------------------------------------------------------------- /docs/programming-languages/r.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: r 3 | title: R 4 | sidebar_label: R 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [R Programming Full Course In 7 Hours | Simplilearn](https://www.youtube.com/watch?v=KlsYCECWEWE) 10 | - [R Programming Tutorial | FreeCodeCamp](https://www.youtube.com/watch?v=_V8eKsto3Ug) 11 | - [R Programming Tutorial | Data Analysis with R | ProgrammingKnowledge](https://www.youtube.com/watch?v=3rVOSw-wrb4) 12 | 13 | ## Intermediate 14 | 15 | ## Advanced 16 | -------------------------------------------------------------------------------- /docs/programming-languages/ruby.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: ruby 3 | title: Ruby 4 | sidebar_label: Ruby 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [1 Videoda Ruby](https://youtu.be/p4Kq30td9VA) 10 | - [Ruby for Beginners](http://ruby-for-beginners.rubymonstas.org) 11 | - [Ruby Tutorial For Beginners | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIbNBXZAeVbkkHEj9zsEbXQK) 12 | - [Ruby Türkçe Tutorial](https://github.com/bahadiraraz/ruby-tutorial) 13 | 14 | ## Intermediate 15 | 16 | - [Shoesrb for GUI](https://shoesrb.com) 17 | 18 | ## Advanced 19 | 20 | - [Ruby with .Net](http://ironruby.net) 21 | - [Ruby for the Objective-C Runtime](http://macruby.org) 22 | - [Ruby on the JVM](https://www.jruby.org) 23 | - [Cross Platform Ruby Development](http://www.rubymotion.com) 24 | -------------------------------------------------------------------------------- /docs/programming-languages/rust.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: rust 3 | title: Rust 4 | sidebar_label: Rust 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Rust Programming Language Official Book](https://doc.rust-lang.org/book/) 10 | - [Rustlings](https://github.com/rust-lang/rustlings/) 11 | - [Rust by Example](https://doc.rust-lang.org/stable/rust-by-example/) 12 | - [Learning Rust](https://learning-rust.github.io/) 13 | - [Rust Öğrenmek](https://github.com/RustDili/Rust-Ogrenmek) 14 | - [The Cargo Book](https://doc.rust-lang.org/cargo/index.html) 15 | - [The Rustdoc Book](https://doc.rust-lang.org/rustdoc/index.html) 16 | - [Rust Compiler Error Index](https://doc.rust-lang.org/error-index.html) 17 | - [Rust and WebAssembly](https://rustwasm.github.io/docs/book/) 18 | - [Cli Applications in Rust](https://rust-cli.github.io/book/index.html) 19 | 20 | ## Intermediate 21 | 22 | - [The Standard Rust Library](https://doc.rust-lang.org/std/index.html) 23 | ## Advanced 24 | 25 | - [Rust Edition Guide](https://doc.rust-lang.org/edition-guide/index.html) 26 | - [The Rustc Book](https://doc.rust-lang.org/rustc/index.html) 27 | - [The Embedded Rust Book](https://doc.rust-lang.org/stable/embedded-book/) 28 | -------------------------------------------------------------------------------- /docs/programming-languages/swift.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: swift 3 | title: Swift 4 | sidebar_label: Swift 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Apple Developer Documentations](https://developer.apple.com/documentation/) 10 | - [Apple Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/) 11 | 12 | ## Intermediate 13 | 14 | - [iOS Design Handbook](https://designcode.io/ios-design-handbook) 15 | - [SwiftUI Handbook](https://designcode.io/swiftui-handbook) 16 | - [SwiftUI ile iOS Programlama](https://www.youtube.com/playlist?list=PLq4I99QKpIbl02hl7UM3cj-ay1w2Z3Bq6) 17 | 18 | ## Advanced 19 | 20 | - [CS193p iPhone Application Development Spring 2020](https://youtube.com/playlist?list=PLpGHT1n4-mAtTj9oywMWoBx0dCGd51_yG) 21 | - [Hacking with Swift](https://youtube.com/playlist?list=PLuoeXyslFTuas6GrfsUiFPShGXmaVDbgN) 22 | - [How to show a map view - SwiftUI](https://www.youtube.com/watch?v=-B-bnQSQr90&list=PLuoeXyslFTuaX59K2KL-HK2NxbdWiz3Tm) 23 | - [SwiftUI Tutorial: Build a dynamic list app with navigation and images - SwiftUI Complete Apps #1](https://www.youtube.com/watch?v=VGJBLlfSN-Y&list=PLuoeXyslFTuaZtX7xSYbWz3TR0Vpz39gK) 24 | - [Lets Build That App](https://www.youtube.com/c/LetsBuildThatApp/videos) 25 | - [Clean Architecture for SwiftUI](https://nalexn.github.io/clean-architecture-swiftui/) 26 | -------------------------------------------------------------------------------- /docs/style-guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: style-guide 3 | title: Style Guide 4 | sidebar_label: Style Guide 5 | slug: /style-guide 6 | --- 7 | :::note 8 | 9 | This is your style guide to contribute with more flavor 😋 10 | 11 | ::: 12 | 13 | You can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/). 14 | 15 | ## Markdown Syntax 16 | 17 | To serve as an example page when styling markdown based Docusaurus sites. 18 | 19 | ## Headers 20 | ``` 21 | # H1 - Create the best documentation 22 | 23 | ## H2 - Create the best documentation 24 | 25 | ### H3 - Create the best documentation 26 | 27 | #### H4 - Create the best documentation 28 | 29 | ##### H5 - Create the best documentation 30 | 31 | ###### H6 - Create the best documentation 32 | ``` 33 | 34 | --- 35 | 36 | ## Emphasis 37 | ``` 38 | Emphasis, aka italics, with _asterisks_ or _underscores_. 39 | 40 | Strong emphasis, aka bold, with **asterisks** or **underscores**. 41 | 42 | Combined emphasis with **asterisks and _underscores_**. 43 | 44 | Strikethrough uses two tildes. ~~Scratch this.~~ 45 | ``` 46 | 47 | --- 48 | 49 | ## Lists 50 | ``` 51 | 1. First ordered list item 52 | 1. Another item 53 | - Unordered sub-list. 54 | 1. Actual numbers don't matter, just that it's a number 55 | 1. Ordered sub-list 56 | 1. And another item. 57 | 58 | - Unordered list can use asterisks 59 | 60 | * Or minuses 61 | 62 | - Or pluses 63 | ``` 64 | 65 | --- 66 | 67 | ## Links 68 | ``` 69 | [I'm an inline-style link](https://www.google.com/) 70 | 71 | [I'm an inline-style link with title](https://www.google.com/ "Google's Homepage") 72 | 73 | [I'm a reference-style link][arbitrary case-insensitive reference text] 74 | 75 | [You can use numbers for reference-style link definitions][1] 76 | 77 | Or leave it empty and use the [link text itself]. 78 | 79 | URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com/ or and sometimes example.com (but not on GitHub, for example). 80 | 81 | Some text to show that the reference links can follow later. 82 | 83 | [arbitrary case-insensitive reference text]: https://www.mozilla.org/ 84 | [1]: http://slashdot.org/ 85 | [link text itself]: http://www.reddit.com/ 86 | ``` 87 | 88 | --- 89 | 90 | ## Images 91 | 92 | ``` 93 | Here's our logo (hover to see the title text): 94 | 95 | Inline-style: ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1") 96 | 97 | Reference-style: ![alt text][logo] 98 | 99 | [logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2" 100 | 101 | Images from any folder can be used by providing path to file. Path should be relative to markdown file. 102 | 103 | ![img](../static/img/logo.svg) 104 | ``` 105 | 106 | --- 107 | 108 | ## Code 109 | 110 | ```` 111 | ```javascript 112 | function fancyAlert(arg) { 113 | if(arg) { 114 | $.facebox({div:'#foo'}) 115 | } 116 | } 117 | ``` 118 | ```` 119 | 120 | --- 121 | 122 | ## Tables 123 | 124 | ``` 125 | Colons can be used to align columns. 126 | 127 | | Tables | Are | Cool | 128 | | ------------- | :-----------: | -----: | 129 | | col 3 is | right-aligned | \$1600 | 130 | | col 2 is | centered | \$12 | 131 | | zebra stripes | are neat | \$1 | 132 | 133 | There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown. 134 | 135 | | Markdown | Less | Pretty | 136 | | -------- | --------- | ---------- | 137 | | _Still_ | `renders` | **nicely** | 138 | | 1 | 2 | 3 | 139 | ``` 140 | 141 | --- 142 | 143 | ## Blockquotes 144 | 145 | ``` 146 | > Blockquotes are very handy in email to emulate reply text. This line is part of the same quote. 147 | 148 | Quote break. 149 | 150 | > This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote. 151 | ``` 152 | 153 | --- 154 | 155 | ## Inline HTML 156 | 157 | ``` 158 |
159 |
Definition list
160 |
Is something people use sometimes.
161 | 162 |
Markdown in HTML
163 |
Does *not* work **very** well. Use HTML tags.
164 |
165 | ``` 166 | 167 | --- 168 | 169 | ## Line Breaks 170 | 171 | ``` 172 | Here's a line for us to start with. 173 | 174 | This line is separated from the one above by two newlines, so it will be a _separate paragraph_. 175 | 176 | This line is also a separate paragraph, but... This line is only separated by a single newline, so it's a separate line in the _same paragraph_. 177 | ``` 178 | 179 | --- 180 | 181 | ## Admonitions 182 | 183 | ``` 184 | :::note 185 | 186 | This is a note 187 | 188 | ::: 189 | 190 | :::tip 191 | 192 | This is a tip 193 | 194 | ::: 195 | 196 | :::important 197 | 198 | This is important 199 | 200 | ::: 201 | 202 | :::caution 203 | 204 | This is a caution 205 | 206 | ::: 207 | 208 | :::warning 209 | 210 | This is a warning 211 | 212 | ::: 213 | ``` 214 | 215 | :::note 216 | 217 | This is a note 218 | 219 | ::: 220 | 221 | :::tip 222 | 223 | This is a tip 224 | 225 | ::: 226 | 227 | :::important 228 | 229 | This is important 230 | 231 | ::: 232 | 233 | :::caution 234 | 235 | This is a caution 236 | 237 | ::: 238 | 239 | :::warning 240 | 241 | This is a warning 242 | 243 | ::: 244 | -------------------------------------------------------------------------------- /docs/web-development/angularjs.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: angularjs 3 | title: AngularJS / Angular 4 | sidebar_label: AngularJS / Angular 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Angular 5 Dersleri | Engin Demiroğ](https://www.youtube.com/playlist?list=PLqG356ExoxZWvyGkeytVjxpO-4BhjXvJ5) 10 | - [Angular 7 Dersleri | Mehmet Sert](https://www.youtube.com/playlist?list=PLqG356ExoxZUOaq1ZiQEYBzVAKEB8BVL8) 11 | - [Angular Crash Course | Traversy Media](https://www.youtube.com/watch?v=Fdf5aTYRW0E) 12 | 13 | ## Intermediate 14 | 15 | - [Hızlandırılmış Angular Dersleri](https://www.youtube.com/playlist?list=PLSM07tMt8osNHLM_yfUnWafZ61m4FIbw1) 16 | - [AngularJS Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQmX2bItSRCqwiQZn5dIL1gt) 17 | 18 | ## Advanced 19 | 20 | - [Ionic 4 + Firebase + Angular | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQnpK36-GJjm7IEAuHR7IExa) 21 | -------------------------------------------------------------------------------- /docs/web-development/asp-net-mvc.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: asp-net-mvc 3 | title: ASP.NET MVC 4 | sidebar_label: ASP.NET MVC 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [ASP.NET MVC Dersleri | Kenan Yıldırım](https://www.youtube.com/watch?v=-Fgpo2HvGIE&list=PLpiXyP9d3U1pUCEi8-S2pXzQchNuqJ3Kp) 10 | - [Introduction to ASP.NET MVC Tips, Best Practices | TimCorey(EN)](https://www.youtube.com/watch?v=phyV-OQNeRM) 11 | - [ASP.NET Core Dersleri | Sadık Turan](https://youtube.com/playlist?list=PLXuv2PShkuHyuMzZC1u0SyWB3Aot8MHCv) 12 | - [ASP.NET Mvc 5 Dersleri | Sadık Turan](https://youtube.com/playlist?list=PLXuv2PShkuHyyRQmZlty28LvXEGLp7pWy) 13 | 14 | ## Intermediate 15 | 16 | - [ASP.NET Mvc ile E-Ticaret Projesi | Sadık Turan](https://youtube.com/playlist?list=PLXuv2PShkuHx1ojAJU-fCaxNYDIsBTELp) 17 | 18 | ## Advanced 19 | -------------------------------------------------------------------------------- /docs/web-development/asp-net-webform.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: asp-net-webforms 3 | title: ASP.NET Web Forms 4 | sidebar_label: ASP.NET Web Forms 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | ## Advanced 12 | -------------------------------------------------------------------------------- /docs/web-development/back-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: back-end-web 3 | title: Back-End 4 | sidebar_label: Back-End 5 | --- 6 | 7 | ## Websites 8 | 9 | - [Mikroservis Mimari | Suat Köse](https://suadev.gitbook.io/turkish-microservices-book/) 10 | - [FreeCodeCamp(EN)](https://www.freecodecamp.org/news/learn-backend-development/) 11 | 12 | ## Youtube 13 | 14 | - [Ali Kutluozen - Back End Rehberi, Yol Haritası - Backend Nedir, Ne Yapar? - Hayırdır?](https://youtu.be/4ESSzhNyutI) 15 | - [Back-End Developer Hangi Konulara Hakim Olmalı? | Umut Umutluoğlu](https://youtu.be/7SpLnbTqO9I) 16 | - [Web Programlama Hangi Amaçla Kullanılır? | Sadık Turan](https://youtu.be/8xz_3kme1HU) 17 | - [Back-End Developer Guide | Clever Programmer(EN)](https://youtu.be/-bjJetWnNZg) 18 | 19 | ## Newsletter 20 | -------------------------------------------------------------------------------- /docs/web-development/css.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: css 3 | title: CSS 4 | sidebar_label: CSS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [W3Schools CSS](https://www.w3schools.com/css/default.asp "W3Schools CSS") 10 | - [Tutorialspoint CSS](https://www.tutorialspoint.com/css/index.htm "Tutorialspoint CSS") 11 | - [🎥 CSS Tutorial | freeCodeCamp 🎥](https://youtu.be/1Rs2ND1ryYc "CSS Tutorial | freeCodeCamp") 12 | - [🎥 CSS Crash Course For Absolute Beginners 🎥](https://youtu.be/yfoY53QXEnI "CSS Crash Course For Absolute Beginners") 13 | - [CSS3 Zero To Hero | freeCodeCamp](https://youtu.be/1Rs2ND1ryYc) 14 | - [Html Css Bootstrap | Yazılım Bilimi](https://youtube.com/playlist?list=PLIHume2cwmHdvlKx7q1HTAar-Hm-4wwgu) 15 | 16 | ## Intermediate 17 | 18 | - [CSS Intermediate Flex-Grid | James Q Quick](https://youtu.be/IyYC-hSFEFQ) 19 | - [CSS Gradient](https://cssgradient.io/ "CSSGradient") 20 | 21 | ## Advanced 22 | -------------------------------------------------------------------------------- /docs/web-development/denojs.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: denojs 3 | title: DenoJS 4 | sidebar_label: DenoJS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Deno Manual](https://deno.land/manual) 10 | - [The Deno Handbook by Flavio Copes](https://flaviocopes.com/deno/) 11 | - [Deno Crash Course by Bitfumes](https://youtu.be/zU6-8w1IR-I) 12 | - [Deno Course by freeCodeCamp](https://youtu.be/TQUy8ENesGY) 13 | 14 | ## Intermediate 15 | 16 | - [Developing with Deno: Rest API](https://medium.com/swlh/developing-with-deno-rest-api-911cfc772c7f) 17 | - [Build a GraphQL server in Deno using Oak](https://youtu.be/Rc_HhL55JZM) 18 | - [Deploy your first Deno Web App to Heroku](https://youtu.be/yXH8VFLh2yA) 19 | - [Real Time Chat System With Deno](https://youtu.be/haOrVOUnDlw) 20 | - [Deno Websockets Tutorial | The Net Ninja](https://www.youtube.com/watch?v=CLLtnaOGIqo&list=PL4cUxeGkcC9gie1HrzOlzGZdEHLKhwNJE) 21 | - [Deno Jump-Start Tutorial | The Net Ninja](https://www.youtube.com/watch?v=2iLeRzHvc10&list=PL4cUxeGkcC9gnaJdxuGvEGYQ9iHb8mxsh) 22 | 23 | 24 | ## Advanced 25 | -------------------------------------------------------------------------------- /docs/web-development/django.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: django 3 | title: Django 4 | sidebar_label: Django 5 | --- 6 | 7 | ## Beginner 8 | - [Writing your first Django app](https://www.djangoproject.com/start/ "Django Official Documentation") 9 | - [Simple is better than complex](https://simpleisbetterthancomplex.com/ "Simple is better than complex") 10 | - [Tutorials Point](https://www.tutorialspoint.com/django/index.htm "Tutorials Point") 11 | - [Full Stack Python](https://www.fullstackpython.com/django.html "Full Stack Python") 12 | - [Django Girls English](https://tutorial.djangogirls.org/en/index.html "Django Girls English") 13 | - [Django Girls Turkish](https://tutorial.djangogirls.org/tr/index.html "Django Girls Turkish") 14 | - [Gökmen Görgen Django Notlarım](https://gokmengorgen.net/django-notes/ "Gökmen Görgen Django Notlarım") 15 | - [Halil Özel Django Nedir?](https://halilozel1903.medium.com/django-nedir-52b29ebb7298 "Halil Özel Django Nedir?") 16 | - [🎥 Python - Django Eğitimleri | Bilgisayar Kavramları 🎥](https://youtu.be/l1EQ2GfxmUg "Python - Django Eğitimleri | Bilgisayar Kavramları") 17 | - [🎥 Django Dersleri | Barış Aslan 🎥](https://youtu.be/uwVmWS1yJ1k "Django Dersleri | Barış Aslan") 18 | - [🎥 Python Django Web Framework - Full Course for Beginners | freeCodeCamp 🎥](https://youtu.be/F5mRW0jo-U4 "Python Django Web Framework - Full Course for Beginners | freeCodeCamp") 19 | - [Django Tutorial (Create a Blog) | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9ib4HsrXEYpQnTOTZE1x0uc) 20 | 21 | ## Intermediate 22 | - [Real Python](https://realpython.com/tutorials/django/ "Real Python") 23 | - [Murat Vuranok MongoDB-Django](https://medium.com/batech/mongodb-django-69e6b9d3625d "Murat Vuranok MongoDB-Django") 24 | - [🎥 Django Testing Tutorial 🎥](https://youtu.be/qwypH3YvMKc "🎥 Django Testing Tutorial 🎥") 25 | 26 | ## Advanced 27 | - [Advanced Django Training](https://django-advanced-training.readthedocs.io/en/latest/ "Advanced Django Training") 28 | - [How to write reusable apps](https://docs.djangoproject.com/en/3.1/intro/reusable-apps/ "https://docs.djangoproject.com/en/3.1/intro/reusable-apps/") 29 | - [Django Official Documentation](https://docs.djangoproject.com/en/3.1/genindex/ "Django Official Documentation") 30 | - [🎥 Full Stack React & Django | Traversy Media 🎥](https://youtu.be/Uyei2iDA4Hs "Full Stack React & Django | Traversy Media") 31 | -------------------------------------------------------------------------------- /docs/web-development/flask.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: flask 3 | title: Flask 4 | sidebar_label: Flask 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [🎥 Flask Mini Seri | Yazılım Bilimi 🎥](https://youtu.be/pNqtDpcPJm0 "Flask Mini Seri") 10 | - [🎥 Learn Flask for Python | freeCodeCamp 🎥](https://youtu.be/Z1RJmh_OqeA "Learn Flask for Python") 11 | - [Python Flask Tutorial | ProgrammingKnowledge](https://www.youtube.com/watch?v=Kja_28SNIow&list=PLS1QulWo1RIZ6OujqIAXmLR3xsDn_ENHI) 12 | 13 | ## Intermediate 14 | 15 | - [Flask Tutorial](https://flask.palletsprojects.com/en/1.1.x/tutorial/ "Flask Tutorial") 16 | - [Tutorialspoint Flask Tutorial]( https://www.tutorialspoint.com/flask/index.htm "Tutorialspoint Flask Tutorial") 17 | - [Miguel Grinberg](https://blog.miguelgrinberg.com/category/Flask "Miguel Grinberg") 18 | - [Explore Flask](https://exploreflask.com/en/latest/ "Explore Flask") 19 | - [How To Structure Large Flask Applications](https://www.digitalocean.com/community/tutorials/how-to-structure-large-flask-applications "How To Structure Large Flask Applications") 20 | - [Flask Tutorial | Full Stack Python](https://www.fullstackpython.com/flask.html "Flask Tutorial | Full Stack Python") 21 | - [Restful API With Flask | ProgrammingKnowledge](https://www.youtube.com/watch?v=kENidSltTuA&list=PLS1QulWo1RIYbSv5_R2I_QbAcvbyqBCun) 22 | 23 | ## Advanced 24 | 25 | - [Flask Tutorials | RealPython](https://realpython.com/tutorials/flask/ "Flask Tutorials") 26 | -------------------------------------------------------------------------------- /docs/web-development/front-end.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: front-end-web 3 | title: Front-End 4 | sidebar_label: Front-End 5 | --- 6 | 7 | ## Websites 8 | 9 | - [CSS Tricks](https://css-tricks.com/ "CSS Tricks") - HTML, CSS, JavaScript 10 | - [Flavio Copes](https://flaviocopes.com "Flavio Copes") - General Blog for Software Development 11 | - [Academind](https://academind.com/ "Academind") - JS Frameworks 12 | - [Fatih Hayrioğlu](https://fatihhayrioglu.com/ "Fatih Hayrioğlu") - HTML, CSS, JavaScript 13 | - [Samantha Ming](https://www.samanthaming.com/ "Samantha Ming") - HTML, CSS, JavaScript 14 | - [Ahmad Shadeed](https://ishadeed.com/ "Ahmad Shadeed") - HTML, CSS 15 | - [Smashing Magazine](https://www.smashingmagazine.com/ "Smashing Magazine") HTML, CSS, JavaScript, JavaScript Frameworks 16 | - [Chen Hui Jing](https://chenhuijing.com/ "Chen Hui Jing") - JavaScript, General Web Development 17 | - [Polypane Blog](https://polypane.app/blog/ "Polypane Blog") - HTML, CSS, General Web Development 18 | - [Ugly Duck](https://uglyduck.ca/articles/ "Ugly Duck") - HTML, CSS, JavaScript, Software Development 19 | - [CSS IRL](https://css-irl.info/ "CSS IRL") - HTML, CSS, JavaScript, Design 20 | - [Alligator](https://alligator.io/ "Alligator") - HTML, CSS, JavaScript, General Web Development 21 | - [Dev Induct](https://devinduct.com/ "Dev Induct") - HTML, CSS, JavaScript, General Web Development 22 | - [Pqina](https://pqina.nl/ "Pqina") - HTML, CSS, JavaScript, General Web Development 23 | - [CSS Animation](https://cssanimation.rocks/ "CSS Animation") - HTML, CSS, JavaScript, General Web Development 24 | - [Codrops](https://tympanus.net/codrops/ "Codrops") - HTML, CSS, JavaScript, General Web Development 25 | - [GeeksForGeeks](https://www.geeksforgeeks.org/ "GeeksForGeeks") - Programming Language Resources 26 | - [DevDocs](https://devdocs.io/ "DevDocs") - Programming Language Resources 27 | - [Türkçe Doküman](https://turkcedokuman.com/ "Türkçe Doküman") - Programming Language Resources 28 | - [W3Schools](https://turkcedokuman.com/ "W3Schools") - Programming Language Resources 29 | - [MDN Web Docs](https://developer.mozilla.org/tr/ "MDN Web Docs") - Web Development Resources 30 | - [Enjoy CSS](https://enjoycss.com/ "EnjoyCSS") - CSS Useful Site 31 | - [HTML Washer](https://www.htmlwasher.com/ "HTML Washer") - HTML Useful Site 32 | - [Can I Use](https://caniuse.com/ "Can I Use") - Web Development Useful Site 33 | - [Web Dev Trick](https://webdevtrick.com/ "Web Dev Trick") - HTML, CSS, JavaScript, General Web Development 34 | - [Free Frontend](https://freefrontend.com/ "Free Frontend") - HTML, CSS, JavaScript, General Web Development 35 | - [Code Source](https://codesource.io/ "CodeSource") - HTML, CSS, JavaScript, JavaScript Frameworks, General Web Development 36 | - [Free Code Camp](https://www.freecodecamp.org/ "freeCodeCamp") - HTML, CSS, JavaScript 37 | - [CodePen](https://codepen.io/ "CodePen") - HTML, CSS, JavaScript, Useful Site 38 | - [Albert Walicki](https://www.albertwalicki.com/blog) - HTML, CSS 39 | - [Marksheet.io](https://marksheet.io/) - HTML, CSS 40 | - [StackBlitz](https://stackblitz.com/) - HTML, CSS, JavaScript, Online code editor for Web Development 41 | 42 | ## Youtube 43 | 44 | - [Florin Pop](https://www.youtube.com/channel/UCeU-1X402kT-JlLdAitxSMA "Florin Pop") - HTML, CSS, JavaScript, JavaScript Frameworks, General Web Development 45 | - [Dark Code](https://www.youtube.com/channel/UCD3KVjbb7aq2OiOffuungzw "DarkCode") - HTML, CSS, JavaScript 46 | - [Online Tutorials](https://www.youtube.com/channel/UCbwXnUipZsLfUckBPsC7Jog "Online Tutorials") - HTML, CSS, JavaScript 47 | - [Traversy Media](https://www.youtube.com/user/TechGuyWeb "TraversyMedia") - Web Development, Programming 48 | - [Dev Ed](https://www.youtube.com/channel/UClb90NQQcskPUGDIXsQEz5Q "Dev Ed") - HTML, CSS, JavaScript, JavaScript Frameworks 49 | - [Bedimcode](https://www.youtube.com/c/Bedimcode "Bedimcode") - HTML, CSS, Javascript 50 | - [ElegantCoder](https://www.youtube.com/c/ElegantCoder "Elegant Coder") - HTML, CSS, Javascript 51 | - [Animation Coding](https://www.youtube.com/c/AnimationCoding "Animation Coding") - HTML, CSS, Javascript 52 | - [Code Resource](https://www.youtube.com/c/CodeResource "Code Resource") - HTML, CSS, Javascript 53 | 54 | ## Newsletter 55 | 56 | - [Frontend Focus](https://frontendfoc.us/ "Frontend Focus") - HTML, CSS, JavaScript, JavaScript Frameworks, General Web Development News 57 | -------------------------------------------------------------------------------- /docs/web-development/hosting-and-servers.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: hosting-and-servers 3 | title: Hosting & Servers 4 | sidebar_label: Hosting & Servers 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [HTTP Statuses](https://httpstatuses.com/ "HTTP Statuses") 10 | - [Vercel | Frontend Deploy Service](https://vercel.com/) 11 | - [Netlify | Frontend Deploy Service](https://www.netlify.com/) 12 | - [Heroku | Backend Deploy Service](https://www.heroku.com/) 13 | - [Github Pages | Frontend Deploy Service](https://pages.github.com/) 14 | - [Firebase | Frontend Deploy Service](https://firebase.google.com/) 15 | 16 | ## Intermediate 17 | 18 | ## Advanced 19 | -------------------------------------------------------------------------------- /docs/web-development/html.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: html 3 | title: HTML 4 | sidebar_label: HTML 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [W3Schools HTML](https://www.w3schools.com/html/default.asp "W3Schools HTML") 10 | - [Tutorialspoint HTML](https://www.tutorialspoint.com/html/index.htm "Tutorialspoint HTML") 11 | - [Freecodecamp](https://www.freecodecamp.org/learn/responsive-web-design/ "Freecodecamp") 12 | - [azkod HTML dersleri](https://www.azkod.com/html "azkod HTML dersleri") 13 | - [Turkcell | Geleceği Yazanlar](https://gelecegiyazanlar.turkcell.com.tr/konu/egitim/101-html/htmle-giris "Turkcell | Geleceği Yazanlar") 14 | - [🎥 HTML Eğitim Serisi (Kablosuz kedi) 🎥](https://www.youtube.com/playlist?list=PL_f2F0Oyaj4-Qro_C0ixzMWpCiogfXxKE "HTML Eğitim Serisi (Kablosuz kedi)") 15 | - [🎥 HTML | Giriş (Kodluyoruz) 🎥](https://www.youtube.com/playlist?list=PLGrTHqyRDvx7aP99nDNRKDi70bLFr_kX- "Kodluyoruz") 16 | - [🎥 Web Odası HTML & CSS Eğitim Seti 🎥](https://www.youtube.com/watch?v=nLCveeY8CAE&list=PLkAqDZGjJrkB_a1vD4ZUIrY0IPp5LdD5S " Web Odası HTML & CSS Eğitim Seti") 17 | - [🎥 HTML Giriş | Sadi Evren Şeker 🎥](https://youtu.be/uhT5EOvjLNA "HTML Giriş") 18 | - [🎥 HTML Crash Course For Absolute Beginners | Traversy Media 🎥](https://youtu.be/UB1O30fR-EE "HTML Crash Course For Absolute Beginners | Traversy Media") 19 | - [Emmet Documentation](https://docs.emmet.io/cheat-sheet/) 20 | - [HTML + CSS Full Course | Bro Code](https://www.youtube.com/watch?v=cyuzt1Dp8X8) 21 | 22 | ## Intermediate 23 | 24 | - [MDN Web Docs HTML](https://developer.mozilla.org/tr/docs/Web/HTML "MDN Web Docs HTML") 25 | - [javatpoint HTML tutorial](https://www.javatpoint.com/html-tutorial "javatpoint HTML tutorial") 26 | - [A list of everything that *could* go in the head of your document](https://github.com/joshbuchea/HEAD "A list of everything that *could* go in the of your document") 27 | - [A list of everything that *could* go in the head of your document | turkish](https://github.com/mkg0/HEAD "A list of everything that *could* go in the of your document | turkish") 28 | - [HTML'de Örnek Yöntemler](https://github.com/umutphp/html-best-practices/blob/master/README.tr.md "HTML'de Örnek Yöntemler") 29 | 30 | ## Advanced 31 | 32 | - [Devdocs HTML](https://devdocs.io/html/ "Devdocs HTML") 33 | -------------------------------------------------------------------------------- /docs/web-development/java-spring.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: java-spring 3 | title: Java Spring 4 | sidebar_label: Java Spring 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Spring Data JPA Tutorial | AmigosCode](https://youtu.be/8SGI_XS5OPw) 10 | - [Spring Boot Tutorial | AmigosCode](https://youtu.be/9SGDpanrc8U) 11 | - [Spring Boot Tutorial for Beginners | ProgrammingKnowledge](https://www.youtube.com/playlist?list=PLS1QulWo1RIafCnQcMlGdb8Nn4eZlksCQ) 12 | - [Spring Boot Tutorial - Full In-depth Course | Daily Code Buffer](https://www.youtube.com/watch?v=c3gKseNAs9w) 13 | - [Spring Boot Primer | Tech Primers](https://www.youtube.com/playlist?list=PLTyWtrsGknYegrUmDZB6rcqMotOFZKvbn) 14 | 15 | ## Intermediate 16 | 17 | - [Spring Boot Full Stack with React.js - Full Course | AmigosCode](https://youtu.be/i-hoSg8iRG0) 18 | - [Spring Boot Full Stack with Angular - Full Course | AmigosCode](https://youtu.be/Gx4iBLKLVHk) 19 | - [Spring Security - Full Course | AmigosCode](https://youtu.be/her_7pa0vrg) 20 | - [Spring Boot 2 Reactive + Vue3 ile E-ticaret uygulaması | Haydi Kodlayalım](https://www.youtube.com/playlist?list=PLd0jsEi3hUAeLIuhXZ0DK1vih5gqivWuD) 21 | 22 | ## Advanced 23 | 24 | - [Java Spring Boot Eğitimi | Haydi Kodlayalım](https://www.youtube.com/playlist?list=PLd0jsEi3hUAfg1-tqxFvDA9q-kpZ4q4uE) 25 | - [Java SpringCloud Microservice Egitimi | Haydi kodlayalım](https://www.youtube.com/playlist?list=PLd0jsEi3hUAdKnXFDDop8V9WfBzHD5WLF) 26 | - [Spring Microservices Primer | Tech Primers](https://www.youtube.com/playlist?list=PLTyWtrsGknYdZlO7LAZFEElWkEk59Y2ak) -------------------------------------------------------------------------------- /docs/web-development/javascript.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: javascript 3 | title: JavaScript 4 | sidebar_label: JavaScript 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Dmitri Pavlutin](https://dmitripavlutin.com/ "Dmitri Pavlutin") 10 | - [JavaScript Info](https://tr.javascript.info/ "JavaScript Info") 11 | - [Learn JavaScript Programming | Programiz](https://www.programiz.com/javascript "Learn JavaScript Programming | Programiz") 12 | - [JavaScript Rehberi Başlangıç | MDN Web Docs](https://developer.mozilla.org/tr/docs/Web/JavaScript#Ba%C5%9Flang%C4%B1%C3%A7 "JavaScript Rehberi Başlangıç") 13 | - [JavaScript Tutorial | W3Schools](https://www.w3schools.com/js/default.asp "W3Schools JavaScript Tutorial") 14 | - [JavaScript30](https://javascript30.com/ "JavaScript30") 15 | - [30 Days Of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript "30 Days Of JavaScript") 16 | - [JavaScript Tutorial](https://www.javascripttutorial.net/ "JavaScript Tutorial") 17 | - [freeCodeCamp Learn](https://www.freecodecamp.org/learn/ "freeCodeCamp Learn") 18 | - [Eloquent JavaScript](https://eloquentjavascript.net/index.html) 19 | - [Modern JavaScript Explained For Dinosaurs | by Peter Jang | Node.js Collect](https://medium.com/the-node-js-collection/modern-javascript-explained-for-dinosaurs-f695e9747b70) 20 | - [Level up your JavaScript browser logs with these console.log() tips - DEV](https://dev.to/ackshaey/level-up-your-javascript-browser-logs-with-these-console-log-tips-55o2?amp%3Butm_campaign=digest_email&%3Butm_medium=email) 21 | - [Web Skills](https://andreasbm.github.io/web-skills) 22 | - [JavaScript: Modüller - Yazılım ile ilgili notlar](https://blog.selcukcihan.com/web-development/javascript-moduller) 23 | - [Essential Javascript - a free JavaScript programming book](https://essential-javascript.programming-books.io/) 24 | - [Front End Interview Handbook | Front End Interview Handbook](https://yangshun.github.io/front-end-interview-handbook/) 25 | - [Ön Yüz Yazılımcısı - Front-end Developer - Mülakat Soruları ★ Front-end Job](https://h5bp.org/Front-end-Developer-Interview-Questions/translations/turkish?amp%3Butm_medium=email&%3Butm_source=Revue+newsletter#general-questions) 26 | - [fatihhayri/es6-turkce-kaynaklar: ES6 Türkçe kaynak listesi](https://github.com/fatihhayri/es6-turkce-kaynaklar) 27 | - [Javascript Full Course for Beginners to Advanced | AmigosCode](https://www.youtube.com/watch?v=dOnAC2Rr-6A) 28 | - [Javascript Full Course | Bro Code](https://www.youtube.com/watch?v=t9dEgHpCNJE) 29 | 30 | ## Intermediate 31 | 32 | - [Nick Scialli](https://nick.scialli.me/ "Nick Scialli") 33 | - [Dmitri Pavlutin](https://dmitripavlutin.com/ "Dmitri Pavlutin") 34 | - [Carlos Caballero](https://carloscaballero.io/ "Carlos Caballero") 35 | - [2ality](https://2ality.com/ "2ality") 36 | - [Zell Liew](https://zellwk.com/blog/ "Zell Liew") 37 | - [Jared Nielsen](https://jarednielsen.com/blog/ "Jared Nielsen") 38 | - [JavaScript Rehberi Orta seviye | MDN Web Docs](https://developer.mozilla.org/tr/docs/Web/JavaScript#Orta_seviye "JavaScript Rehberi Orta seviye") 39 | - [JavaScript’de Currying nedir?. Yıllar önce JavaScript’i yeni öğrenen… | by Gökhan İpek | Jan, 2021 | Medium](https://gokhanipek.medium.com/javascriptde-currying-nedir-8ac3500da1d3) 40 | - [JavaScript Visualized: Promises & Async/Await | by Mahmut Yıldız | Feb, 2021 | Cimri Engineering](https://engineering.cimri.com/javascript-visualized-promises-async-await-f49c9233fb65) 41 | - [Mastering Hard Parts of JavaScript: Callbacks I - DEV](https://dev.to/internettradie/mastering-hard-parts-of-javascript-callbacks-i-3aj0) 42 | - [11 JavaScript Tricks You Won’t Find in Most Tutorials | by Bret Cameron | Medium](https://medium.com/@bretcameron/12-javascript-tricks-you-wont-find-in-most-tutorials-a9c9331f169d) 43 | - [What the fuck is memoization? ・ Dan’s JavaScript Glossary](https://whatthefuck.is/memoization) 44 | - [JavaScript Classes, Inheritance, and Prototype Chaining (ES5 and ES6 Way)](https://medium.com/developers-arena/javascript-classes-inheritance-and-prototype-chaining-es5-and-es6-way-4b8e9416702b) 45 | - [7 JavaScript Design Patterns Every developer should know](https://codesource.io/javascript-design-patterns) 46 | - [Tarayıcılar JavaScript’i Nasıl Yorumlar? - Oğuz Kılıç - Medium](https://medium.com/@oguzkilic/taray%C4%B1c%C4%B1lar-javascripti-nas%C4%B1l-yorumlar-fbdfc472f8e3) 47 | - [Functional Binding in JavaScript - DEV Community](https://dev.to/spukas/functional-binding-in-javascript-7b1) 48 | 49 | ## Advanced 50 | 51 | - [Dmitri Pavlutin](https://dmitripavlutin.com/ "Dmitri Pavlutin") 52 | - [2ality](https://2ality.com/ "2ality") 53 | - [Zell Liew](https://zellwk.com/blog/ "Zell Liew") 54 | - [JavaScript Rehberi Üst seviye | MDN Web Docs](https://developer.mozilla.org/tr/docs/Web/JavaScript#%C3%9Cst_seviye "JavaScript Rehberi Üst seviye") 55 | - [Ecma Language Specification](https://tc39.es/ecma262/ "Ecma Language Specification") 56 | - [Deep JavaScript](https://exploringjs.com/deep-js/toc.html) 57 | - [Reactive Programming (Reaktif Programlama) Nedir? | Devnot](http://devnot.com/2020/reactive-programming-reaktif-programlama-nedir/?utm_campaign=Yaz%C4%B1l%C4%B1mc%C4%B1lar%20%C4%B0%C3%A7in%20Hafta%20Sonu%20Okumalar%C4%B1&utm_medium=email&utm_source=Revue%20newsletter) 58 | - [JavaScript nasıl çalışır?. Javascript günümüzde en popüler… | by Cem Doğan](https://cmdgn.medium.com/javascript-nas%C4%B1l-%C3%A7al%C4%B1%C5%9F%C4%B1r-d99f1c716234) 59 | - [JavaScript's Memory Management Explained](https://felixgerschau.com/javascript-memory-management) 60 | - [Write Your Own Promisify Function from Scratch](https://www-freecodecamp-org.cdn.ampproject.org/v/s/www.freecodecamp.org/news/write-your-own-promisify-function-from-scratch/amp?amp%3B_gsa=1&_js_v=a2#referrer=https%3A%2F%2Fwww.google.com&_tf=From%20%251%24s&share=https%3A%2F%2Fwww.freecodecamp.org%2Fnews%2Fwrite-your-own-promisify-function-from-scratch%2F) 61 | -------------------------------------------------------------------------------- /docs/web-development/jquery.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: jquery 3 | title: JQuery 4 | sidebar_label: JQuery 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [🎥 jQuery Crash Course | Traversy Media 🎥](https://youtu.be/3nrLc_JOF7k "jQuery Crash Course | Traversy Media") 10 | - [JQuery Eğitimi | Tayfun Erbilen](https://www.youtube.com/watch?v=Mfqobi6EX8c&list=PLfAfrKyDRWrGqHGm6YKfYe7PjrakMOGJJ) 11 | - [JQuery Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQmOHP2igpDknCdtGl7euGjE) 12 | 13 | ## Intermediate 14 | 15 | - [jQuery API Documentation](https://api.jquery.com/ "jQuery API Documentation") 16 | 17 | ## Advanced 18 | -------------------------------------------------------------------------------- /docs/web-development/laravel.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: laravel 3 | title: Laravel 4 | sidebar_label: Laravel 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Laravel 6 Tutorial for Beginners | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9hL6aCFKyagrT1RCfVN4w2Q) 10 | 11 | ## Intermediate 12 | 13 | ## Advanced 14 | -------------------------------------------------------------------------------- /docs/web-development/netcore.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: netcore 3 | title: ASP.NET Core 4 | sidebar_label: ASP.NET Core 5 | --- 6 | 7 | ## Beginner 8 | 9 | ## Intermediate 10 | 11 | - [.NET Core Web Api Dersleri | Kenan Yıldırım](https://www.youtube.com/watch?v=paI5DZq79uw&list=PLpiXyP9d3U1q251izX5xLHctZEmb8REr_) 12 | - [.NET Core Tutorial](https://www.youtube.com/playlist?list=PLRp4oRsit1bwwNs65YnxQGeuLxGMF76Tc) 13 | 14 | ## Advanced 15 | -------------------------------------------------------------------------------- /docs/web-development/nodejs.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: nodejs 3 | title: NodeJS 4 | sidebar_label: NodeJS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [W3School Nodejs Guide](https://www.w3schools.com/nodejs) 10 | - [Introduction to Nodejs (Playlist)](https://www.youtube.com/watch?v=VShtPwEkDD0&list=PLZlA0Gpn_vH_uZs4vJMIhcinABSTUH2bY) 11 | - [The Odin Project NodeJS Course](https://www.theodinproject.com/courses/nodejs) 12 | - [Rithm School Node and Express.js Fundamentals](https://www.rithmschool.com/courses/node-express-fundamentals) 13 | - [Nodejs Eğitimi | Ahmet Buğra Çakıcı](https://www.youtube.com/watch?v=dGlLoFbgmoM&list=PLHnI4uXxaT1Zd6GN-dDKB0auOBJA6BgwE) 14 | - [NodeJs + Express Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQmHbpKMARP04F344zYRX91I) 15 | 16 | ## Intermediate 17 | 18 | - [Fireship Nodejs Guide for Beginners and Intermediate (Playlist)](https://www.youtube.com/watch?v=ENrzD9HAZK4&list=PL0vfts4VzfNiq0-fXbVVdnngU1Ur2SzyZ&ab_channel=Fireship) 19 | - [Rithm School Intermediate Node and Express.js](https://www.rithmschool.com/courses/intermediate-node-express) 20 | - [Server-Side GraphQL in Node.js](https://frontendmasters.com/courses/server-graphql-nodejs/) 21 | - [NodeJS/ExpressJS Restful API Geliştirme | Ahmet Buğra Çakıcı](https://www.youtube.com/playlist?list=PLHnI4uXxaT1akM4UqP68GtlDzDYY1WeHW) 22 | - [Nestjs Crash Course | Traversy Media](https://www.youtube.com/watch?v=wqhNoDE6pb4) 23 | - [Nodejs Crash Course Tutorial | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9jsz4LDYc6kv3ymONOKxwBU) 24 | - [Nodejs Auth Tutorial (JWT) | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9iqqESP8335DA5cRFp8loyp) 25 | 26 | ## Advanced 27 | -------------------------------------------------------------------------------- /docs/web-development/php.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: php 3 | title: PHP 4 | sidebar_label: PHP 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [PHP For Absolute Beginners | Traversy Media(EN)](https://youtu.be/2eebptXfEvw) 10 | - [PHP & MySQL Tutorial | Code With Dary(EN)](https://youtu.be/cGwSm8xDSwI) 11 | - [PHP OOP Temelleri | Yazılım Bilimi](https://youtu.be/RFWHsxlhr44) 12 | - [PHP Language Tutorial (4.36 Hours) | FreeCodeCamp(EN)](https://youtu.be/OK_JCtrrv-c) 13 | 14 | ## Intermediate 15 | 16 | - [Realtime Chat Application using PHP and MySQL | CodingNepal(EN)](https://youtu.be/VnvzxGWiK54) 17 | - [PHP Hastane Otomasyon Sistemi | Yazılım Kafası](https://youtube.com/playlist?list=PLH9Bi1t-zzyI7kd-nIru4CurG3cM2w6jU) 18 | - [Simple PHP router](https://github.com/skipperbent/simple-php-router) 19 | 20 | ## Advanced 21 | -------------------------------------------------------------------------------- /docs/web-development/reactjs.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: reactjs 3 | title: ReactJS 4 | sidebar_label: ReactJS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [React Functional Components for Beginner Level](https://www.robinwieruch.de/react-function-component) 10 | - [React için bilinmesi gereken JavaScript | by ismail simsek | Medium](https://medium.com/@ismailsimsek/react-i%C3%A7in-bilinmesi-gereken-javascript-14a6ef62bd72) 11 | - [React Nedir ?. ReactJS ile Web ve Mobil Uygulamaları… | by Serkan Erip](https://medium.com/@serkanerip/react-nedir-3071b543df5b) 12 | - [orcuntuna/react-turkce-kaynak: React.js öğrenmek için kullanabileceğiniz ücretsiz Türkçe kaynak.](https://github.com/orcuntuna/react-turkce-kaynak) 13 | - [Framer Guide to React](https://www.framer.com/books/framer-guide-to-react/#theory) 14 | - [React Dersleri | Yazılım Bilimi](https://www.youtube.com/playlist?list=PLIHume2cwmHeydP0GkOzSxJHT1ph1BrWj) 15 | - [React Tutorials | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9i0_2FF-WhtRIfIJ1lXlTZR) 16 | - [React Context & Hooks Tutorial | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9hNokByJilPg5g9m2APUePI) 17 | - [Full React Tutorial | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9gZD-Tvwfod2gaISzfRiP9d) 18 | - [Learn React For Beginners in 2021 | Anthony Sistilli](https://www.youtube.com/playlist?list=PLQg6GaokU5CyvExiaMgXP_BS5WWNBfZJN) 19 | 20 | ## Intermediate 21 | 22 | - [Aklımda Kalsın: React'ta Hataları Yakalayalım | Berat Bozkurt](https://beratbozkurt.net/blog/aklimda-kalsin-reactta-hatalari-yakalayalim/) 23 | - [Use React.memo() wisely](https://dmitripavlutin.com/use-react-memo-wisely/) 24 | - [Build great React components](https://telmo.is/writing/neat-way-of-building-components) 25 | - [5 React Custom Hooks You Should Start Using (Explained) - DEV Community](https://dev.to/alterclass/5-react-custom-hooks-you-should-start-using-explained-5d18?utm_source=digest_mailer&utm_medium=email&utm_campaign=digest_email) 26 | - [React.memo, useMemo ve useCallback Nedir? | by Aykut Kardaş | Dec, 2020 | Medium](https://aykutkardas.medium.com/react-memo-usememo-ve-usecallback-nedir-31ccbdcb76c6) 27 | - [Thinking in React Hooks](https://wattenberger.com/blog/react-hooks) 28 | - [React Uygulamalarında TDD. Test güdümlü React uygulamaları… | by Oğuz Kılıç | Medium](https://oguzkilic.medium.com/react-uygulamalar%C4%B1nda-tdd-48f93335d8fb) 29 | - [Understanding the useEffect Dependency Array | by Denny Scott | Better Programming](https://medium.com/better-programming/understanding-the-useeffect-dependency-array-2913da504c44) 30 | - [useHooks - Easy to understand React Hook recipes](https://usehooks.com) 31 | - [Theming React Components with CSS Variables - Bits and Pieces](https://blog.bitsrc.io/theming-react-components-with-css-variables-ee52d1bb3d90) 32 | - [React Training: React: "mount" vs "render"?](https://reacttraining.com/blog/mount-vs-render) 33 | - [React Türkçe Dokuman](https://omergulcicek.github.io/react/) 34 | - [Complete React Tutorial (With Redux) | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9ij8CfkAY2RAGb-tmkNwQHG) 35 | - [React, Redux & Firebase App Tutorial | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9iWstfXntcj8f-dFZ4UtlN3) 36 | - [Ionic 5 + Firebase + React | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQkxcATbHyMA6wfEinKL6jPD) 37 | - [Stop using isLoading booleans](https://kentcdodds.com/blog/stop-using-isloading-booleans) 38 | - [TypeScript + React: Component patterns](https://fettblog.eu/typescript-react-component-patterns/) 39 | 40 | ## Advanced 41 | 42 | - [How to use React Context effectively](https://kentcdodds.com/blog/how-to-use-react-context-effectively) 43 | - [React Architecture: The React Provider Pattern | Morten Barklund](https://mortenbarklund.com/blog/react-architecture-provider-pattern/) 44 | - [Using React with D3.js](https://wattenberger.com/blog/react-and-d3) 45 | - [Blogged Answers: A (Mostly) Complete Guide to React Rendering Behavior](https://blog.isquaredsoftware.com/2020/05/blogged-answers-a-mostly-complete-guide-to-react-rendering-behavior/) 46 | - [A Complete Guide to useEffect — Overreacted](https://overreacted.io/a-complete-guide-to-useeffect/) 47 | - [TkDodo's blog](https://tkdodo.eu/blog/) 48 | - [Making Sense of React Hooks. This week, Sophie Alpert and I… | by Dan Abramov](https://medium.com/@dan_abramov/making-sense-of-react-hooks-fdbde8803889) 49 | - [Micro-frontend architecture and React with Web Components](https://medium.com/trendyol-tech/micro-frontend-architecture-and-react-with-web-components-c27301c68240) 50 | - [Creating a React App… From Scratch. - Noteworthy - The Journal Blog](https://blog.usejournal.com/creating-a-react-app-from-scratch-f3c693b84658) 51 | - [Blogged Answers: Why React Context is Not a "State Management" Tool (and Why It Doesn't Replace Redux) · Mark's Dev Blog](https://blog.isquaredsoftware.com/2021/01/context-redux-differences/) 52 | - [Modern React testing — Artem Sapegin’s Blog](https://blog.sapegin.me/all/react-testing-1-best-practices/) 53 | - [Next.js Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQmpzsVeR7-KnX2li19KZhxE) 54 | -------------------------------------------------------------------------------- /docs/web-development/ruby-on-rails.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: ruby-on-rails 3 | title: Ruby on Rails 4 | sidebar_label: Ruby on Rails 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Ruby on Rails Course by The Odin Project](https://www.theodinproject.com/courses/ruby-on-rails) 10 | - [Ruby on Rails Full Course by freeCodeCamp](https://youtu.be/fmyvWz5TUWg) 11 | 12 | ## Intermediate 13 | 14 | ## Advanced 15 | -------------------------------------------------------------------------------- /docs/web-development/typescript.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: typescript 3 | title: Typescript 4 | --- 5 | 6 | ## Beginner 7 | 8 | - [TypeScript Handbook](https://www.typescriptlang.org/docs/handbook/intro.html) 9 | - [Academind TypeScript Course](https://youtu.be/BwuLxPH8IDs) 10 | - [🎥 TypeScript Crash Course | Traversy Media 🎥](https://youtu.be/rAy_3SIqT-E "TypeScript Crash Course | Traversy Media") 11 | - [Typescript Tutorial | codedamn](https://www.youtube.com/playlist?list=PLYxzS__5yYQkX-95LHG5EDxPj3tVvVmRd) 12 | - [Type Level TypeScript | Gabriel Vergnaud](https://type-level-typescript.com/) 13 | 14 | ## Intermediate 15 | 16 | - [Official TypeScript Blog](https://devblogs.microsoft.com/typescript/) 17 | 18 | ## Advanced 19 | -------------------------------------------------------------------------------- /docs/web-development/vuejs.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: vuejs 3 | title: VueJS 4 | sidebar_label: VueJS 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [Vue.js Guide](https://vuejs.org/v2/guide/ "Vue.js Guide") 10 | - [🎥 Vue JS Crash Course 2021 | Traversy Media 🎥](https://youtu.be/qZXt1Aom3Cs "Vue JS Crash Course 2021") 11 | - [Getting Started with Vue - An Overview and Walkthrough Tutorial – Tania Rascia](https://www.taniarascia.com/getting-started-with-vue) 12 | - [Vue 3 Animations & Transitions Tutorial | The Net Ninja](https://www.youtube.com/watch?v=RIApQjn9fvw&list=PL4cUxeGkcC9ghm7-iTfS9n468Kp7l9Ipu) 13 | - [Vue.js 3 Tutorial | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9hYYGbV60Vq3IXYNfDk8At1) 14 | - [Vuex Tutorial | The Net Ninja](https://www.youtube.com/watch?v=BGAu__J4xoc&list=PL4cUxeGkcC9i371QO_Rtkl26MwtiJ30P2) 15 | - [Vue JS 2 Tutorial | The Net Ninja](https://www.youtube.com/playlist?list=PL4cUxeGkcC9gQcYgjhBoeQH7wiAyZNrYa) 16 | 17 | ## Intermediate 18 | 19 | - [Utilize the File Structure to Decide When to Use Vue.js Slots - Markus Oberlehner](https://markus.oberlehner.net/blog/utilize-the-file-structure-to-decide-when-to-use-vuejs-slots/) 20 | - [Async Vue.js Components - Vue.js Tutorials](https://vueschool.io/articles/vuejs-tutorials/async-vuejs-components) 21 | - [How to Server Side Rendering (SSR) with Vue.js? | by Taha Selim Aksakal | The Startup](https://medium.com/swlh/how-to-server-side-rendering-ssr-with-vue-js-71cedce7c299) 22 | - [Drag and Drop File Upload in Vue.js](https://www.raymondcamden.com/2019/08/08/drag-and-drop-file-upload-in-vuejs) 23 | 24 | ## Advanced 25 | 26 | - [Implementing the Builder Pattern in Vue.js Part 2: Forms - Markus Oberlehner](https://markus.oberlehner.net/blog/implementing-the-builder-pattern-in-vue-forms/) 27 | - [Managing Complex Waiting Experiences on Web UIs | by Fatih Kadir Akın | Medium](https://medium.com/@fkadev/managing-complex-waiting-experiences-on-web-uis-29534d2d92a8) 28 | - [Vuejs ile Unit ve e2e Testler](https://icsdefense.net/blog/vue-js-unit-ve-e2e-testler) 29 | - [Testing Vue web applications with Vuex data store & REST backend](https://www.cypress.io/blog/2017/11/28/testing-vue-web-application-with-vuex-data-store-and-rest-backend) 30 | - [Dockerizing a Vue App](https://mherman.org/blog/dockerizing-a-vue-app) 31 | -------------------------------------------------------------------------------- /docs/web-development/wordpress.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: wordpress 3 | title: Wordpress 4 | sidebar_label: Wordpress 5 | --- 6 | 7 | ## Beginner 8 | 9 | - [🎥 How To Make a WordPress Website | Tyler Moore 🎥](https://youtu.be/8AZ8GqW5iak "How To Make a WordPress Website | Tyler Moore") 10 | - [🔴 How to Publish WordPress website in 2021 with Easy 🔴](https://www.wpbeginner.com/beginners-guide/how-to-publish-a-website-step-by-step/ "How to Publish WordPress website in 2021 with Easy") 11 | - [🗄Learn Zero to Hero WordPress 🗄](https://makeawebsitehub.com/learn-wordpress/ "Learn Zero to Hero WordPress with Sources") 12 | - [👨‍🎓👩‍🎓 Learn WordPress with or within 7 days via Reading and Practicing 👨‍🎓👩‍🎓](https://www.wpbeginner.com/beginners-guide/how-to-learn-wordpress-for-free-in-a-week-or-less/ "Learn WordPress with or within 7 days via Reading and Practicing") 13 | - [🔴 Beginner to Intermediate WordPress via Blog Posts 🔴](https://www.wpbeginner.com/beginners-guide/how-to-publish-a-website-step-by-step/ "Beginner to Intermediate WordPress via Blog Posts") 14 | - [🙇 Beginner's Guide of WordPress Speed Optimization 🙇](https://kinsta.com/learn/page-speed/ "Beginners Guide of WordPress Speed Optimization") 15 | - [🔙 Backup Your Site 🔙](https://www.competethemes.com/blog/how-to-backup-wordpress-site/ "Backup Your Site") 16 | - [🦺 Entering WordPress Security 🦺](https://sucuri.net/guides/wordpress-security "Entering WordPress Security") 17 | - [❓ I'm newbie, Where Should I Start? ❓](https://neilpatel.com/blog/the-11-best-ways-to-learn-wordpress-before-and-after-launching-your-blog/ "I'm newbie, Where Should I Start?") 18 | 19 | 20 | ## Intermediate 21 | 22 | - [🛠 Became Pro on WordPress with this sources (note: ADBlock unfriendly) 🛠](https://www.creativebloq.com/web-design/wordpress-tutorials-designers-1012990/2 "Became Pro on WordPress with this Sources") 23 | - [🚛 How to Start Online Store with WordPress + WooCommerce 🚛](https://www.wpbeginner.com/wp-tutorials/how-to-start-an-online-store/ "How to start Online Store with WordPress + WooCommerce") 24 | - [👌 Intermediate Speed Optimizations and Optimizations 👌](https://kinsta.com/learn/speed-up-wordpress/ "Intermediate Speed Optmizations and Optimizations") 25 | - [🔘 Use Elementor & Build Page Easily 🔘](https://www.competethemes.com/blog/customize-wordpress-page-builder/ "Use Elementor & Build a Page Easily") 26 | - [🔐 Keep Your WordPress Site Safe 🔐](https://kinsta.com/blog/wordpress-security/ "Keep Your WordPress Site Safe") 27 | - [〄 All Over Mid-Level WordPress Tutarials 500+ 〄](https://www.wpbeginner.com/category/wp-tutorials/ "All Over Mid-Level WordPress Tutarials 500+") 28 | 29 | ## Advanced 30 | 31 | - [🟢 Advanced Level of Optimizations and SpeedMetrix 🟢](https://www.competethemes.com/blog/speed-up-wordpress/ "Advanced Level of Optimizations & Speed Optimizations and SpeedMetrix") 32 | - [🧾 Conversion Metrics, Boosts, Setup 🧾](https://www.crazyegg.com/blog/conversion-boosting-wordpress-plugins/ "Conversion Metrics, Boosts, Setup") 33 | - [🏪 WooCommerce Marketing & Sales Boost 🏪](https://www.wpexplorer.com/woocommerce-marketing-techniques/ "WooCommerce Marketing & Sales Boost") 34 | -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | title: "Source Pocket", 3 | tagline: "Your source pocket for development", 4 | url: "https://sourcepocket.io", 5 | baseUrl: "/", 6 | onBrokenLinks: "throw", 7 | onBrokenMarkdownLinks: "warn", 8 | favicon: "img/favicon.ico", 9 | organizationName: "Source-pocket", 10 | projectName: "source-pocket", 11 | themeConfig: { 12 | navbar: { 13 | logo: { 14 | alt: "Source Pocket Logo", 15 | src: "img/logo.svg", 16 | }, 17 | items: [ 18 | { 19 | to: "docs/", 20 | activeBasePath: "docs", 21 | label: "Source Pocket", 22 | position: "left", 23 | }, 24 | { 25 | href: "https://github.com/Source-pocket/source-pocket", 26 | label: "GitHub", 27 | position: "right", 28 | }, 29 | ], 30 | }, 31 | footer: { 32 | style: "dark", 33 | links: [ 34 | { 35 | title: "Pockets", 36 | items: [ 37 | { 38 | label: "Contribute", 39 | to: "docs/", 40 | }, 41 | { 42 | label: "Programming Languages Pocket", 43 | to: "docs/programming-languages/computer-science", 44 | }, 45 | { 46 | label: "Web Development Pocket", 47 | to: "docs/web-development/hosting-and-servers", 48 | }, 49 | { 50 | label: "Development Tools Pocket", 51 | to: "docs/development-tools/azure", 52 | }, 53 | { 54 | label: "Operating Systems Pocket", 55 | to: "docs/operating-systems/macos", 56 | }, 57 | { 58 | label: "Mobile Development Pocket", 59 | to: "docs/mobile-development/android", 60 | }, 61 | ], 62 | }, 63 | { 64 | items: [ 65 | { 66 | label: "Graphic Design Pocket", 67 | to: "docs/graphic-design/general-design", 68 | }, 69 | { 70 | label: "Embedded Systems Pocket", 71 | to: "docs/embedded-systems/arm", 72 | }, 73 | { 74 | label: "Databases Pocket", 75 | to: "docs/databases/mssql", 76 | }, 77 | { 78 | label: "Data Science Pocket", 79 | to: "docs/data-science/big-data", 80 | }, 81 | { 82 | label: "Artificial Intelligence Pocket", 83 | to: "docs/artificial-intelligence/artificial-intelligence", 84 | }, 85 | { 86 | label: "Game Development Pocket", 87 | to: "docs/game-development/unreal-engine", 88 | }, 89 | { 90 | label: "Network Programming Pocket", 91 | to: "docs/network-programming/ipv4-ipv6", 92 | }, 93 | ], 94 | }, 95 | { 96 | title: "More", 97 | items: [ 98 | { 99 | label: "Made with 💜 by the members of Source Pocket Team", 100 | href: "https://github.com/source-pocket/source-pocket", 101 | }, 102 | ], 103 | }, 104 | ], 105 | copyright: `Copyright © ${new Date().getFullYear()} SourcePocket, Inc. Built with Docusaurus.`, 106 | }, 107 | algolia: { 108 | apiKey: process.env.API_KEY, 109 | indexName: "sourcepocket", 110 | placeholder: "search in Source Pocket", 111 | }, 112 | }, 113 | presets: [ 114 | [ 115 | "@docusaurus/preset-classic", 116 | { 117 | docs: { 118 | sidebarPath: require.resolve("./sidebars.js"), 119 | // Please change this to your repo. 120 | editUrl: "https://github.com/Source-Pocket/source-pocket/blob/dev/", 121 | }, 122 | theme: { 123 | customCss: require.resolve("./src/css/custom.css"), 124 | }, 125 | }, 126 | ], 127 | ], 128 | }; 129 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "source-pocket", 3 | "version": "1.0.0", 4 | "private": false, 5 | "scripts": { 6 | "docusaurus": "docusaurus", 7 | "start": "docusaurus start", 8 | "build": "docusaurus build", 9 | "swizzle": "docusaurus swizzle", 10 | "deploy": "docusaurus deploy", 11 | "serve": "docusaurus serve", 12 | "clear": "docusaurus clear" 13 | }, 14 | "dependencies": { 15 | "@docusaurus/core": "2.0.0-alpha.69", 16 | "@docusaurus/preset-classic": "2.0.0-alpha.69", 17 | "@mdx-js/react": "^1.6.21", 18 | "algoliasearch-helper": "^3.6.2", 19 | "axios": "^0.21.1", 20 | "browserslist": "^4.16.5", 21 | "clsx": "^1.1.1", 22 | "dns-packet": "^1.3.2", 23 | "elliptic": "^6.5.4", 24 | "glob-parent": "^5.1.2", 25 | "immer": "^8.0.1", 26 | "ini": "^1.3.6", 27 | "is-svg": "^4.2.2", 28 | "lodash": "^4.17.21", 29 | "node-fetch": "^2.6.1", 30 | "normalize-url": "^4.5.1", 31 | "postcss": "^8.2.10", 32 | "prismjs": "^1.24.0", 33 | "react": "^16.8.4", 34 | "react-dev-utils": "^11.0.4", 35 | "react-dom": "^16.8.4", 36 | "ssri": "^8.0.1", 37 | "trim": "^0.0.3", 38 | "ua-parser-js": "^0.7.24", 39 | "url-parse": "^1.5.0" 40 | }, 41 | "browserslist": { 42 | "production": [ 43 | ">0.5%", 44 | "not dead", 45 | "not op_mini all" 46 | ], 47 | "development": [ 48 | "last 1 chrome version", 49 | "last 1 firefox version", 50 | "last 1 safari version" 51 | ] 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "Source Pocket": { 3 | "💻 Contribute": ["contribution-guide", "style-guide"], 4 | "📚 Programming Languages Pocket": [ 5 | "programming-languages/computer-science", 6 | "programming-languages/assembly", 7 | "programming-languages/c", 8 | "programming-languages/cplusplus", 9 | "programming-languages/csharp", 10 | "programming-languages/dart", 11 | "programming-languages/go", 12 | "programming-languages/java", 13 | "programming-languages/kotlin", 14 | "programming-languages/lua", 15 | "programming-languages/matlab", 16 | "programming-languages/python", 17 | "programming-languages/r", 18 | "programming-languages/ruby", 19 | "programming-languages/rust", 20 | "programming-languages/swift", 21 | ], 22 | "🌐 Web Development Pocket": [ 23 | "web-development/front-end-web", 24 | "web-development/back-end-web", 25 | "web-development/hosting-and-servers", 26 | "web-development/asp-net-mvc", 27 | "web-development/asp-net-webforms", 28 | "web-development/wordpress", 29 | "web-development/angularjs", 30 | "web-development/css", 31 | "web-development/denojs", 32 | "web-development/django", 33 | "web-development/flask", 34 | "web-development/html", 35 | "web-development/jquery", 36 | "web-development/java-spring", 37 | "web-development/javascript", 38 | "web-development/laravel", 39 | "web-development/nodejs", 40 | "web-development/netcore", 41 | "web-development/php", 42 | "web-development/reactjs", 43 | "web-development/ruby-on-rails", 44 | "web-development/typescript", 45 | "web-development/vuejs", 46 | ], 47 | "🛠 Development Tools Pocket": [ 48 | "development-tools/azure", 49 | "development-tools/aws", 50 | "development-tools/android-studio", 51 | "development-tools/docker", 52 | "development-tools/git", 53 | "development-tools/visualstudio", 54 | "development-tools/visual-studio-code", 55 | "development-tools/vim", 56 | "development-tools/kubernetes" 57 | ], 58 | "🤔 Operating Systems Pocket": [ 59 | "operating-systems/macos", 60 | "operating-systems/windows", 61 | "operating-systems/gnu-linux", 62 | "operating-systems/other-os" 63 | ], 64 | "🛠 Mobile Development Pocket": [ 65 | "mobile-development/android", 66 | "mobile-development/flutter", 67 | "mobile-development/ios", 68 | "mobile-development/reactnative", 69 | "mobile-development/xamarin", 70 | ], 71 | "🎨 Graphic Design Pocket": [ 72 | "graphic-design/general-design", 73 | "graphic-design/ui-ux-design", 74 | "graphic-design/illustrations", 75 | "graphic-design/motion-design", 76 | "graphic-design/sound-design", 77 | "graphic-design/misc-design", 78 | "graphic-design/photo-and-video", 79 | ], 80 | "⚡️ Embedded Systems Pocket": [ 81 | "embedded-systems/arm", 82 | "embedded-systems/arduino", 83 | "embedded-systems/raspberry-pi", 84 | ], 85 | "📦 Databases Pocket": [ 86 | "databases/mssql", 87 | "databases/mysql", 88 | "databases/mongodb", 89 | "databases/postgresdb", 90 | "databases/sql-tsql-plsql", 91 | ], 92 | "📦 Data Science Pocket": [ 93 | "data-science/big-data", 94 | "data-science/statistical-learning", 95 | ], 96 | "🤖 Artificial Intelligence Pocket": [ 97 | "artificial-intelligence/artificial-intelligence", 98 | "artificial-intelligence/computer-vision", 99 | "artificial-intelligence/deep-learning", 100 | "artificial-intelligence/machine-learning", 101 | "artificial-intelligence/resources", 102 | ], 103 | "👾 Game Development Pocket": [ 104 | "game-development/unreal-engine", 105 | "game-development/unity", 106 | ], 107 | "🌍 Network Programming Pocket": [ 108 | "network-programming/ipv4-ipv6", 109 | "network-programming/network", 110 | "network-programming/tcpip", 111 | ] 112 | }, 113 | }; 114 | -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- 1 | /* stylelint-disable docusaurus/copyright-header */ 2 | /** 3 | * Any CSS included here will be global. The classic template 4 | * bundles Infima by default. Infima is a CSS framework designed to 5 | * work well for content-centric websites. 6 | */ 7 | 8 | /* You can override the default Infima variables here. */ 9 | :root { 10 | --ifm-color-primary: #25c2a0; 11 | --ifm-color-primary-dark: rgb(33, 175, 144); 12 | --ifm-color-primary-darker: rgb(31, 165, 136); 13 | --ifm-color-primary-darkest: rgb(26, 136, 112); 14 | --ifm-color-primary-light: rgb(70, 203, 174); 15 | --ifm-color-primary-lighter: rgb(102, 212, 189); 16 | --ifm-color-primary-lightest: rgb(146, 224, 208); 17 | --ifm-code-font-size: 95%; 18 | } 19 | 20 | .docusaurus-highlight-code-line { 21 | background-color: rgb(72, 77, 91); 22 | display: block; 23 | margin: 0 calc(-1 * var(--ifm-pre-padding)); 24 | padding: 0 var(--ifm-pre-padding); 25 | } 26 | 27 | html[data-theme='light'] .DocSearch { 28 | /* --docsearch-primary-color: var(--ifm-color-primary); */ 29 | /* --docsearch-text-color: var(--ifm-font-color-base); */ 30 | --docsearch-muted-color: var(--ifm-color-secondary-darkest); 31 | --docsearch-container-background: rgba(94, 100, 112, 0.7); 32 | /* Modal */ 33 | --docsearch-modal-background: var(--ifm-color-secondary-lighter); 34 | /* Search box */ 35 | --docsearch-searchbox-background: var(--ifm-color-secondary); 36 | --docsearch-searchbox-focus-background: var(--ifm-color-white); 37 | /* Hit */ 38 | --docsearch-hit-color: var(--ifm-font-color-base); 39 | --docsearch-hit-active-color: var(--ifm-color-white); 40 | --docsearch-hit-background: var(--ifm-color-white); 41 | /* Footer */ 42 | --docsearch-footer-background: var(--ifm-color-white); 43 | } 44 | 45 | html[data-theme='dark'] .DocSearch { 46 | --docsearch-text-color: var(--ifm-font-color-base); 47 | --docsearch-muted-color: var(--ifm-color-secondary-darkest); 48 | --docsearch-container-background: rgba(47, 55, 69, 0.7); 49 | /* Modal */ 50 | --docsearch-modal-background: var(--ifm-background-color); 51 | /* Search box */ 52 | --docsearch-searchbox-background: var(--ifm-background-color); 53 | --docsearch-searchbox-focus-background: var(--ifm-color-black); 54 | /* Hit */ 55 | --docsearch-hit-color: var(--ifm-font-color-base); 56 | --docsearch-hit-active-color: var(--ifm-color-white); 57 | --docsearch-hit-background: var(--ifm-color-emphasis-100); 58 | /* Footer */ 59 | --docsearch-footer-background: var(--ifm-background-surface-color); 60 | --docsearch-key-gradient: linear-gradient( 61 | -26.5deg, 62 | var(--ifm-color-emphasis-200) 0%, 63 | var(--ifm-color-emphasis-100) 100% 64 | ); 65 | } 66 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import clsx from "clsx"; 3 | import Layout from "@theme/Layout"; 4 | import Link from "@docusaurus/Link"; 5 | import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; 6 | import useBaseUrl from "@docusaurus/useBaseUrl"; 7 | import styles from "./styles.module.css"; 8 | 9 | const features = [ 10 | { 11 | title: "Easy to Reach", 12 | description: <>Useful sources for every language!, 13 | }, 14 | { 15 | title: "Focus on What Matters", 16 | description: <>Find crucial sources in our Source Pocket., 17 | }, 18 | ]; 19 | 20 | function Feature({ imageUrl, title, description }) { 21 | return ( 22 |
23 |

{title}

24 |

{description}

25 |
26 | ); 27 | } 28 | 29 | function Home() { 30 | const context = useDocusaurusContext(); 31 | const { siteConfig = {} } = context; 32 | return ( 33 | 37 |
38 |
39 |

{siteConfig.title}

40 |

{siteConfig.tagline}

41 |
42 | 51 | Get Started 52 | 53 |
54 |
55 |
56 |
57 | {features && features.length > 0 && ( 58 |
59 |
60 |
61 | {features.map((props, idx) => ( 62 | 63 | ))} 64 |
65 |
66 |
67 | )} 68 |
69 |
70 | ); 71 | } 72 | 73 | export default Home; 74 | -------------------------------------------------------------------------------- /src/pages/styles.module.css: -------------------------------------------------------------------------------- 1 | /* stylelint-disable docusaurus/copyright-header */ 2 | 3 | /** 4 | * CSS files with the .module.css suffix will be treated as CSS modules 5 | * and scoped locally. 6 | */ 7 | 8 | .heroBanner { 9 | padding: 4rem 0; 10 | text-align: center; 11 | position: relative; 12 | overflow: hidden; 13 | background-color: #009966; 14 | background-position: center; 15 | background-repeat: no-repeat; 16 | background-size: cover; 17 | } 18 | 19 | @media screen and (max-width: 966px) { 20 | .heroBanner { 21 | padding: 2rem; 22 | } 23 | } 24 | 25 | .buttons { 26 | display: flex; 27 | align-items: center; 28 | justify-content: center; 29 | } 30 | 31 | .features { 32 | display: flex; 33 | align-items: center; 34 | padding: 2rem 0; 35 | width: 100%; 36 | } 37 | 38 | .featureImage { 39 | height: 200px; 40 | width: 200px; 41 | } 42 | 43 | .button { 44 | color: black !important; 45 | background-color: #ffcc28; 46 | border: #ffcc28; 47 | } 48 | 49 | .button:hover { 50 | color: #1c1e21 !important; 51 | background-color: #ebedf0; 52 | border: #ebedf0; 53 | } 54 | 55 | /* TODO: Refactor need to be done according to the documentation for button styles */ 56 | -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source-Pocket/source-pocket/fd6a9cdb09e18e3b4cdbe23659fa5e785d5f18d5/static/.nojekyll -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source-Pocket/source-pocket/fd6a9cdb09e18e3b4cdbe23659fa5e785d5f18d5/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------