I plan on this blog being an on going project that will evolve into a portal of sorts for my personal coding projects. Step one was getting the blog up and running to have a place to document my work and also have a starting point from which to branch out into the custom website I have envisioned. Here i will tie together the small programming projects that I come up with and provide them with a decent looking front end as so far i have really only dealt with the server side and command line aspect.
Read more...
This is a customized version of the Tornado blog example, customization includes:
Bootswatch Cyborg theme Navbar /auth/create disabled after first user is created Day light savings handling More that I forgot.. Installing the blog:
$ apt-get install mysql-server python-dev libmysqlclient-dev libffi-dev git python-pip $ pip install bcrypt mysql-python torndb tornado markdown futures $ mkdir /opt/blog $ cd /opt $ git clone http://github.com/mikeder/blog $ cd blog $ mysql -u root -p mysql> CREATE DATABASE blog; mysql> GRANT ALL PRIVILEGES ON blog.
Read more...