万年素人からHackerへの道

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

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

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

    文字フォーマット cocos2d-x(バージョン:cocos2d-2.1rc0-x-2.1.3)

    フォーマットと連結と CCString* tileMapStr = CCString::createWithFormat("TileMap_%d_%d", 1, 1); tileMapStr->m_sString.append(".tmx"); intをCCStringに .tmxを最後に連結。 m_sStringを使う。 CCString* tileMapStr = CCString::createWithFormat("Ti…

    cocos2d-xのバージョン確認

    他人のgithubからダウンロードしたりしていて、使っているcocos2d-xのバージョンがわからない時の確認方法。 #include "cocos2d.h" の記述されているところで、適当に右クリックして 「Jump to Definition」を選択。すると、 「cocos2d.h」ファイルが見られ…

    cocos2d-xのエラー

    SpringBoard failed to launch application with error: -3のエラーhttp://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7command+Shift+Hとかで直る? あとはキャッシュクリア

    Node.jsの設定でN/A version is not installed yet

    ターミナルの起動時に N/A version is not installed yetのエラーが以前から出ていた。おそらく、 http://qiita.com/dribble13/items/e895208727c85ef9bc52 からそのままコピペしていた。 .zshrcに記載していた nvm use defaultが原因のようだ。 ※僕はzsh使…

    Django ImportError: cannot import name execute_manager

    execute_managerは1.4から変わったっぽい。 URL: https://docs.djangoproject.com/en/dev/releases/1.4/ As such, execute_manager is also deprecated; execute_from_command_line can be used instead. なのでexecute_from_command_lineをつかう。単に置き…

    やすいサーバ

    http://www.cheap-server.net/

    Titanium

    [ERROR] : Build process exited with code 1 [ERROR] : Project failed to build after 1s 457ms [ERROR] Application Installer abnormal process termination. Process exit value was 1 http://support.titanium-mobile.jp/questions/3381 これでなおる…

    Android Java 正規表現

    IllegalStateException when no 'matching' method is calledのエラーURL: http://stackoverflow.com/questions/12911504/rationale-for-matcher-throwing-illegalstateexception-when-no-matching-method-i Matcher matcher = pattern.matcher(originalStr)…

    Android Studioでのjarの参照

    http://rakuishi.com/archives/5768http://stackoverflow.com/questions/20241765/adding-external-library-in-android-studio-0-3-6Eclipseよりやりにくい?Project Structure「command+;」 > Modules > Your module name > Dependencies and click on the …

    Error generating R.java from manifest Titanium

    TitaniumでAndroidのコンパイルでエラー Error generating R.java from manifesthttp://blog.digital-squad.net/article/367087767.html http://d.hatena.ne.jp/siso9to/20110404/1301933484

    Unityのアイコン

    Unityのアイコンはバージョンごとに違ったりせず同じ。別バージョンを入れてたら不便。http://mhmmd.org/ 記事の直リンURLは http://mhmmd.org/windows-icons-for-unity-3-5-and-4-0/

    Titanium

    ・tiapp.xml <modules> <module device="iphone" version="1.5.0">ti.admob</module> </modules> エラー Attribue 'device' is not allowed to appear in element 'module' <modules> <module platform="iphone" version="1.5.0">ti.admob</module> </modules> にしたらOKっぽい。