万年素人からHackerへの道

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

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

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

    CommonLispのWebサーバ Wookieを使う

    Documentation | Wookie まずこれが必須みたい。 libuvのインストール brew install --HEAD libuv libuvを入れずにWookieをインストール時のエラー * (ql:quickload :wookie) To load "wookie": Load 1 ASDF system: wookie ; Loading "wookie" .. debugger …

    MastodonでのVagrant起動

    vagrant up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Checking if box 'ubuntu/trusty64' is up to date... ==> default: [vagrant-hostsupdater] Checking for host entries ==> default: [vagrant-hostsupdater] found …

    Django 1.11でのタグ使用時に勝手にエスケープされてしまう

    今までこのように買いていた。 @register.simple_tag def calc_rate(star): """ 星を計算する(評価者一覧の方) :param star: 星の数の数字 """ html = """ <p> """ star = '<span class="glyphicon glyphicon-star"></span>' * star html += star html += """ </p> """ return html しかし、いざtemplateで <div class="ratings"> {% cal</div>…

    CommonLisp Mac初める WebサーバWoo

    Lispはいろんなのがあるけど、sbclにした。 Common LispのWebサーバ「Woo」がだから。 依存系のインストール(面倒なのでbrew) brew install libev brew install sbcl パッケージ管理?QuickLispのインストール quicklisp.lisp がDLされ、それがあるフォル…

    Django 1.11で動かない

    from django.shortcuts import render ## 略 return render_to_response('mysite/home_u.html', my_context, context_instance=RequestContext(request )) これが動かなくなってた。 stackoverflow.com render_to_responseとかcontext_instanceとかいらなく…

    UnityのAnimatorのControllerを拡張

    普段無いが、 using UnityEditor; using UnityEditor.Animations; using UnityEngine; [CustomEditor(typeof(AnimatorController))] public class AnimatorControllerInspector : Editor { public override void OnInspectorGUI() { } } これでいける。

    Xamarinで実機転送遅い時

    iOS 9.0, Xamarin Studio, "waiting for debugger to connect..." - Stack Overflow 実はiPhone設定

    Xamarinのフォント

    qiita.com https://forums.xamarin.com/discussion/30207/whats-the-deal-with-xamarin-forms-label-font-is-obsolete https://developer.xamarin.com/guides/xamarin-forms/user-interface/text/fonts/

    0件の配列でLinqのLast()ではエラー

    int[] hoge = {}; Debug.Log(hoge.Length); hoge.Last (); InvalidOperationException: Operation is not valid due to the current state of the object System.Linq.Enumerable.Last[Int32] (IEnumerable`1 source)

    XamlFilePathAttribute' does not exist in the namespaceのエラー

    XamlFilePathAttribute' does not exist in the namespace のエラーが出た。 https://forums.xamarin.com/discussion/86352/i-keep-getting-xamlfilepathattribute-class-not-found-error-when-modifying-xaml-files を見る。 Cleanをする、その後でbinとobj…

    fish shellでtkも動くようにRubyを入れる

    /Users/shinriyo/.rbenv/versions/2.4.1/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- tk (LoadError) from /Users/shinriyo/.rbenv/versions/2.4.1/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb…

    fishとrbenvとのエラー

    <W> fish: An error occurred while redirecting file '/Users/shinriyo/.rbenv/version' open: No such file or directory rbenv global 2.4.1 のコマンド。 それで消えた。</w>

    Xamarin Realm C# Manageが非推奨

    // Update and persist objects with a thread-safe transaction realm.Write(() => { realm.Add(new Dog { Name = "Rex", Age = 1 }); }); https://realm.io/docs/xamarin/latest/#class-subsets