ショートカット - Shortcut

OSX/Macショートカットメモ OS全般 Spotlight Search Command + Space 画面ロック Control + Command + q 編集 コピー Command + c ペースト Command + v 書式なしペースト Command + Option + Shift + v orz もとに戻す/Undo Command + z もとに戻すを戻す/Redo Command + Shift + z 画面キャプチャ 矩形画面キャプチャ Command + Shift + 4

June 20, 2021 · 1 min · 48 words · 0xuki

github 備忘・対処メモ

.gitignoreが効かない キャッシュ削除による解決を試みます。 git rm -r --cached . git push がreject ローカルが正/originであることを確認して、強制的にpushします。 git push -f origin master git pull error マージエラーが発生 error: Your local changes to the following files would be overwritten by merge: test.py Please commit your changes or stash them before you merge. Aborting Solve it by overwriting 上書きして解決する場合 pull元が正しい前提で上書きを行います。 git fetch origin master git reset --hard origin/master git pull origin/master sshで2つのgithubアカウントを管理 ~/.ssh/configに2つのアカウントを記載 2つ目をサブに設定 Host github github.com HostName github.com IdentityFile ~/.ssh/rsa-git User git Host github github.com.sub HostName github.com IdentityFile ~/.ssh/rsa-git-sub User git remote URLを以下に設定 ...

June 6, 2021 · 1 min · 168 words · 0xuki

IUT and abc

一般向けIUT・abc予想について。 IUT・abc予想 足し算と掛け算に関わる関係を明らかにする理論と言われます。 また、強いabc予想のもとでは、フェルマーの最終定理が背理法により簡単に導出されます。 ABC予想のよくある間違い https://tsujimotter.hatenablog.com/entry/misunderstanding-of-abc-conjecture ブログ/Web 新一の「心の一票」 - 楽天ブログ https://plaza.rakuten.co.jp/shinichi0329/ 宇宙際タイヒュミラ−理論への誘(いざな)い http://www.kurims.kyoto-u.ac.jp/~motizuki/Uchuusai%20Taihimyuuraa%20riron%20he%20no%20izanai%20(lecture%20note%20ban).pdf 参考書籍 宇宙と宇宙をつなぐ数学 IUT理論の衝撃 (角川学芸出版単行本) https://www.amazon.co.jp/dp/B07QVHZJL8/ref=cm_sw_em_r_mt_dp_P0WNTWA4ZG3RZJ4SE7JB 参考動画 IUT abc Conjecture and New Mathematics - Prof. Fumiharu Kato, Oct 7, 2017 (with English subtitles) abc予想の主張を理解する

February 20, 2021 · 1 min · 36 words · 0xuki

ta-libのインストール

ta-lib Ta-Libはテクニカル分析ライブラリです。 テクニカル教の信者にとってはインストール必須のツールになります。 https://ta-lib.org/ MacOS/OSX ta-libのインストール OSXにインストールする場合はbrewを使うと簡単です。 brew install ta-lib pip3 install TA-Lib Azure ta-libのインストール メモリは1G以上で実行しないとエラーになりました。 ta-libをインストールする際のみ1G以上に変更しましょう。 wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz tar -zxvf ta-lib-0.4.0-src.tar.gz cd ta-lib ./configure --prefix=/usr make sudo make install cd ../ rm -rf ta-lib-0.4.0-src.tar.gz rm -rf ta-lib pip3 install TA-Lib 参考動画

May 1, 2020 · 1 min · 42 words · 0xuki

How to Install Freqtrade: Step-by-Step Guide

📦 Prerequisite: Python Virtual Environment sudo apt-get install python3-venv # Install Python virtual environment 🛠️ Installation Process Clone the Repository 📥 git clone https://github.com/freqtrade/freqtrade.git Enter Directory & Switch Branch 📂 cd freqtrade git checkout develop # Switch to develop branch Run Installation Script ⚙️ ./setup.sh --install ⏳ Important Notes The TA-Lib installation might take 20+ minutes on low-spec systems (tested on Azure 1CPU/1GB RAM) ☁️⏱️ Don’t interrupt the process - just let it run! ☕️ ✅ Completion You’ll see success messages when fully installed! 🎉 Check with freqtrade --version to verify installation ✔️ ...

April 1, 2020 · 1 min · 127 words · 0xuki

書籍 Kaggleで勝つデータ分析

書籍 Kaggleで勝つデータ分析 門脇 大輔 良い点:網羅的、リファレンス多数 注意点:精読が必要、中級者向け https://www.amazon.co.jp/dp/B07YTDBC3Z/ 概要 書籍「Kaggleで勝つデータ分析」は、データサイエンスコンペティションサイトKaggleで上位入賞を果たしている著者が、勝つためのデータ分析の技術とノウハウを解説した書籍です。 内容 本書では、データ分析の基礎知識から、Kaggleで実際に使用される機械学習モデルや前処理の手法、コンペティションに臨むための戦略まで、幅広く解説されています。 特徴 コード例を豊富に掲載 初心者でも理解しやすい 実践的な内容 評価 本書は、Kaggleで上位入賞を目指すデータサイエンティストにとって、必読の一冊。

January 3, 2020 · 1 min · 17 words · 0xuki