├── LICENSE ├── CONTRIBUTING.md ├── README.md └── index.html /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Brad Oyler 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 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | This resource was made by the community and wouldn't be possible without you! We appreciate and recognize [all contributors](https://github.com/bradoyler/awesome-lists/graphs/contributors). 2 | 3 | # Contribution Guidelines 4 | 5 | - **To add to the list:** Submit a pull request 6 | - **To remove from the list:** Open an issue 7 | 8 | To set this list apart from and compliment all the other awesome lists. 9 | 10 | - List items should be sorted *alphabetically*. 11 | - Each item should be limited to one link 12 | - The link should be the name of the package or project 13 | - Descriptions should be clear, concise, and non-promotional 14 | - Descriptions should follow the link, on the same line 15 | 16 | Please contribute links to packages/projects you have used or are familiar with. This will help ensure high-quality entries. 17 | 18 | 19 | ## Quality standard 20 | 21 | To stay on the list, package repositories should adhere to these quality standards: 22 | 23 | - Generally useful to the community 24 | - Functional 25 | - Actively maintained (even if that just means acknowledging open issues when they arise) 26 | - Stable, or progressing toward stable 27 | - Documented (preferably godoc.org) 28 | - Tests are preferred (when possible) 29 | 30 | 31 | ## Reporting issues 32 | 33 | Please open an issue if you find anything that could be improved or have suggestions for making the list a more valuable resource. We realize sometimes packages fall into abandonment or have breaking builds for extended periods of time, so if you see that, please let us know. We also realize that sometimes projects are just going through transitions or are more experimental in nature. These can still be cool, but we can indicate them as transitory or experimental -- again, just open an issue. Thanks everyone! 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Awesome all](https://github.com/bradoyler/awesome-all) 2 | 3 | A curated list of all the awesome lists of awesome frameworks, libraries and software 4 | 5 | ### Contributing 6 | 7 | Please take a quick gander at the [contribution guidelines](https://github.com/bradoyler/awesome-all/blob/master/CONTRIBUTING.md) first. Thanks to all [contributors](https://github.com/bradoyler/awesome-all/graphs/contributors); you rock! 8 | 9 | ### Contents 10 | 11 | - [Android](https://github.com/JStumpp/awesome-android) 12 | - [AutoIt](https://github.com/J2TeaM/awesome-AutoIt) 13 | - [Bash](https://github.com/alebcay/awesome-shell) 14 | - [Big data](https://github.com/onurakpolat/awesome-bigdata) 15 | - [C](https://github.com/kozross/awesome-c) 16 | - [C++](https://github.com/fffaraz/awesome-cpp) 17 | - [Clojure](https://github.com/razum2um/awesome-clojure) 18 | - [Cobol](https://github.com/dshimy/awesome-cobol) 19 | - [Common Lisp](https://github.com/kozross/awesome-cl) 20 | - [Community](https://github.com/petk/awesome-community) 21 | - [D](https://github.com/zhaopuming/awesome-d) 22 | - [Dojo Toolkit](https://github.com/petk/awesome-dojo) 23 | - [Elixir](https://github.com/h4cc/awesome-elixir) 24 | - [Frontend Dev](https://github.com/dypsilon/frontend-dev-bookmarks) 25 | - [Go](https://github.com/avelino/awesome-go) 26 | - [Hadoop](https://github.com/youngwookim/awesome-hadoop) 27 | - [iOS](https://github.com/vsouza/awesome-ios) 28 | - [IoT](https://github.com/HQarroum/awesome-iot) 29 | - [J2ME](https://github.com/hstsethi/awesome-j2me) 30 | - [Java](https://github.com/akullpp/awesome-java) 31 | - [JavaScript](https://github.com/sorrycc/awesome-javascript) 32 | - [jQuery](https://github.com/petk/awesome-jquery) 33 | - [Lists](https://github.com/jnv/lists) 34 | - [Machine Learning](https://github.com/josephmisiti/awesome-machine-learning) 35 | - [MariaDB](https://github.com/Vettabase/awesome-mariadb) 36 | - [Node.js](https://github.com/vndmtrx/awesome-nodejs) 37 | - [PHP](https://github.com/ziadoz/awesome-php) 38 | - [Python](https://github.com/vinta/awesome-python) 39 | - [React-Native](https://github.com/jondot/awesome-react-native) 40 | - [Ruby](https://github.com/markets/awesome-ruby) 41 | - [Scala](https://github.com/lauris/awesome-scala) 42 | - [Search Engine Optimization (SEO)](https://github.com/marcobiedermann/search-engine-optimization) 43 | - [Swift](https://awesome-swift.zeef.com/robin.eggenkamp) 44 | - [Sysadmin](https://github.com/kahun/awesome-sysadmin) 45 | - [Talks](https://github.com/JanVanRyswyck/awesome-talks) 46 | - [Wikipedia](https://github.com/emijrp/awesome-wikipedia) 47 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |