- AWS: URLs matching the regexp
/(http|https)?:\/\/docs\.aws\.amazon\.com\/(aws|sdk|AWS|SDK).+/
- Wikipedia: URLs on the domain
wikipedia.org
- JIRA: URLs starting with
https://topgolf.atlassian.net/secure/RapidBoard.jspa
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/bash | |
echo "Arguments:" | |
echo $@ | |
echo "---" | |
FILES_PATTERN='(\..+)?$' | |
FORBIDDEN='(@?NOCOMMIT|@?COMMITFAIL)' | |
if ( git diff --cached --name-only | grep -E $FILES_PATTERN | xargs grep -E --with-filename -n $FORBIDDEN ); then | |
echo "ERROR: @COMMITFAIL or @NOCOMMIT found. Exiting to save you from yourself." |
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
<input type="text" class="js-format-currency" value="12345.00" /> |
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
PLATFORM=$(uname) | |
ISLINUX=0 | |
WORKING_DIR=$(pwd) | |
CONFIG_DIR=$(cd ../config && pwd) | |
if [ $PLATFORM = 'Linux' ]; then | |
ISLINUX=1 | |
OS_CODENAME=$(lsb_release -cs) | |
else | |
OS_CODENAME="trusty" |
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/bin/env ruby | |
require 'colorize' | |
require 'open3' | |
require 'benchmark' | |
require 'optparse' | |
class TestRunner | |
attr_accessor :converge_enabled, :verify_enabled |
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
# URI of the local (caching) HTTP proxy | |
LOCAL_HTTP_PROXY = 'http://192.168.33.200:8123' | |
# Configures vagrant-cachier and vagrant-proxyconf. | |
# Should be called only on "local machine" providers. | |
def configure_caching(config) | |
if Vagrant.has_plugin?('vagrant-cachier') | |
config.cache.enable_nfs = true | |
config.cache.enable :gem | |
config.cache.enable :npm |
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
{ | |
"TODO": "TODO[\\s]*?:[\\s]*(?P<todo>.*)$", | |
"NOTE": "NOTE[\\s]*?:[\\s]*(?P<note>.*)$", | |
"FIXME": "FIX ?ME[\\s]*?:[\\s]*(?P<fixme>.*)$", | |
"CHANGED": "CHANGED[\\s]*?:[\\s]*(?P<changed>.*)$", | |
"CONSOLE": "console\\.(log|warn|error|notice)\\((?P<console>.*)\\);?$" | |
} |
- Summernote - Amazing WYSIWYG editor with badass plugin architecture
- Medium Editor - Clone of Medium's incredible WYSIWYG editor
- Slack Themes - Themes for Slack. Duh.
- Multi-Level Push Menu - Sexy sidebar library that displays nested shelves
- Awesomeplete - Sexy autocomplete with zero dependencies
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
$ -> | |
is_chrome = navigator.userAgent.indexOf('Chrome') > -1 | |
is_explorer = navigator.userAgent.indexOf('MSIE') > -1 | |
is_firefox = navigator.userAgent.indexOf('Firefox') > -1 | |
is_safari = navigator.userAgent.indexOf("Safari") > -1 | |
is_opera = navigator.userAgent.indexOf("Presto") > -1 | |
is_mac = (navigator.userAgent.indexOf('Mac OS') != -1) | |
is_windows = !is_mac | |
if is_chrome && is_safari |