Posts tagged DB

[WordPress] カスタマイズした wpdb クラスを使用する方法

2

WordPress で DB にアクセスするには wpdb クラスを使います。グローバル変数 $wpdb でアクセスすることが可能です。
この辺のことは以下のエントリをご参考ください。
WordPress の設定を使ってデータベースにアクセスする方法

しかし、WordPress をカスタマイズする際にプラグインやテーマだけではどうしても出来ずに DB とのやり取りをカスタマイズしたい場合が出て来た時に、wpdb クラスを直接カスタマイズするのはバージョンアップの時などを考えるとやりたくありません。
(続きを読む…)

[iPhone 開発メモ] 警告画面の表示

3

iPhone アプリで警告画面を表示させる方法です。

警告画面を表示する

UIAlertView *alert = [[UIAlertView alloc]
    initWithTitle:@"Alert Test"
    message:@"Message!!\nThis is Alert Test."
    delegate:self
    cancelButtonTitle:@"Cancel"
    otherButtonTitles:@"One", @"Two", nil];
[alert show];
[alert release];

(続きを読む…)

Lenovo の IdeaPad S10e 購入

0

奥さん用に Lenovo の IdeaPad S10e を購入しました。もう5年も同じ ThinkPad を使っていたのでそろそろいい加減買い替えようと前々から話していました。用途としてはブラウジングとメール、iTunes で音楽を聴くくらいしかしないのでネットブックでいいんじゃないかとアドバイスしていました。本人は色がかわいければそれでいいというので、白い EePC とかがいいかなと思っていたのですが、先日ニュースでレノボがネットブックを出すことを知り、Mac を購入するまでは ThinkPad ファンだった私としてはすごい気になっていました。
(続きを読む…)

PHP の flock 関数を勘違いしていました

1

PHP の flock 関数を数年ぶりに使用したのですが、すごい勘違いをしていました。DB を使用するようになってからいうものめっきりファイルロックなど使わなくなっていたので。。。(言い訳です^^)
(続きを読む…)

iPod touch 購入した

0

iPod touch 8GB を購入しました。

(続きを読む…)

Canon MP470 に Bluetooth で接続

1

私の使用しているプリンタ Canon MP470 は別売りの Bluetooth ユニットを付ければ Bluetooth で接続できます。しかし純正の Bluetooth ユニットはバカみたいに高い。純正品「BU-20」は7000円〜8000円もします。プリンタを実質 6,000円で購入しているのでプリンタ本体より高いユニットなんて買う気になれません。
(続きを読む…)

10月に読んだ本

0

10月は14冊読みました。ちょっと少なめでした。おすすめは「竹中式マトリクス勉強法」と「ビジネスマンのための「発見力」養成講座」です。
(続きを読む…)

Postfix でバーチャルドメインの設定メモ

3

Postfix で syuhari.jp というドメインの設定が終了していることを前提にします。
追加するドメインを example.com とします。

Postfix は mydestination に設定したドメイン宛のメールをユーザのメールボックスに配送します。ユーザ名がかぶっていない場合は mydestination に example.com を追加するだけで OK です。
しかし、hoge@example.com と hoge@syuhari.jp というメールを別々のユーザに配送したい場合はこの設定ではできません。
(続きを読む…)

Mac に PostgreSQL をインストール

1

Mac に MacPorts で PostgreSQL をインストールしてみました。

まず PostgreSQL があるか調べてみる。PostgreSQL8.3 が最新のようです。

$ port search postgresql
postgresql7                    databases/postgresql7 7.4.21       The most advanced open-source database available anywhere
postgresql80                   databases/postgresql80 8.0.17       The most advanced open-source database available anywhere
postgresql80-doc               databases/postgresql80-doc 8.0.17       Documentation for the postgresql database
postgresql80-server            databases/postgresql80-server 8.0.17       run postgresql80 as server
postgresql81                   databases/postgresql81 8.1.13       The most advanced open-source database available anywhere
postgresql81-doc               databases/postgresql81-doc 8.1.13       Documentation for the postgresql database
postgresql81-server            databases/postgresql81-server 8.1.13       run postgresql81 as server
postgresql82                   databases/postgresql82 8.2.9        The most advanced open-source database available anywhere
postgresql82-doc               databases/postgresql82-doc 8.2.9        Documentation for the postgresql database
postgresql82-server            databases/postgresql82-server 8.2.9        run postgresql82 as server
postgresql83                   databases/postgresql83 8.3.3        The most advanced open-source database available anywhere.
postgresql83-doc               databases/postgresql83-doc 8.3.3        Documentation for the postgresql database
postgresql83-server            databases/postgresql83-server 8.3.3        run postgresql83 as server
postgresql_autodoc             databases/postgresql_autodoc 1.25         Automatic documentation generator for postgresql databases
caml-postgresql                devel/caml-postgresql 1.8.2        OCaml-interface to the PostgreSQL-database
postgresql-jdbc                java/postgresql-jdbc 8.0-311      PostgreSQL JDBC driver
py-postgresql-exception        python/py-postgresql-exception 0.2          exceptions for the py-postgresql modules
py-postgresql-greentrunk       python/py-postgresql-greentrunk 0.1          greentrunk interface to postgresql
py-postgresql-layout           python/py-postgresql-layout 0.3          layout for the py-postgresql modules
py-postgresql-pqueue           python/py-postgresql-pqueue 0.1          pure python implementation of the pq protocol
py-postgresql-proboscis        python/py-postgresql-proboscis 0.1          postgresql database connector in pure python

(続きを読む…)

2008年9月に読んだ本

0

9月は若干忙しかったため少し少なめの16冊、読みました。

おすすめは「本を読む本」です。色々なところでおすすめされている本ですね。本の読み方という日本ではあまり考えないような分野かもしれません。速読とは違う、身になるための本の読み方という感じでしょうか。アメリカの大学などは読まないといけない本が短い期間でかなりの数あるため、自然と身につけているようなところもあるようです。
(続きを読む…)

Go to Top