This file contains hidden or 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
if (GUILayout.Button("Generate Image", generateButtonStyle, GUILayout.Height(40))) { | |
if (shouldAutoGenerateSeed) { | |
promptWindow.GenerateImage(null); | |
} else { | |
string seed = seedinputText; | |
if (seed == "-1") { | |
seed = null; | |
} | |
promptWindow.GenerateImage(seed); | |
} |
This file contains hidden or 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
# Bank Setup guide | |
### Install Dependencies: | |
``` | |
sudo add-apt-repository universe | |
sudo apt -y update && sudo apt -y upgrade | |
sudo apt -y install build-essential nginx python3-pip redis-server | |
``` | |
### Firewall: | |
``` |