wandering-geek

101
reputation
2

Below is some Go code that describes what I try to do everyday. :-)

for {
    knowledge++
    programmingSkill++
    laziness -= 0.01
for _, question := range stackOverflowQuestions {
    switch question.difficulty {
    case Easy:
        fallthrough
    case Medium:
        question.answerWith(myAnswer)
        question.hopeForUpvote()
    }
}

}