万年素人からHackerへの道

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

2020-01-01から1年間の記事一覧

Apple Watch(watchOS)のためにCarthage入れ

https://github.com/calda/WatchKitTimePicker これ使いたいけど、CocoaPodではなくてCarthage(カルタゴ) brew install carthage carthage bootstrap --platform watchOS してから carthage update --platform watchOS

Python - Jupyter NotebookをMac M1 搭載機にインストールする

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...

Activate Dart Devtools... って何者?

brew install nodeでの結果

npm

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…

LINEで着信できない時

「人名 called you, but you couldnt answer the call as you have disabled "Allow voice calls."」って出た時の対策。 ここの設定をONにする。

ソフトバンクでナンバーポータビリティ

www.softbank.jp MNP(ナンバーポータビリティ)の転出手続きに必要な書類 MNP・・・はMobile Number Portabilityの略

VSCodeのM1版

Visual Studio Code Insiders VSCodeのM1版 ここから落とす

AndroidのAndroid license status unknown.ライセンスで怒られるとき

flutter doctor --android-licenses fvm flutter doctor --android-licenses コマンドをする qiita.com

iPhoneのテザリング

iOS

テザリング(tethering)の英語での設定は「Personal Hotspot」

Music(iTune)の認証でのエラー

https://support.apple.com/ja-jp/HT201251#authorize

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…

FishのApple Silicon対応

https://fishshell.com/apple-silicon.html 対応されてる

FlutterでSimulatorが認識されないとき

flutter doctor を使い確認する # sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

VSCodeでコンソールをクリアするショートカット

Command + Shift + Pとかで開いて https://code.visualstudio.com/docs/getstarted/keybindings#_advanced-customization ショートカット command + Kで登録した。Xcodeと同じだからね。

ATOKでの多いメニューの削り方

ATOKはいらないメニュー多過ぎ。 ここを選び ATOK ここの左下「使用するモードの選択」 ATOK いらないのをチェック外す

変なボリュームが残っているMac

クリーンインストールしたにも関わらず Other Volumesがやたらとでかい!! Other Volumes 調べた。 discussions.apple.com "show All Devices"で全てのボリュームを見るようにする Container-disk1を右クリックしUnmountする でもできなかった。 discussion…

AndroidでのSOFTBANKの設定

weblife-balance.com 他社が販売するSIMロック解除済み製品をソフトバンクで利用する | スマートフォン・携帯電話 | ソフトバンク

楽天モバイル iPhone 12テザリング設定

インターネット共有がない。 以下の設定が必要。 モバイル通信→副回線→モバイル通信データネットワーク そして、IDとパスワードは不要で、APNのみ rakuten.jp を入れる。

クリップボードにコピーできないバグ

macOSのこれはずし

DMM英会話で現在時刻に一番近いので検索フォームに入れる

DMM英会話で現在時刻に一番近いので検索フォームでの時刻の検索条件にする 15分刻みの参考 qiita.com // 2桁 var get2Digit = function(number) { return ("0" + number).slice(-2); } var currentMinuites = new Date().getMinutes(); var additional = cur…

Pixel 3aでのeSIM追加時のエラー

eSIM追加時のエラー このデバイスのEID番号が必要になることがあります。 SIM を入手して Pixel スマートフォンに追加する - Pixel Phone ヘルプ Pixel 3a: Verizon サービスまたは日本で購入したスマートフォンは eSIM に対応していません

ソフトバンクのiPhoneのSIM解除

www.softbank.jp Webではなく本体から? iPhone 11

freeeの月合計

freeeの月合計

英語文法資料

英語文法資料

英語のスペル比較

ここがいい wikidiff.com trialed vs trialledなど。 wikidiff.com

生成 Deep Learning ――絵を描き、物語や音楽を作り、ゲームをプレイする

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自体入れた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で開く

忘れてた。 AndroidStudioをstudioで開く qiita.com Tools->Create Command-line Launcherでできる。

firebase_storageのいつの間にか消えた

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.…

Flutter Firebaseでログインが自動にされてしまう

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>…