├── .gitattributes ├── media ├── badge.ai ├── logo.ai ├── logo.png ├── mentioned-badge.sketch ├── logo.svg ├── badge-flat.svg ├── mentioned-badge-flat.svg ├── badge.svg └── mentioned-badge.svg ├── .editorconfig ├── create-list.md ├── contributing.md ├── code-of-conduct.md ├── awesome.md ├── pull_request_template.md └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.ai binary 3 | readme.md merge=union 4 | -------------------------------------------------------------------------------- /media/badge.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujunze/awesome/master/media/badge.ai -------------------------------------------------------------------------------- /media/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujunze/awesome/master/media/logo.ai -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujunze/awesome/master/media/logo.png -------------------------------------------------------------------------------- /media/mentioned-badge.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wujunze/awesome/master/media/mentioned-badge.sketch -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /create-list.md: -------------------------------------------------------------------------------- 1 | # Creating Your Own List 2 | 3 | - Read the [awesome manifesto](awesome.md) and ensure your list complies. 4 | - Search this list before making a new one, as yours may be a duplicate. If it is, try and contribute to the best one instead of making your own. 5 | - Your awesome list should be named `awesome-list-name` and have the [awesome badge](https://github.com/sindresorhus/awesome/blob/master/awesome.md#awesome-badge), a [license](awesome.md#choose-an-appropriate-license), and [contribution guidelines](awesome.md#include-contribution-guidelines). Adding a [code of conduct](http://contributor-covenant.org/) is also strongly recommended. You might find [this Yeoman generator](https://github.com/dar5hak/generator-awesome-list) useful. 6 | - **Wait at least 30 days after creating a list before submitting it, to give it a chance to mature.** 7 | - **Make sure you read the [list guidelines](pull_request_template.md) before submitting a pull request for your list to be added here.** 8 | 9 | Thanks for being awesome! 10 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms. 4 | 5 | ## Adding a awesome list 6 | 7 | Please ensure your pull request adheres to the [list guidelines](pull_request_template.md). 8 | 9 | ## Creating your own awesome list 10 | 11 | To create your own list, check out the [instructions](create-list.md). 12 | 13 | ## Adding something to an awesome list 14 | 15 | If you have something awesome to contribute to an awesome list, this is how you do it. 16 | 17 | You'll need a [GitHub account](https://github.com/join)! 18 | 19 | 1. Access the awesome list's GitHub page. For example: https://github.com/sindresorhus/awesome 20 | 2. Click on the `readme.md` file: ![Step 2 Click on Readme.md](https://cloud.githubusercontent.com/assets/170270/9402920/53a7e3ea-480c-11e5-9d81-aecf64be55eb.png) 21 | 3. Now click on the edit icon. ![Step 3 - Click on Edit](https://cloud.githubusercontent.com/assets/170270/9402927/6506af22-480c-11e5-8c18-7ea823530099.png) 22 | 4. You can start editing the text of the file in the in-browser editor. Make sure you follow guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). ![Step 4 - Edit the file](https://cloud.githubusercontent.com/assets/170270/9402932/7301c3a0-480c-11e5-81f5-7e343b71674f.png) 23 | 5. Say why you're proposing the changes, and then click on "Propose file change". ![Step 5 - Propose Changes](https://cloud.githubusercontent.com/assets/170270/9402937/7dd0652a-480c-11e5-9138-bd14244593d5.png) 24 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)! 25 | 26 | ## Updating your Pull Request 27 | 28 | Sometimes, a maintainer of an awesome list will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-* list guidelines. 29 | 30 | [Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that. 31 | -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/badge-flat.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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 sindresorhus@gmail.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 [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /awesome.md: -------------------------------------------------------------------------------- 1 | # The awesome manifesto 2 | 3 | If you want your list to be included on `awesome`, try to only include actual awesome stuff in your list. After all, it's a curation, not a collection. 4 | 5 | But **what is awesome?** 6 | 7 | ## Only awesome is awesome 8 | 9 | Research if the stuff you're including is actually awesome. Only put stuff on the list that you or another contributor can personally recommend. You should rather leave stuff out than include too much. 10 | 11 | ## Awesome badge 12 | 13 | This badge is for Awesome lists. 14 | 15 | [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 16 | [![Awesome](https://awesome.re/badge-flat.svg)](https://awesome.re) 17 | 18 | Add an awesome badge to the top of your list, right next to the title. [Example](https://github.com/sindresorhus/awesome-nodejs). You can choose either the regular badge or the flat one. 19 | 20 | ```md 21 | [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 22 | [![Awesome](https://awesome.re/badge-flat.svg)](https://awesome.re) 23 | ``` 24 | 25 | *The badges should not be modified in any way.* 26 | 27 | ## Awesome mentioned badge 28 | 29 | This badge is for projects being mentioned in an Awesome list (**NOT for use in Awesome lists**). For example, the [Chalk](https://github.com/chalk/chalk) project could feature this badge because it's listed in [Awesome Node.js](https://github.com/sindresorhus/awesome-nodejs). It's totally optional for projects, but it's a nice way to show they've been featured in an Awesome list. You can choose either the regular badge or the flat one. 30 | 31 | [![Mentioned in Awesome](https://awesome.re/mentioned-badge.svg)](https://awesome.re) 32 | [![Mentioned in Awesome](https://awesome.re/mentioned-badge-flat.svg)](https://awesome.re) 33 | 34 | **Fill in the placeholders (Name and URL):** 35 | 36 | ```md 37 | [![Mentioned in Awesome ](https://awesome.re/mentioned-badge.svg)](https://github.com/) 38 | [![Mentioned in Awesome ](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/) 39 | ``` 40 | 41 | Example: 42 | 43 | ```md 44 | [![Mentioned in Awesome Node.js](https://awesome.re/mentioned-badge.svg)](https://github.com/sindresorhus/awesome-nodejs) 45 | ``` 46 | 47 | If you're an Awesome list maintainer, you could encourage projects in your list to add the badge. 48 | 49 | *The badges should not be modified in any way.* 50 | 51 | ## Comment on why something is awesome 52 | 53 | Apart from suggesting a particular item on your list, you should also inform your readers *why* it's on the list and how they will benefit from it. 54 | 55 | ## Make it clear what the list is about 56 | 57 | Have a succinct description at the top of your readme. Make sure your list covers a certain scope and nothing else. Link to other awesome lists if you think they already cover a certain subject well enough. 58 | 59 | ## Pay attention to grammar 60 | 61 | Ensure your list is grammatically correct, typo-free and has no Markdown formatting errors. This should also apply to pull requests. 62 | 63 | ## Choose an appropriate license 64 | 65 | Keep in mind that if you [haven't selected a license](http://choosealicense.com/no-license/), it basically means the people are *not* allowed to reproduce, distribute or create derivative works. 66 | 67 | [Creative Commons licenses](https://creativecommons.org/) are perfect for this purpose. **We would recommend [`CC0`](https://creativecommons.org/publicdomain/zero/1.0/).** Code licenses like MIT, BSD, GPL, and so forth are not recommended. 68 | 69 | ## Include contribution guidelines 70 | 71 | People who are contributing to your list should have a clear understanding of how they should do so. 72 | 73 | If you don't feel like writing one from scratch, feel free to take our [contributing.md](contributing.md) and modify it to your own needs. 74 | 75 | ## Stylize your list properly 76 | 77 | Create a [table of contents](https://github.com/sindresorhus/stuff/blob/master/toc-generators.md), organize the content into different categories, and use images if suitable. Ensure all entries are consistent (e.g. all entry descriptions end in a `.`). 78 | 79 | ## Accept other people's opinion 80 | 81 | If you're an owner of the list, respect other people's opinion. If there are plenty of users not agreeing to your decision, give it a second thought. 82 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | **[Insert URL to the list here]** 8 | 9 | **[Explain what this list is about and why it should be included here]** 10 | 11 | 12 | ### By submitting this pull request I confirm I've read and complied with the below requirements 🖖 13 | 14 | **Please read it multiple times. I spent a lot of time on these guidelines and most people miss a lot.** 15 | 16 | ## Requirements for your pull request 17 | 18 | - **You have to review at least 2 other [open pull requests](https://github.com/sindresorhus/awesome/pulls?q=is%3Apr+is%3Aopen).** Try to prioritize unreviewed PRs, but you can also add more comments to reviewed PRs. Go through the below list when reviewing. This requirement is meant to help make the Awesome project self-sustaining. Comment here which PRs you reviewed. You're expected to put a good effort into this and to be thorough. Look at previous PR reviews for inspiration. 19 | - I have read and understood the [instructions for creating a list](https://github.com/sindresorhus/awesome/blob/master/create-list.md). 20 | - This pull request has a descriptive title in the format `Add Name of List` (Example: `Add Swift`), not `Update readme.md` or `Add awesome list`. 21 | - The entry in the Awesome list should: 22 | - Include a short description about the project/theme of the list. **It should not describe the list itself.**
Example: `- [Fish](…) - User-friendly shell.`, not `- [Fish](…) - Resources for Fish.`. 23 | - Be added at the bottom of the appropriate category. 24 | - The list I'm submitting complies with the below requirements. 25 | 26 | 27 | ## Requirements for your Awesome list 28 | 29 | - **Has been around for at least 30 days.**
That means 30 days from either the first real commit or when it was open-sourced. Whatever is most recent. 30 | - It's the result of hard work and the best I could possibly produce. 31 | - Non-generated Markdown file in a GitHub repo. 32 | - **Includes a succinct description of the project/theme at the top of the readme.** [(Example)](https://github.com/willempienaar/awesome-quantified-self) 33 | - The repo should have `awesome-list` & `awesome` as [GitHub topics](https://help.github.com/articles/about-topics). I encourage you to add more relevant topics. 34 | - Not a duplicate. 35 | - Only has awesome items. Awesome lists are curations of the best, not everything. 36 | - Includes a project logo/illustration whenever possible. 37 | - Either fullwidth or placed at the top-right of the readme. [(Example)](https://github.com/sindresorhus/awesome-electron) 38 | - The image should link to the project website or any relevant website. 39 | - The image should be high-DPI. Set it to maximum half the width of the original image. 40 | - Entries have a description, unless the title is descriptive enough by itself. It rarely is though. 41 | - Includes the [Awesome badge](https://github.com/sindresorhus/awesome/blob/master/awesome.md#awesome-badge). 42 | - Should be placed on the right side of the readme heading. 43 | - Should link back to this list. 44 | - Has a Table of Contents section. 45 | - Should be named `Contents`, not `Table of Contents`. 46 | - Should be the first section in the list. 47 | - Should only have one level of sub-lists, preferably none. 48 | - Has an [appropriate license](https://github.com/sindresorhus/awesome/blob/master/awesome.md#choose-an-appropriate-license). 49 | - That means something like CC0, **not a code licence like MIT, BSD, Apache, etc.** 50 | - [WTFPL](http://www.wtfpl.net) and [Unlicense](http://unlicense.org) are not acceptable licenses. 51 | - If you use a license badge, it should be SVG, not PNG. 52 | - Has [contribution guidelines](https://github.com/sindresorhus/awesome/blob/master/awesome.md#include-contribution-guidelines). 53 | - The file should be named `contributing.md`. Casing is up to you. 54 | - Has consistent formatting and proper spelling/grammar. 55 | - The link and description are separated by a dash.
Example: `- [AVA](…) - JavaScript test runner.` 56 | - The description starts with an uppercase character and ends with a period. 57 | - Consistent and correct naming. For example, `Node.js`, not `NodeJS` or `node.js`. 58 | - Doesn't include a Travis badge.
You can still use Travis for list linting, but the badge has no value in the readme. 59 | 60 | Go to the top and read it again. 61 | -------------------------------------------------------------------------------- /media/mentioned-badge-flat.svg: -------------------------------------------------------------------------------- 1 | Mentioned in an Awesome list 2 | -------------------------------------------------------------------------------- /media/badge.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/mentioned-badge.svg: -------------------------------------------------------------------------------- 1 | Mentioned in an Awesome list 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 |
2 | Awesome 3 |
4 |
5 |

