├── .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 |
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{description}
25 |{siteConfig.tagline}
41 |