a url and credentials generation script made with vs code and github copilot
scrambles a word to provide 10 unique urls
dev -u -p -un
-u --url: provide what you want to be scrambled into a url
-p --password: generates a password
-un --username: generates a username
-h --help: provides help
nano ~/.zshrc
in a new line type:
alias dev ='python3 path/to/file/dev.py'
nano ~/.bash_profile
in a new line type:
alias dev ='python3 path/to/file/dev.py'
python3 path/to/file/dev.py
New-Item -Type file -Force $profile
code $profile
Set-Alias dev "python3 $HOME\path\to\dev.py"
rename the py.urlConfig.py file to urlConfig.py
replace YourUserName with your preferd username plus a -
replace YourHostName with your host
save it to the same file location as the dev.py script