Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of kkaosninja

kkaosninja

kkaosninja has asked 0 questions and find answers to 5 problems.

Stats

109
EtPoint
32
Vote count
0
questions
5
answers

About

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()
        }
    }
}