Blog

Tax Savings 2013

January 4, 2014

Since I was traveling last year and had almost no earned income, I decided to look for some ways to take advantage of possible tax savings before the year ended.

I have some investments in index funds and it seemed like a good idea to sell some of them as the major indexes hit record highs last year. I found out that long term capital gains are taxed at 0% if your earned income is …

Using command aliases in Ubuntu 13.04

January 1, 2014

I’ve been spending a lot of time working on a project lately where I found myself having to use some commands over and over. It’s gotten to a point where I decided to create some scripts to execute the commands for me. But then even calling the scripts started to become tedious that I created short bash command aliases to execute them instead.

If you’re using the bash shell, all you have to do is …

Launching a new Django project: GlucoseTracker

January 1, 2014

I finally launched a project I’ve been working on the last couple of months just in time for the new year. It’s a web application for tracking blood glucose levels using all open source software: Python, Django, Twitter Bootstrap 3, PostgreSQL, Nginx, Gunicorn, and a bunch of others.

I originally started this project over 2 years ago to teach myself how to use the Django web framework, but I lost interest at some point …

Using Highcharts with Django 1.6 and Bootstrap 3

December 13, 2013

I was looking for a library to create charts to use for my Django app about a week ago and a friend suggested to try Highcharts as he had heard good things about it from fellow Python/Django developers.

Highcharts is a charting library purely written in JavaScript. The charts look really pretty and interactive. Using the library is quite easy, too, thanks to the well written documentation with lots of examples. You can view a …