├── requirements.txt ├── Makefile ├── .travis.yml ├── CONTRIBUTING.md ├── .github └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── .editorconfig ├── awesome.svg ├── tests └── url_validate.py ├── CODE_OF_CONDUCT.md └── README.md /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.8.1 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | python tests/url_validate.py 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - "2.7" 4 | 5 | install: "pip install -r requirements.txt" 6 | script: 7 | - make test -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | 1. Fork the repository. 4 | 2. Add your cheat sheet 5 | 3. Commit changes. 6 | 4. Push your commit. 7 | 5. Create a Pull Request. 8 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | Hello! Before sending a PR please note the following: 3 | 4 | - make sure the adding cheat-sheet is not in README.md :rocket: 5 | 6 | Thanks! 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal (CC0 1.0) 2 | Public Domain Dedication 3 | 4 | [CC0](https://creativecommons.org/publicdomain/zero/1.0/) 5 | 6 | [Full text](https://creativecommons.org/publicdomain/zero/1.0/legalcode) 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | 10 | # Change these settings to your own preference 11 | indent_style = space 12 | indent_size = 2 13 | 14 | # We recommend you to keep these unchanged 15 | end_of_line = lf 16 | charset = utf-8 17 | trim_trailing_whitespace = true 18 | insert_final_newline = true 19 | 20 | [*.md] 21 | trim_trailing_whitespace = false 22 | -------------------------------------------------------------------------------- /awesome.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/url_validate.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # @Author: detailyang 4 | # @Date: 2016-02-25 11:23:59 5 | # @Last Modified by: detailyang 6 | # @Last Modified time: 2016-06-05 22:26:44 7 | 8 | import re 9 | import sys 10 | import os 11 | 12 | from requests import get 13 | from requests.exceptions import ConnectionError, MissingSchema 14 | 15 | url_re = re.compile('.*\[.*\]\((.*)\)') 16 | current_dir = os.path.dirname(os.path.realpath(__file__)) 17 | headers = {'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'} 18 | 19 | file = '{current_dir}/../README.md'.format(current_dir=current_dir) 20 | with open(file) as f: 21 | for line, content in enumerate(f): 22 | m = re.match(url_re, content) 23 | if m is None: 24 | continue 25 | try: 26 | result = get(m.group(1), headers=headers) 27 | if result.status_code >= 400: 28 | print('{file} line #{line} {url} return {code}'.format(file=file, line=line, 29 | url=m.group(1), code=result.status_code)) 30 | sys.exit(1) 31 | print('{file} line #{line} {url} pass'.format(file=file, line=line, url=m.group(1))) 32 | except ConnectionError: 33 | print('{file} line #{line} {url} cannot connect'.format(file=file, line=line, 34 | url=m.group(1))) 35 | except MissingSchema: 36 | print('{file} line #{line} {url} missing schema'.format(file=file, line=line, 37 | url=m.group(1))) 38 | 39 | 40 | -------------------------------------------------------------------------------- /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 detailyang@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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | awesome 2 | 3 | # Awesome Cheatsheet 4 | 5 | [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) ![Branch master](https://img.shields.io/badge/branch-master-brightgreen.svg?style=flat-square) [![Build Status](https://api.travis-ci.org/detailyang/awesome-cheatsheet.svg)](https://travis-ci.org/detailyang/awesome-cheatsheet) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/detailyang/awesome-cheatsheet/master/LICENSE) 6 | > List of useful cheatsheets 7 | 8 | Inspired by [@sindresorhus](https://github.com/sindresorhus) [awesome](https://github.com/sindresorhus/awesome) and improved by these **[amazing contributors](https://github.com/detailyang/awesome-cheatsheet/graphs/contributors)**. 9 | 10 | #### *If you see a link here is not fit, you can fix it or provide a better link by submitting a [PR](https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fdetailyang%2Fawesome-cheatsheet%2Fedit%2Fmaster%2FREADME.md) to improve this file. Thank you!* 11 | 12 | 13 | ## Table of Contents 14 | 15 | - [Platforms](#platforms) 16 | - [Programming Languages](#programming-languages) 17 | - [Front-End Development](#front-end-development) 18 | - [Back-End Development](#back-end-development) 19 | - [Computer Science](#computer-science) 20 | - [Big Data](#big-data) 21 | - [Theory](#theory) 22 | - [Books](#books) 23 | - [Editors](#editors) 24 | - [Tools](#tools) 25 | - [Development Environment](#development-environment) 26 | - [Entertainment](#entertainment) 27 | - [Databases](#databases) 28 | - [Media](#media) 29 | - [Security](#security) 30 | - [Content Management System](#content-management-system) 31 | - [Project Management](#project-management) 32 | - [Miscellaneous](#miscellaneous) 33 | 34 | ## Platforms 35 | 36 | - [Android-Cheatsheet-For-Graphic-Designers](http://petrnohejl.github.io/Android-Cheatsheet-For-Graphic-Designers/) 37 | - [Arduino_Cheat_Sheet.pdf](https://static.sparkfun.com/learn/materials/8/Arduino_Cheat_Sheet.pdf) 38 | - [docker](https://github.com/wsargent/docker-cheat-sheet) 39 | - [dockerfiles](https://github.com/jessfraz/dockerfiles) 40 | - [ios-cheat-sheet](https://github.com/Avocarrot/ios-cheatsheet) 41 | - [iOS-App-Performance-Cheatsheet](https://github.com/danielamitay/iOS-App-Performance-Cheatsheet) 42 | - [UI-Testing-Cheat-Sheet](https://github.com/joemasilotti/UI-Testing-Cheat-Sheet) 43 | - [saltstack](https://github.com/saltstack/salt/wiki/Cheat-Sheet) 44 | - [nginx-cheatsheet](https://github.com/SimulatedGREG/nginx-cheatsheet) 45 | 46 | 47 | ## Programming Languages 48 | 49 | - [Ada-cheat-sheet](https://web.archive.org/web/20110706133825/http://www.digilife.be/quickreferences/QRC/Ada%20Syntax%20Card.pdf) 50 | - [assembly-cheat-sheet](http://www.jegerlehner.ch/intel/) 51 | - [coffeescript_cheatsheet](https://github.com/icebob/coffeescript_cheatsheet/) 52 | - [c-ansi-cheat-sheet](https://web.archive.org/web/20110706133825/http://www.digilife.be/quickreferences/qrc/c%20reference%20card%20(ansi)%202.2.pdf) 53 | - [c#-cheat-sheet ](https://www.slideshare.net/ileshR/core-c-sharpandnetquickreference) 54 | - [cpp-cheat-sheet](https://isocpp.org/blog/2012/12/c11-a-cheat-sheet-alex-sinyakov) 55 | - [clojure-cheat-sheet](https://clojure.org/cheatsheet) 56 | - [clojurescript-cheat-sheet](http://cljs.info/cheatsheet/) 57 | - [dart-cheat-sheet](http://dartlangfr.net/dart-cheat-sheet/) 58 | - [delphi-cheat-sheet](http://www.cheat-sheets.org/saved-copy/dquick.pdf) 59 | - [dotnet-cheat-sheet](https://dzone.com/refcardz/coredotnet) 60 | - [elixir-cheat-sheet](https://media.pragprog.com/titles/elixir/ElixirCheat.pdf) 61 | - [elm-cheat-sheet](https://github.com/izdi/elm-cheat-sheet) 62 | - [erlang-cheat-sheet](http://www.cheat-sheets.org/saved-copy/Erlang.CheatSheet(1.0).pdf) 63 | - [emoji-cheat-sheet](https://github.com/WebpageFX/emoji-cheat-sheet.com) 64 | - [f#-cheat-sheet](http://dungpa.github.io/fsharp-cheatsheet) 65 | - [golang-cheat-sheet](https://github.com/a8m/go-lang-cheat-sheet) 66 | - [Cheat sheet for some of the common concurrent flows in Go](https://github.com/rakyll/coop) 67 | - [java-cheat-sheet](http://introcs.cs.princeton.edu/java/11cheatsheet/) 68 | - [java8-cheat-sheet](https://github.com/BafS/Java8-CheatSheet) 69 | - [javascript-cheat-sheet](http://www.cheatography.com/davechild/cheat-sheets/javascript/) 70 | - [es6-cheatsheet](https://github.com/DrkSephy/es6-cheatsheet) 71 | - [javascript-design-pattern](https://github.com/nnupoor/js_designpatterns) 72 | - [npm-vs-yarn-cheat-sheet](https://shift.infinite.red/npm-vs-yarn-cheat-sheet-8755b092e5cc#.91l58dovs) 73 | - [npm-vs-yarn-cheat-sheet](https://github.com/areai51/yarn-cheatsheet) 74 | - [lisp-cheat-sheet](http://faculty.smcm.edu/acjamieson/s13/LispCheatSheet.pdf) 75 | - [lua-cheat-sheet](http://lua-users.org/files/wiki_insecure/users/thomasl/luarefv51single.pdf) 76 | - [objective-c-cheat-sheet](https://github.com/iwasrobbed/Objective-C-CheatSheet) 77 | - [ocaml-cheat-sheet](http://ocaml.org/docs/cheat_sheets.html) 78 | - [python-cheat-sheet](http://www.cheatography.com/davechild/cheat-sheets/python/) 79 | - [Python Cheat Sheet](https://perso.limsi.fr/pointal/_media/python:cours:mementopython3-english.pdf) 80 | - [Python Cheat Sheet](https://docs.google.com/file/d/0B9VT_L2CDnKvODYyNTc5NjktYmMyOC00NDFkLTliNTctMzQzMTAzYjUyYmYy/view?pli=1) 81 | - [Python Crash Course - Cheat Sheets](http://ehmatthes.github.io/pcc/cheatsheets/README.html) 82 | - [python feature](https://github.com/PythonCharmers/python-future) 83 | - [Python Basics For Data Science Cheat Sheet](https://www.datacamp.com/community/tutorials/python-data-science-cheat-sheet-basics) 84 | - [php-cheat-sheet](http://www.cheatography.com/davechild/cheat-sheets/php/) 85 | - [PHP7-Reference](https://github.com/tpunt/PHP7-Reference) 86 | - [perlcheat](http://perldoc.perl.org/perlcheat.html) 87 | - [r-cheat-sheet](http://cran.r-project.org/doc/contrib/Baggott-refcard-v2.pdf) 88 | - [R Cheat Sheets](https://www.rstudio.com/resources/cheatsheets/) 89 | - [racket-cheat-sheet](http://docs.racket-lang.org/guide/) 90 | - [ragel-cheat-sheet](https://github.com/calio/ragel-cheat-sheet) 91 | - [rebol-cheat-sheet](http://rebol.desajn.net/cheatsheet.html) 92 | - [ruby-cheat-sheet](https://github.com/brennovich/cheat-ruby-sheets) 93 | - [A collection of Ruby Net::HTTP examples](https://github.com/augustl/net-http-cheat-sheet) 94 | - [rust-cheat-sheet](https://static.rust-lang.org/doc/0.9/complement-cheatsheet.html) 95 | - [scala-cheat-sheet](http://docs.scala-lang.org/cheatsheets/) 96 | - [scheme-cheat-sheet](http://courses.cs.washington.edu/courses/cse341/02wi/scheme/cheat-sheet.html) 97 | - [shell-cheat-sheet](https://github.com/NisreenFarhoud/Bash-Cheatsheet) 98 | - [bash cheat sheet](https://learncodethehardway.org/unix/) 99 | - [awesome-bash](https://github.com/awesome-lists/awesome-bash) 100 | - [bash redirections](https://github.com/pkrumins/bash-redirections-cheat-sheet) 101 | - [fish](https://fishshell.com/docs/current/commands.html) 102 | - [awesome-shell](https://github.com/alebcay/awesome-shell) 103 | - [oh-my-zsh cheatsheet](https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet) 104 | - [solidity](https://s3-eu-west-1.amazonaws.com/b9-academy-assets/public/solidity-cheatsheet.pdf) 105 | - [smalltalk-cheat-sheet](http://stephane.ducasse.free.fr/Teaching/0809Turino/st-cheatsheet.pdf) 106 | - [swift cheatsheet](https://github.com/iwasrobbed/Swift-CheatSheet) 107 | - [Playgrounds](https://github.com/uraimo/Awesome-Swift-Playgrounds) 108 | - [swift design patterns](https://github.com/ochococo/Design-Patterns-In-Swift) 109 | - [tcl-cheat-sheet](http://wiki.tcl.tk/10710) 110 | - [typescript-cheat-sheet](http://www.typescriptlang.org/Handbook/) 111 | 112 | ## Front-End Development 113 | 114 | - [angular2](https://angular.io/cheatsheet) 115 | - [angularjs](http://www.cheatography.com/proloser/cheat-sheets/angularjs/) 116 | - [SCSS cheatsheet](https://sass-cheatsheet.brunoscopelliti.com) 117 | - [CSS Flex Box](https://d13yacurqjgara.cloudfront.net/users/248947/screenshots/1742074/attachments/282954/flexboxsheet.pdf) 118 | - [sass/SCSS functions cheatsheet](https://gist.github.com/AllThingsSmitty/3bcc79da563df756be46) 119 | - [ember-js](http://www.cheatography.com/mwore/cheat-sheets/ember-js/) 120 | - [es6-cheatsheet](https://github.com/DrkSephy/es6-cheatsheet) 121 | - [font-awesome](http://fontawesome.io/cheatsheet/) 122 | - [jquery](https://oscarotero.com/jquery/) 123 | - [jquery-cheatsheet](http://lab.abhinayrathore.com/jquery-cheatsheet/) 124 | - [react-cheatsheet](https://reactcheatsheet.com/) 125 | - [react-native-cheat-sheet](https://github.com/refinery29/react-native-cheat-sheet) 126 | - [react-native-styling-cheat-sheet](https://github.com/vhpoet/react-native-styling-cheat-sheet) 127 | - [redux](http://ricostacruz.com/cheatsheets/redux.html) 128 | - [underscore-cheat-sheet](http://f.cl.ly/items/093o0l2Y3u130y0W0c0x/underscore-cheat-sheet.pdf) 129 | - [webpack](https://github.com/petehunt/webpack-howto) 130 | - [\ Cheat Sheet](http://gethead.info/) 131 | - [page-load Cheat Sheet](https://developers.google.com/speed/docs/insights/about) 132 | - [Bootstrap 4](https://hackerthemes.com/bootstrap-cheatsheet/) 133 | - [jest-cheat-sheet](https://github.com/sapegin/jest-cheat-sheet) 134 | - [flexbox-cheatsheet](http://vudav.github.io/flexbox-cheatsheet/) 135 | 136 | ## Back-End Development 137 | 138 | - [flask](https://docs.google.com/file/d/1pnwfq8v5Ph4Xn8ttv9P_TLnrRbT9-S_v-KdZiEcx64vlGYkC0SoMfZOs0NYN/edit?usp=drive_web) 139 | - [laravel-cheatsheet](https://github.com/jesseobrien/laravel-cheatsheet) 140 | - [ror](http://www.cheatography.com/davechild/cheat-sheets/ruby-on-rails/) 141 | - [web2py](http://web2py.com/examples/static/web2py_cheatsheet.pdf) 142 | - [nodejs](https://gist.github.com/LeCoupa/985b82968d8285987dc3) 143 | - [django](http://awesome-django.com) 144 | - [django-cheatsheet](https://www.mercurytide.co.uk/media/resources/django-cheat-sheet.pdf) 145 | - [syscall-cheatsheet](http://syscalls.kernelgrok.com/) 146 | 147 | ## Big Data 148 | - [machine-learning-cheat-sheet](https://github.com/soulmachine/machine-learning-cheat-sheet) 149 | 150 | ## Databases 151 | 152 | - [CouchDB Cheatsheet](https://wiki.apache.org/couchdb/API_Cheatsheet) 153 | - [MongoDb-cheat-sheet](https://github.com/leojavier/MongoDb-cheat-sheet) 154 | - [mysql-cheat-sheet](http://www.cheatography.com/davechild/cheat-sheets/mysql/) 155 | - [Oracle_Programming](https://en.wikibooks.org/wiki/Oracle_Programming/SQL_Cheatsheet) 156 | - [postgresql](https://dzone.com/refcardz/essential-postgresql) 157 | - [sql-join-cheat-sheet](http://coolshell.cn/articles/3463.html) 158 | - [SQL](http://www.sql-tutorial.net/sql-cheat-sheet.pdf) 159 | 160 | ## Theory 161 | 162 | - [acm-cheat-sheet](https://github.com/soulmachine/acm-cheat-sheet) 163 | - [bigo](http://bigocheatsheet.com/) 164 | - [Theoretical Computer Science Cheat Sheet](http://www.tug.org/texshowcase/cheat.pdf) 165 | - [regular-expression-cheat-sheet](https://github.com/niklongstone/regular-expression-cheat-sheet) 166 | - [rest-foundations-restful](https://dzone.com/refcardz/rest-foundations-restful) 167 | 168 | ## Editors 169 | 170 | - [a_vi_vim_graphical_cheat_sheet_tutorial](http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html) 171 | - [Vim Quick Reference Card](https://michaelgoerz.net/refcards/vimqrc.pdf) 172 | - [A really easy to read and comprehensive guide on vim.](https://vim.rtorr.com/) 173 | - [GNU Emacs](https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf) 174 | - [Paredit Cheatsheet](https://www.emacswiki.org/emacs/PareditCheatsheet) 175 | - IntellJ IDEA 176 | - [Windows/Linux](https://resources.jetbrains.com/storage/products/intellij-idea/docs/IntelliJIDEA_ReferenceCard.pdf) 177 | - [Mac OS X](https://resources.jetbrains.com/storage/products/intellij-idea/docs/IntelliJIDEA_ReferenceCard.pdf) 178 | - [MarkDown Cheat Sheet](https://guides.github.com/pdfs/markdown-cheatsheet-online.pdf) 179 | - [Eclipse](https://github.com/pellaton/eclipse-cheatsheet) 180 | - [Atom](https://github.com/nwinkler/atom-keyboard-shortcuts) 181 | - [NetBeans](https://netbeans.org/project_downloads/usersguide/shortcuts-80.pdf) 182 | - [Sublime Text 3](https://www.shortcutfoo.com/app/dojos/sublime-text-3-win/cheatsheet) 183 | - [PHPStorm - Mac/Win](https://resources.jetbrains.com/storage/products/phpstorm/docs/PhpStorm_ReferenceCard.pdf) 184 | 185 | ## Tools 186 | 187 | - [awk-nawk-and-gawk-cheat-sheet](http://www.catonmat.net/blog/awk-nawk-and-gawk-cheat-sheet/) 188 | - [curl](https://github.com/bagder/curl-cheat-sheet) 189 | - [dtrace and stap](http://myaut.github.io/dtrace-stap-book/dtrace-stap-cheatsheet.pdf) 190 | - [GDAL/OGR command-line tools](https://github.com/dwtkns/gdal-cheat-sheet) 191 | - [Git Cheat Sheet and Git Flow](https://github.com/arslanbilal/git-cheat-sheet) 192 | - [git_cheat_sheet](http://rogerdudler.github.io/git-guide/files/git_cheat_sheet.pdf) 193 | - [git-cheat-sheet](https://github.com/arslanbilal/git-cheat-sheet) 194 | - [github-cheat-sheet](https://github.com/tiimgreen/github-cheat-sheet) 195 | - [git-style-guide](https://github.com/agis/git-style-guide) 196 | - [git-flow-cheatsheet](https://github.com/danielkummer/git-flow-cheatsheet) 197 | - [latexsheet](http://wch.github.io/latexsheet/) 198 | - [mac-command-line-cheatsheet](https://github.com/herrbischoff/awesome-osx-command-line) 199 | - [matlab-cheatsheet](http://web.mit.edu/18.06/www/Spring09/matlab-cheatsheet.pdf) 200 | - [Octave-cheatsheet](http://ais.informatik.uni-freiburg.de/teaching/ss14/robotics/etc/cheatsheet.pdf) 201 | - [rspec](https://gist.github.com/dnagir/663876) 202 | - [RSpec cheatsheet](https://github.com/eliotsykes/rspec-rails-examples) 203 | - [svn](http://www.abbeyworkshop.com/howto/misc/svn01/) 204 | - [sed-stream-editor-cheat-sheet](http://www.catonmat.net/blog/sed-stream-editor-cheat-sheet/) 205 | - [terminal-mac-cheatsheet](https://github.com/0nn0/terminal-mac-cheatsheet) 206 | - [tmux](https://gist.github.com/andreyvit/2921703) 207 | - [Unix Toolbox](http://cb.vu/unixtoolbox.xhtml) 208 | - [sysadmin](https://github.com/kahun/awesome-sysadmin) 209 | - [systemtap-cheat-sheet](https://github.com/calio/systemtap-cheat-sheet) 210 | 211 | ## Media 212 | 213 | - [favicon-cheat-sheet](https://github.com/audreyr/favicon-cheat-sheet) 214 | 215 | ## Security 216 | 217 | - [HTML5 Security Cheatsheet](https://github.com/cure53/H5SC) 218 | - [Penetration Testing Cheatsheets](https://github.com/jshaw87/Cheatsheets) 219 | - [Security Tools Cheatsheets](https://github.com/andrewjkerr/security-cheatsheets) 220 | - [oauthsecurity](https://sakurity.com/oauth) 221 | - [OWASP Cheat Sheets](https://www.owasp.org/images/9/9a/OWASP_Cheatsheets_Book.pdf) 222 | 223 | ## Project Management 224 | 225 | - [Agile Cheatsheet](http://cheatsheetworld.com/programming/agile-development-cheat-sheet/) 226 | - [Scrum Cheatsheet](https://www.axosoft.com/Downloads/Scrum_Diagram.pdf) 227 | - [Lean Cheatsheet](https://www.cheatography.com/davidpol/cheat-sheets/lean-methodology/pdf_bw/) 228 | - [A set of metodologies in one Cheatsheet (waterfall, agile, lean, xp, etc)](https://www.cheatography.com/nataliemoore/cheat-sheets/system-development-methodologies/pdf_bw/) 229 | 230 | ## Miscellaneous 231 | 232 | - [easings.net](https://github.com/ai/easings.net) 233 | - [math-as-code](https://github.com/Jam3/math-as-code) 234 | - [MobileApp-Pentest-Cheatsheet](https://github.com/tanprathan/MobileApp-Pentest-Cheatsheet) 235 | - [Network-related cheatsheets](http://packetlife.net/library/cheat-sheets/) 236 | - [api-cheat-sheet](https://github.com/RestCheatSheet/api-cheat-sheet) 237 | - [cheatsheets-ai](https://github.com/kailashahirwar/cheatsheets-ai) 238 | --------------------------------------------------------------------------------