Click here to Skip to main content
15,908,013 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Can we use Microsoft Expression SketchFlow in our articles? Pin
ProtoBytes20-Jul-09 2:40
ProtoBytes20-Jul-09 2:40 
GeneralRe: Can we use Microsoft Expression SketchFlow in our articles? Pin
ProtoBytes21-Jul-09 20:38
ProtoBytes21-Jul-09 20:38 
Generalx86 Assembly forum? Pin
LloydA11118-Jul-09 9:20
LloydA11118-Jul-09 9:20 
GeneralRe: x86 Assembly forum? Pin
Nish Nishant18-Jul-09 14:22
sitebuilderNish Nishant18-Jul-09 14:22 
GeneralRe: x86 Assembly forum? Pin
Luc Pattyn18-Jul-09 18:09
sitebuilderLuc Pattyn18-Jul-09 18:09 
GeneralPRE tags Pin
Luc Pattyn17-Jul-09 3:23
sitebuilderLuc Pattyn17-Jul-09 3:23 
GeneralRe: PRE tags Pin
Nish Nishant18-Jul-09 14:20
sitebuilderNish Nishant18-Jul-09 14:20 
GeneralRe: PRE tags [modified] Pin
Luc Pattyn18-Jul-09 17:21
sitebuilderLuc Pattyn18-Jul-09 17:21 
Nishant Sivakumar wrote:
Why do you say that Luc?

Because statement #6 is wrong as it implies checking the "Ignore HTML tags in this message" check box is in some way equivalent to, or as good as, using PRE tags, which it isn't.

PRE tags offer:
- a monospaced font, much easier to read code (e.g. count spaces in string literals)
- a different background, improving overall message readability
- and most of all preserve formatting, mainly indentation.

Your main() example may be acceptable if it spans a few lines only; make it 30 lines with nested loops/ifs and it is unreadable without PRE tags. Keep in mind there is a problem somewhere, that is why the message got created, so it should be rendered as readable as possible.

And what would be wrong or lost by putting your examples inside PRE tags? So lets make the rule simple, consistent and effective.

Instead of this

<ul>
<li>
Hello
</li>
</ul>

int main()
{
char* s = "hello\n";
printf("%s", s);
return 0;
}

you would get this
<ul>
<li>
Hello
</li>
</ul>

int main()
{
    char* s = "hello\n";
    printf("%s", s);
    return 0;
} 


Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

The quality and detail of your question reflects on the effectiveness of the help you are likely to get.
Show formatted code inside PRE tags, and give clear symptoms when describing a problem.

modified on Saturday, July 18, 2009 11:39 PM

GeneralRe: PRE tags Pin
Chris Maunder6-Aug-09 8:42
cofounderChris Maunder6-Aug-09 8:42 
GeneralRe: PRE tags Pin
Luc Pattyn6-Aug-09 8:48
sitebuilderLuc Pattyn6-Aug-09 8:48 
GeneralRe: PRE tags Pin
Chris Maunder6-Aug-09 9:00
cofounderChris Maunder6-Aug-09 9:00 
GeneralRe: PRE tags Pin
Luc Pattyn6-Aug-09 9:07
sitebuilderLuc Pattyn6-Aug-09 9:07 
GeneralRe: PRE tags Pin
Chris Maunder6-Aug-09 9:09
cofounderChris Maunder6-Aug-09 9:09 
GeneralTypo Pin
Tom Deketelaere17-Jul-09 3:11
professionalTom Deketelaere17-Jul-09 3:11 
GeneralRe: Typo Pin
Chris Maunder23-Jul-09 10:40
cofounderChris Maunder23-Jul-09 10:40 
GeneralDoes Latest Best Pick Article List has been freezed ? Pin
Abhijit Jana15-Jul-09 9:11
professionalAbhijit Jana15-Jul-09 9:11 
GeneralRe: Does Latest Best Pick Article List has been freezed ? Pin
Chris Maunder15-Jul-09 21:52
cofounderChris Maunder15-Jul-09 21:52 
GeneralRe: Does Latest Best Pick Article List has been freezed ? Pin
Abhijit Jana15-Jul-09 22:45
professionalAbhijit Jana15-Jul-09 22:45 
GeneralRe: Does Latest Best Pick Article List has been freezed ? Pin
Chris Maunder16-Jul-09 2:35
cofounderChris Maunder16-Jul-09 2:35 
GeneralRe: Does Latest Best Pick Article List has been freezed ? Pin
Abhijit Jana16-Jul-09 3:59
professionalAbhijit Jana16-Jul-09 3:59 
GeneralRe: Does Latest Best Pick Article List has been freezed ? Pin
Chris Maunder16-Jul-09 4:07
cofounderChris Maunder16-Jul-09 4:07 
GeneralRe: Does Latest Best Pick Article List has been freezed ? Pin
Abhijit Jana16-Jul-09 4:30
professionalAbhijit Jana16-Jul-09 4:30 
General[CLARIFIED]Wide code snippets going out of page bounds. Pin
chandu00414-Jul-09 19:14
chandu00414-Jul-09 19:14 
GeneralRe: Wide code snippets going out of page bounds. Pin
Dan Neely15-Jul-09 2:08
Dan Neely15-Jul-09 2:08 
GeneralRe: Wide code snippets going out of page bounds. Pin
chandu00415-Jul-09 18:50
chandu00415-Jul-09 18:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.