memo.xight.org

日々のメモ

おむつとビール

Summary

「おむつを買った人はビールを買う傾向がある」という米国におけるマーケットバスケット分析の事例.
「風が吹けば桶屋が儲かる」が実際のマーケティングで起こりうるということ.

そのような事実は無かったとする意見もあるようだ.

Reference

@IT情報マネジメント用語事典 - おむつとビール
http://www.atmarkit.co.jp/aig/04biz/diapersandbeer.html

PHP とデータベースに関する5つの問題と解決方法

Summary

1. 直接DBにアクセスするな.
   PEARのDBモジュール,又はPDOのクラスを利用しろ.
2. オートインクリメントを使え.
3. データベースを多重化するな.
4. リレーションを使え.
5. クエリを減らせ.

Reference

IBM - Five common PHP database problems
http://www-128.ibm.com/developerworks/opensource/library/os-php-dbmistake/

IBM - PHP データベースに共通の 5 つの問題
http://www-06.ibm.com/jp/developerworks/opensource/060915/j_os-php-dbmistake.shtml

via

GIGAZINE - 2006-08-04 - PHPとデータベースに関する5つの問題、とその解決法
http://gigazine.net/index.php?/news/comments/20060804_php_database_problems/

JavaScriptでブラウザの表示領域のサイズを取得する方法

Summary

ブラウザ 表示モード 表示領域の幅を取得するプロパティ 表示領域の高さを取得するプロパティ
IE 6 標準 document.documentElement.clientWidth document.documentElement.clientHeight
IE 6 互換 document.body.clientWidth document.body.clientHeight
FireFox 1.5 標準 document.documentElement.clientWidth document.documentElement.clientHeight
FireFox 1.5 互換 document.body.clientWidth document.body.clientHeight
Opera 9 標準 document.body.clientWidth document.body.clientHeight
Opera 9 互換 document.body.clientWidth document.body.clientHeight

FireFox,Operaのwindow.innerWidth,window.innerHeightでは,スクロールバー自体も含んだサイズとなる.
スクロールバーが表示されている場合には,表示領域のサイズより+10数px大きいサイズになる.

Reference

Enjoy×Study - ブラウザの表示領域のサイズを取得する方法
http://d.hatena.ne.jp/onozaty/20060802/p1

Enjoy×Study - ブラウザのスクロールバーで隠れている領域を含むサイズを取得する方法
http://d.hatena.ne.jp/onozaty/20060803/p1