This repo is full of projects I have taken on personally or as a request for people. It includes websites I have created to further test my knowledge, Bots that I have made for friends and family, and a few misc. items here and there. Feel free to look around.
- WoW Dwarven chat addon This add-on takes text input in real time and adds a dwarven accent to it.
- IOS Pythonista Scripts These are useful scripts to sync to and from dropbox using pythonista on IOS.
- Twitter post bot This will automatically post to twitter using their API.
- Facebook post bot This will automatically post text or images to your facebook wall.
- Twitter Image Bot This was created before I added both images and texts into the final Twitter bot.
- Python This is a repo consisting of random and uncategorized python scripts.
- Telegram Bot This is an unfinished Telegram bot. It was to pull from a telegram chat and post to twitter.
- Flutter App This is an application for android that I created with Dart and Flutter for my portfolio.
What is it?
An android application created for my portfolio.
children: [
Image.asset(
'assets/images/Gruzzly.png',
width: 550,
height: 100,
fit: BoxFit.fitWidth,
),
buttonSection,
space,
Image.asset(
'assets/images/me.png',
width: 250,
height: 250,
),
textSection,
newtextSection,
newtextSections
],
What is it?
This addon auto translates your input text and outputs modified text that resembles a dwarven accent.
What are you saying? I can't hear you!
becomes
What're ye sayin'? I cannae hear ye!
This happens as soon as you press enter. It is very fast, and fluid.
It creates the in game slash function on load. It creates local databases to pull and replace predefined text from.
function DwarvenChat_OnLoad()
SlashCmdList["DWARVENCHATTOGGLE"] = dwarven_toggle;
SLASH_DWARVENCHATTOGGLE1 = "/dwarvenchat";
SLASH_DWARVENCHATTOGGLE2 = "/dchat";
SlashCmdList["DSAY"] = dwarven_say;
local dwarvenChat_ReplaceDB = {
{o={"^hello","^hiya","^hi there", "^hey"}, r={"Well met","E'llo"}},
{o={"no", "nah"}, r={"nae"}},
{o={"^no", "^nah"}, r={"^nae"}},
{o={"the"}, r={"tha"}},
}
local dwarvenChat_SendChatMessage = SendChatMessage;
What is it?
It is a set of scripts used to sync to and from Pythonista on IOS.
It uses your credentials from your dropbox API and then makes sure you can actually upload to it. After doing that, it will check your dropbox for any conflicts. If there is any, it will ask you how you want to handle it. Then it will push your file sto you drop box. It will run through the same thing on the way back when you sync from your drop box.
for file in folder_metadata['contents']:
dropbox_path = file['path'][1:]
file_name = file['path'].split('/')[-1]
file_ext = os.path.splitext(file_name)[1]
if file['is_dir']
--- False and (file_ext in config['file_extensions']
or [m.group(0) for l in config['file_extensions']
for m in [re.match('[\.]?\*',l)] if m]):
if not os.path.exists(os.path.join(PYTHONISTA_DOC_DIR, dropbox_path)):
def setup_configuration():
if not os.path.exists(SYNC_STATE_FOLDER):
os.mkdir(SYNC_STATE_FOLDER)
if os.path.exists(CONFIG_FILEPATH):
with open(CONFIG_FILEPATH, 'r') as config_file:
config = json.load(config_file)
else:
logging.log(FINE, 'Configuration file missing')
config = {}
logging.info('Insert your App key and secret.')
config['APP_KEY'] = input('''Enter your app key
''')
config['APP_SECRET'] = input('''Enter your app secret
''')
config['ACCESS_TYPE'] = 'app_folder'
write_configuration(config)
return config
What is it?
This small script will automatically post a line of text or an image from a folder directly onto your twitter account.
It pulls credentials and settings from a config.
I used the python Tweepy module for most of it. I also used Config Parser. Config parser is great, because you can load information into the script itself after it's been compiled into an executable. I also used sleep so that it would repeat the entire process of posting after a short delay.
consumer_key=config.get('settings','consumer_key')
consumer_secret=config.get('settings','consumer_secret')
sleep_time = int(config.get("settings", "sleep")) # sleep for 1 second by default
What is it?
This small script will automatically post a line of text or an image from a folder directly onto your facebook page/wall.It pulls credentials and settings from a config.
I used the python module facepy to integrate the facebook API and the script together. Then I used ConfigParser to pull information from a settings config into the script.
Then I used random and graph to post the advertisement/text pulled randomly from the file TO facebook.
config.read(os.path.join(os.path.dirname(__file__),"settings.cfg"))
ACCESS_TOKEN=config.get('settings','ACCESS_TOKEN')
while True:
graph = GraphAPI(ACCESS_TOKEN)
graph.post('me/feed', message=(random.choice(list(open('text.txt')))))