Saturday, October 10, 2015

timing Latex entry on Wacom tablet

Process description:
Using the site  https://webdemo.myscript.com/ we entered Latex equations, then pasted those into a text document

datepersontimetimed entrymethodnumber of expressionsderivationnotes
minutesseconds
20151005B8:40 PM1025wacom tablet13quadratic equationcopied Latex, pasted into text document; no errors
20151005M8:55 PM920wacom tablet13quadratic equationwith some errors to be corrected
20151005B9:05 PM544by hand13quadratic equationtyped directly into text document; no errors

Wednesday, October 7, 2015

heroku on mac

  502  sudo pip install virtualenv
  503  heroku
  505  cd ~/version_controlled/
  507  git clone https://github.com/heroku/python-getting-started.git
  508  cd python-getting-started/
  510  heroku create
  511  git push heroku master
  512  heroku ps:scale web=1
  514  heroku open


django on Ubuntu

https://www.howtoforge.com/tutorial/django-install-ubuntu-14.04/

https://www.digitalocean.com/community/tutorials/how-to-install-the-django-web-framework-on-ubuntu-14-04



cd ~
django-admin startproject mysite
cd mysite
sudo pip install -U django
python manage.py migrate
python manage.py runserver
firefox 127.0.0.1:8000