Skip to content

Instantly share code, notes, and snippets.

View mwja's full-sized avatar
🏔️

Jacob MacKenzie-Websdale mwja

🏔️
View GitHub Profile
@mwja
mwja / concept.md
Last active October 30, 2016 12:35

Dynamically typed language called Stitch (filetype .st or .stitch) based of Ruby, Python and JavaScript. Spaces are new lines (except for stringed spaces and other cases) which allows for minification. Comments are double quotes and multilined, while strings are single quotes.

To print hello: print('hello')

To get name and print hello $name

name=input('name: ')
print('hello (name)') "to actually print ( and ) do \( and \) respectively"
@mwja
mwja / regex.txt
Created August 19, 2016 09:27
Regex for email addresses
([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)
@mwja
mwja / regex.txt
Created August 14, 2016 22:30
Regex for web addresses
/(http(s)?:\/\/*)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g