Skip to content

Instantly share code, notes, and snippets.

View bigsk1's full-sized avatar
🌿
Focusing

bigsk1 bigsk1

🌿
Focusing
View GitHub Profile
@bigsk1
bigsk1 / ascii.py
Created September 3, 2023 22:31
Stable Diffusion Automatic 1111 script for ascii in the command line
import modules.scripts as scripts
import gradio as gr
from PIL import Image
from modules import images
from modules.processing import process_images, Processed
from modules.shared import opts, cmd_opts, state
ASCII_CHARS = ["@", "B", "%", "8", "W", "M", "#", "*", "o", "a", "h", "k", "b", "d", "p", "q", "w", "m", "Z", "O", "0", "Q", "L", "C", "J", "Y", "X", "z", "c", "v", "u", "n", "x", "r", "j", "f", "t", "/", "|", "(", ")", "1", "{", "}", "[", "]", "?", "-", "_", "+", "~", "<", ">", "i", "!", "l", "I", ";", ":", ",", "\"", "^", "`", "'", ".", " "]
@bigsk1
bigsk1 / One_click_for SillyTavern_with extras_SD_SileroTTS_OOGABOOGA.txt
Created August 21, 2023 08:01
SillyTavern one click launcher for windows - read bottom of file - add your paths as needed
@echo off
REM Replace with the path to your oogabooga web UI installation
set OOGABOOGA_PATH=PATH_TO_OOGABOOGA
echo Starting oogabooga web UI...
start cmd /k "%OOGABOOGA_PATH%\start_windows.bat"
timeout /t 5
REM Replace with the path to your Stable Diffusion Automatic1111 web UI installation
set STABLE_DIFFUSION_PATH=PATH_TO_STABLE_DIFFUSION