Batman animated and JL viewing order.
Canon 1:
- Batman: mask of Phantasm *
- Batman and Mr. Freeze: SubZero
- Batman: Mystery of Batwoman
Canon 2: If you plan to watch Justice league too then refer JL canon #2
- Son of Batman
- Batman vs Robin
Batman animated and JL viewing order.
Canon 1:
Canon 2: If you plan to watch Justice league too then refer JL canon #2
| #!/bin/bash | |
| # Check if user is root | |
| if [ $(id -u) != "0" ]; then | |
| echo "Error: You must be root to run this script, please use root to install the software." | |
| exit 1 | |
| fi | |
| apt-get remove libtidy-0.99-0 tidy | |
| apt-get install git-core automake libtool checkinstall |
| #!/bin/bash | |
| echo "Generating an SSL private key to sign your certificate..." | |
| openssl genrsa -des3 -out myssl.key 1024 | |
| echo "Generating a Certificate Signing Request..." | |
| openssl req -new -key myssl.key -out myssl.csr | |
| echo "Removing passphrase from key (for nginx)..." | |
| cp myssl.key myssl.key.org | |
| openssl rsa -in myssl.key.org -out myssl.key |
| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |
| sudo add-apt-repository ppa:webupd8team/sublime-text-2; | |
| sudo apt-get update; | |
| sudo apt-get install sublime-text | |
| sudo ln -s /usr/lib/sublime-text-2/sublime_text /usr/local/bin/sublime |
| sudo add-apt-repository ppa:webupd8team/sublime-text-2; | |
| sudo apt-get update; | |
| sudo apt-get install sublime-text | |
| sudo ln -s /usr/lib/sublime-text-2/sublime_text /usr/local/bin/sublime |
| import tornado.httpserver | |
| import tornado.ioloop | |
| import tornado.options | |
| import tornado.web | |
| class BaseHandler(tornado.web.RequestHandler): | |
| pass | |
| class HandlerMixin(object): | |
| listeners = [] |