├── .github └── pull_request_template.md ├── .travis.yml ├── .varci.yml ├── CONTRIBUTING.md ├── Dangerfile ├── README.md └── code-of-conduct.md /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | **[Insert URL to the list here.]** 4 | 5 | **[Explain what this list is about and why it should be included here.]** 6 | 7 | 8 | # By submitting this pull request I confirm I've read and complied with the below requirements. 9 | 10 | Failure to properly do so will just result in the pull request being closed and everyone's time wasted. Please read it twice. Most people miss many things. 11 | 12 | - [ ] I have read and understood the [contribution guidelines](https://github.com/bayandin/awesome-awesomeness/blob/master/CONTRIBUTING.md). 13 | - [ ] This pull request has a descriptive title. For example, `Add [Name of List]`, not `Update readme.md` or `Add an awesome list`. 14 | - [ ] The list I added **has been around for at least 20 days**, 15 | - [ ] The list I added is a non-generated Markdown file in a GitHub repo, 16 | - [ ] The list I added is not a duplicate 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.6 4 | before_script: 5 | - gem install awesome_bot 6 | - gem install danger 7 | - gem install octokit 8 | 9 | script: 10 | - git diff master.. -U0 README.md | grep -Po "(?<=^\+).*" >> temp.md 11 | - awesome_bot temp.md --allow-redirect 12 | - danger --verbose 13 | -------------------------------------------------------------------------------- /.varci.yml: -------------------------------------------------------------------------------- 1 | ruleset: 2 | 3 | welcome_me: 4 | 5 | name: Talk with the PR opener 6 | events: [ pull_request ] 7 | when: 8 | - action = "opened" 9 | comment: | 10 | Welcome to Awesome Awesomeness @{{ user.login }}! 11 | 12 | Please wait while our bot (@checkbot) validates your changes. He'll post on this PR when finished. 13 | If you have any problem, feel free to send (@VarCI-bot help me!). 14 | Good luck! 15 | 16 | respond_to_me: 17 | 18 | name: Give help 19 | events: [ issue_comment ] 20 | when: 21 | - action = "created" 22 | - body contains "@VarCI-bot help me!" 23 | comment: | 24 | Hi again @{{ user.login }} 25 | I see you're having problems... let's ping @m1guelpf 26 | Good luck! 27 | -------------------------------------------------------------------------------- /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 | # The pull request should have a useful title. Pull requests with `Update readme.md` as title will be closed right away because I'm so tired of nobody reading this document. Please carefully read everything in `Adding to this list`. 6 | 7 | ## Table of Contents 8 | 9 | - [Adding to this list](#adding-to-this-list) 10 | - [Creating your own awesome list](#creating-your-own-awesome-list) 11 | - [Adding something to an awesome list](#adding-something-to-an-awesome-list) 12 | - [Updating your Pull Request](#updating-your-pull-request) 13 | 14 | ## Adding to this list 15 | 16 | Please ensure your pull request adheres to the following guidelines: 17 | 18 | - Search previous suggestions before making a new one, as yours may be a duplicate. 19 | - Make an individual pull request for each suggestion. 20 | - Chose corresponding section (Programming Languages or General) for your suggestion. 21 | - Use the following format: `[List Name `**without awesome**`](link)` 22 | - Use the following format for commit message: `Add Language Name` (without 'awesome' or something else). 23 | - New categories or improvements to the existing categorization are welcome. 24 | - Check your spelling and grammar. 25 | - List, after your addition, should be alphabetically. 26 | - The pull request and commit should have a useful title. 27 | - The body of your commit message should contain a link to the repository. 28 | 29 | Thank you for your suggestions! 30 | 31 | ## Creating your own awesome list 32 | 33 | To create your own list, check out the [instructions](https://github.com/sindresorhus/awesome/blob/master/create-list.md). 34 | 35 | ## Adding something to an awesome list 36 | 37 | If you have something awesome to contribute to an awesome list, this is how you do it. 38 | 39 | You'll need a [GitHub account](https://github.com/join)! 40 | 41 | 1. Access the awesome list's GitHub page. For example: https://github.com/sindresorhus/awesome 42 | 2. Click on the `readme.md` file: ![Step 2 Click on Readme.md](http://i.imgur.com/GhdkURj.png) 43 | 3. Now click on the edit icon. ![Step 3 - Click on Edit](http://i.imgur.com/oEgWdc5.png) 44 | 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/). 45 | 5. Say why you're proposing the changes, and then click on "Propose file change". ![Step 5 - Propose Changes](http://i.imgur.com/nGtERxd.png) 46 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)!![Step 6 - Submit pull](http://i.imgur.com/0OW5V7a.png) 47 | 48 | ## Updating your Pull Request 49 | 50 | 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. 51 | 52 | [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. 53 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- 1 | message "Hi @#{github.pr_author} thank you for your submission at Awesome-Awesomeness. Be sure that you haven't got any errors below this. For any questions, ping @m1guelpf" 2 | #Check for changes to README.md 3 | has_readme_changes = git.modified_files.include?("README.md") 4 | can_merge = github.pr_json["mergeable"] 5 | warn("This PR cannot be merged yet.", sticky: false) unless can_merge 6 | # Ensure there is a summary for a pull request 7 | fail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5 8 | 9 | # Warn if PR guideline boxes are not checked. 10 | fail 'Please check PR guidelines and check the boxes.' if github.pr_body.include? '- [ ]' 11 | # Warn the user if pull request fields remain unchanged 12 | fail 'Please replace **[Insert URL to the list here.]** with the URL to the list.' if github.pr_body.include? '**[Insert URL to the list here.]**' 13 | fail 'Please replace **[Explain what this list is about and why it should be included here.]** with an explanation of why we should include this list.' if github.pr_body.include? '**[Explain what this list is about and why it should be included here.]**' 14 | # Warn if pull request is not updated 15 | fail 'Please update the Pull Request title to contain the script name' if github.pr_title.include? 'Update README.md' 16 | # Warn if there is [WIP] in the title 17 | warn "PR is classed as Work in Progress" if github.pr_title.include? "[WIP]" 18 | # Warn when there are merge commits in the diff 19 | fail 'Please rebase to get rid of the merge commits in this Pull Request' if git.commits.any? { |c| c.message =~ /^Merge branch 'master'/ } 20 | 21 | # Check links 22 | if has_readme_changes 23 | require 'json' 24 | results = File.read 'ab-results-temp.md-markdown-table.json' 25 | j = JSON.parse results 26 | if j['error']==true 27 | fail j['title'] 28 | markdown j['message'] 29 | end 30 | end 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Awesomeness 2 | 3 | A curated list of amazingly awesome awesomeness. 4 | - Programming Languages Package Manager 5 | - [Package-Manager](https://github.com/damon-kwok/awesome-package-manager) 6 | 7 | - Programming Languages 8 | - [Ada(Spark)](https://github.com/ohenley/awesome-ada) 9 | - [Ansible](https://github.com/jdauphant/awesome-ansible) 10 | - [AutoHotkey](https://github.com/ahkscript/awesome-AutoHotkey) 11 | - [AutoIt](https://github.com/J2TeaM/awesome-AutoIt) 12 | - [C](https://notabug.org/koz.ross/awesome-c) 13 | - [C/C++](https://github.com/fffaraz/awesome-cpp) 14 | - [CMake](https://github.com/onqtam/awesome-cmake) 15 | - Clojure 16 | - [by @mbuczko](https://github.com/mbuczko/awesome-clojure) 17 | - [by @razum2um](https://github.com/razum2um/awesome-clojure) 18 | - [ColdFusion](https://github.com/seancoyne/awesome-coldfusion) 19 | - Common Lisp 20 | - [Common Lisp Libraries](https://github.com/CodyReichert/awesome-cl) 21 | - [Learning Common Lisp](https://github.com/GustavBertram/awesome-common-lisp-learning-list) 22 | - [Coronavirus](https://github.com/soroushchehresa/awesome-coronavirus) 23 | - [Crystal](https://github.com/veelenga/awesome-crystal) 24 | - [D](https://github.com/zhaopuming/awesome-d) 25 | - [Delphi](https://github.com/Fr0sT-Brutal/awesome-delphi) 26 | - [Elixir](https://github.com/h4cc/awesome-elixir) 27 | - [Elm](https://github.com/isRuslan/awesome-elm) 28 | - Erlang 29 | - [by @0xAX](https://github.com/0xAX/erlang-bookmarks) 30 | - [by @drobakowski](https://github.com/drobakowski/awesome-erlang) 31 | - [by @unbalancedparentheses](https://github.com/unbalancedparentheses/spawnedshelter) 32 | - [F#](https://github.com/fsprojects/awesome-fsharp) 33 | - [Fortran](https://github.com/rabbiabram/awesome-fortran) 34 | - [Go](https://github.com/avelino/awesome-go) 35 | - [Go Patterns](https://github.com/tmrts/go-patterns) 36 | - [Groovy](https://github.com/kdabir/awesome-groovy) 37 | - [Haskell](https://github.com/krispo/awesome-haskell) 38 | - [Idris](https://github.com/joaomilho/awesome-idris) 39 | - [Java](https://github.com/akullpp/awesome-java) 40 | - [JavaScript](https://github.com/sorrycc/awesome-javascript) 41 | - [Angular 2](https://github.com/AngularClass/awesome-angular) 42 | - [Ember.js](https://github.com/nmec/awesome-ember) 43 | - [JavaScript Learning Resources](https://github.com/micromata/awesome-javascript-learning) 44 | - [Koa](https://github.com/ellerbrock/awesome-koa) 45 | - [Node.js](https://github.com/sindresorhus/awesome-nodejs) 46 | - [Cross-platform Node.js](https://github.com/bcoe/awesome-cross-platform-nodejs) 47 | - [Node ESM](https://github.com/talentlessguy/awesome-node-esm) 48 | - [React](https://github.com/enaqx/awesome-react) 49 | - [Svelte](https://github.com/flagello/awesome-sveltejs) 50 | - [VueJS](https://github.com/vuejs/awesome-vue) 51 | - [Julia](https://github.com/svaksha/Julia.jl) 52 | - [Kotlin](https://github.com/KotlinBy/awesome-kotlin) 53 | - [Kotlin/Native](https://github.com/bipinvaylu/awesome-kotlin-native) 54 | - Lua 55 | - [by @forhappy](https://github.com/forhappy/awesome-lua) 56 | - [by @lewisjellis](https://github.com/LewisJEllis/awesome-lua) 57 | - [MongoDB](https://github.com/ramnes/awesome-mongodb) 58 | - [MySQL](https://github.com/shlomi-noach/awesome-mysql) 59 | - .NET 60 | - [by @mehdihadeli](https://github.com/mehdihadeli/awesome-dotnet-core-education) 61 | - [by @quozd](https://github.com/quozd/awesome-dotnet) 62 | - [by @tallesl](https://github.com/tallesl/net-libraries-that-make-your-life-easier) 63 | - [by @thangchung](https://github.com/thangchung/awesome-dotnet-core) 64 | - [Nim](https://github.com/VPashkov/awesome-nim) 65 | - [OCaml](https://github.com/ocaml-community/awesome-ocaml) 66 | - [Perl](https://github.com/hachiojipm/awesome-perl) 67 | - [PHP](https://github.com/ziadoz/awesome-php) 68 | - [CakePHP](https://github.com/FriendsOfCake/awesome-cakephp) 69 | - [Postgres](https://github.com/dhamaniasad/awesome-postgres) 70 | - Python 71 | - [by @kirang89](https://github.com/kirang89/pycrumbs) 72 | - [by @svaksha](https://github.com/svaksha/pythonidae) 73 | - [by @trekhleb](https://github.com/trekhleb/learn-python) 74 | - [by @vinta](https://github.com/vinta/awesome-python) 75 | - [awesome-python-in-education](https://github.com/quobit/awesome-python-in-education) 76 | - [R](https://github.com/qinwf/awesome-R) 77 | - Ruby 78 | - [by @dreikanter](https://github.com/dreikanter/ruby-bookmarks) 79 | - [by @markets](https://github.com/markets/awesome-ruby) 80 | - [by @Sdogruyol](https://github.com/Sdogruyol/awesome-ruby) 81 | - [by @asyraffff](https://github.com/asyraffff/Open-Source-Ruby-and-Rails-Apps) 82 | - [Rust](https://github.com/rust-unofficial/awesome-rust) 83 | - [SAS](https://github.com/huyingjie/awesome-SAS) 84 | - [Scala](https://github.com/lauris/awesome-scala) 85 | - [Shell](https://github.com/alebcay/awesome-shell) 86 | - Swift 87 | - [by @matteocrippa](https://github.com/matteocrippa/awesome-swift) 88 | - [by @MaxChen](https://github.com/MaxChen/awesome-swift-and-tutorial-resources) 89 | - [by @Wolg](https://github.com/Wolg/awesome-swift) 90 | - [from ZEEF by @Edubits](https://swift.zeef.com/robin.eggenkamp) 91 | - TypeScript 92 | - [by @brookshi](https://github.com/brookshi/awesome-typescript-projects) 93 | - [by @dzharii](https://github.com/dzharii/awesome-typescript) 94 | - [by @ellerbrock](https://github.com/ellerbrock/awesome-typescript) 95 | - [V](https://github.com/vlang/awesome-v) 96 | 97 | - General 98 | - [.htaccess](https://github.com/phanan/htaccess) 99 | - Accessibility 100 | - [by @a11yproject](https://github.com/a11yproject/a11yproject.com) 101 | - [by @brunopulis](https://github.com/brunopulis/awesome-a11y) 102 | - [Agile](https://github.com/lorabv/awesome-agile) 103 | - [Algolia](https://github.com/algolia/awesome-algolia) 104 | - [Algorithms](https://github.com/tayllan/awesome-algorithms) 105 | - [Algorithms Visualisation](https://github.com/enjalot/algovis) 106 | - [Big O Notation](https://github.com/okulbilisim/awesome-big-o) 107 | - [Amazon Web Services](https://github.com/donnemartin/awesome-aws) 108 | - [Analytics](https://github.com/onurakpolat/awesome-analytics) 109 | - [Android](https://github.com/JStumpp/awesome-android) 110 | - [Android Apps](https://github.com/LinuxCafeFederation/awesome-android) 111 | - [Android Release Notes](https://github.com/pedronveloso/awesome-android-release-notes) 112 | - [Android Security](https://github.com/ashishb/android-security-awesome) 113 | - [Android UI](https://github.com/wasabeef/awesome-android-ui) 114 | - [ARM Exploitation](https://github.com/HenryHoggard/awesome-arm-exploitation) 115 | - [Software Architecture](https://github.com/simskij/awesome-software-architecture) 116 | - [Arduino](https://github.com/Lembed/Awesome-arduino) 117 | - [Artificial intelligence](https://github.com/owainlewis/awesome-artificial-intelligence) 118 | - API 119 | - [by @Kikobeats](https://github.com/Kikobeats/awesome-api) 120 | - [by @toddmotto](https://github.com/toddmotto/public-apis) 121 | - [Apple](https://github.com/joeljfischer/awesome-apple) 122 | - [OS X](https://github.com/iCHAIT/awesome-macOS) 123 | - [OS X and iOS Security](https://github.com/ashishb/osx-and-ios-security-awesome) 124 | - [Beacons](https://github.com/beaconinside/awesome-beacon) 125 | - Big data 126 | - [by @onurakpolat](https://github.com/onurakpolat/awesome-bigdata) 127 | - [by @zenkay](https://github.com/zenkay/bigdata-ecosystem) 128 | - [Hadoop](https://github.com/youngwookim/awesome-hadoop) 129 | - [Blazor](https://github.com/AdrienTorris/awesome-blazor) 130 | - Blockchain 131 | - [by @0xtokens](https://github.com/0xtokens/awesome-blockchain) 132 | - [by @imbaniac](https://github.com/imbaniac/awesome-blockchain) 133 | - [by @coderplex](https://github.com/coderplex/awesome-blockchain) 134 | - [by @hitripod](https://github.com/hitripod/awesome-blockchain) 135 | - [by @iNiKe](https://github.com/iNiKe/awesome-blockchain) 136 | - [by @igorbarinov](https://github.com/igorbarinov/awesome-blockchain) 137 | - [by @istinspring](https://github.com/istinspring/awesome-blockchain) 138 | - [by @openblockchains](https://github.com/openblockchains/awesome-blockchains) 139 | - [by @kennethreitz](https://github.com/kennethreitz/awesome-coins) 140 | - [awesome-token-sale](https://github.com/holographicio/awesome-token-sale) 141 | - Bitcoin 142 | - [by @btcbrdev](https://github.com/btcbrdev/awesome-btcdev) 143 | - [by @igorbarinov](https://github.com/igorbarinov/awesome-bitcoin) 144 | - [Bitcoin Payment Processors](https://github.com/alexk111/awesome-bitcoin-payment-processors) 145 | - Ethereum 146 | - [by @vinsgo](https://github.com/vinsgo/awesome-ethereum) 147 | - [awesome-ethereum-virtual-machine](https://github.com/pirapira/awesome-ethereum-virtual-machine) 148 | - [by @Tom2718](https://github.com/Tom2718/Awesome-Ethereum) 149 | - [Ripple](https://github.com/vhpoet/awesome-ripple) 150 | - [Boilerplates](https://github.com/melvin0008/awesome-projects-boilerplates) 151 | - Books 152 | - [Free Programming Books](https://github.com/EbookFoundation/free-programming-books) 153 | - [Free Software Testing Books](https://github.com/ligurio/free-software-testing-books) 154 | - [Mind Expanding Books](https://github.com/hackerkid/Mind-Expanding-Books) 155 | - [Bootstrap](https://github.com/therebelrobot/awesome-bootstrap) 156 | - [BSD Software](https://github.com/SaintFenix/Awesome-BSD-Ports-Programs-And-Projects) 157 | - [Building Blocks for Web Apps](https://github.com/componently-com/awesome-building-blocks-for-web-apps) 158 | - [Web Effect](https://github.com/lindelof/awesome-web-effect) 159 | - [Landing Page](https://github.com/nordicgiant2/awesome-landing-page) 160 | - [Capacitor](https://github.com/riderx/awesome-capacitor) 161 | - [Captcha](https://github.com/ZYSzys/awesome-captcha) 162 | - [Challenges](https://github.com/mauriciovieira/awesome-challenges) 163 | - [Code Formatters](https://github.com/rishirdua/awesome-code-formatters) 164 | - [Community Detection](https://github.com/benedekrozemberczki/awesome-community-detection) 165 | - [Competitive Programming](https://github.com/lnishan/awesome-competitive-programming) 166 | - [Computer Vision](https://github.com/jbhuang0604/awesome-computer-vision) 167 | - [Conferences](https://github.com/RichardLitt/awesome-conferences) 168 | - [Continuous Delivery](https://github.com/ciandcd/awesome-ciandcd) 169 | - [Conversational UI](https://github.com/mortenjust/awesome-conversational/) 170 | - [Cordova](https://github.com/busterc/awesome-cordova) 171 | - [Courses](https://github.com/prakhar1989/awesome-courses) 172 | - [Creative Commons Media](https://github.com/shime/creative-commons-media) 173 | - Cryptography 174 | - [by @MaciejCzyzewski](https://github.com/MaciejCzyzewski/retter) 175 | - [by @sobolevn](https://github.com/sobolevn/awesome-cryptography) 176 | - [by @coinpride](https://github.com/coinpride/CryptoList) 177 | - [Crypto Papers](https://github.com/pFarb/awesome-crypto-papers) 178 | - [CSS](https://github.com/sotayamashita/awesome-css) 179 | - [CSS Frameworks](https://github.com/troxler/awesome-css-frameworks) 180 | - [Data Science](https://github.com/bulutyazilim/awesome-datascience) 181 | - [Notebooks](https://github.com/jupyter-naas/awesome-notebooks) 182 | - Data Science with Python 183 | - [by @r0f1](https://github.com/r0f1/datascience) 184 | - [by @krzjoa](https://github.com/krzjoa/awesome-python-data-science) 185 | - [Data Visualization](https://github.com/fasouto/awesome-dataviz) 186 | - [Database](https://github.com/numetriclabz/awesome-db) 187 | - [SQLAlchemy](https://github.com/dahlia/awesome-sqlalchemy) 188 | - Datasets 189 | - [by @caesar0301](https://github.com/caesar0301/awesome-public-datasets) 190 | - [by @leomaurodesenv](https://github.com/leomaurodesenv/game-datasets) 191 | - Deep Learning 192 | - [by @ChristosChristofidis](https://github.com/ChristosChristofidis/awesome-deep-learning) 193 | - [by @guillaume-chevalier](https://github.com/guillaume-chevalier/awesome-deep-learning-resources) 194 | - [by @tigerneil](https://github.com/tigerneil/awesome-deep-rl) 195 | - [by @nerox8664](https://github.com/nerox8664/awesome-computer-vision-models) 196 | - [Decision Tree Papers](https://github.com/benedekrozemberczki/awesome-decision-tree-papers) 197 | - [Design Patterns](https://github.com/DovAmir/awesome-design-patterns) 198 | - [Design Tools](https://github.com/LisaDziuba/Awesome-Design-Tools) 199 | - [Design](https://github.com/gztchan/awesome-design) 200 | - [Dev Env](https://github.com/jondot/awesome-devenv) 201 | - [DevOps](https://github.com/joubertredrat/awesome-devops) 202 | - [DevSecOps](https://github.com/TaptuIT/awesome-devsecops) 203 | - [Django](https://github.com/wsvincent/awesome-django) 204 | - [Docker](https://github.com/veggiemonk/awesome-docker) 205 | - [Documentation](https://github.com/PharkMillups/beautiful-docs) 206 | - [Dotfiles](https://github.com/webpro/awesome-dotfiles) 207 | - [Electron](https://github.com/sindresorhus/awesome-electron) 208 | - [Emacs](https://github.com/emacs-tw/awesome-emacs) 209 | - [Embedded](https://github.com/nhivp/Awesome-Embedded) 210 | - [Ethics](https://github.com/HussainAther/awesome-ethics) 211 | - [Falsehood](https://github.com/kdeldycke/awesome-falsehood) 212 | - [FastAPI](https://github.com/mjhea0/awesome-fastapi) 213 | - [FIRST Robotics Competition](https://github.com/andrewda/awesome-frc) 214 | - [Flask](https://github.com/mjhea0/awesome-flask) 215 | - [FluidApp Resources](https://github.com/lborgav/awesome-fluidapp) 216 | - [Flutter](https://github.com/Solido/awesome-flutter) 217 | - [Fonts](https://github.com/brabadu/awesome-fonts) 218 | - [Free Open Source Software (FOSS)](https://github.com/ishanvyas22/awesome-open-source-systems) 219 | - [Fraud Detection Papers](https://github.com/benedekrozemberczki/awesome-fraud-detection-papers) 220 | - [Free Services](https://github.com/ripienaar/free-for-dev) 221 | - Frontend 222 | - [by @dypsilon](https://github.com/dypsilon/frontend-dev-bookmarks) 223 | - [by @moklick](https://github.com/moklick/frontend-stuff) 224 | - [Game Development](https://github.com/ellisonleao/magictools) 225 | - [Games](https://github.com/leereilly/games) 226 | - GIF 227 | - [by @Kikobeats](https://github.com/Kikobeats/awesome-gif) 228 | - [Gists](https://github.com/vsouza/awesome-gists) 229 | - [Git](https://github.com/dictcp/awesome-git) 230 | - [GitHub](https://github.com/Kikobeats/awesome-github) 231 | - [Browser extensions for GitHub](https://github.com/stefanbuck/awesome-browser-extensions-for-github) 232 | - [GitHub - Chinese](https://github.com/AntBranch/awesome-github) 233 | - [Gradient Boosting Papers](https://github.com/benedekrozemberczki/awesome-gradient-boosting-papers) 234 | - [Graph Classification](https://github.com/benedekrozemberczki/awesome-graph-classification) 235 | - [GraphQL](https://github.com/chentsulin/awesome-graphql) 236 | - [Growth Hacking](https://github.com/btomashvili/awesome-growth-hacking) 237 | - Guides 238 | - [by @narkoz](https://github.com/narkoz/guides) 239 | - [by @RichardLitt](https://github.com/RichardLitt/awesome-styleguides) 240 | - Hacking 241 | - [by @carpedm20](https://github.com/carpedm20/awesome-hacking) 242 | - [by @Hack-with-Github](https://github.com/Hack-with-Github/Awesome-Hacking) 243 | - [HTML5](https://github.com/diegocard/awesome-html5) 244 | - [Honeypots](https://github.com/paralax/awesome-honeypots) 245 | - [Hyper](https://github.com/bnb/awesome-hyper) 246 | - [Incident Response](https://github.com/meirwah/awesome-incident-response) 247 | - [Images](https://github.com/heyalexej/awesome-images) 248 | - [Image coloring](https://github.com/oskar-j/awesome-image-coloring) 249 | - [Internationalization](https://github.com/jpomykala/awesome-i18n) 250 | - [Internet of Things (IOT)](https://github.com/HQarroum/awesome-iot) 251 | - [iOS](https://github.com/vsouza/awesome-ios) 252 | - [Cocoa Controls](https://github.com/v-braun/awesome-cocoa) 253 | - [Open Source Apps](https://github.com/dkhamsing/open-source-ios-apps) 254 | - [UI](https://github.com/cjwirth/awesome-ios-ui) 255 | - [JSON](https://github.com/burningtree/awesome-json) 256 | - [Jupyter](https://github.com/markusschanta/awesome-jupyter) 257 | - [JVM](https://github.com/deephacks/awesome-jvm) 258 | - [Kafka](https://github.com/monksy/awesome-kafka) 259 | - [Koans](https://github.com/ahmdrefat/awesome-koans) 260 | - [Laravel](https://github.com/chiraggude/awesome-laravel) 261 | - [Leadership and Management](https://github.com/LappleApple/awesome-leading-and-managing) 262 | - [Lego](https://github.com/adius/awesome-lego) 263 | - [Linux Containers](https://github.com/Friz-zy/awesome-linux-containers) 264 | - [Linux resources](https://github.com/itech001/awesome-linux-resources) 265 | - Lists 266 | - [by @bayandin](https://github.com/bayandin/awesome-awesomeness) 267 | - [by @jnv](https://github.com/jnv/lists) 268 | - [by @sindresorhus](https://github.com/sindresorhus/awesome) 269 | - [Mac] 270 | - [by @xyNNN](https://github.com/xyNNN/awesome-mac) 271 | - [by @justin-j](https://github.com/justin-j/awesome-mac-apps) 272 | - [Machine Learning](https://github.com/josephmisiti/awesome-machine-learning) 273 | - [Malware Analysis](https://github.com/rshipp/awesome-malware-analysis) 274 | - [Material Design](https://github.com/sachin1092/awesome-material) 275 | - [Math](https://github.com/rossant/awesome-math) 276 | - [Matlab](https://github.com/mikecroucher/awesome-MATLAB) 277 | - [Mental Health](https://github.com/dreamingechoes/awesome-mental-health) 278 | - [micro:bit](https://github.com/carlosperate/awesome-microbit) 279 | - [MLOps](https://github.com/kelvins/awesome-mlops) 280 | - [Mobile marketing and development](https://github.com/alec-c4/awesome-mobile) 281 | - [Mobile Web Development](https://github.com/myshov/awesome-mobile-web-development) 282 | - [Monitoring](https://github.com/crazy-canux/awesome-monitoring) 283 | - [Prometheus](https://github.com/roaldnefs/awesome-prometheus) 284 | - [Prometheus alerting rules](https://github.com/samber/awesome-prometheus-alerts) 285 | - [Monte Carlo Tree Search Papers](https://github.com/benedekrozemberczki/awesome-monte-carlo-tree-search-papers) 286 | - [Motion Design for Web](https://github.com/lucasmaiaesilva/awesome-motion-design-web) 287 | - [Nginx](https://github.com/fcambus/nginx-resources) 288 | - Newsletters 289 | - [by @vredniy](https://github.com/vredniy/awesome-newsletters) 290 | - [by @webpro](https://github.com/webpro/awesome-newsletters) 291 | - [by @mpron](https://github.com/mpron/awesome-newsletters) 292 | - [No Login Web Apps](https://github.com/aviaryan/awesome-no-login-web-apps) 293 | - [Open Science](https://github.com/silky/awesome-open-science) 294 | - [Open Source Photography](https://github.com/ibaaj/awesome-OpenSourcePhotography) 295 | - [Papers](https://github.com/papers-we-love/papers-we-love) 296 | - [Podcasts](https://github.com/Ghosh/awesome-podcasts) 297 | - [Philosophy](https://github.com/HussainAther/awesome-philosophy) 298 | - [Pipelines](https://github.com/pditommaso/awesome-pipeline) 299 | - [Product Manager](https://github.com/hugo53/awesome-ProductManager) 300 | - Protocols 301 | - [OSC](https://github.com/amir-arad/awesome-osc) (open sound control) 302 | - [Pentest Cheat Sheets](https://github.com/coreb1t/awesome-pentest-cheat-sheets) 303 | - [Quick Look Plugins](https://github.com/sindresorhus/quick-look-plugins) 304 | - [Random-Forest](https://github.com/kjw0612/awesome-random-forest) 305 | - Raspberry Pi 306 | - [by @blackout314](https://github.com/blackout314/awesome-raspberry-pi) 307 | - [by @thibmaek](https://github.com/thibmaek/awesome-raspberry-pi) 308 | - [React Native](https://github.com/jondot/awesome-react-native) 309 | - [README](https://github.com/matiassingers/awesome-readme) 310 | - [Regex](https://github.com/aloisdg/awesome-regex) 311 | - [Remote Job](https://github.com/lukasz-madon/awesome-remote-job) 312 | - [Remote Work](https://github.com/hugo53/awesome-RemoteWork) 313 | - [REST](https://github.com/marmelab/awesome-rest) 314 | - [Robotics](https://github.com/Kiloreux/awesome-robotics) 315 | - [Robotic Tooling](https://github.com/protontypes/awesome-robotic-tooling) 316 | - [RNN](https://github.com/kjw0612/awesome-rnn) 317 | - [Scalability](https://github.com/binhnguyennus/awesome-scalability) 318 | - [Science Fiction](https://github.com/sindresorhus/awesome-scifi) 319 | - Search Engine Optimization (SEO) 320 | - [by @marcobiedermann](https://github.com/marcobiedermann/search-engine-optimization) 321 | - [by @sneg55](https://github.com/sneg55/curatedseotools) 322 | - [by @teles](https://github.com/teles/awesome-seo) 323 | - [Security](https://github.com/sbilly/awesome-security) 324 | - [Selfhosted](https://github.com/Kickball/awesome-selfhosted) 325 | - [Serverless](https://github.com/anaibol/awesome-serverless) 326 | - [Serverless Security](https://github.com/puresec/awesome-serverless-security/) 327 | - [Service Fabric](https://github.com/lawrencegripper/awesome-servicefabric) 328 | - [Services Engineering](https://github.com/mmcgrana/services-engineering) 329 | - [Sheet Music](https://github.com/adius/awesome-sheet-music) 330 | - [Slack](https://github.com/matiassingers/awesome-slack) 331 | - [Sound](https://github.com/hwclass/awesome-sound) 332 | - [Space](https://github.com/elburz/awesome-space) 333 | - [Books and manuals](https://github.com/Hunter-Github/awesome-space-books) 334 | - [Speech and Natural Language Processing](https://github.com/edobashira/speech-language-processing) 335 | - [NLP with Ruby](https://github.com/arbox/nlp-with-ruby) 336 | - [Sphinx Documentation](https://github.com/yoloseem/awesome-sphinxdoc) 337 | - [Startup](https://github.com/KrishMunot/awesome-startup) 338 | - [Static Analysis](https://github.com/mre/awesome-static-analysis/) 339 | - [Styleguides](https://github.com/RichardLitt/awesome-styleguides) 340 | - [Sublime Text](https://github.com/dreikanter/sublime-bookmarks) 341 | - [Sustainable Technology](https://github.com/protontypes/awesome-sustainable-technology) 342 | - [SVG](https://github.com/willianjusten/awesome-svg) 343 | - [Swedish](https://github.com/gurre/awesome-swedish-opensource) 344 | - [Sysadmin](https://github.com/kahun/awesome-sysadmin) 345 | - [Taglines](https://github.com/miketheman/awesome-taglines) 346 | - [Tailwind CSS](https://github.com/aniftyco/awesome-tailwindcss) 347 | - [Talks](https://github.com/JanVanRyswyck/awesome-talks) 348 | - [Gaming](https://github.com/hzoo/awesome-gametalks) 349 | - [Telegram](https://github.com/ebertti/awesome-telegram) 350 | - [Terminals Are Sexy](https://github.com/k4m4/terminals-are-sexy) 351 | - [Test Automation](https://github.com/atinfo/awesome-test-automation) 352 | - [Testing](https://github.com/TheJambo/awesome-testing) 353 | - [JMeter](https://github.com/aliesbelik/awesome-jmeter) 354 | - [Threat Intelligence](https://github.com/hslatman/awesome-threat-intelligence) 355 | - [Tools](https://github.com/cjbarber/ToolsOfTheTrade) 356 | - [Twilio](https://github.com/Twilio-org/awesome-twilio) 357 | - [Unity](https://github.com/RyanNielson/awesome-unity) 358 | - [UI Styleguide](https://github.com/kevinwuhoo/ui-styleguides) 359 | - [UI Components for Styleguide](https://github.com/anubhavsrivastava/awesome-ui-component-library) 360 | - [UNIX](https://github.com/sirredbeard/Awesome-UNIX) 361 | - [Vagrant](https://github.com/iJackUA/awesome-vagrant) 362 | - [Vehicle Security](https://github.com/jaredthecoder/awesome-vehicle-security) 363 | - Vim 364 | - [by @akrawchyk](https://github.com/akrawchyk/awesome-vim) 365 | - [by @matteocrippa](https://github.com/matteocrippa/awesome-vim) 366 | - [Vulkan](https://github.com/vinjn/awesome-vulkan) 367 | - [Web Performance Optimization](https://github.com/davidsonfellipe/awesome-wpo) 368 | - [WebComponents](https://github.com/mateusortiz/webcomponents-the-right-way) 369 | - [Wordpress](https://github.com/miziomon/awesome-wordpress) 370 | - [Workshops](https://github.com/therebelrobot/awesome-workshopper) 371 | - [Xamarin](https://github.com/benoitjadinon/awesome-xamarin) 372 | - XMPP 373 | - [Ejabberd](https://github.com/shantanu-deshmukh/awesome-ejabberd) 374 | - [Typography](https://github.com/Jolg42/awesome-typography) 375 | 376 | ## License 377 | 378 | [![Creative Commons License](http://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) 379 | 380 | This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). 381 | -------------------------------------------------------------------------------- /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 a.bayandin@gmail.com or soy@miguelpiedrafita.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 | --------------------------------------------------------------------------------