Update README.md

This commit is contained in:
2025-07-04 01:13:46 +09:00
parent 9260cd2645
commit 0afdea949c

View File

@@ -1,3 +1,30 @@
## Debian
```sh
sudo apt update && sudo apt upgrade -y
sudo apt install -y curl python3-venv
curl -fsSL https://code-server.dev/install.sh | sh
mkdir -p ~/.config/code-server
tee ~/.config/code-server/config.yaml <<EOF
bind-addr: 0.0.0.0:8888
auth: none
cert: false
EOF
sudo systemctl enable --now code-server@$USER
about:config
dom.events.testing.asyncClipboard
true
python3 -m venv .venv
tee -a ~/.bash_aliases <<EOF
export PATH=~/.venv/bin:\$PATH
EOF
source .bashrc
pip install mitmproxy
```
## sqlite3 [25-03-17]
```py
import sqlite3, os, json