in reply to RFC - How to ask...
First time? Ask your question here: Seekers of Perl Wisdom (SOPW). Scroll to the bottom and enter it under Add your question. There are other sections of the site but SOPW is most likely what you want.
Title your question well. The title should contain the gist or subject of your question or problem.
Examples of good titles–
Titles that are not helpful–
Your question is being read by others who cannot see your screen, your code, or what you are trying to do. If you want a good answer, you need to give all the information someone else would need to understand the problem.
Example of a good question–
Why do selects fail sometimes with DBI
…I can’t figure out why my selects fail sometimes but work other times. This is my code:
my $dbh = DBI->connect($data_source, $username, $auth, \%attr); my $sth = $dbh->prepare("SELECT foo FROM bar WHERE baz = '$qux'"); $sth->execute();
Example of a poor question–
I'M ON A DEADLINE! PLEEZE HELP!
Why doesn't my CGI work?
There is no way to answer that question. 1,000 things could be wrong with a script and "work" is not even meaningful without first knowing what it's supposed to do.
Use PerlMonks formatting + simple HTML. Put <code>code inside code tags</code>. They are treated specially here. Please do not use <pre>pre tags</pre>!
(et cetera?)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Alternative "how to ask" stub (SoPW)
by tye (Sage) on Feb 14, 2009 at 19:53 UTC |