Sunday, February 16, 2014

Capstone Development

So working a lot on my bachelors thesis to get the next working version out by tomorrow. The Center for Student Success is having a Time Management workshop tomorrow and I'm going to pitch my project to them to see if there are interested in testing it. I'm really excited.

But what takes me to my blog is remembering that when you have a statement like:

  • final_minutes = temp_minutes + current_minutes % 60
 you might actually be meaning

  • final_minutes = (temp_minutes + current_minutes) % 60
Emphasis added to the parenthesis. Just another moment where you remember a skill learned long ago in a CST 101 course.