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
browser: { | |
mozilla: /firefox/.test(navigator.userAgent.toLowerCase()), | |
webkit: /webkit/.test(navigator.userAgent.toLowerCase()), | |
chrome: /chrome/.test(navigator.userAgent.toLowerCase()), | |
safari: /safari/.test(navigator.userAgent.toLowerCase()) && !/chrome/.test(navigator.userAgent.toLowerCase()), | |
opera: /opera/.test(navigator.userAgent.toLowerCase()), | |
msie: /msie/.test(navigator.userAgent.toLowerCase()) | |
} |
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 | |
# Number of arguments should be at least 1 | |
if [ $# -lt 1 ]; then | |
echo "Usage: $0 centos-version-number" | |
exit 1 | |
fi | |
VERSION=$1 |
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 | |
DOMAIN=$1; | |
echo -n | openssl s_client -connect $DOMAIN:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/$DOMAIN.cert && open /tmp/$DOMAIN.cert | |
# Notes: | |
# 1. After you ran this script, simple refresh your stubborn browser. i.e. Chrome. | |
# 2. When you are done, don't forget to delete /tmp/$DOMAIN.cert file. |
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
curl --silent http://your.jenkins/cc.xml | grep -o '<Project[^>]*/>' | grep -o 'name="[^"]*"' | cut -f2 -d'"' |
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
import sys | |
def add_to__all__(func_or_class): | |
""""Use decorator to avoid retyping function/class names into __all__ module level variable.""" | |
all_list = sys.modules[func_or_class.__module__].__dict__.setdefault('__all__', []) | |
if func_or_class.__name__ not in all_list: | |
all_list.append(func_or_class.__name__) | |
return func_or_class |
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 python | |
from __future__ import with_statement | |
import os, os.path, sys | |
import simplejson as json | |
import urllib2 | |
from distutils.version import StrictVersion | |
def pad_spaces(str_, length=18): | |
return str_ + ' ' * (length - len(str_)) |
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 | |
# | |
# Usage: ./supervisor-rolling-restart [supervised-process-name] | |
# | |
PROGRAM=$1 | |
# Time in seconds. | |
TIME_BETWEEN_RUNNING_CHECKS=0.5 | |
TIME_BETWEEN_RESTARTS=1 |
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
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1263:in `initialize' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1263:in `open' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1263:in `copy_file' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1262:in `open' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1262:in `copy_file' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:463:in `copy_file' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:383:in `cp' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1396:in `fu_each_src_dest' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1412:in `fu_each_src_dest0' | |
# /Users/didip/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/fileutils.rb:1394:in `fu_each_src_dest' |
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
# the initializer | |
CarrierWave.configure do |config| | |
config.storage = :file | |
config.root = Rails.root.join('public') | |
config.cache_dir = Rails.root.join('tmp/uploads') | |
config.enable_processing = false | |
end | |
# the uploader |
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
Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49) | |
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> a = {1:1} | |
>>> b = {2:2} | |
>>> dict(a, **b) | |
{1: 1, 2: 2} |