万年素人からHackerへの道

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

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

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

    Carthage のandstor/file-existence-action@v1 GitHubActionで

    # Carthageの変更を見る - name: Cache Carthage uses: actions/cache@v1.1.2 id: cache-carthage with: path: Carthage key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }} restore-keys: | ${{ runner.os }}-carthage- # Carthage…

    Android Studio + Flutterでdart:ui:1: Error: Not found: dart:ui. flutter/dart:

    https://stackoverflow.com/questions/52483773/dartui1-error-not-found-dartui-flutter-dart AndroidStudioアップデートしたら、急にエラーになった。 原因はDartで実行されてるっぽい。 ちゃんとアイコンがDartの紺色のやつじゃなくて、Flutterの水色にな…

    FastlaneはGemがいい?

    there is no web session to update · Issue #15534 · fastlane/fastlane · GitHub Uninstall fastlane brew cask uninstall fastlane Install fastlane by gem sudo gem install fastlane -NV Add this lines in ~/.bash_profile export FASTLANE_PATH="/us…

    fastlane Flutter

    この記事。 [iOS] GitHub Actionsでfastlaneのmatchを使わずにAdHoc書き出しをしてからFirebase App Distributionにアップロードする | Developers.IO まずこれ brew install fastlane Detected shell config file at path '~/.config/fish/config.fish' Ple…

    Dartで桁数を簡単取得

    /// Intの拡張メソッド extension IntExtension on int { /// [digit]の桁の数字でその桁を取得 String digitNum(int digit) { return this == null ? ' ' : '${(this / digit % 10).toInt()}'; } } これつくれば、 `1234`.digitNum(1000), // => 1 `1234`.d…