A cool web app to find your local weather conditions.
A Pen by Tyler Moore on CodePen.
A cool web app to find your local weather conditions.
A Pen by Tyler Moore on CodePen.
A random quote generator than generates inspirational quotes for your viewing pleasures. If you like a quote feel free to share it with the world! --still has a couple bugs to work out--
A Pen by Tyler Moore on CodePen.
A tribute page to Steve Jobs
A Pen by Tyler Moore on CodePen.
A personal webpage containing links to my social media and contact info.
A Pen by Tyler Moore on CodePen.
The official webpage for the Script Warriors game app.
A Pen by Tyler Moore on CodePen.
Instructions for the Script Warrior Game App
A Pen by Tyler Moore on CodePen.
A capture the flag multiplayer team game.
A Pen by Tyler Moore on CodePen.
#!/usr/bin/env python3 | |
# | |
#################### fs_startdbg ################################ | |
# # | |
# Summary: # | |
# trace freeswitch startup errors to corresponging xml file # | |
# freeswitch should not be running & should be expected to fail # | |
# # | |
# Author: Tyler Moore # | |
# License: MIT # |
#!/usr/bin/osascript | |
-- another way of waiting until an app is running | |
on waitUntilRunning(appname, delaytime) | |
repeat until my appIsRunning(appname) | |
tell application "Messages" to close window 1 | |
delay delaytime | |
end repeat | |
-- the fact that Messages.app is running |