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
{ | |
"channel": "775814282033889321", | |
"joinMessageChannel": "778112894306222090", | |
"guild": "750034125464797216", | |
"botId": "776192421129355266", | |
"emoji": "👍", | |
"roles": [ | |
{ | |
"note": "CS150", | |
"message": "776193379015983135", |
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
git add . | |
git commit -m "message here" | |
git push |
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
def example(): | |
print("Hello World!") | |
print("I am running from the discord bot...") | |
def add(a, b): | |
return a + b | |
print("This is a test\n") | |
print("Another test") |
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/sh | |
printf "*--------------------------------------------*\n\n" | |
printf "Looks like you want to push something to GitHub. \n\nPlease specify what you added in a sentence or two \n>> " | |
read updateLog | |
printf "\nOkay! Which branch will you be pushing too? \n[Type the name of the branch you would like, or press [ENTER] for master.] \n>> " | |
read branch | |
if [ "$branch" == "" ]; then |