memo.xight.org

2006-02 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
最近 日分 / 今月の一覧

2006-02-28 Tue

blog.xight.org

- Summary
生まれてから今日で10000日目.[2005-03-10-4]
新しいことを始めるには良い機会なので,blogを始めてみます.

- Reference
blog.xight.org
http://blog.xight.org/
blog.xight.org - Atom Feed
http://blog.xight.org/atom.xml

カテゴリ: [Memo]

mod_cache + mod_disk_cache を利用した apache2 のパフォーマンス改善とその効果

- /etc/apache2/mods-available/disk_cache.conf

<IfModule mod_cache.c>
	<IfModule mod_disk_cache.c>
		CacheRoot "/var/cache/apache2/disk_cache"
		CacheSize 524288
		CacheEnable disk /
		CacheDirLevels 4
		CacheDirLength 5
	</IfModule>
</IfModule>


- cache 用ディレクトリの作成

# mkdir /var/cache/apache2/disk_cache


- mod_cache と mod_disk_cache の有効化

# a2enmod cache
# a2enmod disk_cache
# apache2ctl configtest
# apache2ctl restart





- mod_cache + mod_disk_cache 使用前後のベンチマーク比較 (ApacheBench を利用)
mod_cache + mod_disk_cache 使用前 (HTMLへのアクセス)

% ab -n 100 -c 10 http://xight.org/test/static
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.4502 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/

Benchmarking xight.org (be patient).....done


Server Software: Apache
Server Hostname: xight.org
Server Port: 80

Document Path: /test/static
Document Length: 119 bytes

