37
votes
What are Code Smells? What is the best way to correct them?
Testing a bool for equality with true
bool someVar
....
if(someVar == true)
{
doStuff();
}
The compiler will probably fix it, so it doesn't r …
0
votes
Where do you put your javascript?
If it's only a few hundred bytes or less, and doesn't need to be used anywhere else, I would probably inline it. The network overhead for another http request will likely outweigh any performance g …
2
votes
How many lines of code is too many?
Some places have very rigid rules like no line more than 40 chars, no function more than 200 lines, but blindly enforcing these kinds of rules is a dangerous thing, and you end up with code that is …
2
votes
absolute vs. relative links?
For an html based email, absolute links are deal breaker critical, because they don't have the context of a web site to make relative links work. There are some mechanisms for setting the BASE of a …
1
vote
Secure name for the admin area URL of a site?
Sometimes I use things like /controlpanel/ or similar, and sometimes /admin/ or /_admin/, it doesn't hurt to use something hard to guess, but your security should not in any way rely on that. …
0
votes
Getting project web page names as an enumeration in asp.net.
Another option, that I have looked at but not tried out yet (might next week tho'):
http …
0
votes
Put javascript in one .js file or break it out into multiple .js files?
I would pretty much concur with what bigmattyh said, it does depend.
As a general rule, I try to aggregate the script files as much as possible, but if you have some scripts that are only …
