万年素人からHackerへの道

万年素人がHackerになれるまで殴り書きするぜ。

  • ・資産運用おすすめ
    10万円は1000円くらい利益
    資産運用ブログ アセマネ
    • ・寄付お願いします
      YENTEN:YYzNPzdsZWqr5THWAdMrKDj7GT8ietDc2W
      BitZenny:ZfpUbVya8MWQkjjGJMjA7P9pPkqaLnwPWH
      c0ban:8KG95GXdEquNpPW8xJAJf7nn5kbimQ5wj1
      Skycoin:KMqcn7x8REwwzMHPi9fV9fbNwdofYAWKRo

    2013-02-01から1ヶ月間の記事一覧

    UnityのWait for Target FPS

    URL: http://answers.unity3d.com/questions/203238/wait-for-target-fps-35b6.htmlやたらとプロファイラに出るのはV-Syncらしい。weblioでは、 URL: http://www.weblio.jp/content/VSYNC テレビやCRTディスプレイなどのブラウン管式の表示装置において、上…

    Unityのdynamic batching

    Player Settingsで設定する。 ※Build Settingsではない http://docs.unity3d.com/Documentation/Manual/class-PlayerSettings.html

    PostprocessBuildPlayer

    ここにファイルを置けばコンパイル時にできる。 Assets/Editor/PostprocessBuildPlayerファイル名には拡張子要らない。 perlとかで書ける。

    Xcodeを6.1にしたらエラー

    The operation can’t be completed because some items had to be skipped. For each item, choose File > Get Info, make sure “Locked” is deselected, and then check the Sharing & Permissions section. When you are sure the items are unlocked and …

    Chrome拡張でconsole.log()をつかいたい

    console.log()ができないときはchromeの専用のを呼ぶらしい var log = function(str) { chrome.tabs.executeScript({code: "console.log('" + str +"');"}); }

    Chrome拡張でconsole.log()をつかいたい

    console.log()ができないときはchromeの専用のを呼ぶらしい var log = function(str) { chrome.tabs.executeScript({code: "console.log('" + str +"');"}); }

    Chrome拡張でjQueryをつかいたい

    "content_scripts": のmatchesとjsは必須。書いてないBlogも見かけるが、書かないとダメ。 おそらくjquery.xdomainajax.jsはjQuery指定のあとに書くっぽい。 { "manifest_version": 2, "content_security_policy": "script-src 'self'; object-src 'self'", …

    CoffeeScriptいれてみたMacOS X とzsh環境

    URL:https://sites.google.com/site/sappariwiki/coffeescript/coffeescript-install 参考にした。 git clone http://github.com/isaacs/nave.git ~/.nave cd ~/.nave ./nave.sh install latest npm install -g coffee-scriptzshを使っているので.zshrcに こ…

    github API

    アクセストークンを最後につければ上限来ない? https://api.github.com/users/shinriyo/following?access_token=ce660062d41d87cdbff96054433ac9633ba57068どうせ切れるのでそのまま載せた。

    GIMPのロゴの一覧

    ・日本語公式? URL: http://docs.gimp.org/ja/filters-alpha-to-logo.html → 名前一覧はあるけどサンプルがない。・非公式の個人の URL: http://www.geocities.jp/gimproject/sample/script-logo.html → 画像つき

    yieldの罠 UnityScript

    ↓このとき_flagがtrueになってもだめなことがある private function Hoge() : IEnumerator { var time : float = 10; while( 0 < timeime) { remainTime -= Time.deltaTime; yield; } yield; if (_flag) return; } _flagをwhileの中でreturn行う private fun…