Concurrency Level: 10
Time taken for tests: 104.65314 seconds
Complete requests: 100
Failed requests: 0
Write errors: 0
Total transferred: 43800 bytes
HTML transferred: 11900 bytes
Requests per second: 0.96 [#/sec] (mean)
Time per request: 10406.532 [ms] (mean)
Time per request: 1040.653 [ms] (mean, across all concurrent requests)
Transfer rate: 0.40 [Kbytes/sec] received

Connection Times (ms)
              min mean[+/-sd] median max
Connect: 11 1039 2724.4 30 21007
Processing: 46 9083 8619.9 6165 30877
Waiting: 38 5708 7523.9 3087 27202
Total: 116 10122 9075.1 6263 30907

Percentage of the requests served within a certain time (ms)
  50% 6263
  66% 12234
  75% 15935
  80% 18918
  90% 27164
  95% 27222
  98% 30892
  99% 30907
 100% 30907 (longest request)


mod_cache + mod_disk_cache 使用後 (HTMLへのアクセス)

% ab -n 100 -c 10 http://xight.org/test/static
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.4502 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/

Benchmarking xight.org (be patient).....done


Server Software: Apache
Server Hostname: xight.org
Server Port: 80

Document Path: /test/static
Document Length: 119 bytes

Concurrency Level: 10
Time taken for tests: 2.551448 seconds
Complete requests: 100
Failed requests: 0
Write errors: 0
Total transferred: 43800 bytes
HTML transferred: 11900 bytes
Requests per second: 39.19 [#/sec] (mean)
Time per request: 255.145 [ms] (mean)
Time per request: 25.514 [ms] (mean, across all concurrent requests)
Transfer rate: 16.46 [Kbytes/sec] received

Connection Times (ms)
              min mean[+/-sd] median max
Connect: 11 24 8.9 26 42
Processing: 36 218 43.8 230 266
Waiting: 28 130 65.2 128 266
Total: 52 243 44.8 255 295

Percentage of the requests served within a certain time (ms)
  50% 255
  66% 261
  75% 265
  80% 267
  90% 277
  95% 284
  98% 293
  99% 295
 100% 295 (longest request)





mod_cache + mod_disk_cache 使用前 (PHPへのアクセス)

% ab -n 100 -c 10 http://xight.org/test/dynamic
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.4502 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/

Benchmarking xight.org (be patient).....done


Server Software: Apache
Server Hostname: xight.org
Server Port: 80

Document Path: /test/dynamic
Document Length: 1011 bytes

Concurrency Level: 10
Time taken for tests: 122.299908 seconds
Complete requests: 100
Failed requests: 0
Write errors: 0
Total transferred: 125500 bytes
HTML transferred: 101100 bytes
Requests per second: 0.82 [#/sec] (mean)
Time per request: 12229.991 [ms] (mean)
Time per request: 1222.999 [ms] (mean, across all concurrent requests)
Transfer rate: 1.00 [Kbytes/sec] received

Connection Times (ms)
              min mean[+/-sd] median max
Connect: 15 1222 3040.3 24 21007
Processing: 36 10810 9137.5 9190 36141
Waiting: 33 5607 5397.5 3218 21047
Total: 56 12032 9438.8 9487 36160

Percentage of the requests served within a certain time (ms)
  50% 9487
  66% 15184
  75% 18169
  80% 18399
  90% 24175
  95% 36120
  98% 36160
  99% 36160
 100% 36160 (longest request)


mod_cache + mod_disk_cache 使用後 (PHPへのアクセス)

% ab -n 100 -c 10 http://xight.org/test/dynamic
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.4502 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/

Benchmarking xight.org (be patient).....done


Server Software: Apache
Server Hostname: xight.org
Server Port: 80

Document Path: /test/dynamic
Document Length: 1011 bytes

Concurrency Level: 10
Time taken for tests: 6.392257 seconds
Complete requests: 100
Failed requests: 0
Write errors: 0
Total transferred: 125500 bytes
HTML transferred: 101100 bytes
Requests per second: 15.64 [#/sec] (mean)
Time per request: 639.226 [ms] (mean)
Time per request: 63.923 [ms] (mean, across all concurrent requests)
Transfer rate: 19.09 [Kbytes/sec] received

Connection Times (ms)
              min mean[+/-sd] median max
Connect: 16 59 297.9 27 3007
Processing: 114 266 59.1 266 492
Waiting: 68 230 72.4 222 388
Total: 168 326 308.0 295 3317

Percentage of the requests served within a certain time (ms)
  50% 295
  66% 311
  75% 337
  80% 347
  90% 386
  95% 416
  98% 524
  99% 3317
 100% 3317 (longest request)


効果覿面!

- 注意
CacheDirLevels * CacheDirLength <= 20 で無いとエラーが発生する.

Syntax error on line XXX of /etc/apache2/mods-enabled/disk_cache.conf:
CacheDirLevels*CacheDirLength value must not be higher than 20


しばらく動作させると以下のエラーが発生し,閲覧が不可能になる場合がある.
apache を再起動するとおさまるように見えるが,原因不明.

[Wed Mar 01 08:06:10 2006] [error] [client XXX.XXX.XXX.XXX] Directory index forbidden by rule: /path/to/public_html/foo/


- Reference
Apache HTTP サーバ - mod_cache
http://httpd.apache.org/docs/2.2/ja/mod/mod_cache.html
Apache HTTP サーバ - mod_mem_cache
http://httpd.apache.org/docs/2.2/ja/mod/mod_mem_cache.html
Apache HTTP サーバ - mod_disk_cache
http://httpd.apache.org/docs/2.2/ja/mod/mod_disk_cache.html

j-lab - ApacheConf2
http://ns.jk.to/zwiki/ApacheConf2

カテゴリ: [Apache]
内部リンク: [2006-03-01-1]

PHP Screw - PHPスクリプトの暗号化

- Reference
SourceForge.net: PHP Screw
http://sourceforge.net/projects/php-screw/

ThePM9.com - IT SOLUTIONS - PHP Extension Module
http://www.pm9.com/newpm9/itbiz/php/phpscrew/

- via
MOONGIFT - PHP Screw
http://oss.moongift.jp/intro/i-1177.html

MOONGIFT - PHP Screw レビュー
http://oss.moongift.jp/review/i-1180.html

カテゴリ: [PHP][Stub]

XP-Weather - 天気予報を表示するモジュール

- Reference
お天気ガイド-XOOPSマニア
http://hypweb.net/xoops/modules/XP-Weather/
XP-Weather 1.3(J2.x)更新記-XP-Weather_1.3(J2.x)-Wiki [自由帳]-XOOPSマニア
http://hypweb.net/xoops/modules/pukiwiki/81.html

カテゴリ: [天気情報][XOOPS]

XOOPS Cube のインストール

- 前提
http://example.com/xoops/ に XOOPS Cube をインストールしたい.
DocumentRoot は /var/www

- ファイルを展開して /var/www/xoops にコピー

% tar xzvf xoops-2.0.13a-JP.tar.gz
# xoops-2.0.13a-JP /var/www/xoops


- 所有者の設定

% cd /var/www/xoops
# chown -R www-data:www-data *


- ファイルの移動

# mv /var/www/xoops/html/* /var/www/xoops


- XOOPS用のDBとユーザを作成

% mysqladmin -uroot create xoops
% mysql -uroot mysql
mysql> GRANT ALL PRIVILEGES ON xoops.* TO xoops@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;
mysql> quit
% mysqladmin -uroot reload


- インストール ウィザードページへのアクセス
http://example.com/xoops/ へアクセスすると…
http://example.com/xoops/install/index.php に自動リダイレクト.
- インストール ウィザード トップページ
åƳ

- インストール ウィザード イントロダクション
åƳ

- ファイルのアクセス権のチェック
åƳ

- データベース,およびパス・URLの設定
åƳ

- データベース,およびパス・URLの設定の内容確認
åƳ

- mainfile.php の作成
åƳ

- パス・URLのチェック
åƳ

- データベース設定の確認
åƳ

- データベースをチェック
  以下のエラーが出た場合は 「データベース,およびパス・URLの設定」まで戻って設定をやり直し.
åƳ
  正常に処理された場合は以下の表示
åƳ

- テーブルの作成
åƳ

- 管理者ユーザの作成
åƳ

- データの生成
åƳ

- インストール完了
"サイト" をクリックすると XOOPS の画面が表示される.
åƳ

- インストール後,初めて管理者メニューを開くと,以下のような警告が出る.
åƳ

# rm -rf /var/www/xoops/install
# chmod 644 /var/www/xoops/mainfile.php

カテゴリ: [XOOPS][Stub]

MovableType のインストール

- 前提
http://example.com/blog/ に MovableType をインストールしたい.
DocumentRoot は /var/www

- ファイルを展開して /var/www/blog にコピー

% tar xzvf MT-3_2-ja-2.tar.gz
% cp -rf MT-3.2-ja-2 /var/www/blog


- パーミッションと所有者の設定

% cd /var/www/blog
# chown -R www-data:www-data *
# chmod -R 755 *.cgi


- mt-config.cgi を作成

# cp mt-config.cgi-original mt-config.cgi


- mt-config.cgi の設定

# Path setting
CGIPath           http://example.com/blog/
StaticWebPath     http://example.com/blog/mt-static
HelpURL           http://example.com/blog/mt-static/docs/

# DB Setting
ObjectDriver      DBI::mysql
Database          mt
DBUser            mt
DBPassword        password
DBHost            localhost

EmailAddressMain  admin@example.com



- MovableType用のDBとユーザを作成

% mysqladmin -uroot create mt
% mysql -uroot mysql
mysql> GRANT ALL PRIVILEGES ON mt.* TO mt@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;
mysql> quit
% mysqladmin -uroot reload


- apacheの設定
/etc/apache/conf.d/mt.conf

<Directory /var/www/blog>
	Options +ExecCGI
</Directory>

# apachectl restart


- MovableType のインストール
http://example.com/blog/ からインストールを行う.
åƳ
åƳ
åƳ

500 Internal Server Error が発生したら,パーミッション,mt-config.cgiのDB設定部分を確認.

- インストールのチェック
足りないモジュールなどが表示される.
http://example.com/blog/mt-check.cgi
åƳ

- オプションのモジュールを追加
Image::Magick

# aptitude install perlmagick


Crypt::DSA

# cpan install Crypt::DSA


XML::Atom

# aptitude install libxml-atom-perl


- 初期ログイン名とパスワードでログイン

ログイン名 Melody
パスワード Nelson
åƳ

- Reference
Movable Typeユーザー・マニュアル: Movable Typeの新規インストール
http://www.sixapart.jp/movabletype/manual/mtmanual_install.html

Movable Typeユーザー・マニュアル: Movable Typeへのログイン/ログアウト
http://www.sixapart.jp/movabletype/manual/mtmanual_login.html

Crypt::DSA
Image::Magick
XML::Atom

Debian パッケージディレクトリ検索 (バイナリ) - perlmagick
Debian パッケージディレクトリ検索 (バイナリ) - libxml-atom-perl

カテゴリ: [MovableType][Stub]
Referrer (Inside): [2005-03-10-4]

2006-02-27 Mon

Web で Office ライクな作業を実現するサービス

- Writely - Web上で Word
åƳ
http://www.writely.com/

- Numbler - Web上で Excel
åƳ
http://numbler.com/

- Thumbstacks - Web上で PowerPoint
åƳ
http://www.thumbstacks.com/

- 補足
NetJaxer[2006-02-27-5] を利用することで,より便利に使える.

- Reference
Writely - The Web Word Processor
http://www.writely.com/
Welcome to Numbler
http://numbler.com/
Thumbstacks.com - Live presentations on the web!
http://www.thumbstacks.com/

- via
sta la sta - WebでOfficeライクな作業を実現するためのサービス3つ
http://d.hatena.ne.jp/starocker/20060224/p6

カテゴリ: [WebTool]

NetJaxer - Webアプリケーションをデスクトップアプリケーションのように扱えるソフトウェア

- Summary
åƳ
- Reference
NetJaxer - Web 2.0 on your desktop
http://www.netjaxer.com/
NetJaxer - Demo
http://www.netjaxer.com/demo/
- via
sta la sta - Web2.0サービスをデスクトップアプリのように扱うアプリ - NetJaxer
http://d.hatena.ne.jp/starocker/20060225/p1
Web2.0サービスをデスクトップアプリのように扱うアプリ - NetJaxer
http://dkiroku.com/2006-02-25-13.html

カテゴリ: [Software]
内部リンク: [2006-02-27-6]

はてなワンワンワールド

- Summary
いぬになってチャットできるサービス.
åƳ

- Reference
はてらぼ - はてなワンワンワールド
http://world.hatelabo.jp/
はてなワンワンワールド - ヘルプ
http://world.hatelabo.jp/help
はてなブックマーク - はてなワンワンワールド
http://b.hatena.ne.jp/entry/http://world.hatelabo.jp/

- via
[を] はてなワンワンワールド
http://chalow.net/2006-02-26-2.html

カテゴリ: [Memo]

JASRAC 作品検索サービス

- Reference
JASRAC 作品検索サービス
http://www2.jasrac.or.jp/

カテゴリ: [音楽]

JASRAC 管理下の音楽使用料

- Reference
JASRAC - ネットワーク課 - 使用料
http://www.jasrac.or.jp/network/contents/tariff.html

カテゴリ: [音楽]

4'33" の著作権

- Summary
4'33" [2004-05-06-7] もJASRAC の管理下にある.
Amazon - 音楽 - 4’33”

Wikipedia には楽譜が丸写し….
Wikipedia - 4分33秒

- Reference
作品詳細表示 - 4'33"
http://www2.jasrac.or.jp/cgi-bin/db2www/jwid040.d2w/detail?L_SakC=0F178111
- via
Slashdot Japan - Linux初のオンライン音楽販売サービス
http://slashdot.jp/comments.pl?sid=303831&cid=890111

カテゴリ: [音楽]

2006-02-26 Sun

亜細庵

カテゴリ: [Bar]

たけちゃん

- Summary
西荻窪のたこ焼き屋台.

カテゴリ: []

2006-02-25 Sat

グリルかまくら

- Reference
鉄板焼き / グリル かまくら - livedoor 東京 グルメ
http://tokyo.gourmet.livedoor.com/restaurant/info/23147.html

カテゴリ: [Bar]

Wine & Dine

- Reference
東日本キヨスク株式会社 - ワイン & ダイン
http://www.ej-kiosk.jregroup.ne.jp/cgi-bin/datadisp.cgi?data_id=1050286610
ワインバー / ワイン&ダイン - livedoor 東京 グルメ
http://tokyo.gourmet.livedoor.com/restaurant/info/13016.html

カテゴリ: [Bar]

OLD CROW - オールドクロウ

- Summary
店内に「まき火釜」があるイタリア料理屋.
二人ならピザのハーフサイズで十分.
- Reference
OLDCROW
http://www.sometime.co.jp/oldcrow/
ピザ / オールドクロウ - livedoor 東京 グルメ
http://tokyo.gourmet.livedoor.com/restaurant/info/659.html

カテゴリ: [Bar]

2006-02-24 Fri

フォルトファーレン - おいしいパンとケーキのお店

- Summary
ドライパイをネットで注文.
とっても美味しかった!

- Data

住所 兵庫県神戸市灘区上河原通1-3-17
電話番号 078-802-4561

- Reference
おいしいパンとケーキのお店 フォルトファーレン
http://cakeshop.ld.infoseek.co.jp/

カテゴリ: []

SiteAdvisor.com - 安全なサイトか確認

- Reference
Spyware, Adware, Spam, Phishing, Viruses, Identity Theft Protection | SiteAdvisor
http://www.siteadvisor.com/

- via
百式 - その画面を安全に (SiteAdvisor.com)
http://www.100shiki.com/archives/2006/02/_siteadvisorcom.html

読書記録ChangeLog - 2006-02-24
http://dkiroku.com/2006-02-24-2.html

カテゴリ: [WebTool][Stub]

Sketch Fighter - 手書きシューティングゲーム

- Reference
Ambrosia Software Web Board > Progress logs > SketchFighter 4000 Alpha
http://www.ambrosiasw.com/forums/?showtopic=101164

Ambrosia Software Web Board > Gallery > Sneak Peeks > Sketchfighter
http://www.ambrosiasw.com/forums/?act=module&module=gallery&cmd=sc&cat=19

- via
Engadget Japanese - SketchFighter 4000 Alpha:落書きシューティング
http://japanese.engadget.com/2006/02/21/sketchfighter-4000/

[N] 手書きシューティングゲーム「SketchFighter」
http://netafull.net/macosx/012622.html

読書記録ChangeLog - 2006-02-23
http://dkiroku.com/2006-02-23-6.html

カテゴリ: [Game][Stub]

2006-02-22 Wed

花粉飛散経路探索プロジェクト - 花粉の飛散経路を視覚化

- Reference
花粉飛散経路探索プロジェクト
https://cell.cellcomputing.net/spring/
- via
スラッシュドット ジャパン | その花粉の経路を追跡せよ!
http://slashdot.jp/article.pl?sid=06/02/21/1458207

カテゴリ: [視覚化]

Tasx - 実行中のタスクをアイコン表示するタスク切替ソフトウェア

- Reference
窓の杜 - 【NEWS】実行中タスクのアイコンを小さく常時表示できるタスク切り替えソフト「Tasx」
http://www.forest.impress.co.jp/article/2006/02/21/tasx.html

カテゴリ: [Software][Windows]

2006-02-21 Tue

Apache2 で mod_deflate

- Summary
ネットワークの速度がボトルネックになっている場合には,
動的にコンテンツ圧縮を行うことでパフォーマンスを上げることが可能.
動的に圧縮を行うため,CPU等のリソースは通常の転送時以上に消費する.

Apache1.x では mod_gzip を用いたが,Apache2.x では mod_deflate を用いる.

- /etc/apache2/mods-available/deflate.conf を作成

# mod_deflate
<IfModule mod_deflate.c>
	AddEncoding x-compress Z
	AddEncoding x-gzip gz tgz
	DeflateCompressionLevel 9
	#AddOutputFilterByType DEFLATE text/html text/plain text/xml
	
	DeflateFilterNote Input instream
	DeflateFilterNote Output outstream
	DeflateFilterNote Ratio ratio
	LogFormat '%h %l %u %t "%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
	
	<Directory />
		# Filter
		SetOutputFilter DEFLATE
		# Netscape 4.x
		BrowserMatch ^Mozilla/4 gzip-only-text/html
		# Netscape 4.06-4.08
		BrowserMatch ^Mozilla/4\.0[678] no-gzip
		# MSIE masquerades as Netscape, but it is fine
		BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
		# Don't compress images and binary files
		SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
		SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
		SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar|7z)$ no-gzip dont-vary
	</Directory>
</IfModule>


- /etc/apache/sites-enable/defalut
CustomLog /var/log/apache2/deflate.log deflate


- mod_deflate を有効化

# a2enmod deflate
# apache2ctl restart


- mod_deflate が有効になっているかどうかのチェック
w3m と gunzip を利用して簡単にチェックが可能.

% w3m -dump_source http://example.com/ | gunzip

カテゴリ: [Apache]

Ajax と OpenSearch と はてなダイアリーキーワード連想語 API を使ったはてな検索のデモ

- Reference
Ajax と OpenSearch と はてなダイアリーキーワード連想語 API を使ったはてな検索のデモ
http://pocari.org/tools/ajax/opensearch/

[戯] Ajax と OpenSearch と はてなダイアリーキーワード連想語 API を使ったはてな検索のデモ
http://cl.pocari.org/2006-02-20-1.html

カテゴリ: [Ajax][Stub]

AjaxFTP - PHP + Ajax で FTP

- Source

<?php
	require('ajaxftp/ajaxftp.php');
	$aj = new AJAXFTP;
	$aj->server = "ftp.example.com";
	$aj->baseurl = "http://localhost/ajaxftp";
	$aj->present();
?>


- Reference
SourceForge - AjaxFTP
http://sourceforge.net/projects/ajaxftp/

- via
phpspot開発日誌 - PHPとAjaxでFTP機能を実現するツールの紹介
http://phpspot.org/blog/archives/2006/02/phpajaxftp.html

カテゴリ: [Ajax][PHP][Stub]

アートワークを Perl で設定する方法

- Reference
NamingSense::TokuLog! - アートワークを Perl で設定する方法
http://d.hatena.ne.jp/tokuhirom/20060218/1140279373

カテゴリ: [iTunes][Perl][Stub]

2006-02-20 Mon

AzConvPNG - 画像のファイルサイズを削減するソフトウェア

- Summary
BMP, PNG, GIF, JPG の読み込みに対応した画像ファイル削減ソフトウェア.

以下の手順でファイルサイズを小さくする.
1. 色数最適化
2. 各フィルタ比較 (5種類)
3. 他のビットでも比較
4. 圧縮率9で保存

- Reference
AzConvPNG
http://hp.vector.co.jp/authors/VA033749/azcvpng.html
- via
窓の杜 - 5種類の圧縮方式で変換を試行して最小ファイルサイズで保存するPNG変
換ソフト
http://www.forest.impress.co.jp/article/2006/02/20/azconvpng.html

カテゴリ: [Software]

Web Design from Scratch

- Reference
Web Design from Scratch
http://www.webdesignfromscratch.com/
Web Design from Scratch - Current style in web design
http://www.webdesignfromscratch.com/current-style.cfm
- via
www.textfile.org - 2006-02-18
http://www.hyuki.com/t/200602.html#i20060218190807
www.textfile.org - 2006-02-17
http://www.hyuki.com/t/200602.html#i20060217123253

カテゴリ: [WebDesign]

郵便局のサイトから自動で郵便番号データをインポートする

- Reference
masuidrive - 2006-02-08 - 郵便局のサイトから自動で郵便番号データをインポートする
http://blog.masuidrive.jp/articles/2006/02/08/rake-import_zip

カテゴリ: [Memo]

mouseHole - Ruby で スクリプト可能なプロキシサーバ

- Reference
RedHanded - MouseHole 1.1 in Plain View
http://redhanded.hobix.com/inspect/mousehole11InPlainView.html
- via
えとブログ(2006-02-14) - mouseHole: Rubyでスクリプト可能なプロキシサーバ
https://www.codeblog.org/blog/eto/20060214.html#p01
えとブログ(2006-02-10) - WEBrick でプロキシを作る
https://www.codeblog.org/blog/eto/20060210.html
オレンジニュース - 2006-02-15
http://secure.ddo.jp/%7Ekaku/tdiary/20060215.html#p18

カテゴリ: [Ruby]

SQL Power Injector - SQLインジェクション検査ツール

- Reference
SQL Power Injector Product Information
http://www.sqlpowerinjector.com/

- via
オレンジニュース - 2006-02-15
http://secure.ddo.jp/%7Ekaku/tdiary/20060215.html#p08

カテゴリ: [SQL][Security][Stub]

Linuxにおけるソケット機能の向上

- Reference
IBM dW : Linux : Linuxにおけるソケット機能の向上
http://www-06.ibm.com/jp/developerworks/linux/060210/j_l-hisock.shtml

- via
オレンジニュース - 2006-02-15
http://secure.ddo.jp/%7Ekaku/tdiary/20060215.html#p07

カテゴリ: [Linux][Stub]

HTML, XML 検証サービス

- HTML/XHTML Validator
  o The W3C Markup Validation Service
    HTML/XHTML Validator の定番
    http://validator.w3.org/

  o Another HTML-lint
    http://openlab.ring.gr.jp/k16/htmllint/

  o WDG HTML Validator
    http://www.htmlhelp.com/tools/validator/

- CSS Validator
  o W3C CSS 検証サービス
    CSS Validator の定番
    http://jigsaw.w3.org/css-validator/

- アクセシビリティ
  o Watchfire WebXACT
    http://webxact.watchfire.com/

- RDF/XML Validator
  o W3C RDF Validation Service
    http://www.w3.org/RDF/Validator/

  o FoaF Explorer
    http://xml.mfd-consult.dk/foaf/explorer/

  o ccValidator
    http://www.yergler.net/projects/ccvalidator/

- RSS Validator
  o Feed Validator for Atom and RSS
    http://feedvalidator.org/

  o Redland RSS 1.0 Validator and Viewer
    http://librdf.org/rss/

- Reference
ValidatorCollection - HTML/XML 検証サービス一覧
http://hpcgi3.nifty.com/spiegel/?ValidatorCollection

カテゴリ: [HTML][XML][Accessibility][WebTool][Stub]

Cookie Editor

- Summary
Internet Explorer の Cookie を変更できるエディタ.

- Reference
Cookie Editor
http://www.proxoft.com/CookieEditor.asp

- via
ずんWiki - お気に入りTOOLS (Windows)
http://www.kawaz.jp/pukiwiki/?%A4%AA%B5%A4%A4%CB%C6%FE%A4%EATOOLS%20(Windows)

いまこのへん - NTTドコモのオープンiエリアを利用した簡易位置情報システム

- Summary
NTTドコモのオープンiエリアを利用した簡易位置情報システム

- Reference
Takubon World! - Free Software! - いまこのへん
http://homepage3.nifty.com/takubon_world/software/ImaKonohen/

IME Watcher

- Reference
Takubon World! - Free Software! - ImeWatcher
http://homepage3.nifty.com/takubon_world/software/IMEWatcher/

Takubon World! - Free Software! - ImeWatcherReduce
http://homepage3.nifty.com/takubon_world/software/IMEWatcherReduce/

- via
ずんWiki - お気に入りTOOLS (Windows)
http://www.kawaz.jp/pukiwiki/?%A4%AA%B5%A4%A4%CB%C6%FE%A4%EATOOLS%20(Windows)