Skip to content

Instantly share code, notes, and snippets.

@jonas8
jonas8 / .htaccess
Created January 16, 2012 11:55
Force www in url
# 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
@jonas8
jonas8 / gist:1620555
Created January 16, 2012 12:02
Remove XSS from user input.
<?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
@jonas8
jonas8 / gist:1620569
Created January 16, 2012 12:06
Validate an Email
<?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
@jonas8
jonas8 / ellipsis.js
Created January 21, 2012 08:35 — forked from yuest/ellipsis.js
A Text Ellipsis jQuery Plugin For Firefox
// 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'});
@jonas8
jonas8 / Native_FullScreen.js
Created February 6, 2012 03:08 — forked from sofish/Native_FullScreen.js
Native FullScreen JavaScript API
/*
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,
@jonas8
jonas8 / gist:1770364
Created February 8, 2012 15:11
Cross-Browser Inline-Block
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 */
}
@jonas8
jonas8 / build-essential.sh
Created February 19, 2012 07:50 — forked from siraj/build-essential.sh
Build m4, autoconf, automake, libtool on Mac OS X Lion
#!/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
@jonas8
jonas8 / gist:3930378
Created October 22, 2012 08:41
sms send (rails demo)
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 => '',
@jonas8
jonas8 / gist:fcd18750fc48dfbe542c
Created October 8, 2014 14:30
adb shell readonly filesystem remount
mount -o remount -o rw /system
@jonas8
jonas8 / gist:e949a5e7f24f9af8b80f
Last active August 29, 2015 14:07
NTFS Read/write
#!/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