| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global color.ui true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # do not allow .git version control files to be issued | |
| <Directorymatch "^/.*/\.git+/"> | |
| Order deny,allow | |
| Deny from all | |
| </Directorymatch> | |
| <Files ~ "^\.git"> | |
| Order allow,deny | |
| Deny from all | |
| </Files> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>Swap OPTION_L and COMMAND_L</name> | |
| <identifier>private.swap_OPTION_L_and_COMMAND_L</identifier> | |
| <autogen>--KeyToKey-- KeyCode::OPTION_L, KeyCode::COMMAND_L</autogen> | |
| <autogen>--KeyToKey-- KeyCode::COMMAND_L, KeyCode::OPTION_L</autogen> | |
| </item> | |
| <item> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*style several classes by prefix*/ | |
| [class*='col-'] { | |
| float: left; | |
| padding-right: $pad; | |
| .grid &:last-of-type { | |
| padding-right: 0; | |
| } | |
| } | |
| .col-2-3 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "auto_complete": true, | |
| "auto_indent": true, | |
| "auto_match_enabled": true, | |
| "bold_folder_labels": true, | |
| "caret_style": "smooth", | |
| "color_scheme": "Packages/User/Made of Code.tmTheme", | |
| "default_encoding": "UTF-8", | |
| "default_line_ending": "unix", | |
| "detect_indentation": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Newbie programmer | |
| def factorial(x): | |
| if x == 0: | |
| return 1 | |
| else: | |
| return x * factorial(x - 1) | |
| print factorial(6) | |
| #First year programmer, studied Pascal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "rulers": | |
| [ | |
| 72, | |
| 79 | |
| ], | |
| "tab_size": 4, | |
| "translate_tabs_to_spaces": true, | |
| "wrap_width": 79, | |
| "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night-Eighties.tmTheme" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "files": | |
| { | |
| "jquery": "http://code.jquery.com/jquery.min.js", | |
| "normalize": "https://raw.github.com/necolas/normalize.css/master/normalize.css", | |
| "reset": "http://meyerweb.com/eric/tools/css/reset/reset.css", | |
| "sass-css3-mixins": "https://raw.github.com/matthieua/Sass-Css3-Mixins/master/css3-mixins.scss" | |
| }, | |
| "packages": | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // MIXINS | |
| // | |
| // SHADOWS | |
| @mixin box-shadow ($string) { | |
| -webkit-box-shadow: $string; | |
| -moz-box-shadow: $string; | |
| box-shadow: $string; | |
| } |