2013-09-18から1日間の記事一覧

Facebookのイイネ数を取得する

WEB

APIはふたつあるみたい。 その1 リクエスト https://api.facebook.com/method/fql.query?query=SELECT total_count FROM link_stat WHERE url="http://google.com" レスポンス <fql_query_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" list="true"> <link_stat> <total_count>7158803</total_count></link_stat></fql_query_response>

クラス拡張ミックスイン

メタプグラミングRubyの221ページにクラス拡張ミックスインというイディオムについての解説があったので写経してみた。 この『クラス拡張ミックスイン』は、モジュールをincludeした時にインスタンスメソッドとクラスメソッドを両方取り込みたい時に使うもの…