- ้่ฟ
pip install pandora-chatgpt
ๅฎ่ฃ ไพ่ตใ - ไฟๅญไปฅไธไปฃ็ ๅฐ
auto_pool_token.py
ๆไปถใ - ๅ็ฎๅฝๆฐๅปบๆไปถ
credentials.txt
ไธ่กไธไธช่ดฆๅทๅฏ็ ใ - ่ดฆๅทๅๅฏ็ ไน้ด็จ
,
ๅ้๏ผไธ้่ฆ้ขๅค็ๅผๅทใ - ๅฆๆ้่ฆไฟฎๆนไปฃ็๏ผ
unique_name
็ญ๏ผ่ช่กไฟฎๆนๅ่ฟ่กใ - ่ฟ่ก่ฟไธช
auto_pool_token.py
ใ - ไฝ ไผ็ๅฐ่ฟ่ก่ฟๅบฆ๏ผ่ฟ่กๅฎๆๅฏ็ๅฐ
pool token
ใ - ่ฟ่กไธญ้ด็ปๆๅๅซไฟๅญๅจๅ็ฎๅฝ
tokens.txt
ๅshare_tokens.txt
ไธญใ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ๅฎไน้ข่ฒ | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
NC='\033[0m' # ๆ ้ข่ฒ | |
# ๅฎไนๅฎ่ฃ ็ฎๅฝ | |
INSTALL_DIR="/opt/vscode-server-web" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# forked https://github.com/ashleykleynhans/runpod-worker-a1111/blob/main/scripts/install.sh | |
echo "Deleting Automatic1111 Web UI" | |
rm -rf /workspace/stable-diffusion-webui | |
# echo "Deleting venv" | |
# rm -rf /workspace/venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
nvm install node | |
npm i -g pm2 | |
npm i -g @antfu/ni |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cat > /etc/sysctl.conf <<EOF | |
net.ipv4.tcp_no_metrics_save=1 | |
net.ipv4.tcp_ecn=2 | |
net.ipv4.tcp_ecn_fallback = 1 | |
net.ipv4.tcp_frto=0 | |
net.ipv4.tcp_mtu_probing=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
๐ Morning 24 commits โโโโโโโโโโโโโโโโโโโโโ 18.8% | |
๐ Daytime 31 commits โโโโโโโโโโโโโโโโโโโโโ 24.2% | |
๐ Evening 68 commits โโโโโโโโโโโโโโโโโโโโโ 53.1% | |
๐ Night 5 commits โโโโโโโโโโโโโโโโโโโโโ 3.9% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TypeScript 21 mins โโโโโโโโโโโโโโโโโโโโโ 100.0% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Start Vanilla CSS 1.0.2 | |
* from https://cssreset.com/scripts/vanilla-css-un-reset/ | |
*/ | |
body { | |
font: 9pt/1.5em sans-serif; | |
} | |
pre, code, tt { | |
font: 1em/1.5em 'Andale Mono', 'Lucida Console', monospace; | |
} |