Last.fm 日本語版
- Reference
Last.fm
http://jp.last.fm/
- Reference
Last.fm
http://jp.last.fm/
- Reference
blog.bulknews.net - svk でオフラインコミット
http://blog.bulknews.net/mt/archives/002058.html
- via
オレンジニュース - 2006-07-31
http://secure.ddo.jp/~kaku/tdiary/20060731.html#p12
- Summary
以下のモジュールが必要
MIME::Lite
DateTime
YAML
- Usage
% mysqldump2email --conf /path/to/config.yaml
- config.yaml sample
mysqldump:
command: /usr/bin/mysqldump
username: your-mysql-username
password: your-mysql-password
#host: localhost
zip:
command: /usr/bin/zip
# if encryption needed
#password: your-zip-password
mail:
from: user@example.com
to: user@example.com
route:
via: smtp
host: localhost:25
#route:
# via: sendmail
gspace:
enable: 0
directory: /
tmpdir: /tmp
#time_zone: Asia/Tokyo
- Reference
SpikeForge: Spike PHP Security Audit Tool
http://developer.spikesource.com/projects/phpsecaudit/
- via
phpspot開発日誌 - 2006-07-31 - PHPスクリプトの脆弱性検査ツール Spike Security Audit Tool
http://phpspot.org/blog/archives/2006/07/php_spike_secur.html
- Reference
Getting Rich with PHP 5
http://talks.php.net/show/oscon06/
- via
phpspot開発日誌 - 2006-07-31 - PHP5でもっとリッチに!OSCON 2006資料
http://phpspot.org/blog/archives/2006/07/php5oscon_2006.html
- Reference
万能数値表現法URR
http://homepage2.nifty.com/m_kamada/docsproc/asmurr.htm
- Summary
for($year = 2004; $year < 2014; $year++){ $isLeapYear = checkdate(2, 29, $year) ? "leap year" : "not leap year"; echo "{$year} is {$isLeapYear}.\n"; }
- Summary
ctype関数はCライブラリを使用しているため,is_*, str_*より高速とのこと.
だが実際に比較してみると,is_* の方が速い.
- ctype_digit 版
$t = microtime_float(); for($i=1;$i<=1000000;$i++){ if(ctype_digit(1234567890)) { print ""; } } print microtime_float()-$t."\n"; function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); }
$t=microtime_float(); for($i=1;$i<=1000000;$i++){ if(is_int(1234567890)) { print ""; } } print microtime_float()-$t."\n"; function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); }
- Summary
// PHP 5の動作を模擬する簡単な関数 function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); }
- Reference
Neon
http://www.crazymonkeygames.com/Neon.html
- digg stack


単位時間当たりのdigg数を高さで表現.
総 digg 数を色で表現.
digg数が増えると,リアルタイムにスタックが積まれる.
- digg swarm


文字が書いてあるノードが記事を表現.
黄色いノードがユーザを表現.
記事の位置関係は,ばねモデルで表現しているようだ.
- Reference
digg labs / swarm
http://labs.digg.com/swarm/
digg labs / stack
http://labs.digg.com/stack/
flickr - Digg Swarm for Windows Desktops
http://www.flickr.com/photos/therift/198688791/
- via
MOONGIFT - Digg Swarm for Windows Desktops
http://fw.moongift.jp/intro/i-2144.html
MOONGIFT - Digg Swarm for Windows Desktops レビュー
http://fw.moongift.jp/review/i-2145.html