万年素人からHackerへの道

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

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

    GAE参考

    ・基本にしたい
    http://code.google.com/appengine/docs/python/gettingstarted/handlingforms.html

    ・ドキュメント
    http://code.google.com/intl/ja/appengine/docs/python/gettingstarted/usingdatastore.html

    UnityのファルをGAEで呼びたい。

    handlers:
    - url: /.* 
      script: example.py
    
    - url: /unity
      static_dir: WebPlayer
    
    - url: /unity/(.*)
      static_files: WebPlayer/\1
      upload: WebPlayer/.*
    
    • WebPlayer.html
    if (typeof unityObject != "undefined") {
      unityObject.embedUnity("unityPlayer", "/unity/WebPlayer.unity3d"    , 600, 450);

    FacebookのXFBMLタグ死んでる

    • もう使えない
    <fb:profile-pic uid="{{friend.id}}" linked="true" width="24"     height="24">
    </fb:profile-pic>
    

    FacebookアプリとUnity連携

    参考:http://www.kirishikistudios.com/?p=13

    GetPlayerNameFromFacebook関数をUnityに作って使ってる。

    • サイト内誤字注意
    GetPlayerNameFro'n'Facebook

    Facebookアプリ作成時のムカつきごと

    Basic InfoのApp Domain:へは「http://」は付けない。
    入れると枠内から入力した文字が勝手に消えてしまう。
    せめてhttp://は不要とか言うべき!FacebookのUI設計ミス。

    API Error Code: 191
    API Error Description: The specified URL is not owned by the application
    Error Message: redirect_uri is not owned by the application.


    このエラーうざい!

    • 解決

    こんなところにURL入れる設定がある。

    ソーシャルゲームのこつ

    ソーシャルゲームは初めて6割はやらない

    ログインしないとマイナス要素
    →続けるしかない

    ログインするとガチャなど

    GAE plugin
    http://code.google.com/eclipse/docs/install-eclipse-3.6.html