2009-05-01から1ヶ月間の記事一覧

調査メモ2

下記のエントリー経由。 Lingr and Comet - 技術解説編:Kenn's Clairvoyance - CNET Japan Cometについて調べたことのメモを書き残しておきます。 Comet HTTPのセッションをつなぎっ放しで、疑似的にサーバ・プッシュを実装する手法 Dojo作者のAlexRussell氏…

『Release It!』からの引用

What if I can't make the initial connection? What if it takes ten minutes to make the connection? What if I can make the connection and then it gets disconnected? What if I can make the connection and I just can't get any response from the…

調査メモ1

わけあって、BlazeDSについて調査をしています。こちらのサンプルを動かしてみたら、かなり衝撃を受けてしまい、一気に興味が沸いてきました。RailsやFacebookAppとからめながら、こちらの方も触っていきたいと思っています。 こちらの記事のプレゼン資料が…

config/routes.rbの役割

前回の続き。FacebookApp本で、config/routes.rbを以下のように編集せよと書いてありました。 ActionController::Routing::Routes.draw do |map| map.root :controller=>"invitations", :action=>"new" map.resources :invitations end これがどういうことな…

外部サーバーからローカルへリダイレクトさせる方法

「Developing Facebook Platform Applications with Rails」に掲載されている事例を参考にしながら、気づいた点を随時メモしていきたいと思います。 ローカルマシンでFacebookアプリをRailsで構築して、それをFacebook上で動かすためには、ローカルマシンをInt…