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
# force www in url | |
RewriteEngine On | |
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC] | |
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L] | |
# END force www in url |
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
<?php | |
/** | |
* Remove XSS from user input. | |
* | |
* $str = xss_clean($str); | |
* | |
* @author Christian Stocker <[email protected]> | |
* @copyright (c) 2001-2006 Bitflux GmbH | |
* @param mixed string or array to sanitize | |
* @return string |
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
<?php | |
/** | |
* Check an email address for correct format. | |
* | |
* @link http://www.iamcal.com/publish/articles/php/parsing_email/ | |
* @link http://www.w3.org/Protocols/rfc822/ | |
* | |
* @param string email address | |
* @param boolean strict RFC compatibility | |
* @return boolean |
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
// A jQuery plugin to enable the text ellipsis in firefox. | |
// see http://yue.st/notes/code/js/ellipsis.en.html | |
// usage: | |
// $('.elementsNeedEllipsis').ellipsis(); | |
// the elements should be block level ('display: block' or 'display: inline-block') | |
// | |
// I think you should take care of resize event by yourself, | |
// just call $('.elem').ellipsis() again after element resized. | |
$.fn.ellipsis = function () { | |
$(this).css({'white-space': 'nowrap', 'overflow': 'hidden'}); |
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
/* | |
Native FullScreen JavaScript API | |
CopyRight: Johndyer, http://johndyer.name/native-fullscreen-javascript-api-plus-jquery-plugin/ | |
------------- | |
Assumes Mozilla naming conventions instead of W3C for now | |
*/ | |
(function() { | |
var | |
fullScreenApi = { | |
supportsFullScreen: false, |
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
li { | |
width: 200px; | |
min-height: 250px; | |
display: -moz-inline-stack;/* in firefox 2 */ | |
display: inline-block; | |
vertical-align: top; | |
zoom: 1;/* hasLayout in ie 6,7 */ | |
*display: inline; /*ie 6,7 */ | |
_height:250px;/* ie 6 */ | |
} |
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 | |
# 初期設定 | |
WORK=$HOME/Builds/build-essential | |
PREFIX=$HOME/local | |
export PATH="$PREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin" | |
# ソースコードのダウンロード | |
if [ ! -d $WORK/src ] ; then | |
mkdir src |
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
conn = Faraday.new(:url => 'http://ip:8022/') do |faraday| | |
faraday.request :url_encoded | |
faraday.response :logger | |
faraday.adapter Faraday.default_adapter | |
end | |
response = conn.get 'proxyclient01/sendSms.ashx', {:cid => Base64.encode64('username'), | |
:pwd => Base64.encode64('password'), | |
:mobile => Base64.encode64(mobile), | |
:content => Base64.encode64(sms_content), | |
:lcode => '', |
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
mount -o remount -o rw /system |
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 | |
# description: | |
# This script use to mount readable/writable NTFS driver | |
usage() { | |
echo "usage: `basename $0` m|u volume name" | |
} | |
if [ $# -ne 2 ]; then | |
usage |
OlderNewer