Once I had a junior programmer writing VB code that needed to know the day of the week. He decided to write his own code, and read something like:
if (day = 1) or (day = 8) or (day = 15) or (day = 22) or (day = 29) then
weekday = "Monday"
elseif (day = 2) or (day = 9) or (day = 16) or (day = 23) or (day = 30) then
weekday = "Tuesday"
...
Trying to be educational I asked him for his opinion about his own code, and he said that he would simply modify it every month.
– PedroChan
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment