vote up 0 vote down star

I'm currently in the process of becoming a maintainer of a small open source project (a Facebook toolkit), and of course, one of the responsibilities is to answer user questions on our forum. While I'm happy to help users learn how to work with our toolkit and deal with issues they may run into (which may eventually indicate bugs in our code), a significant amount of the questions seem to have less to do with our toolkit specifically, and more to do with knowing how to program in general.

I'd like to help the people asking these questions, but I don't really have the time to be a full-on programming teacher. I don't want to just ignore them. They're not asking to be spoon-fed everything; they just don't know where to begin to solve their problems. Is there some way I can point them in the right direction without offending them, and without spending all my time trying to teach our users general programming skills?

flag

73% accept rate

3 Answers

vote up 1 vote down check

Make a FAQ page or a tutorial covering some of the basics, that will eliminate quite a lot of questions.

link|flag
Well, from my forum experiences it will not eliminate these questions, but you can then just point them to a faq. A good idea on any forum. – Ed Swangren Dec 17 '08 at 5:51
vote up 2 vote down

Send them here! Seriously, though, the "perceived value" of your answer has a lot to do with your attitude. Tell them exactly what you said in your second paragraph: that you don't have the bandwidth to help as much as you'd like, but you can suggest some very helpful web sites, books, or other references. "STFW" is acceptable, provided it's phrased appropriately, and you might even suggest search terms.

link|flag
vote up 0 vote down

A company wants to transmit data over the telephone, but they are concerned that their phones may be tapped. All of their data is transmitted as four-digit integers. They have asked you to write a program that will encrypt their data so that it may be transmitted more securely. Your program should read a four-digit integer and encrypt it as follows: Replace each digit by the remainder after the sum of that digit plus 7 is divided by 10. Then swap the first digit with the third, and swap the second digit with the fourth. Then print the encrypted integer.

Sample output: Enter a four-digit number to be encrypted: 5678 Encrypted number is 4523

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.