2013-01-01から1年間の記事一覧

github pagesで自分のホームページを無料で公開

作ってみました。 http://peroon.github.com/ 方法は、your_username.github.comというリポジトリで githubにpushするだけ。 静的なページなら、サーバーを借りる必要もなく github pagesで公開するのが一番良さそう。

アイドルマスター ミリオンライブ!をPCでプレイする方法

アイドルマスター ミリオンライブ!が GREEのソーシャルゲームとしてサービスインしました。 アイドルマスターは好きなゲームなので、 このゲームもプレイしてみました。 公式ページ http://www.bandainamcogames.co.jp/cs/list/idolmaster/million_live/ 画…

はてなブログではじめるMarkdown記法

はてなブログではMarkdown記法でブログを書くことができます。 MacのMouというエディタのMarkdownサンプルをはてなブログに書いてみて、 使えるMarkdownを確認してみましょう。 下記を見れば、どんな表現、どんな書き方ができるかがわかります。 テーブル、…

Youtube 広告 うざい 消す

Google Chromeに Adblock Plusの開発版 を入れることで可能です。 chrome://flags を開いて 開発版Extensionを有効にし 有名なAdblock Plusの開発版を以下のURLからダウンロードします。 https://adblockplus.org/en/development-builds#installation この画…

Unity WebPlayerとブラウザ内UIの連携

WebPlayer外のボタンUIを押して、Unity内に爆発インスタンスを作成できる。 逆に、Unity内からHTML内のJSを呼ぶこともできる。 https://github.com/peroon/unity_webplayer_browser_connection //Unity内のJSはこんな感じ var detonator_prefab:GameObject; …

Unity WebPlayer HTML decorate version

https://github.com/peroon/unity_webplayer_frame I added background-image, and tweet-button. I used CSS, jQuery, jQuery-host. How to make background-image (need ImageMagick) $convert -size 1200x750 plasma:green-yellow -quality 80% 1200x750.…

realforce with mac

application key to command_R command_R to command_R(KANA/EISUU toggle)keyremap4macbook pckeyboardhack

伊勢谷友介

ImageMagickで仮画像を文字付きで大量生成

1枚作成するコマンドは、 convert -size 100x100 xc:white -pointsize 10 -draw "text 10,10 xxxtextxxx" output.pngRubyで回すと、 100.times do |i| filename = i.to_s.rjust(4,'0') + '.png' command = "convert -size 100x100 xc:yellow -pointsize 30 -…