デバイスマネージャーで、「HID準拠タッチスクリーン」を無効にする。
▼Windowsのタッチスクリーンが勝手に反応する「ゴーストタッチ」。その原因と対処法 | ライフハッカー・ジャパン
https://www.lifehacker.jp/article/2303-ghost-touches-windows-touchscreen-computer/
デバイスマネージャーで、「HID準拠タッチスクリーン」を無効にする。
▼Windowsのタッチスクリーンが勝手に反応する「ゴーストタッチ」。その原因と対処法 | ライフハッカー・ジャパン
https://www.lifehacker.jp/article/2303-ghost-touches-windows-touchscreen-computer/
% brew update% brew install pyenv# pyenvのpath読み込みとpyenvのcompletionを有効化するようにzsh起動時の設定をする。% echo 'eval "$(pyenv init --path)"' >> ~/.zprofile% echo 'eval "$(pyenv init -)"' >> ~/.zshrc
% vim ~/.zshrc~/.zshrc# 最終行に追加する。alias brew='env PATH="${PATH//$(pyenv root)\/shims:/}" brew'
% source ~/.zprofile% source ~/.zsh
% pyenv install --list
% pyenv install 2.7.18% pyenv install 3.10.2
% pyenv global 2.7.18 3.10.2 # 2系を先に書くこと。
% python --versionPython 2.7.18% python3 --versionPython 3.10.2
% brew update && brew upgrade pyenv
% pyenv --versionpyenv 2.3.4% brew update && brew upgrade% pyenv --versionpyenv 2.3.16
インストールコマンド% pyenv install 2.7.18% pyenv global 2.7.18
python /Users/<UserName>/.pyenv/shims/python // python 2.7.18python2 /Users/<UserName>/.pyenv/shims/python2 // python 2.7.18python3 /usr/bin/python3 // python 3.9.6
追加インストールコマンドpyenv install 3.11.2pyenv global 2.7.18 3.11.2
python /Users/<UserName>/.pyenv/shims/python // python 2.7.18python2 /Users/<UserName>/.pyenv/shims/python2 // python 2.7.18python3 /Users/<UserName>/.pyenv/shims/python3 // python 3.11.2
$ brew install pyenv
export PYENV_ROOT="$HOME/.pyenv"export PATH="$PYENV_ROOT/bin:$PATH"eval "$(pyenv init -)"
$ pyenv install --list
$ pyenv install 3.11.2※$ xcode-select --install の実行が必要なこともある※ Installed Python-3.11.2 to /Users/<UserName>/.pyenv/versions/3.11.2
$ pyenv install anaconda3-2023.03
$ pyenv global anaconda3-2023.03 2.7.18
$ pyenv versionssystem* 2.7.18 (set by /Users/<UserName>/.pyenv/version)3.11.2* anaconda3-2023.03 (set by /Users/<UserName>/.pyenv/version)
$ python -VPython 3.10.9
以下を起動する。/アプリケーション/Anaconda-Navigator.appこれは以下のエイリアスである。/Users/<ユーザー>/.pyenv/versions/anaconda3-2023.03/Anaconda-Navigator.app
$ pyenv global anaconda3-2023.03$ cd xxx/xxx/xxx$ jupyter-notebook
HoudiniでRenderViewの結果をjpegで保存する
AndroidStudioで、編集中のファイルを外部エディタ(Emacs)を開く方法
AndroidStudio > Settings...
でウインドウが開くので、以下で設定する
Tools > External Tools
Name: Emacs
Descripton: open in Emacs
Program: open
Arguments: -a /Applications/MyApplications/Emacs-27.2-inlinepatch-appl.app "$FilePath$" --args +$LineNumber$
Working directory: $FileDir$
Files > Settings...
でウインドウが開くので、以下で設定する
Tools > External Tools
Name: Emacs
Descripton: open in Emacs
Program: D:\mydata\windows\Tools\emacs-27.1_x86_64-win-ime-20200914\bin\emacsclientw.exe
Arguments: "$FilePath$" +$LineNumber$
Working directory: $FileDir$
機能拡張「Open in Editor」を追加。
機能拡張 > 「Open in Editor」 > 管理(右下の歯車アイコン)をクリック > 「機能拡張の設定」をリストから選択
「setting.jsonで編集」をクリック
以下を追加する
"alt-editor.args": "-a /Applications/MyApplications/Emacs25WithIMEPatch.app \"{filename}\" ",
"alt-editor.binary": "open",
"alt-editor.name": "emacs",
"alt-editor.terminal": false
todo:行番号を指定して開きたい。+{line} を引数に追加しようとしたがうまくいかなかった。
例: "alt-editor.args": "-a /Applications/MyApplications/Emacs25WithIMEPatch.app \"{filename}\" --args +{line} ",
Windows版は以下
"alt-editor.binary": "D:\\mydata\\windows\\Tools\\emacs-27.1_x86_64-win-ime-20200914\\bin\\emacsclientw.exe",
"alt-editor.args": "\"{filename}\"",
todo: {line}を指定するには以下になるが、lineは常に1になるようである。
"alt-editor.args": "+{line} \"{filename}\"",
方法1) 右クリック > Open in External Editor を選択する。
方法2) Option + shift + e