memo

memo dayo.

2010-08-11から1日間の記事一覧

postgresでdescribe

SELECT column_name ,data_type ,udt_name ,character_maximum_length ,is_nullable ,is_identity FROM information_schema.columns WHERE table_name = 'yourtablename' ;

超簡易Key-Value型API

php

■__init__.php // ============================================== if (function_exists('date_default_timezone_set') !== False) { date_default_timezone_set('Asia/Tokyo'); } // ============================================== // ---- define ---- …

scpでファイルを受信する

sh

scp -rp -oIdentityFile=identity_file yourname@xxx.xxx.xxx.xxx:/otherserver/yourname/* /thisserver/yourname/

指定した長さのランダム文字列を取得する

php

function make_rand ($int_length) { $master = array( '0','1','2','3','4','5','6','7','8','9' ,'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z' ,'A','B','C','D','E','F','G','H','I','J','…