17

I like coding in a way that anyonr who comes into my code base can understand whats going on. That way more people can maintain the code base.

However, I HATE having people in my code base. Since they leave shit undocumented, and have 10 variables called "data" "items" "o" "p" and another 20 methods called "processData" "convertItem".

Comments
  • 1
    I try to keep things as practical but also as clearly as possible.

    Ex:

    List<Tasks> tasks = TaskHandler.getTasks(realm);
    for(Task t : tasks) {
    // Something something....
    }
Add Comment