Skip to content

Instantly share code, notes, and snippets.

@didip
didip / $.browser.port.js
Created January 17, 2013 05:39
Replicate $.browser functionality since jQuery 1.9 removed $.browser.
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())
}
@didip
didip / download-centos-mirror.sh
Last active March 13, 2019 13:53
Simple script to download CentOS mirror. You can totally put this in cron.
#!/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
@didip
didip / add-self-signed-cert.sh
Last active December 10, 2015 20:38
Script to download and add self-signed SSL cert exception to OS X keychain. Usage: ./add-self-signed-cert.sh www.example.com
#!/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.
@didip
didip / jenkins-project-names-parser.sh
Last active December 10, 2015 14:18
Grab Jenkins project names from cc.xml
curl --silent http://your.jenkins/cc.xml | grep -o '<Project[^>]*/>' | grep -o 'name="[^"]*"' | cut -f2 -d'"'
@didip
didip / add_to__all__decorator.py
Created January 2, 2013 03:45
Use decorator to avoid retyping function/class names into __all__ module variable. It's an effective way to cut down large number of unnecessary imports caused by "from some_module import *". Works on Python 2.6 and greater.
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
@didip
didip / check-package-versions.py
Created December 21, 2012 05:07
Given requirements.txt file, we can check PyPI for new versions.
#!/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_))
@didip
didip / supervisor-rolling-restart.sh
Created December 13, 2012 16:57
Rolling restart supervisord watched processes. Since every restart it waits for "$status" == "RUNNING", it's safer that simply running /etc/init.d/supervisor restart
#!/bin/bash
#
# Usage: ./supervisor-rolling-restart [supervised-process-name]
#
PROGRAM=$1
# Time in seconds.
TIME_BETWEEN_RUNNING_CHECKS=0.5
TIME_BETWEEN_RESTARTS=1
@didip
didip / gist:3949536
Created October 24, 2012 23:14
carrierwave-stacktrace
# /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'
@didip
didip / gist:3947572
Created October 24, 2012 17:40
carrierwave-info
# 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
@didip
didip / gist:3250687
Created August 3, 2012 19:27
testing dict merge if keys are integers
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}