2020-01-01から1年間の記事一覧
https://github.com/calda/WatchKitTimePicker これ使いたいけど、CocoaPodではなくてCarthage(カルタゴ) brew install carthage carthage bootstrap --platform watchOS してから carthage update --platform watchOS
degitalization.hatenablog.jp Pip3で入れるのがいいっぽい。 sudo -H pip3 install jupyter したんだが、 ERROR: Failed building wheel for argon2-cffi 結論 まずこれ、 sudo -H pip3 install --upgrade pip setuptools そしてこれ sudo -H pip3 install …
Activate Dart Devtools... って何者?
brew install node それでこれでた。 Updating Homebrew... ==> Auto-updated Homebrew! Updated 1 tap (homebrew/core). ==> Updated Formulae Updated 1 formula. ==> Downloading https://homebrew.bintray.com/bottles/icu4c-67.1.big_sur.bottle.tar.gz…
「人名 called you, but you couldnt answer the call as you have disabled "Allow voice calls."」って出た時の対策。 ここの設定をONにする。
www.softbank.jp MNP(ナンバーポータビリティ)の転出手続きに必要な書類 MNP・・・はMobile Number Portabilityの略
Visual Studio Code Insiders VSCodeのM1版 ここから落とす
flutter doctor --android-licenses fvm flutter doctor --android-licenses コマンドをする qiita.com
テザリング(tethering)の英語での設定は「Personal Hotspot」
https://support.apple.com/ja-jp/HT201251#authorize
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…
https://fishshell.com/apple-silicon.html 対応されてる
flutter doctor を使い確認する # sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
Command + Shift + Pとかで開いて https://code.visualstudio.com/docs/getstarted/keybindings#_advanced-customization ショートカット command + Kで登録した。Xcodeと同じだからね。
ATOKはいらないメニュー多過ぎ。 ここを選び ATOK ここの左下「使用するモードの選択」 ATOK いらないのをチェック外す
クリーンインストールしたにも関わらず Other Volumesがやたらとでかい!! Other Volumes 調べた。 discussions.apple.com "show All Devices"で全てのボリュームを見るようにする Container-disk1を右クリックしUnmountする でもできなかった。 discussion…
weblife-balance.com 他社が販売するSIMロック解除済み製品をソフトバンクで利用する | スマートフォン・携帯電話 | ソフトバンク
インターネット共有がない。 以下の設定が必要。 モバイル通信→副回線→モバイル通信データネットワーク そして、IDとパスワードは不要で、APNのみ rakuten.jp を入れる。
macOSのこれはずし
DMM英会話で現在時刻に一番近いので検索フォームでの時刻の検索条件にする 15分刻みの参考 qiita.com // 2桁 var get2Digit = function(number) { return ("0" + number).slice(-2); } var currentMinuites = new Date().getMinutes(); var additional = cur…
eSIM追加時のエラー このデバイスのEID番号が必要になることがあります。 SIM を入手して Pixel スマートフォンに追加する - Pixel Phone ヘルプ Pixel 3a: Verizon サービスまたは日本で購入したスマートフォンは eSIM に対応していません
www.softbank.jp Webではなく本体から? iPhone 11
freeeの月合計
英語文法資料
ここがいい wikidiff.com trialed vs trialledなど。 wikidiff.com
github.com git clone -b tensorflow_2 https://github.com/davidADSP/GDL_code 生成 Deep Learning ―絵を描き、物語や音楽を作り、ゲームをプレイする作者:David Foster発売日: 2020/10/05メディア: 単行本(ソフトカバー) Anaconda | Individual Edition …
Flutter自体入れたFLUTTER_SDK_PATHを指定する ~/developmentにflutterを入れたと仮定。 export FLUTTER_SDK_PATH="$PATH":"$HOME/development/flutter" Flutterコマンド自身 export PATH="$PATH":"$FLUTTER_SDK_PATH/bin" fvmコマンド export PATH="$PATH":…
忘れてた。 AndroidStudioをstudioで開く qiita.com Tools->Create Command-line Launcherでできる。
firebase_storage: ^4.0.1をfirebase_storage: ^5.0.1にして final metaData = StorageMetadata(contentType: 'image/jpg'); final task = ref.putFile(imageFile, metaData); final onComplete = await task.onComplete; final url = await onComplete.ref.…
firebase authentication - Make flutter app force a user to choose an account with FirebaseAuth and GoogleSignInAuthentication - Stack Overflow /// サインアウト Future<void> signOut() async { final googleSignIn = GoogleSignIn(); // これをしないと</void>…