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
| @if $debug-mode == true{ | |
| /*------------------------------------*\ | |
| $DEBUG | |
| \*------------------------------------*/ | |
| /** | |
| * Enable this stylesheet to visually detect any improperly nested or | |
| * potentially invalid markup, or any potentially inaccessible code. | |
| * | |
| * Red == definite error | |
| * Yellow == double-check |
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
| body { | |
| min-height: 100%; | |
| background-color: #FDFDFD; | |
| font-size: 14px; | |
| line-height: 18px; | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| color: #333; | |
| } | |
| button, |
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
| [ | |
| { "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
| { "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
| { "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} }, | |
| { "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} }, | |
| { "keys": ["ctrl+shift+up"], "command": "swap_line_up" }, | |
| { "keys": ["ctrl+shift+down"], "command": "swap_line_down" }, |
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
| _ | |
| \`\ | |
| |= | | |
| /- ;.---. | |
| _ __.' (____) | |
| ` (_____) | |
| _' ._ .' (____) | |
| ` (___) | |
| --`'------'` |
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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/User/SublimeLinter/Flatland Dark (SL).tmTheme", | |
| "ensure_newline_at_eof_on_save": true, | |
| "flatland_sidebar_tree_small": true, | |
| "flatland_square_tabs": true, | |
| "font_face": "Consolas", | |
| "font_size": 14, | |
| "highlight_line": 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
| #!/bin/bash | |
| # Install cURL | |
| sudo apt-get install curl | |
| # Install LAMP stack | |
| sudo apt-get update | |
| sudo apt-get install apache2 | |
| sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql | |
| sudo mysql_install_db |
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
| # My ~/.gitconfig file | |
| # (with personal information removed) | |
| # Take what you will! | |
| [user] | |
| name = YOUR NAME | |
| email = YOUR EMAIL | |
| [github] | |
| user = YOUR USERNAME | |
| token = YOUR TOKEN | |
| [core] |
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
| { | |
| "shell": true, | |
| "working_dir": "${project_path:${folder}}", | |
| "cmd": ["%WINDIR%\\Microsoft.NET\\Framework\\v4.0.30319\\msbuild", "C:\\PATH_TO_SOLUTION\\solution.sln"] | |
| } |
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
| [user] | |
| name = YOUR NAME | |
| email = YOUR EMAIL | |
| [core] | |
| # see the other file in this gist | |
| excludesfile = /Users/USERNAME/.gitignore | |
| [color] | |
| # colors all up in your git | |
| ui = 1 | |
| [alias] |
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
| { | |
| /** | |
| * Enforcing Options | |
| * These options tell JSHint to be more strict towards your code. Use them if you want to allow only a safe subset of JavaScript—very useful when your codebase is shared with a big number of developers with different skill levels. | |
| */ | |
| // This option prohibits the use of bitwise operators such as ^ (XOR), | (OR) and others | |
| "bitwise": false, | |
| // This option allows you to force all variable names to use either camelCase style or UPPER_CASE with underscores. |