その昔、KemaNet(Google 検索)というソフトウェアを作っていた人の、自分用メモのサイトです。
|
<<
2026.3
>>
[Stories] |
||||||
| 日 | 月 | 火 | 水 | 木 | 金 | 土 |
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 | ||||
git config --global core.excludesfile ~/.gitignore_global
echo '.DS_Store' >> ~/.gitignore_global
echo '._.DS_Store' >> ~/.gitignore_global
ここに書くのもアレだが、finder でネットワークドライブに書き込まないようにする方法(ほぼ必須)
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq && sudo chmod +x /usr/local/bin/yq
curl -sSL https://github.com/BurntSushi/ripgrep/releases/latest/download/ripgrep-$( \
curl -s https://api.github.com/repos/BurntSushi/ripgrep/releases/latest \
| jq -r .tag_name \
)-x86_64-unknown-linux-musl.tar.gz \
| sudo tar -xz -C /usr/local/bin --strip-components=1 --wildcards '*/rg' && chmod a+x /usr/local/bin/rg
困った事象
理由
対処
# デフォルトプロファイルで一律有効にする例
incus profile set default raw.apparmor "$(cat <<'EOF'
# Allow systemd to manage unconfined helper processes (workaround for AppArmor denials)
signal,
ptrace,
EOF