Skip to content

Instantly share code, notes, and snippets.

@wakhub
wakhub / php54-new-syntax.php
Created April 4, 2013 16:07
PHP5.4 New Syntax Test
<?php
// http://php.net/manual/en/migration54.new-features.php
// http://php.net/manual/en/closure.bindto.php
class Sample {
public static function getArray() {
return [0b100, 0b101, 0b111];
}
@wakhub
wakhub / image_converter.py
Created September 27, 2013 09:46
Image converter script for iPhone app and Android app
# http://stackoverflow.com/questions/9166400/convert-rgba-png-to-rgb-with-pil
# http://stackoverflow.com/questions/11484204/python-invert-image-with-transparent-background-pil-gimp
import argparse
import StringIO
import Image
import ImageOps
class Command(object):
from functools import wraps
import logging
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)