万年素人からHackerへの道

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

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

    2017-05-01から1ヶ月間の記事一覧

    Blender の最初の設定

    command + , Input -> Emulate Numpadを選択。(チェック入れる)

    Kotlin ktor 文字化け

    Kotlin ktorのWebでうまく日本語が出ない・・。 call.respondText("へろわ", ContentType.Text.Html)のように書いてだめだったのでこうしたのに。 import org.jetbrains.ktor.netty.* import org.jetbrains.ktor.routing.* import org.jetbrains.ktor.applic…

    Kotlinのktorを使う

    Getting Startedを見てみる。 Getting Started · Kotlin/ktor Wiki · GitHub importがない・・・。 https://github.com/Kotlin/ktor 公式でさえ embeddedServer(Netty, 8080) { routing { get("/") { call.respondText("Hello, world!", ContentType.Text.Ht…

    Kotoline

    めんどくさいけどSDKMAN使えば楽。 JVMコマンド。 SDKMAN curl -s "https://get.sdkman.io" | bash Kotlin sdk install kotlin Java Java入れてないので・・・ sdk install java Oracle requires that you agree with the Oracle Binary Code License Agreem…

    Unity uGUIのRectTransformのpivot

    http://answers.unity3d.com/questions/1007886/how-to-set-the-new-unity-ui-rect-transform-anchor.html なので左上にするなら public static void SetPivotLeftUp(this RectTransform aRectTransform) { Vector2 vec2 = Vector2.one; vec2.Set(0.0f, 1.0f…

    Google Map iOSのClientParametersRequest failedエラー

    GoogleMapのAPIを使おうと developers.google.com ここに行って設定したのにも関わらず、、、 ClientParametersRequest failed, 7 attempts remaining (0 vs 11). Error のエラーがXcodeで出てくる。 ここ見た。 http://stackoverflow.com/questions/3205434…

    UnityでinterfaceのList

    ReorderableListを使いたいが interfaceはシリアライズにできないので http://answers.unity3d.com/questions/783456/solution-how-to-serialize-interfaces-generics-auto.html https://msdn.microsoft.com/en-us/library/system.runtime.serialization.ise…

    carとcdrはなんの略?Lisp

    CAR and CDR - Wikipedia car (short for "Contents of the Address part of Register number"), cdr ("Contents of the Decrement part of Register number"), cpr ("Contents of the Prefix part of Register number"), and ctr ("Contents of the Tag par…