6 | My open source work is supported by the community 7 |

8 |

9 | Special thanks to: 10 |
11 |
12 | 13 | wtgtybhertgeghgtwtg 14 | 15 |
16 |
17 | 18 | Botpress 19 | 20 |

21 |
22 |
23 |
24 | 25 | 33 | 34 |

35 | What is an awesome list?    36 | Contribution guide    37 | Creating a list    38 | Twitter    39 | Stickers & t-shirts 40 |

41 | 42 |
43 | 44 |

45 | Just type awesome.re to go here. Check out my blog and follow me on Twitter. 46 |

47 |
48 | 49 | 50 | ## Contents 51 | 52 | - [Platforms](#platforms) 53 | - [Programming Languages](#programming-languages) 54 | - [Front-End Development](#front-end-development) 55 | - [Back-End Development](#back-end-development) 56 | - [Computer Science](#computer-science) 57 | - [Big Data](#big-data) 58 | - [Theory](#theory) 59 | - [Books](#books) 60 | - [Editors](#editors) 61 | - [Gaming](#gaming) 62 | - [Development Environment](#development-environment) 63 | - [Entertainment](#entertainment) 64 | - [Databases](#databases) 65 | - [Media](#media) 66 | - [Learn](#learn) 67 | - [Security](#security) 68 | - [Content Management Systems](#content-management-systems) 69 | - [Hardware](#hardware) 70 | - [Business](#business) 71 | - [Work](#work) 72 | - [Networking](#networking) 73 | - [Decentralized Systems](#decentralized-systems) 74 | - [Miscellaneous](#miscellaneous) 75 | 76 | 77 | ## Platforms 78 | 79 | - [Node.js](https://github.com/sindresorhus/awesome-nodejs#readme) - JavaScript runtime built on Chrome's V8 JavaScript engine. 80 | - [Frontend Development](https://github.com/dypsilon/frontend-dev-bookmarks#readme) 81 | - [iOS](https://github.com/vsouza/awesome-ios#readme) - Mobile operating system for Apple phones and tablets. 82 | - [Android](https://github.com/JStumpp/awesome-android#readme) 83 | - [IoT & Hybrid Apps](https://github.com/weblancaster/awesome-IoT-hybrid#readme) 84 | - [Electron](https://github.com/sindresorhus/awesome-electron#readme) - Cross-platform native desktop apps using JavaScript/HTML/CSS. 85 | - [Cordova](https://github.com/busterc/awesome-cordova#readme) - JavaScript API for hybrid apps. 86 | - [React Native](https://github.com/jondot/awesome-react-native#readme) 87 | - [Xamarin](https://github.com/benoitjadinon/awesome-xamarin#readme) - Mobile app development IDE, testing, and distribution. 88 | - [Linux](https://github.com/aleksandar-todorovic/awesome-linux#readme) 89 | - [Containers](https://github.com/Friz-zy/awesome-linux-containers#readme) 90 | - [macOS](https://github.com/iCHAIT/awesome-macOS#readme) 91 | - [Command-Line](https://github.com/herrbischoff/awesome-macos-command-line#readme) 92 | - [Screensavers](https://github.com/agarrharr/awesome-macos-screensavers#readme) 93 | - [Apps](https://github.com/jaywcjlove/awesome-mac#readme) 94 | - [watchOS](https://github.com/yenchenlin/awesome-watchos#readme) - Operating system for the Apple Watch. 95 | - [JVM](https://github.com/deephacks/awesome-jvm#readme) 96 | - [Salesforce](https://github.com/mailtoharshit/awesome-salesforce#readme) 97 | - [Amazon Web Services](https://github.com/donnemartin/awesome-aws#readme) 98 | - [Windows](https://github.com/Awesome-Windows/Awesome#readme) 99 | - [IPFS](https://github.com/ipfs/awesome-ipfs#readme) - P2P hypermedia protocol. 100 | - [Fuse](https://github.com/fuse-compound/awesome-fuse#readme) - Mobile development tools. 101 | - [Heroku](https://github.com/ianstormtaylor/awesome-heroku#readme) - Cloud platform as a service. 102 | - [Raspberry Pi](https://github.com/thibmaek/awesome-raspberry-pi#readme) - Credit card-sized computer aimed at teaching kids programming, but capable of a lot more. 103 | - [Qt](https://github.com/JesseTG/awesome-qt#readme) - Cross-platform GUI app framework. 104 | - [WebExtensions](https://github.com/bfred-it/Awesome-WebExtensions#readme) - Cross-browser extension system. 105 | - [RubyMotion](https://github.com/motion-open-source/awesome-rubymotion#readme) - Write cross-platform native apps for iOS, Android, macOS, tvOS, and watchOS in Ruby. 106 | - [Smart TV](https://github.com/vitalets/awesome-smart-tv#readme) - Create apps for different TV platforms. 107 | - [GNOME](https://github.com/Kazhnuz/awesome-gnome#readme) - Simple and distraction-free desktop environment for Linux. 108 | - [.NET](https://github.com/quozd/awesome-dotnet#readme) 109 | - [Core](https://github.com/thangchung/awesome-dotnet-core#readme) 110 | - [Amazon Alexa](https://github.com/miguelmota/awesome-amazon-alexa#readme) - Virtual home assistant. 111 | 112 | 113 | ## Programming Languages 114 | 115 | - [JavaScript](https://github.com/sorrycc/awesome-javascript#readme) 116 | - [Promises](https://github.com/wbinnssmith/awesome-promises#readme) 117 | - [Standard Style](https://github.com/standard/awesome-standard#readme) - Style guide and linter. 118 | - [Must Watch Talks](https://github.com/bolshchikov/js-must-watch#readme) 119 | - [Tips](https://github.com/loverajoel/jstips#readme) 120 | - [Network Layer](https://github.com/Kikobeats/awesome-network-js#readme) 121 | - [Micro npm Packages](https://github.com/parro-it/awesome-micro-npm-packages#readme) 122 | - [Mad Science npm Packages](https://github.com/feross/awesome-mad-science#readme) - Impossible sounding projects that exist. 123 | - [Maintenance Modules](https://github.com/maxogden/maintenance-modules#readme) - For npm packages. 124 | - [npm](https://github.com/sindresorhus/awesome-npm#readme) - Package manager. 125 | - [AVA](https://github.com/avajs/awesome-ava#readme) - Test runner. 126 | - [ESLint](https://github.com/dustinspecker/awesome-eslint#readme) - Linter. 127 | - [Functional Programming](https://github.com/stoeffel/awesome-fp-js#readme) 128 | - [Observables](https://github.com/sindresorhus/awesome-observables#readme) 129 | - [npm scripts](https://github.com/RyanZim/awesome-npm-scripts#readme) - Task runner. 130 | - [Swift](https://github.com/matteocrippa/awesome-swift#readme) 131 | - [Education](https://github.com/hsavit1/Awesome-Swift-Education#readme) 132 | - [Playgrounds](https://github.com/uraimo/Awesome-Swift-Playgrounds#readme) 133 | - [Python](https://github.com/vinta/awesome-python#readme) 134 | - [Asyncio](https://github.com/timofurrer/awesome-asyncio#readme) - Asynchronous I/O in Python 3. 135 | - [Scientific Audio](https://github.com/faroit/awesome-python-scientific-audio#readme) - Scientific research in audio/music. 136 | - [CircuitPython](https://github.com/adafruit/awesome-circuitpython#readme) - A version of Python for microcontrollers. 137 | - [Rust](https://github.com/rust-unofficial/awesome-rust#readme) 138 | - [Haskell](https://github.com/krispo/awesome-haskell#readme) 139 | - [PureScript](https://github.com/passy/awesome-purescript#readme) 140 | - [Go](https://github.com/avelino/awesome-go#readme) 141 | - [Scala](https://github.com/lauris/awesome-scala#readme) 142 | - [Ruby](https://github.com/markets/awesome-ruby#readme) 143 | - [Clojure](https://github.com/razum2um/awesome-clojure#readme) 144 | - [ClojureScript](https://github.com/hantuzun/awesome-clojurescript#readme) 145 | - [Elixir](https://github.com/h4cc/awesome-elixir#readme) 146 | - [Elm](https://github.com/isRuslan/awesome-elm#readme) 147 | - [Erlang](https://github.com/drobakowski/awesome-erlang#readme) 148 | - [Julia](https://github.com/svaksha/Julia.jl#readme) 149 | - [Lua](https://github.com/LewisJEllis/awesome-lua#readme) 150 | - [C](https://github.com/aleksandar-todorovic/awesome-c#readme) 151 | - [C/C++](https://github.com/fffaraz/awesome-cpp#readme) 152 | - [R](https://github.com/qinwf/awesome-R#readme) 153 | - [D](https://github.com/zhaopuming/awesome-d#readme) 154 | - [Common Lisp](https://github.com/CodyReichert/awesome-cl#readme) 155 | - [Perl](https://github.com/hachiojipm/awesome-perl#readme) 156 | - [Groovy](https://github.com/kdabir/awesome-groovy#readme) 157 | - [Dart](https://github.com/yissachar/awesome-dart#readme) 158 | - [Java](https://github.com/akullpp/awesome-java#readme) 159 | - [RxJava](https://github.com/eleventigers/awesome-rxjava#readme) 160 | - [Kotlin](https://github.com/KotlinBy/awesome-kotlin#readme) 161 | - [OCaml](https://github.com/rizo/awesome-ocaml#readme) 162 | - [ColdFusion](https://github.com/seancoyne/awesome-coldfusion#readme) 163 | - [Fortran](https://github.com/rabbiabram/awesome-fortran#readme) 164 | - [PHP](https://github.com/ziadoz/awesome-php#readme) 165 | - [Composer](https://github.com/jakoch/awesome-composer#readme) - Package manager. 166 | - [Delphi](https://github.com/Fr0sT-Brutal/awesome-delphi#readme) 167 | - [Assembler](https://github.com/jaspergould/awesome-asm#readme) 168 | - [AutoHotkey](https://github.com/ahkscript/awesome-AutoHotkey#readme) 169 | - [AutoIt](https://github.com/J2TeaM/awesome-AutoIt#readme) 170 | - [Crystal](https://github.com/veelenga/awesome-crystal#readme) 171 | - [Frege](https://github.com/sfischer13/awesome-frege#readme) - Haskell for the JVM. 172 | - [CMake](https://github.com/onqtam/awesome-cmake#readme) - Build, test, and package software. 173 | - [ActionScript 3](https://github.com/robinrodricks/awesome-actionscript3#readme) - Object-oriented language targeting Adobe AIR. 174 | - [Eta](https://github.com/sfischer13/awesome-eta#readme) - Functional programming language for the JVM. 175 | - [Idris](https://github.com/joaomilho/awesome-idris#readme) - General purpose pure functional programming language with dependent types influenced by Haskell and ML. 176 | 177 | 178 | ## Front-End Development 179 | 180 | - [ES6 Tools](https://github.com/addyosmani/es6-tools#readme) 181 | - [Web Performance Optimization](https://github.com/davidsonfellipe/awesome-wpo#readme) 182 | - [Web Tools](https://github.com/lvwzhen/tools#readme) 183 | - [CSS](https://github.com/awesome-css-group/awesome-css#readme) 184 | - [Critical-Path Tools](https://github.com/addyosmani/critical-path-css-tools#readme) 185 | - [Scalability](https://github.com/davidtheclark/scalable-css-reading-list#readme) 186 | - [Must-Watch Talks](https://github.com/AllThingsSmitty/must-watch-css#readme) 187 | - [Protips](https://github.com/AllThingsSmitty/css-protips#readme) 188 | - [React](https://github.com/enaqx/awesome-react#readme) - App framework. 189 | - [Relay](https://github.com/expede/awesome-relay#readme) - Framework for building data-driven React apps. 190 | - [Web Components](https://github.com/mateusortiz/webcomponents-the-right-way#readme) 191 | - [Polymer](https://github.com/Granze/awesome-polymer#readme) - JavaScript library to develop Web Components. 192 | - [Angular](https://github.com/gdi2290/awesome-angular#readme) - App framework. 193 | - [Backbone](https://github.com/sadcitizen/awesome-backbone#readme) - App framework. 194 | - [HTML5](https://github.com/diegocard/awesome-html5#readme) - Markup language used for websites & web apps. 195 | - [SVG](https://github.com/willianjusten/awesome-svg#readme) - XML-based vector image format. 196 | - [Canvas](https://github.com/raphamorim/awesome-canvas#readme) 197 | - [KnockoutJS](https://github.com/dnbard/awesome-knockout#readme) 198 | - [Dojo Toolkit](https://github.com/petk/awesome-dojo#readme) 199 | - [Inspiration](https://github.com/NoahBuscher/Inspire#readme) 200 | - [Ember](https://github.com/nmec/awesome-ember#readme) - App framework. 201 | - [Android UI](https://github.com/wasabeef/awesome-android-ui#readme) 202 | - [iOS UI](https://github.com/cjwirth/awesome-ios-ui#readme) 203 | - [Meteor](https://github.com/Urigo/awesome-meteor#readme) 204 | - [BEM](https://github.com/sturobson/BEM-resources#readme) 205 | - [Flexbox](https://github.com/afonsopacifer/awesome-flexbox#readme) 206 | - [Web Typography](https://github.com/deanhume/typography#readme) 207 | - [Web Accessibility](https://github.com/brunopulis/awesome-a11y#readme) 208 | - [Material Design](https://github.com/sachin1092/awesome-material#readme) 209 | - [D3](https://github.com/wbkd/awesome-d3#readme) - Library for producing dynamic, interactive data visualizations. 210 | - [Emails](https://github.com/jonathandion/awesome-emails#readme) 211 | - [jQuery](https://github.com/petk/awesome-jquery#readme) - Easy to use JavaScript library for DOM manipulation. 212 | - [Tips](https://github.com/AllThingsSmitty/jquery-tips-everyone-should-know#readme) 213 | - [Web Audio](https://github.com/notthetup/awesome-webaudio#readme) 214 | - [Offline-First](https://github.com/pazguille/offline-first#readme) 215 | - [Static Website Services](https://github.com/agarrharr/awesome-static-website-services#readme) 216 | - [A-Frame VR](https://github.com/aframevr/awesome-aframe#readme) - Virtual reality for web browsers. 217 | - [Cycle.js](https://github.com/cyclejs-community/awesome-cyclejs#readme) - Functional and reactive JavaScript framework. 218 | - [Text Editing](https://github.com/dok/awesome-text-editing#readme) 219 | - [Motion UI Design](https://github.com/fliptheweb/motion-ui-design#readme) 220 | - [Vue.js](https://github.com/vuejs/awesome-vue#readme) - App framework. 221 | - [Marionette.js](https://github.com/sadcitizen/awesome-marionette#readme) - App framework. 222 | - [Aurelia](https://github.com/behzad888/awesome-aurelia#readme) - App framework. 223 | - [Charting](https://github.com/zingchart/awesome-charting#readme) 224 | - [Ionic Framework 2](https://github.com/candelibas/awesome-ionic#readme) 225 | - [Chrome DevTools](https://github.com/ChromeDevTools/awesome-chrome-devtools#readme) 226 | - [PostCSS](https://github.com/jdrgomes/awesome-postcss#readme) - CSS tool. 227 | - [Draft.js](https://github.com/nikgraf/awesome-draft-js#readme) - Rich text editor framework for React. 228 | - [Service Workers](https://github.com/TalAter/awesome-service-workers#readme) 229 | - [Progressive Web Apps](https://github.com/TalAter/awesome-progressive-web-apps#readme) 230 | - [choo](https://github.com/choojs/awesome-choo#readme) - App framework. 231 | - [Redux](https://github.com/brillout/awesome-redux#readme) - State container for JavaScript apps. 232 | - [webpack](https://github.com/webpack-contrib/awesome-webpack#readme) - Module bundler. 233 | - [Browserify](https://github.com/browserify/awesome-browserify#readme) - Module bundler. 234 | - [Sass](https://github.com/Famolus/awesome-sass#readme) - CSS preprocessor. 235 | - [Ant Design](https://github.com/websemantics/awesome-ant-design#readme) - Enterprise-class UI design language. 236 | - [Less](https://github.com/LucasBassetti/awesome-less#readme) - CSS preprocessor. 237 | - [WebGL](https://github.com/sjfricke/awesome-webgl#readme) - JavaScript API for rendering 3D graphics. 238 | - [Preact](https://github.com/ooade/awesome-preact#readme) - App framework. 239 | - [Progressive Enhancement](https://github.com/jbmoelker/progressive-enhancement-resources#readme) 240 | - [Next.js](https://github.com/unicodeveloper/awesome-nextjs#readme) - Framework for server-rendered React apps. 241 | - [Hyperapp](https://github.com/hyperapp/awesome-hyperapp#readme) - Tiny JavaScript library for building web apps. 242 | 243 | 244 | ## Back-End Development 245 | 246 | - [Django](https://github.com/rosarior/awesome-django#readme) 247 | - [Flask](https://github.com/humiaozuzu/awesome-flask#readme) 248 | - [Docker](https://github.com/veggiemonk/awesome-docker#readme) 249 | - [Vagrant](https://github.com/iJackUA/awesome-vagrant#readme) 250 | - [Pyramid](https://github.com/uralbash/awesome-pyramid#readme) 251 | - [Play1 Framework](https://github.com/PerfectCarl/awesome-play1#readme) 252 | - [CakePHP](https://github.com/friendsofcake/awesome-cakephp#readme) - PHP framework. 253 | - [Symfony](https://github.com/sitepoint-editors/awesome-symfony#readme) 254 | - [Education](https://github.com/pehapkari/awesome-symfony-education#readme) 255 | - [Laravel](https://github.com/chiraggude/awesome-laravel#readme) - PHP framework. 256 | - [Education](https://github.com/fukuball/Awesome-Laravel-Education#readme) 257 | - [Rails](https://github.com/ekremkaraca/awesome-rails#readme) - Web app framework for Ruby. 258 | - [Gems](https://github.com/hothero/awesome-rails-gem#readme) - Packages. 259 | - [Phalcon](https://github.com/phalcon/awesome-phalcon#readme) 260 | - [Useful `.htaccess` Snippets](https://github.com/phanan/htaccess#readme) 261 | - [nginx](https://github.com/fcambus/nginx-resources#readme) - Web server. 262 | - [Dropwizard](https://github.com/stve/awesome-dropwizard#readme) 263 | - [Kubernetes](https://github.com/ramitsurana/awesome-kubernetes#readme) 264 | - [Lumen](https://github.com/unicodeveloper/awesome-lumen#readme) 265 | - [Serverless Framework](https://github.com/pmuens/awesome-serverless#readme) 266 | - [Apache Wicket](https://github.com/PhantomYdn/awesome-wicket#readme) - Java web app framework. 267 | - [Vert.x](https://github.com/vert-x3/vertx-awesome#readme) - Toolkit for building reactive apps on the JVM. 268 | - [Terraform](https://github.com/shuaibiyy/awesome-terraform#readme) - Tool for building, changing, and versioning infrastructure. 269 | - [Vapor](https://github.com/Cellane/awesome-vapor#readme) - Server-side development in Swift. 270 | 271 | 272 | ## Computer Science 273 | 274 | - [University Courses](https://github.com/prakhar1989/awesome-courses#readme) 275 | - [Data Science](https://github.com/bulutyazilim/awesome-datascience#readme) 276 | - [Tutorials](https://github.com/siboehm/awesome-learn-datascience#readme) 277 | - [Machine Learning](https://github.com/josephmisiti/awesome-machine-learning#readme) 278 | - [Tutorials](https://github.com/ujjwalkarn/Machine-Learning-Tutorials#readme) 279 | - [ML with Ruby](https://github.com/arbox/machine-learning-with-ruby#readme) - Learning, implementing, and applying Machine Learning using Ruby. 280 | - [Core ML Models](https://github.com/likedan/Awesome-CoreML-Models#readme) - Models for Apple's machine learning framework. 281 | - [Speech and Natural Language Processing](https://github.com/edobashira/speech-language-processing#readme) 282 | - [Spanish](https://github.com/dav009/awesome-spanish-nlp#readme) 283 | - [NLP with Ruby](https://github.com/arbox/nlp-with-ruby#readme) 284 | - [Linguistics](https://github.com/theimpossibleastronaut/awesome-linguistics#readme) 285 | - [Cryptography](https://github.com/sobolevn/awesome-cryptography#readme) 286 | - [Computer Vision](https://github.com/jbhuang0604/awesome-computer-vision#readme) 287 | - [Deep Learning](https://github.com/ChristosChristofidis/awesome-deep-learning#readme) - Neural networks. 288 | - [TensorFlow](https://github.com/jtoy/awesome-tensorflow#readme) - Library for machine intelligence. 289 | - [Papers](https://github.com/terryum/awesome-deep-learning-papers#readme) - The most cited deep learning papers. 290 | - [Education](https://github.com/guillaume-chevalier/awesome-deep-learning-resources#readme) 291 | - [Deep Vision](https://github.com/kjw0612/awesome-deep-vision#readme) 292 | - [Open Source Society University](https://github.com/ossu/computer-science#readme) 293 | - [Functional Programming](https://github.com/lucasviola/awesome-functional-programming#readme) 294 | - [Static Analysis & Code Quality](https://github.com/mre/awesome-static-analysis#readme) 295 | - [Information Retrieval](https://github.com/harpribot/awesome-information-retrieval#readme) - Learn to develop your own search engine. 296 | 297 | 298 | ## Big Data 299 | 300 | - [Big Data](https://github.com/onurakpolat/awesome-bigdata#readme) 301 | - [Public Datasets](https://github.com/awesomedata/awesome-public-datasets#readme) 302 | - [Hadoop](https://github.com/youngwookim/awesome-hadoop#readme) - Framework for distributed storage and processing of very large data sets. 303 | - [Data Engineering](https://github.com/igorbarinov/awesome-data-engineering#readme) 304 | - [Streaming](https://github.com/manuzhang/awesome-streaming#readme) 305 | - [Apache Spark](https://github.com/awesome-spark/awesome-spark#readme) - Unified engine for large-scale data processing. 306 | 307 | 308 | ## Theory 309 | 310 | - [Papers We Love](https://github.com/papers-we-love/papers-we-love#readme) 311 | - [Talks](https://github.com/JanVanRyswyck/awesome-talks#readme) 312 | - [Algorithms](https://github.com/tayllan/awesome-algorithms#readme) 313 | - [Algorithm Visualizations](https://github.com/enjalot/algovis#readme) 314 | - [Artificial Intelligence](https://github.com/owainlewis/awesome-artificial-intelligence#readme) 315 | - [Search Engine Optimization](https://github.com/marcobiedermann/search-engine-optimization#readme) 316 | - [Competitive Programming](https://github.com/lnishan/awesome-competitive-programming#readme) 317 | - [Math](https://github.com/rossant/awesome-math#readme) 318 | - [Recursion Schemes](https://github.com/passy/awesome-recursion-schemes#readme) - Traversing nested data structures. 319 | 320 | 321 | ## Books 322 | 323 | - [Free Programming Books](https://github.com/EbookFoundation/free-programming-books#readme) 324 | - [Free Software Testing Books](https://github.com/ligurio/awesome-software-quality#readme) 325 | - [Go Books](https://github.com/dariubs/GoBooks#readme) 326 | - [R Books](https://github.com/RomanTsegelskyi/rbooks#readme) 327 | - [Mind Expanding Books](https://github.com/hackerkid/Mind-Expanding-Books#readme) 328 | - [Book Authoring](https://github.com/TalAter/awesome-book-authoring#readme) 329 | - [Elixir Books](https://github.com/sger/ElixirBooks#readme) 330 | 331 | 332 | ## Editors 333 | 334 | - [Sublime Text](https://github.com/dreikanter/sublime-bookmarks#readme) 335 | - [Vim](https://github.com/mhinz/vim-galore#readme) 336 | - [Emacs](https://github.com/emacs-tw/awesome-emacs#readme) 337 | - [Atom](https://github.com/mehcode/awesome-atom#readme) - Open-source and hackable text editor. 338 | - [Visual Studio Code](https://github.com/viatsko/awesome-vscode#readme) - Cross-platform open-source text editor. 339 | 340 | 341 | ## Gaming 342 | 343 | - [Game Development](https://github.com/ellisonleao/magictools#readme) 344 | - [Game Talks](https://github.com/hzoo/awesome-gametalks#readme) 345 | - [Godot](https://github.com/Calinou/awesome-godot#readme) - Game engine. 346 | - [Open Source Games](https://github.com/leereilly/games#readme) 347 | - [Unity](https://github.com/RyanNielson/awesome-unity#readme) - Game engine. 348 | - [Chess](https://github.com/hkirat/awesome-chess#readme) 349 | - [LÖVE](https://github.com/love2d-community/awesome-love2d#readme) - Game engine. 350 | - [PICO-8](https://github.com/felipebueno/awesome-PICO-8#readme) - Fantasy console. 351 | - [Game Boy Development](https://github.com/avivace/awesome-gbdev#readme) 352 | - [Construct 2](https://github.com/armaldio/awesome-construct#readme) - Game engine. 353 | - [Gideros](https://github.com/stetso/awesome-gideros#readme) - Game engine. 354 | 355 | 356 | ## Development Environment 357 | 358 | - [Quick Look Plugins](https://github.com/sindresorhus/quick-look-plugins#readme) - For macOS. 359 | - [Dev Env](https://github.com/jondot/awesome-devenv#readme) 360 | - [Dotfiles](https://github.com/webpro/awesome-dotfiles#readme) 361 | - [Shell](https://github.com/alebcay/awesome-shell#readme) 362 | - [Fish](https://github.com/fisherman/awesome-fish-shell#readme) - User-friendly shell. 363 | - [Command-Line Apps](https://github.com/agarrharr/awesome-cli-apps#readme) 364 | - [ZSH Plugins](https://github.com/unixorn/awesome-zsh-plugins#readme) 365 | - [GitHub](https://github.com/phillipadsmith/awesome-github#readme) - Hosting service for Git repositories. 366 | - [Browser Extensions](https://github.com/stefanbuck/awesome-browser-extensions-for-github#readme) 367 | - [Cheat Sheet](https://github.com/tiimgreen/github-cheat-sheet#readme) 368 | - [Git Cheat Sheet & Git Flow](https://github.com/arslanbilal/git-cheat-sheet#readme) 369 | - [Git Tips](https://github.com/git-tips/tips#readme) 370 | - [Git Add-ons](https://github.com/stevemao/awesome-git-addons#readme) - Enhance the `git` CLI. 371 | - [SSH](https://github.com/moul/awesome-ssh#readme) 372 | - [FOSS for Developers](https://github.com/tvvocold/FOSS-for-Dev#readme) 373 | - [Hyper](https://github.com/bnb/awesome-hyper#readme) - Cross-platform terminal app built on web technologies. 374 | - [PowerShell](https://github.com/janikvonrotz/awesome-powershell#readme) - Cross-platform object-oriented shell. 375 | - [Alfred Workflows](https://github.com/derimagia/awesome-alfred-workflows#readme) - Productivity app for macOS. 376 | - [Terminals Are Sexy](https://github.com/k4m4/terminals-are-sexy#readme) 377 | 378 | 379 | ## Entertainment 380 | 381 | - [Science Fiction](https://github.com/sindresorhus/awesome-scifi#readme) - Scifi. 382 | - [Fantasy](https://github.com/RichardLitt/awesome-fantasy#readme) 383 | - [Podcasts](https://github.com/guipdutra/awesome-geek-podcasts#readme) 384 | - [Email Newsletters](https://github.com/vredniy/awesome-newsletters#readme) 385 | - [IT Quotes](https://github.com/victorlaerte/awesome-it-quotes#readme) 386 | 387 | 388 | ## Databases 389 | 390 | - [Database](https://github.com/numetriclabz/awesome-db#readme) 391 | - [MySQL](https://github.com/shlomi-noach/awesome-mysql/blob/gh-pages/index.md) 392 | - [SQLAlchemy](https://github.com/dahlia/awesome-sqlalchemy#readme) 393 | - [InfluxDB](https://github.com/mark-rushakoff/awesome-influxdb#readme) 394 | - [Neo4j](https://github.com/neueda/awesome-neo4j#readme) 395 | - [MongoDB](https://github.com/ramnes/awesome-mongodb#readme) - NoSQL database. 396 | - [RethinkDB](https://github.com/d3viant0ne/awesome-rethinkdb#readme) 397 | - [TinkerPop](https://github.com/mohataher/awesome-tinkerpop#readme) - Graph computing framework. 398 | - [PostgreSQL](https://github.com/dhamaniasad/awesome-postgres#readme) - Object-relational database. 399 | - [CouchDB](https://github.com/quangv/awesome-couchdb#readme) - Document-oriented NoSQL database. 400 | - [HBase](https://github.com/rayokota/awesome-hbase#readme) - Distributed, scalable, big data store. 401 | 402 | 403 | ## Media 404 | 405 | - [Creative Commons Media](https://github.com/shime/creative-commons-media#readme) 406 | - [Fonts](https://github.com/brabadu/awesome-fonts#readme) 407 | - [Codeface](https://github.com/chrissimpkins/codeface#readme) - Text editor fonts. 408 | - [Stock Resources](https://github.com/neutraltone/awesome-stock-resources#readme) 409 | - [GIF](https://github.com/davisonio/awesome-gif#readme) - Image format known for animated images. 410 | - [Music](https://github.com/ciconia/awesome-music#readme) 411 | - [Open Source Documents](https://github.com/hubtee/awesome-opensource-documents#readme) 412 | - [Audio Visualization](https://github.com/willianjusten/awesome-audio-visualization#readme) 413 | - [Broadcasting](https://github.com/ebu/awesome-broadcasting#readme) 414 | - [Pixel Art](https://github.com/Siilwyn/awesome-pixel-art#readme) - Pixel-level digital art. 415 | 416 | 417 | ## Learn 418 | 419 | - [CLI Workshoppers](https://github.com/therebelrobot/awesome-workshopper#readme) - Interactive tutorials. 420 | - [Learn to Program](https://github.com/karlhorky/learn-to-program#readme) 421 | - [Speaking](https://github.com/matteofigus/awesome-speaking#readme) 422 | - [Tech Videos](https://github.com/lucasviola/awesome-tech-videos#readme) 423 | - [Dive into Machine Learning](https://github.com/hangtwenty/dive-into-machine-learning#readme) 424 | - [Computer History](https://github.com/watson/awesome-computer-history#readme) 425 | - [Programming for Kids](https://github.com/HollyAdele/awesome-programming-for-kids#readme) 426 | - [Educational Games](https://github.com/yrgo/awesome-eg#readme) - Learn while playing. 427 | - [JavaScript Learning](https://github.com/micromata/awesome-javascript-learning#readme) 428 | 429 | 430 | ## Security 431 | 432 | - [Application Security](https://github.com/paragonie/awesome-appsec#readme) 433 | - [Security](https://github.com/sbilly/awesome-security#readme) 434 | - [CTF](https://github.com/apsdehal/awesome-ctf#readme) - Capture The Flag. 435 | - [Malware Analysis](https://github.com/rshipp/awesome-malware-analysis#readme) 436 | - [Android Security](https://github.com/ashishb/android-security-awesome#readme) 437 | - [Hacking](https://github.com/carpedm20/awesome-hacking#readme) 438 | - [Honeypots](https://github.com/paralax/awesome-honeypots#readme) - Deception trap, designed to entice an attacker into attempting to compromise the information systems in an organization. 439 | - [Incident Response](https://github.com/meirwah/awesome-incident-response#readme) 440 | - [Vehicle Security and Car Hacking](https://github.com/jaredthecoder/awesome-vehicle-security#readme) 441 | - [Web Security](https://github.com/qazbnm456/awesome-web-security#readme) - Security of web apps & services. 442 | - [Lockpicking](https://github.com/meitar/awesome-lockpicking#readme) - The art of unlocking a lock by manipulating its components without the key. 443 | 444 | 445 | ## Content Management Systems 446 | 447 | - [Umbraco](https://github.com/leekelleher/awesome-umbraco#readme) 448 | - [Refinery CMS](https://github.com/refinerycms-contrib/awesome-refinerycms#readme) - Ruby on Rails CMS. 449 | - [Wagtail](https://github.com/springload/awesome-wagtail#readme) - Django CMS focused on flexibility and user experience. 450 | - [Textpattern](https://github.com/drmonkeyninja/awesome-textpattern#readme) - Lightweight PHP-based CMS. 451 | - [Drupal](https://github.com/nirgn975/awesome-drupal#readme) - Extensible PHP-based CMS. 452 | - [Craft CMS](https://github.com/craftcms/awesome#readme) - Content-first CMS. 453 | 454 | 455 | ## Hardware 456 | 457 | - [Robotics](https://github.com/Kiloreux/awesome-robotics#readme) 458 | - [Internet of Things](https://github.com/HQarroum/awesome-iot#readme) 459 | - [Electronics](https://github.com/monostable/awesome-electronics#readme) - For electronic engineers and hobbyists. 460 | - [Bluetooth Beacons](https://github.com/beaconinside/awesome-beacon#readme) 461 | - [Electric Guitar Specifications](https://github.com/gitfrage/guitarspecs#readme) - Checklist for building your own electric guitar. 462 | 463 | 464 | ## Business 465 | 466 | - [Open Companies](https://github.com/opencompany/awesome-open-company#readme) 467 | - [Places to Post Your Startup](https://github.com/mmccaff/PlacesToPostYourStartup#readme) 468 | - [OKR Methodology](https://github.com/domenicosolazzo/awesome-okr#readme) - Goal setting & communication best practices. 469 | - [Leading and Managing](https://github.com/LappleApple/awesome-leading-and-managing#readme) - Leading people and being a manager in a technology company/environment. 470 | - [Indie](https://github.com/mezod/awesome-indie#readme) - Independent developer businesses. 471 | 472 | 473 | ## Work 474 | 475 | - [Slack](https://github.com/matiassingers/awesome-slack#readme) - Team collaboration. 476 | - [Communities](https://github.com/filipelinhares/awesome-slack#readme) 477 | - [Remote Jobs](https://github.com/lukasz-madon/awesome-remote-job#readme) 478 | - [Productivity](https://github.com/jyguyomarch/awesome-productivity#readme) 479 | - [Niche Job Boards](https://github.com/tramcar/awesome-job-boards#readme) 480 | - [Programming Interviews](https://github.com/MaximAbramchuck/awesome-interview-questions#readme) 481 | - [Code Review](https://github.com/joho/awesome-code-review#readme) - Reviewing code. 482 | 483 | 484 | ## Networking 485 | 486 | - [Software-Defined Networking](https://github.com/sdnds-tw/awesome-sdn#readme) 487 | - [Network Analysis](https://github.com/briatte/awesome-network-analysis#readme) 488 | - [PCAPTools](https://github.com/caesar0301/awesome-pcaptools#readme) 489 | 490 | ## Decentralized Systems 491 | 492 | - [Bitcoin](https://github.com/igorbarinov/awesome-bitcoin#readme) - Bitcoin services and tools for software developers. 493 | - [Ripple](https://github.com/vhpoet/awesome-ripple#readme) - Open source distributed settlement network. 494 | - [Non-Financial Blockchain](https://github.com/machinomy/awesome-non-financial-blockchain#readme) - Non-financial blockchain applications. 495 | - [Mastodon](https://github.com/tleb/awesome-mastodon#readme) - Open source decentralized microblogging network. 496 | 497 | ## Miscellaneous 498 | 499 | - [JSON](https://github.com/burningtree/awesome-json#readme) - Text based data interchange format. 500 | - [GeoJSON](https://github.com/tmcw/awesome-geojson#readme) 501 | - [Datasets](https://github.com/jdorfman/awesome-json-datasets#readme) 502 | - [Discounts for Student Developers](https://github.com/AchoArnold/discount-for-student-dev#readme) 503 | - [Conferences](https://github.com/RichardLitt/awesome-conferences#readme) 504 | - [Sysadmin](https://github.com/n1trux/awesome-sysadmin#readme) 505 | - [Radio](https://github.com/kyleterry/awesome-radio#readme) 506 | - [Awesome](https://github.com/sindresorhus/awesome#readme) - Recursion illustrated. 507 | - [Analytics](https://github.com/onurakpolat/awesome-analytics#readme) 508 | - [REST](https://github.com/marmelab/awesome-rest#readme) 509 | - [Selenium](https://github.com/christian-bromann/awesome-selenium#readme) 510 | - [Appium](https://github.com/SrinivasanTarget/awesome-appium#readme) - Test automation tool for apps. 511 | - [Continuous Integration and Continuous Delivery](https://github.com/ciandcd/awesome-ciandcd#readme) 512 | - [Services Engineering](https://github.com/mmcgrana/services-engineering#readme) 513 | - [Free for Developers](https://github.com/ripienaar/free-for-dev#readme) 514 | - [Answers](https://github.com/cyberglot/awesome-answers#readme) - Stack Overflow, Quora, etc. 515 | - [Sketch](https://github.com/diessica/awesome-sketch#readme) - Design app for macOS. 516 | - [Boilerplate Projects](https://github.com/melvin0008/awesome-projects-boilerplates#readme) 517 | - [Readme](https://github.com/matiassingers/awesome-readme#readme) 518 | - [Tools](https://github.com/cjbarber/ToolsOfTheTrade#readme) 519 | - [Styleguides](https://github.com/RichardLitt/awesome-styleguides#readme) 520 | - [Design and Development Guides](https://github.com/NARKOZ/guides#readme) 521 | - [Software Engineering Blogs](https://github.com/kilimchoi/engineering-blogs#readme) 522 | - [Self Hosted](https://github.com/Kickball/awesome-selfhosted#readme) 523 | - [FOSS Production Apps](https://github.com/jwaterfaucett/awesome-foss-apps#readme) 524 | - [Gulp](https://github.com/alferov/awesome-gulp#readme) - Task runner. 525 | - [AMA](https://github.com/sindresorhus/amas#readme) - Ask Me Anything. 526 | - [Answers](https://github.com/stoeffel/awesome-ama-answers#readme) 527 | - [Open Source Photography](https://github.com/ibaaj/awesome-OpenSourcePhotography#readme) 528 | - [OpenGL](https://github.com/eug/awesome-opengl#readme) - Cross-platform API for rendering 2D and 3D graphics. 529 | - [GraphQL](https://github.com/chentsulin/awesome-graphql#readme) 530 | - [Transit](https://github.com/CUTR-at-USF/awesome-transit#readme) 531 | - [Research Tools](https://github.com/emptymalei/awesome-research#readme) 532 | - [Data Visualization](https://github.com/fasouto/awesome-dataviz#readme) 533 | - [Social Media Share Links](https://github.com/vinkla/shareable-links#readme) 534 | - [Microservices](https://github.com/mfornos/awesome-microservices#readme) 535 | - [Unicode](https://github.com/jagracey/Awesome-Unicode#readme) - Unicode standards, quirks, packages and resources. 536 | - [Code Points](https://github.com/Codepoints/awesome-codepoints#readme) 537 | - [Beginner-Friendly Projects](https://github.com/MunGell/awesome-for-beginners#readme) 538 | - [Katas](https://github.com/gamontal/awesome-katas#readme) 539 | - [Tools for Activism](https://github.com/drewrwilson/toolsforactivism#readme) 540 | - [Citizen Science](https://github.com/dylanrees/citizen-science#readme) - For community-based and non-institutional scientists. 541 | - [TAP](https://github.com/sindresorhus/awesome-tap#readme) - Test Anything Protocol. 542 | - [MQTT](https://github.com/hobbyquaker/awesome-mqtt#readme) - "Internet of Things" connectivity protocol. 543 | - [Hacking Spots](https://github.com/diasdavid/awesome-hacking-spots#readme) 544 | - [For Girls](https://github.com/cristianoliveira/awesome4girls#readme) 545 | - [Vorpal](https://github.com/vorpaljs/awesome-vorpal#readme) - Node.js CLI framework. 546 | - [Vulkan](https://github.com/vinjn/awesome-vulkan#readme) - Low-overhead, cross-platform 3D graphics and compute API. 547 | - [LaTeX](https://github.com/egeerardyn/awesome-LaTeX#readme) - Typesetting language. 548 | - [Economics](https://github.com/antontarasenko/awesome-economics#readme) - An economist's starter kit. 549 | - [Funny Markov Chains](https://github.com/sublimino/awesome-funny-markov#readme) 550 | - [Bioinformatics](https://github.com/danielecook/Awesome-Bioinformatics#readme) 551 | - [Colorful](https://github.com/Siddharth11/Colorful#readme) - Choose your next color scheme. 552 | - [Steam](https://github.com/scholtzm/awesome-steam#readme) - Digital distribution platform. 553 | - [Bots](https://github.com/hackerkid/bots#readme) - Building bots. 554 | - [Site Reliability Engineering](https://github.com/dastergon/awesome-sre#readme) 555 | - [Empathy in Engineering](https://github.com/KimberlyMunoz/empathy-in-engineering#readme) - Building and promoting more compassionate engineering cultures. 556 | - [DTrace](https://github.com/xen0l/awesome-dtrace#readme) - Dynamic tracing framework. 557 | - [Userscripts](https://github.com/brunocvcunha/awesome-userscripts#readme) - Enhance your browsing experience. 558 | - [Pokémon](https://github.com/tobiasbueschel/awesome-pokemon#readme) - Pokémon and Pokémon GO. 559 | - [ChatOps](https://github.com/exAspArk/awesome-chatops#readme) - Managing technical and business operations through a chat. 560 | - [Falsehood](https://github.com/kdeldycke/awesome-falsehood#readme) - Falsehoods programmers believe in. 561 | - [Domain-Driven Design](https://github.com/heynickc/awesome-ddd#readme) - Software development approach for complex needs by connecting the implementation to an evolving model. 562 | - [Quantified Self](https://github.com/woop/awesome-quantified-self#readme) - Self-tracking through technology. 563 | - [SaltStack](https://github.com/hbokh/awesome-saltstack#readme) - Python-based config management system. 564 | - [Web Design](https://github.com/nicolesaidy/awesome-web-design#readme) - For digital designers. 565 | - [JMeter](https://github.com/aliesbelik/awesome-jmeter#readme) - Load testing and performance measurement tool. 566 | - [Creative Coding](https://github.com/terkelg/awesome-creative-coding#readme) - Programming something expressive instead of something functional. 567 | - [No-Login Web Apps](https://github.com/aviaryan/awesome-no-login-web-apps#readme) - Web apps that work without login. 568 | - [Testing](https://github.com/TheJambo/awesome-testing#readme) - Software testing. 569 | - [Free Software](https://github.com/johnjago/awesome-free-software#readme) - Free as in freedom. 570 | - [Framer](https://github.com/podo/awesome-framer#readme) - Prototyping interactive UI designs. 571 | - [Markdown](https://github.com/BubuAnabelas/awesome-markdown#readme) - Markup language. 572 | - [Dev Fun](https://github.com/mislavcimpersak/awesome-dev-fun#readme) - Funny developer projects. 573 | - [Events in the Netherlands](https://github.com/awkward/awesome-netherlands-events#readme) - Tech-related events in the Netherlands. 574 | - [Healthcare](https://github.com/kakoni/awesome-healthcare#readme) - Open source healthcare software for facilities, providers, developers, policy experts, and researchers. 575 | - [Magento 2](https://github.com/DavidLambauer/awesome-magento2#readme) - Open Source eCommerce built with PHP. 576 | - [TikZ](https://github.com/xiaohanyu/awesome-tikz#readme) - Graph drawing packages for TeX/LaTeX/ConTeXt. 577 | - [Neuroscience](https://github.com/analyticalmonk/awesome-neuroscience#readme) - Study of the nervous system and brain. 578 | - [Ad-Free](https://github.com/johnjago/awesome-ad-free#readme) - Ad-free alternatives. 579 | - [Esolangs](https://github.com/angrykoala/awesome-esolangs#readme) - Programming languages designed for experimentation or as jokes rather than actual use. 580 | - [Prometheus](https://github.com/roaldnefs/awesome-prometheus#readme) - Open-source monitoring system. 581 | - [Homematic](https://github.com/hobbyquaker/awesome-homematic#readme) - Smart home devices. 582 | - [Ledger](https://github.com/sfischer13/awesome-ledger#readme) - Double-entry accounting on the command-line. 583 | - [Uncopyright](https://github.com/johnjago/awesome-uncopyright#readme) - Public domain works. 584 | - [Crypto Currency Tools & Algorithms](https://github.com/kennethreitz/awesome-coins#readme) - Digital currency where encryption is used to regulate the generation of units and verify transfers. 585 | - [Diversity](https://github.com/folkswhocode/awesome-diversity#readme) - Creating a more inclusive and diverse tech community. 586 | - [Open Source Supporters](https://github.com/zachflower/awesome-open-source-supporters#readme) - Companies that offer their tools and services for free to open source projects. 587 | - [Design Principles](https://github.com/robinstickel/awesome-design-principles#readme) - Create better and more consistent designs and experiences. 588 | - [Visual Regression Testing](https://github.com/mojoaxel/awesome-regression-testing#readme) - Ensures changes did not break the functionality or style. 589 | - [Theravada](https://github.com/johnjago/awesome-theravada#readme) - Teachings from the Theravada Buddhist tradition. 590 | - [inspectIT](https://github.com/inspectit-labs/awesome-inspectit#readme) - Open source Java app performance management tool. 591 | - [Open Source Maintainers](https://github.com/nayafia/awesome-maintainers#readme) - The experience of being an open source maintainer. 592 | - [Calculators](https://github.com/xxczaki/awesome-calculators#readme) - Calculators for every platform. 593 | - [Captcha](https://github.com/ZYSzys/awesome-captcha#readme) - A type of challenge–response test used in computing to determine whether or not the user is human. 594 | - [Jupyter](https://github.com/markusschanta/awesome-jupyter#readme) - Create and share documents that contain code, equations, visualizations and narrative text. 595 | 596 | 597 | ## License 598 | 599 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 600 | 601 | To the extent possible under law, [Sindre Sorhus](https://sindresorhus.com) has waived all copyright and related or neighboring rights to this work. 602 | --------------------------------------------------------------------------------