├── .all-contributorsrc ├── .github └── ISSUE_TEMPLATE │ └── idea--new-section-to-add-.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── _config.yml ├── assets ├── JobreamIcon.png └── favicon.png └── resources ├── Communities.md ├── CompetitiveProgramming.md ├── LearnPython.md ├── WebDevelopment.md └── WebTools.md /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/idea--new-section-to-add-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/.github/ISSUE_TEMPLATE/idea--new-section-to-add-.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/JobreamIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/assets/JobreamIcon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /resources/Communities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/resources/Communities.md -------------------------------------------------------------------------------- /resources/CompetitiveProgramming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/resources/CompetitiveProgramming.md -------------------------------------------------------------------------------- /resources/LearnPython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/resources/LearnPython.md -------------------------------------------------------------------------------- /resources/WebDevelopment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/resources/WebDevelopment.md -------------------------------------------------------------------------------- /resources/WebTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobream/List-of-Learning-Resources/HEAD/resources/WebTools.md --------------------------------------------------------------------------------