- 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 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
| ------------------------------------------------------------------------------ | |
| # Auth: Christopher Stone | |
| # dCre: 2017/11/15 00:00 | |
| # dMod: 2017/11/15 00:03 | |
| # Appl: Safari | |
| # Task: Put URLs of all tabs of the front window on the clipboard. | |
| # Libs: None | |
| # Osax: None | |
| # Tags: @Applescript, @Script, @Safari, @Put, @URLs, @All, @Tabs, @Front, @Window, @Clipboard | |
| ------------------------------------------------------------------------------ |
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
| info: https://mnmt.no/blog/monument-151-spiros-kaloumenos/ | |
| soundcloud: https://soundcloud.com/monument-podcast/monument-151-spiros-kaloumenos | |
| tracks: | |
| - Patrik Skoog – Flowing Icons | |
| - Yan Cook – Micron | |
| - In Space ( Francois X Remix ) | |
| - Lewis Fautzi, Nuklear Default – Chernobyl | |
| - Flug – Internal Proceed ( Setaoc Mass Remix ) | |
| - Keith Carnal – Lcuy | |
| - Blawan – 993 |
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 | |
| 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 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
| <input type="text" class="js-format-currency" value="12345.00" /> |
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
| 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 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
| #!/usr/bin/env ruby | |
| require 'colorize' | |
| require 'open3' | |
| require 'benchmark' | |
| require 'optparse' | |
| class TestRunner | |
| attr_accessor :converge_enabled, :verify_enabled |
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
| # 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 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
| { | |
| "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>.*)\\);?$" | |
| } |