タカラトミーの「夜空におえかき」というのがキニナルのです。
ものとしては、いろんな色が出るライトのようです。
これと専用の無料のiphoneアプリを使って簡単におしゃれな光で描いた絵の写真が撮れてしまうようです。
専用のアプリでなくても長時間露出できれば絵はできるとは思いますが、アニメーションなども簡単にできるようです。
詳しくは、以下を。
http://www.takaratomy-arts.co.jp/specials/oekaki/
ぜひandoridのアプリも出してもらいもんです。
filename = "今後の予定.xls".encode("cp932")
send_file(f, :filename => filename)
filename = ERB::Util.url_encode("今後の予定.xls")
send_file(f, :filename => filename)
http://kiita-it-blog.seesaa.net/article/253744186.html
# -*- encoding: utf-8 -*-
class BlogVersion < Version
  def method_missing(action)
    unless self.reify.attributes.keys.index(action.to_s).nil?
      self.reify[action]
    else
      super
    end
  end
end
# -*- encoding: utf-8 -*- class Blog < ActiveRecord::Base has_many :blog_versions, :foreign_key => "item_id" end
class BlogVersionController < ApplicationController
  active_scaffold :blog_versions do |config|
    config.label = "変更履歴"
    config.actions.exclude :create, :update, :delete, :search
    config.columns = [:entry,
                      :auther,
                      :updated_at]
  end
end
# -*- encoding: utf-8 -*-
class BlogController < ApplicationController
  active_scaffold :blogs do |config|
    config.label = "ブログエントリ"
    config.columns = [:entry,
                      :auther,
                      :created_at,
                      :updated_at]
    config.nested.add_link(:blog_versions, :label => '変更履歴')
  end
end