- The Clean Coder: A Code of Conduct for Professional Programmers (Robert C. Martin)
- Practical Object Oriented Design in Ruby: An Agile Primer (Sandi Metz)
- Refactoring: Ruby Edition
- Clean Code: A Handbook of Agile Software Craftsmanship (Robert C. Martin)
- [Don't Make Me Think!: A Common Sense Approach to Web Usability (Steve Krug)](http://w
This file contains 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
## Basic colours | |
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
interactive = auto | |
ui = auto | |
[color "branch"] | |
current = yellow bold |
This file contains 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
source ~/.git-completion.sh | |
alias gco='git co' | |
alias gci='git ci' | |
alias grb='git rb' | |
This file contains 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
//Block | |
.notification-popup { | |
width:100%; | |
height:100px; | |
} | |
//Element | |
.notification-popup_content { | |
color:black; | |
} |
This file contains 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
#!/usr/local/bin/bash | |
# Add or remove keywords here | |
KEYWORDS_REGEX="var_dump\(|die\(|Zend_Debug::|print_r\(|console\.(debug|info|log|warn)\(" | |
# Add extensions to check here | |
EXTENSIONS_REGEX="(.php$|.phtml$|.js$|.html$)" | |
ERRORS_BUFFER="" | |
TEXT_DEFAULT="\\033[0;39m" | |
TEXT_INFO="\\033[1;32m" | |
TEXT_ERROR="\\033[1;31m" |
This file contains 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
/* | |
* Class forceDesktopSite - Handles switching between desktop and responsive site for mobile user who want desktop experience. | |
*/ | |
var forceDesktopSite = { | |
targetWidth: 1024, | |
viewport: $('meta[name="viewport"]'), | |
init: function() { |
This file contains 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
{ | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
".tpl.php" | |
], | |
"font_size": 10, |
This file contains 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/sh | |
xrandr --output CRT1 --off --output DFP6 --mode 1280x1024 --pos 0x0 --rotate normal --output DFP7 --mode 1920x1080 --pos 1280x0 --rotate normal --output DFP4 --off --output DFP5 --off --output DFP2 --off --output DFP3 --off --output DFP1 --off |
This file contains 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
// MYPLUGIN CLASS DEFINITION | |
// ========================== | |
(function (factory) { | |
if (typeof define === 'function' && define.amd) { | |
define(['jquery'], factory); | |
} else { | |
factory(window.jQuery); | |
} | |
}(function ($) { |
OlderNewer