2009-08-20
■[Ajax][JavaScript][グラフ]グラフ描画のWeb API
フラッシュやJavaアプレットでグラフ描画したくなかったので、"ajax グラフ"でぐぐってみたら、いまさらながらtimeplot.jsというすごいライブラリの存在を知った。
概略はこちら。
使い方とかノウハウとか下記に書いてある。
全て自分のサーバで処理させる方法は下記に書いてある。
詳細なコーディングの仕方は下記にある。
グラフで見える化を実現したいサービスがあるので、こつこつとお勉強します。
■[Web][携帯サイト]携帯サイト作りのはじめの一歩
3G端末に限定して開発すると、ハードルが低いようです。画像は全部GIFでよかったり、Shift_JISじゃなくてもEUC-JPやUTF-8のXHTMLでよかったり。
- http://ryus.co.jp/modules/d3blog/details.php?bid=234
- http://blog.asial.co.jp/373
- http://labs.unoh.net/2007/07/3g.html
ライブラリはPerlやPHPのものが多いですね。まだまだお勉強することが多いです。
#提案書書き直さなきゃ。
■[Ruby]proxy越しのgem install
事前にproxyを環境変数http_proxyに設定しておく必要があるようです。こちらを参照。
C:\Ruby>gem install rails -y INFO: `gem install -y` is now default and will be removed INFO: use --ignore-dependencies to install only the gems you list ERROR: http://gems.rubyforge.org/ does not appear to be a repository ERROR: could not find gem rails locally or in a repository C:\Ruby>set http_proxy=http://192.168.1.251:8080 C:\Ruby>gem install rails -y INFO: `gem install -y` is now default and will be removed INFO: use --ignore-dependencies to install only the gems you list Successfully installed rake-0.8.7 Successfully installed activesupport-2.3.3 Successfully installed activerecord-2.3.3 Successfully installed rack-1.0.0 Successfully installed actionpack-2.3.3 Successfully installed actionmailer-2.3.3 Successfully installed activeresource-2.3.3 Successfully installed rails-2.3.3 8 gems installed Installing ri documentation for rake-0.8.7... Installing ri documentation for activesupport-2.3.3... Installing ri documentation for activerecord-2.3.3... Installing ri documentation for rack-1.0.0... Installing ri documentation for actionpack-2.3.3... Installing ri documentation for actionmailer-2.3.3... Installing ri documentation for activeresource-2.3.3... Installing RDoc documentation for rake-0.8.7... Installing RDoc documentation for activesupport-2.3.3... Installing RDoc documentation for activerecord-2.3.3... Installing RDoc documentation for rack-1.0.0... Installing RDoc documentation for actionpack-2.3.3... Installing RDoc documentation for actionmailer-2.3.3... Installing RDoc documentation for activeresource-2.3.3... C:\Ruby>
たのしいRuby 第2版 Rubyではじめる気軽なプログラミング
- 作者: 高橋征義,後藤裕蔵
- 出版社/メーカー: ソフトバンククリエイティブ
- 発売日: 2006/08/05
- メディア: 単行本
- 購入: 11人 クリック: 326回
- この商品を含むブログ (267件) を見る
■[PHP][Windows]なんとPHP-5.3.0にphp5isapi.dllが居ないです
PHPのWindowsバイナリはここからダウンロードできますが、PHP 5.3 (5.3.0)のアーカイブにはphp5isapi.dllが含まれてないです。orz
詳しくはこちらを参照↓
http://bugs.php.net/bug.php?id=48299
私は諦めてPHP 5.2 (5.2.10)を使うことにしました。orz
#これって、リリースミスだよなー


















