万年素人からHackerへの道

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

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

    fish shell

    Fishシェルをデフォルトにする

    chsh -s /usr/local/bin/fish を sudo vi /etc/shells で開いて追加して再起動。 # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/bash /bin/csh /bin/dash /bin/ksh /b…

    fvmで設定していることFishシェル

    .config/fish/config.fish set -x PATH $HOME/development/flutter_apps/flutter/bin/cache/dart-sdk/bin $PATH # fvm set -x PATH $HOME/.pub-cache/bin $PATH AndroidStudioでは /Users/shinriyo/fvm/versions/1.20.0`みたいにで設定しておく。 /Users/shi…

    Fishのパスをお気に入り

    github.com

    自作プラグイン作って追加しようとしたら以下のエラー > fisher add (pwd) Installing 2 plugin/s ! Fetch add github.com/fisherman/add ! There was an error installing add or more plugin/s. Try using a namespace before the plugin name: owner/add …

    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>

    fish-shell カラーコード とか vimプラグイン

    色替え set_color green 色見本 fish doesn't understand the color white · Issue #3176 · fish-shell/fish-shell · GitHub 元の色 set_color normal vim用シンタックスハイライト fish-syntax - fish syntax based on sh : vim online

    fishでhistoryで数字出す

    history | nl | less これで出る。 https://github.com/fish-shell/fish-shell/issues/2200 標準コマンドをオーバーライド .config/fish/config.fishをいじる。 function history builtin history | nl | less end builtinを書くのはデフォルトのhistoryコマ…