/(^Received:.*?\n)(?=[a-zA-Z-]+:|\n)/im
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
Date.monthNames = [ | |
'January', 'February', 'March', 'April', 'May', 'June', 'July', | |
'August', 'September', 'October', 'November', 'December' | |
]; | |
Date.dayNames = [ | |
'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', | |
'Saturday' | |
]; |
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 Dir | |
def self.clone!(source, destination, exclude) | |
exclude = ["^\\.{1,2}$"].concat(exclude).uniq | |
FileUtils.mkdir destination unless Dir.exists? destination | |
Dir.foreach(source) do |file| | |
next if exclude.detect { |pattern| file.match(/#{pattern}/i) } |
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
/** | |
* Date#strftime(format) -> String | |
* | |
* - format (String): the format string | |
* | |
* Formats the *date* according to the directives given in the *format* | |
* string. Requires a String#interpolate() extension. | |
* | |
* ## Format Components | |
* |
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
(function($) { | |
$.fn.centerPoint = function() | |
{ | |
return { | |
x: this.position().left + (this.outerWidth(true) / 2), | |
y: this.position().top + (this.outerHeight(true) / 2) | |
} | |
}; |
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
(function() { | |
// | |
// Iterates over an array of numbers and returns the sum. Example: | |
// | |
// _.sum([1, 2, 3]) => 6 | |
// | |
_.sum = function(obj) { | |
if (!$.isArray(obj) || obj.length == 0) return 0; | |
return _.reduce(obj, function(sum, n) { |
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
# | |
# Justin's ZSH Configuration | |
# | |
# Oh My ZSH Configuration ==================================================== | |
# Path to Oh My ZSH ---------------------------------------------------------- | |
ZSH=$HOME/.oh-my-zsh |
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
install: --user-install --no-document | |
update: --user-install --no-document |
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
# | |
# Justin's IRB Configuration | |
# | |
# Support User Gems in Bundler-Managed Applications -------------------------- | |
# | |
# if defined? ::Bundler | |
# user_gem_paths = Dir.glob("#{Gem.user_dir}/gems/*") | |
# user_gem_paths.each do |path| | |
# gem_path = "#{path}/lib" |
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
# | |
# Justin's "Staple" ZSH Theme | |
# | |
# For use with Oh-My-Zsh. Place in ~/.oh-my-zsh/custom. | |
# | |
autoload -U add-zsh-hook | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}[%{$fg_no_bold[green]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
OlderNewer