Update README.md
This commit is contained in:
27
README.md
27
README.md
@@ -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]
|
## sqlite3 [25-03-17]
|
||||||
```py
|
```py
|
||||||
import sqlite3, os, json
|
import sqlite3, os, json
|
||||||
|
|||||||
Reference in New Issue
Block a user