├── .github
└── ISSUE_TEMPLATE
│ └── create-a-new-category.md
├── .vscode
└── settings.json
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
└── README.md
/.github/ISSUE_TEMPLATE/create-a-new-category.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Create a New Category
3 | about: Suggest a category you want to add to awesome-repos
4 | title: "[CREATE A NEW CATEGORY (NAME)]"
5 | labels: enhancement, new category
6 | assignees: ''
7 |
8 | ---
9 |
10 | **What's your entry is about?**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **For which entry you want to create a new category?**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Additional context**
17 | Add any other context or screenshots about the feature request here.
18 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "prettier.bracketSpacing": false,
3 | "prettier.quoteProps": "consistent",
4 | "prettier.proseWrap": "never",
5 | "prettier.insertPragma": false,
6 | }
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, gender identity and expression, level of experience,
9 | nationality, personal appearance, race, religion, or sexual identity and
10 | orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at pawelsb[at]duck[dot]com. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at [https://contributor-covenant.org/version/1/4][version]
72 |
73 | [homepage]: https://contributor-covenant.org
74 | [version]: https://contributor-covenant.org/version/1/4/
75 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing
2 | > Thanks for Looking to contribute to the Awesome-Repos. We are happy to see your interest for crafting a great Pull Request for this project.
3 |
4 | ----
5 |
6 | ## Formatting
7 |
8 | Please follow the **format** given below while making a new entry in the [README](https://github.com/pawelborkar/awesome-repos/blob/master/README.md).
9 |
10 | Repository | Description | License |
11 | |---|---|---|
12 | | Repository Name(Link to the repository) | Original Description mention in the About section of the repository(Include the emojis as well, if any. ) | License Name(Link to the License) |
13 |
14 |
15 |
16 | #### Example entry:
17 |
18 | `| [Awesome](https://github.com/sindresorhus/awesome) | 😎 Awesome lists about all kinds of interesting topics | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |`
19 |
20 |
21 |
22 | ## Guidelines
23 |
24 | - Continue to follow the alphabetical ordering that is in place per section.
25 | - Each table column should be padded with one space on either side.
26 | - Make sure the repository has quality content, to do so look at the stars the repository has received.
27 | - Add one link per Pull Request.
28 | - Make sure the PR title is in the format of `Add repository-name` *for e.g.*: `Add awesome-python`
29 | - Use a short descriptive commit message. *for e.g.*: ❌Update README.md ✔Add Git to the CheatSheets
30 | - Search previous Pull Requests or Issues before making a new one, as yours may be a duplicate.
31 | - Don't mention "Awesome" in the repository name while adding a link in the README, if you are adding an awesome repository . *for e.g.*: ❌Awesome-Python ✔Python
32 | - If the repository has `No License`, simply add No License to the License column.
33 | - *If the repository is having **Creative Commons License***
34 |
35 | - CC0-1.0 include the hyperlink `https://creativecommons.org/publicdomain/zero/1.0/legalcode` to the License.
36 |
37 | - CC-BY-4.0 include the hyperink `https://creativecommons.org/licenses/by/4.0/legalcode` to the License.
38 |
39 |
40 |
41 | ## Pull Request Pro Tips
42 |
43 | - [Fork](http://guides.github.com/activities/forking/) the repository and [clone](https://help.github.com/articles/cloning-a-repository/) it locally.
44 | - Contribute in the style of the project as outlined above. This makes it easier to understand and maintain in the future.
45 | - Please make sure you [squash](https://dev.to/pb/git-squash-simplified-3ba1) all commits into a single commit before opening a pull request. If your pull request requires changes upon review, please be sure to squash all additional commits as well.
46 |
47 |
48 |
49 | > Thanks you so much for reading the contributing guide. Looking forward to review a great PR from you.
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Creative Commons Legal Code
2 |
3 | CC0 1.0 Universal
4 |
5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
12 | HEREUNDER.
13 |
14 | Statement of Purpose
15 |
16 | The laws of most jurisdictions throughout the world automatically confer
17 | exclusive Copyright and Related Rights (defined below) upon the creator
18 | and subsequent owner(s) (each and all, an "owner") of an original work of
19 | authorship and/or a database (each, a "Work").
20 |
21 | Certain owners wish to permanently relinquish those rights to a Work for
22 | the purpose of contributing to a commons of creative, cultural and
23 | scientific works ("Commons") that the public can reliably and without fear
24 | of later claims of infringement build upon, modify, incorporate in other
25 | works, reuse and redistribute as freely as possible in any form whatsoever
26 | and for any purposes, including without limitation commercial purposes.
27 | These owners may contribute to the Commons to promote the ideal of a free
28 | culture and the further production of creative, cultural and scientific
29 | works, or to gain reputation or greater distribution for their Work in
30 | part through the use and efforts of others.
31 |
32 | For these and/or other purposes and motivations, and without any
33 | expectation of additional consideration or compensation, the person
34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she
35 | is an owner of Copyright and Related Rights in the Work, voluntarily
36 | elects to apply CC0 to the Work and publicly distribute the Work under its
37 | terms, with knowledge of his or her Copyright and Related Rights in the
38 | Work and the meaning and intended legal effect of CC0 on those rights.
39 |
40 | 1. Copyright and Related Rights. A Work made available under CC0 may be
41 | protected by copyright and related or neighboring rights ("Copyright and
42 | Related Rights"). Copyright and Related Rights include, but are not
43 | limited to, the following:
44 |
45 | i. the right to reproduce, adapt, distribute, perform, display,
46 | communicate, and translate a Work;
47 | ii. moral rights retained by the original author(s) and/or performer(s);
48 | iii. publicity and privacy rights pertaining to a person's image or
49 | likeness depicted in a Work;
50 | iv. rights protecting against unfair competition in regards to a Work,
51 | subject to the limitations in paragraph 4(a), below;
52 | v. rights protecting the extraction, dissemination, use and reuse of data
53 | in a Work;
54 | vi. database rights (such as those arising under Directive 96/9/EC of the
55 | European Parliament and of the Council of 11 March 1996 on the legal
56 | protection of databases, and under any national implementation
57 | thereof, including any amended or successor version of such
58 | directive); and
59 | vii. other similar, equivalent or corresponding rights throughout the
60 | world based on applicable law or treaty, and any national
61 | implementations thereof.
62 |
63 | 2. Waiver. To the greatest extent permitted by, but not in contravention
64 | of, applicable law, Affirmer hereby overtly, fully, permanently,
65 | irrevocably and unconditionally waives, abandons, and surrenders all of
66 | Affirmer's Copyright and Related Rights and associated claims and causes
67 | of action, whether now known or unknown (including existing as well as
68 | future claims and causes of action), in the Work (i) in all territories
69 | worldwide, (ii) for the maximum duration provided by applicable law or
70 | treaty (including future time extensions), (iii) in any current or future
71 | medium and for any number of copies, and (iv) for any purpose whatsoever,
72 | including without limitation commercial, advertising or promotional
73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
74 | member of the public at large and to the detriment of Affirmer's heirs and
75 | successors, fully intending that such Waiver shall not be subject to
76 | revocation, rescission, cancellation, termination, or any other legal or
77 | equitable action to disrupt the quiet enjoyment of the Work by the public
78 | as contemplated by Affirmer's express Statement of Purpose.
79 |
80 | 3. Public License Fallback. Should any part of the Waiver for any reason
81 | be judged legally invalid or ineffective under applicable law, then the
82 | Waiver shall be preserved to the maximum extent permitted taking into
83 | account Affirmer's express Statement of Purpose. In addition, to the
84 | extent the Waiver is so judged Affirmer hereby grants to each affected
85 | person a royalty-free, non transferable, non sublicensable, non exclusive,
86 | irrevocable and unconditional license to exercise Affirmer's Copyright and
87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the
88 | maximum duration provided by applicable law or treaty (including future
89 | time extensions), (iii) in any current or future medium and for any number
90 | of copies, and (iv) for any purpose whatsoever, including without
91 | limitation commercial, advertising or promotional purposes (the
92 | "License"). The License shall be deemed effective as of the date CC0 was
93 | applied by Affirmer to the Work. Should any part of the License for any
94 | reason be judged legally invalid or ineffective under applicable law, such
95 | partial invalidity or ineffectiveness shall not invalidate the remainder
96 | of the License, and in such case Affirmer hereby affirms that he or she
97 | will not (i) exercise any of his or her remaining Copyright and Related
98 | Rights in the Work or (ii) assert any associated claims and causes of
99 | action with respect to the Work, in either case contrary to Affirmer's
100 | express Statement of Purpose.
101 |
102 | 4. Limitations and Disclaimers.
103 |
104 | a. No trademark or patent rights held by Affirmer are waived, abandoned,
105 | surrendered, licensed or otherwise affected by this document.
106 | b. Affirmer offers the Work as-is and makes no representations or
107 | warranties of any kind concerning the Work, express, implied,
108 | statutory or otherwise, including without limitation warranties of
109 | title, merchantability, fitness for a particular purpose, non
110 | infringement, or the absence of latent or other defects, accuracy, or
111 | the present or absence of errors, whether or not discoverable, all to
112 | the greatest extent permissible under applicable law.
113 | c. Affirmer disclaims responsibility for clearing rights of other persons
114 | that may apply to the Work or any use thereof, including without
115 | limitation any person's Copyright and Related Rights in the Work.
116 | Further, Affirmer disclaims responsibility for obtaining any necessary
117 | consents, permissions or other rights required for any use of the
118 | Work.
119 | d. Affirmer understands and acknowledges that Creative Commons is not a
120 | party to this document and has no duty or obligation with respect to
121 | this CC0 or use of the Work.
122 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # Awesome Repositories
4 |
5 | _A curated list of GitHub Repositories full of FREE Resources._
6 |
7 |   
8 |
9 |
10 |
11 | > _Pull Requests are being welcomed.Please see the [Contributing Guide](CONTRIBUTING.md) before opening a Pull Request._
12 |
13 | ## Index
14 |
15 | - [API](#api)
16 | - [Artificial Intelligence](#artificial-intelligence)
17 | - [Awesome](#awesome)
18 | - [BackEnd](#backend)
19 | - [Books](#books)
20 | - [Career](#career)
21 | - [CheatSheets](#cheatsheets)
22 | - [Cloud](#cloud)
23 | - [Competitive Programming](#competitive-programming)
24 | - [Courses & Certifications](#courses--certifications)
25 | - [Development](#development)
26 | - [Education](#education)
27 | - [Frameworks](#frameworks)
28 | - [FrontEnd](#frontend)
29 | - [Opportunities & Programs](#opportunities--programs)
30 | - [Programming Languages](#programming-languages)
31 | - [Projects](#projects)
32 | - [Reading List](#reading-list)
33 | - [Security](#security)
34 | - [System Design](#system-design)
35 | - [Web](#web)
36 |
37 | ### API
38 |
39 | | Repository | Description | License |
40 | | --- | --- | --- |
41 | | [GraphQL-Apis](https://github.com/APIs-guru/graphql-apis) | 📜 A collective list of public GraphQL APIs | [MIT](https://github.com/APIs-guru/graphql-apis/blob/master/LICENSE) |
42 | | [Public-Apis](https://github.com/public-apis/public-apis) | A collective list of free APIs | [MIT](https://github.com/public-apis/public-apis/blob/master/LICENSE) |
43 |
44 | **[⬆ Back to Index](#index)**
45 |
46 | ### Artificial Intelligence
47 |
48 | | Repository | Description | License |
49 | | --- | --- | --- |
50 | | [Computer Vision](https://github.com/jbhuang0604/awesome-computer-vision) | A curated list of awesome computer vision resources | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
51 | | [Machine Learning](https://github.com/josephmisiti/awesome-machine-learning) | A curated list of awesome Machine Learning frameworks, libraries and software | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
52 | | [Natural Language Processing](https://github.com/keon/awesome-nlp) | 📖 A curated list of resources dedicated to Natural Language Processing (NLP) | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
53 | | [Pytorch](https://github.com/bharathgs/Awesome-pytorch-list) | A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc | No License |
54 |
55 | **[⬆ Back to Index](#index)**
56 |
57 | ### Awesome
58 |
59 | | Repository | Description | License |
60 | | --- | --- | --- |
61 | | [Awesome](https://github.com/sindresorhus/awesome) | 😎 Awesome lists about all kinds of interesting topics | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
62 | | [Awesome](https://github.com/awesome-windows/awesome) | 💻 🎉 An awesome & curated list of best applications and tools for **Windows** | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
63 | | [Awesomeness](https://github.com/bayandin/awesome-awesomeness) | A curated list of awesome awesomeness | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
64 |
65 | **[⬆ Back to Index](#index)**
66 |
67 | ### BackEnd
68 |
69 | | Repository | Description | License |
70 | | --- | --- | --- |
71 | | [GraphQL](https://github.com/chentsulin/awesome-graphql) | Awesome list of GraphQL | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
72 |
73 | **[⬆ Back to Index](#index)**
74 |
75 | ### Books
76 |
77 | | Repository | Description | License |
78 | | --- | --- | --- |
79 | | [Free OReilly Books](https://github.com/mohnkhan/Free-OReilly-Books) | Free O Reilly Books | No License |
80 | | [Free Programming Books](https://github.com/EbookFoundation/free-programming-books) | 📚 Freely available programming books | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
81 | | [GoBooks](https://github.com/dariubs/GoBooks) | List of Golang books | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
82 | | [JavaScript](https://github.com/javascript-society/javascript-path) | 📚 List of books to master JavaScript Development 🚀 | No License |
83 | | [Mind Expanding Books](https://github.com/hackerkid/Mind-Expanding-Books) | 📚 Books everyone should read | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
84 | | [Python Books](https://github.com/Junnplus/awesome-python-books) | 📚 Directory of Python books | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
85 | | [TypeScript Books](https://github.com/basarat/typescript-book) | :books: The definitive guide to TypeScript and possibly the best TypeScript book 📖. Free and Open Source 🌹 | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
86 |
87 | **[⬆ Back to Index](#index)**
88 |
89 | ### Career
90 |
91 | | Repository | Description | License |
92 | | --- | --- | --- |
93 | | [Become A Full Stack Web Developer](https://github.com/bmorelli25/Become-A-Full-Stack-Web-Developer) | Free resources for learning Full Stack Web Development | [MIT](https://github.com/bmorelli25/Become-A-Full-Stack-Web-Developer/blob/master/LICENSE) |
94 | | [Clean Code JavaScript](https://github.com/ryanmcdermott/clean-code-javascript) | 🛁 Clean Code concepts adapted for JavaScript | [MIT](https://github.com/ryanmcdermott/clean-code-javascript/blob/master/LICENSE) |
95 | | [Coding Interview University](https://github.com/jwasham/coding-interview-university) | A complete computer science study plan to become a software engineer. | [CC-BY-SA-4.0](https://creativecommons.org/licenses/by-sa/4.0/) |
96 | | [Computer Science (OSSU)](https://github.com/ossu/computer-science) | 🎓 Path to a free self-taught education in Computer Science! | [MIT](https://github.com/ossu/computer-science/blob/master/LICENSE) |
97 | | [CS Courses](https://github.com/prakhar1989/awesome-courses) | 📚 List of awesome university courses for learning Computer Science! | No License |
98 | | [Developer Roadmap](https://github.com/kamranahmedse/developer-roadmap) | Roadmap to becoming a web developer in 2021 | [Custom](https://github.com/kamranahmedse/developer-roadmap/blob/master/LICENSE) |
99 | | [DevOps Roadmap](https://github.com/milanm/DevOps-Roadmap) | This is a step-by-step guide on how to become a DevOps engineer, with links to relevant learning resources | [Apache-2.0](https://github.com/milanm/DevOps-Roadmap/blob/master/LICENSE) |
100 | | [Easy Application](https://github.com/j-delaney/easy-application) | Over 400 software engineering companies that are easy to apply to | [MIT](https://github.com/j-delaney/easy-application/blob/master/LICENSE) |
101 | | [FrontEnd Developer Interview Questions](https://github.com/h5bp/Front-end-Developer-Interview-Questions) | A list of helpful front-end related questions you can use to interview potential candidates, test yourself or completely ignore | [MIT](https://github.com/h5bp/Front-end-Developer-Interview-Questions/blob/main/LICENSE.md) |
102 | | [Hiring Without Whiteboards](https://github.com/poteto/hiring-without-whiteboards) | ⭐️ Companies that don't have a broken hiring process | [MIT](https://github.com/poteto/hiring-without-whiteboards/blob/master/LICENSE.md) |
103 | | [Interview This](https://github.com/Twipped/InterviewThis) | An open source list of developer questions to ask prospective employers | [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/deed.en_US) |
104 | | [JavaScript Algorithms](https://github.com/trekhleb/javascript-algorithms) | 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings | [MIT](https://github.com/trekhleb/javascript-algorithms/blob/master/LICENSE) |
105 | | [Leetcode Patterns](https://github.com/seanprashad/leetcode-patterns) | A curated list of leetcode questions grouped by their common patterns | [GPL-3.0](https://github.com/seanprashad/leetcode-patterns/blob/master/LICENSE.md) |
106 |
107 | **[⬆ Back to Index](#index)**
108 |
109 | ### CheatSheets
110 |
111 | | Repository | Description | License |
112 | | --- | --- | --- |
113 | | [Async-JavaScript](https://github.com/frontarm/async-javascript-cheatsheet) | Cheatsheet for promises and async/await. | [MIT](https://github.com/frontarm/async-javascript-cheatsheet/blob/master/LICENSE.md) |
114 | | [Bootstrap 5](https://github.com/themeselection/bootstrap-cheatsheet) | An interactive list of Bootstrap 5 classes, variables, and mixins | [MIT](https://github.com/themeselection/bootstrap-cheatsheet/blob/master/LICENSE.md) |
115 | | [C++](https://github.com/mortennobel/cpp-cheatsheet) | Modern C++ Cheatsheet | No License |
116 | | [Data Science](https://github.com/FavioVazquez/ds-cheatsheets) | List of Data Science Cheatsheets to rule the world | [MIT](https://github.com/FavioVazquez/ds-cheatsheets/blob/master/LICENSE) |
117 | | [Docker](https://github.com/eon01/DockerCheatSheet) | 🐋 Docker Cheat Sheet 🐋 | [MIT](https://github.com/eon01/DockerCheatSheet/blob/master/LICENSE) |
118 | | [Emoji](https://github.com/ikatyang/emoji-cheat-sheet) | A markdown version emoji cheat sheet | [MIT](https://github.com/ikatyang/emoji-cheat-sheet/blob/master/LICENSE) |
119 | | [Git and GitHub](https://github.com/tiimgreen/github-cheat-sheet) | A list of cool features of Git and GitHub. | [MIT](https://github.com/tiimgreen/github-cheat-sheet/blob/master/LICENSE) |
120 | | [Python](https://github.com/gto76/python-cheatsheet) | Comprehensive Python Cheatsheet | No License |
121 | | [Vim](https://github.com/pawelbr/vim-cheatsheet) | Shortcuts that will help you to become an advance VIM user. | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
122 |
123 | **[⬆ Back to Index](#index)**
124 |
125 | ### Cloud
126 |
127 | | Repository | Description | License |
128 | | --- | --- | --- |
129 | | [AWS](https://github.com/donnemartin/awesome-aws) | A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome. | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
130 |
131 | **[⬆ Back to Index](#index)**
132 |
133 | ### Competitive Programming
134 |
135 | | Repository | Description | License |
136 | | --- | --- | --- |
137 | | [ ACM-ICPC Algorithms](https://github.com/matthewsamuel95/ACM-ICPC-Algorithms) | Algorithms used in Competitive Programming | No License |
138 | | [ Awesome Competitive Programming](https://github.com/lnishan/awesome-competitive-programming) | A curated list of awesome Competitive Programming, Algorithm and Data Structure resources | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
139 | | [ Competitive Code](https://github.com/Vishruth-S/CompetitiveCode) | A repo for interesting Competitive Coding problems | [MIT](https://github.com/Vishruth-S/CompetitiveCode/blob/main/LICENSE) |
140 | | [ Competitive Programming Resources](https://github.com/kunal-kushwaha/Competitive-Programming-Resources) | Competitive Programming & System Design Resources. | [MIT](https://github.com/kunal-kushwaha/Competitive-Programming-Resources/blob/master/LICENSE) |
141 |
142 | **[⬆ Back to Index](#index)**
143 |
144 | ### Courses & Certifications
145 |
146 | | Repository | Description | License |
147 | | --- | --- | --- |
148 | | [Awesome learn by playing](https://github.com/lmammino/awesome-learn-by-playing) | A curated list of resources that can allow you to learn programming languages by playing games | [MIT](https://github.com/lmammino/awesome-learn-by-playing/blob/main/LICENSE) |
149 | | [Free Certifications](https://github.com/cloudcommunity/Free-Certifications) | Curated list of free courses & certifications | [MIT](https://github.com/cloudcommunity/Free-Certifications/blob/main/LICENSE) |
150 | | [GCP Training](https://github.com/GoogleCloudPlatform/training-data-analyst) | Labs and demos for courses for GCP Training | [Apache-2.0](https://github.com/GoogleCloudPlatform/training-data-analyst/blob/master/LICENSE) |
151 |
152 | **[⬆ Back to Index](#index)**
153 |
154 | ### Development
155 |
156 | | Repository | Description | License |
157 | | --- | --- | --- |
158 | | [Beautiful Docs](https://github.com/PharkMillups/beautiful-docs) | Pointers to useful, well-written, and otherwise beautiful documentation. | No License |
159 | | [Design Resources for Developers](https://github.com/bradtraversy/design-resources-for-developers) | Curated list of design and UI resources from stock photos, web templates, CSS frameworks, UI libraries, tools and much more | [MIT](https://github.com/bradtraversy/design-resources-for-developers/blob/master/LICENSE) |
160 | | [DevYouTubeList](https://github.com/ErikCH/DevYouTubeList) | List of Development YouTube Channels | [MIT](https://github.com/ErikCH/DevYouTubeList/blob/master/LICENSE) |
161 | | [Programming Talks](https://github.com/hellerve/programming-talks) | Awesome & interesting talks about programming | No License |
162 |
163 | **[⬆ Back to Index](#index)**
164 |
165 | ### Education
166 |
167 | | Repository | Description | License |
168 | | --- | --- | --- |
169 | | [Math](https://github.com/rossant/awesome-math) | A curated list of awesome mathematics resources | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
170 | | [Project Based Learning](https://github.com/practical-tutorials/project-based-learning) | Curated list of project-based tutorials | [MIT](https://github.com/practical-tutorials/project-based-learning/blob/master/LICENSE.md) |
171 |
172 | **[⬆ Back to Index](#index)**
173 |
174 | ### Frameworks
175 |
176 | | Repository | Description | License |
177 | | --- | --- | --- |
178 | | [.NET](https://github.com/quozd/awesome-dotnet) | A collection of awesome .NET libraries, tools, frameworks and software | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
179 | | [CSS](https://github.com/troxler/awesome-css-frameworks) | List of awesome CSS frameworks | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
180 | | [Electron](https://github.com/sindresorhus/awesome-electron) | Useful resources for creating apps with Electron | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
181 | | [Laravel](https://github.com/chiraggude/awesome-laravel) | A curated list of bookmarks, packages, tutorials, videos and other cool resources from the Laravel ecosystem | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
182 | | [NestJS](https://github.com/nestjs/awesome-nestjs) | A curated list of awesome things related to NestJS 😎 | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
183 | | [Vue](https://github.com/vuejs/awesome-vue) | 🎉 A curated list of awesome things related to Vue.js | [MIT](https://github.com/vuejs/awesome-vue/blob/master/LICENSE) |
184 |
185 | **[⬆ Back to Index](#index)**
186 |
187 | ### FrontEnd
188 |
189 | | Repository | Description | License |
190 | | --- | --- | --- |
191 | | [Animate CSS](https://github.com/animate-css/animate.css) | 🍿 A cross-browser library of CSS animations. As easy to use as an easy thing | [MIT](https://github.com/animate-css/animate.css/blob/main/LICENSE) |
192 | | [Front End Web Development](https://github.com/RitikPatni/Front-End-Web-Development-Resources) | This repository contains content which will be helpful in your journey as a front-end Web Developer | [MIT](https://github.com/RitikPatni/Front-End-Web-Development-Resources/blob/master/LICENSE) |
193 | | [Front End Dev Bookmarks](https://github.com/RitikPatni/Front-End-Web-Development-Resources) | Manually curated collection of resources for frontend web developers. | [CC-BY-SA-4.0](https://github.com/oz123/awesome-c/blob/master/LICENSE) |
194 | | [HTML5](https://github.com/diegocard/awesome-html5) | 📝 A curated list of awesome HTML5 resources | [MIT](https://github.com/diegocard/awesome-html5/blob/master/LICENSE) |
195 | | [React Components](https://github.com/brillout/awesome-react-components) | Curated List of React Components & Libraries | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
196 |
197 | **[⬆ Back to Index](#index)**
198 |
199 | ### Opportunities & Programs
200 |
201 | | Repository | Description | License |
202 | | --- | --- | --- |
203 | | [Community Writer Programs](https://github.com/malgamves/CommunityWriterPrograms) | A list of Developer Community Writer Programs | [MIT](https://github.com/malgamves/CommunityWriterPrograms/blob/master/LICENSE) |
204 | | [List-Of-Open-Source-Internships-Programs](https://github.com/deepanshu1422/List-Of-Open-Source-Internships-Programs) | A curated list of all the open-source internships/Programs | No License |
205 |
206 | **[⬆ Back to Index](#index)**
207 |
208 | ### Programming Languages
209 |
210 | | Repository | Description | License |
211 | | --- | --- | --- |
212 | | [C](https://github.com/oz123/awesome-c) | A curated list of awesome C frameworks, libraries, resources and other shiny things. Inspired by all the other awesome-... projects out there | [CC-BY-SA-4.0](https://github.com/oz123/awesome-c/blob/master/LICENSE) |
213 | | [C++](https://github.com/fffaraz/awesome-cpp) | A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-... stuff | [MIT](https://github.com/fffaraz/awesome-cpp/blob/master/LICENSE) |
214 | | [Go](https://github.com/avelino/awesome-go) | A curated list of awesome Go frameworks, libraries and software | [MIT](https://github.com/avelino/awesome-go/blob/master/LICENSE) |
215 | | [Java](https://github.com/akullpp/awesome-java) | A curated list of awesome frameworks, libraries and software for the Java programming language | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
216 | | [JavaScript](https://github.com/sorrycc/awesome-javascript) | 🐢 A collection of awesome browser-side JavaScript libraries, resources and shiny things | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
217 | | [Lua](https://github.com/LewisJEllis/awesome-lua) | A curated list of quality Lua packages and resources. | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
218 | | [PHP](https://github.com/ziadoz/awesome-php) | A curated list of amazingly awesome PHP libraries, resources and shiny things | [WTFPL](https://github.com/ziadoz/awesome-php/blob/master/LICENSE.md) |
219 | | [Python](https://github.com/vinta/awesome-python) | A curated list of awesome Python frameworks, libraries, software and resources | [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/legalcode) |
220 | | [R](https://github.com/qinwf/awesome-R) | A curated list of awesome R packages, frameworks and software | [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) |
221 | | [Rust](https://github.com/rust-unofficial/awesome-rust) | A curated list of Rust code and resources | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
222 | | [Shell](https://github.com/alebcay/awesome-shell) | A curated list of awesome command-line frameworks, toolkits, guides and gizmos | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
223 | | [Swift](https://github.com/matteocrippa/awesome-swift) | A collaborative list of awesome Swift libraries and resources | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
224 | | [V](https://github.com/vlang/awesome-v) | A curated list of awesome V frameworks, libraries, software and resources. | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
225 |
226 | **[⬆ Back to Index](#index)**
227 |
228 | ### Projects
229 |
230 | | Repository | Description | License |
231 | | --- | --- | --- |
232 | | [50projects50days](https://github.com/bradtraversy/50projects50days) | 50+ mini web projects using HTML, CSS & JS | [MIT](https://github.com/bradtraversy/50projects50days#license) |
233 | | [Build your own X](https://github.com/danistefanovic/build-your-own-x) | 🤓 Build your own (insert technology here) | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
234 | | [React Projects](https://github.com/ajayns/react-projects) | A collection of projects built on the React library | No License |
235 | | [Vanilla Web Projects](https://github.com/bradtraversy/vanillawebprojects) | Mini projects built with HTML5, CSS & JavaScript. No frameworks or libraries | No License |
236 |
237 | **[⬆ Back to Index](#index)**
238 |
239 | ### Reading List
240 |
241 | | Repository | Description | License |
242 | | --- | --- | --- |
243 | | [EthList](https://github.com/Scanate/EthList) | The Comprehensive Ethereum Reading List | No License |
244 | | [Gopher](https://github.com/enocom/gopher-reading-list) | A curated selection of blog posts on Go | [Apache-2.0](https://github.com/enocom/gopher-reading-list/blob/main/LICENSE) |
245 |
246 | **[⬆ Back to Index](#index)**
247 |
248 | ### Security
249 |
250 | | Repository | Description | License |
251 | | --- | --- | --- |
252 | | [Hacking](https://github.com/Hack-with-Github/Awesome-Hacking) | A collection of various awesome lists for hackers, pentesters and security researchers | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
253 | | [Web Security](https://github.com/qazbnm456/awesome-web-security) | 🐶 A curated list of Web Security materials and resources. | [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) |
254 |
255 | **[⬆ Back to Index](#index)**
256 |
257 | ### System Design
258 |
259 | | Repository | Description | License |
260 | | --- | --- | --- |
261 | | [Grokking System Design](https://github.com/Jeevan-kumar-Raj/Grokking-System-Design) | Systems design is the process of defining the architecture, modules, interfaces, and data for a system to satisfy specified requirements. Systems design could be seen as the application of systems theory to product development. | [GPL-3.0](https://github.com/Jeevan-kumar-Raj/Grokking-System-Design/blob/master/LICENSE) |
262 | | [System Design Interview](https://github.com/checkcheckzz/system-design-interview) | System design interview for IT companies | No License |
263 | | [System Design Primer](https://github.com/donnemartin/system-design-primer) | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | [CC-BY-SA-4.0](https://github.com/donnemartin/system-design-primer/blob/master/LICENSE.txt) |
264 | | [System Design Resources](https://github.com/InterviewReady/system-design-resources) | These are the best resources for System Design on the Internet | [GPL-3.0](https://github.com/InterviewReady/system-design-resources/blob/main/LICENSE) |
265 |
266 | **[⬆ Back to Index](#index)**
267 |
268 | ### Web
269 |
270 | | Repository | Description | License |
271 | | --- | --- | --- |
272 | | [Proxy List](https://github.com/clarketm/proxy-list) | A list of free, public, forward proxy servers. UPDATED DAILY! | [MIT](https://github.com/clarketm/proxy-list/blob/master/LICENSE) |
273 | | [Streaming](https://github.com/manuzhang/awesome-streaming) | a curated list of awesome streaming frameworks, applications, etc | [CC-BY-SA-4.0](http://creativecommons.org/licenses/by-sa/4.0/) |
274 | | [Trackerslist](https://github.com/ngosang/trackerslist) | Updated list of public BitTorrent trackers | [GPL-2.0](https://github.com/ngosang/trackerslist/blob/master/LICENSE) |
275 | | [WPO](https://github.com/davidsonfellipe/awesome-wpo) | 📝 A curated list of Web Performance Optimization. Everyone can contribute here! | [MIT](https://github.com/davidsonfellipe/awesome-wpo/blob/main/LICENSE) |
276 |
277 | **[⬆ Back to Index](#index)**
278 |
--------------------------------------------------------------------------------