Category: Articles

A Quick Way to Refresh Your Motivation

Working solo has many advantages but it also comes with many disadvantages. A big disadvantage is you have to always keep yourself motivated, especially on long projects. I set goals. I track my progress. I work as hard as I can to reach those goals. Many times I still fall short. It’s difficult to find …

Read more

Redmine Refactor #124: Rename Method UsersController#add

To finish up yesterday’s refactoring of UsersController#add I used rename method to rename #add to #new. Before 1 2 3 4 class UsersController Setting.default_language) @auth_sources = AuthSource.find(:all) end endclass UsersController Setting.default_language) @auth_sources = AuthSource.find(:all) end end After 1 2 3 4 class UsersController Setting.default_language) @auth_sources = AuthSource.find(:all) end endclass UsersController Setting.default_language) @auth_sources = AuthSource.find(:all) end …

Read more