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
| 54.228.196.116:64738 |
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
| ///////////////////////////////////////////////////////////////////////////////////////////////// | |
| // USERAGENT SNIFFING / MOBILE BROWSER DETECTION | |
| ///////////////////////////////////////////////////////////////////////////////////////////////// | |
| if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) { | |
| $("html").addClass("iosmobile"); | |
| } | |
| if(navigator.userAgent.match(/Android/i)){ | |
| $("html").addClass("android"); |
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_match_enabled": false, | |
| "bold_folder_labels": true, | |
| "caret_extra_width": 1, | |
| "caret_style": "phase", | |
| "close_windows_when_empty": false, | |
| "color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme", | |
| "copy_with_empty_selection": false, | |
| "drag_text": false, | |
| "draw_minimap_border": 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
| alias ss='thin --stats "/thin/stats" start' | |
| alias sg='ruby script/generate' | |
| alias sd='ruby script/destroy' | |
| alias sp='ruby script/plugin' | |
| alias sr='ruby script/runner' | |
| alias ssp='ruby script/spec' | |
| alias rdbm='rake db:migrate' | |
| alias rdbtp='rake db:test:prepare' | |
| alias migrate='rake db:migrate && rake db:test:prepare' | |
| alias sc='ruby script/console' |
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
| { | |
| "node": true, | |
| "browser": true, | |
| "esnext": true, | |
| "bitwise": true, | |
| "camelcase": true, | |
| "curly": true, | |
| "eqeqeq": true, | |
| "immed": true, | |
| "indent": 2, |
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
| window.onerror = function(message, url, line) { | |
| window.log('EXCEPTION', message + "|" + url + "|" + line); | |
| return window.log_error('Exception', message, window.location.pathname, url, line); | |
| }; | |
| var __slice = [].slice; | |
| window.log_error = function() { | |
| var arg, args, error_name, message; | |
| error_name = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : []; | |
| message = [ |
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
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| export PIVOTAL_TOKEN='' | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. |
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 filter-branch --force --index-filter \ | |
| 'git rm --cached --ignore-unmatch node_modules/*' \ | |
| --prune-empty --tag-name-filter cat -- --all |
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
| # Default application configuration that all configurations inherit from. | |
| linters: | |
| BorderZero: | |
| enabled: true | |
| CapitalizationInSelector: | |
| enabled: true | |
| ColorKeyword: | |
| enabled: 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
| { | |
| "coffeescript_error": { | |
| "level": "error" | |
| }, | |
| "arrow_spacing": { | |
| "name": "arrow_spacing", | |
| "level": "warn" | |
| }, | |
| "no_tabs": { | |
| "name": "no_tabs", |
OlderNewer