3
votes
10answers
517 views
How often do you check for an exception in a C++ new instruction?
I just started reading Effective C++ today and got to the point where the author talks about the operator new.
The book explains very well how you can catch (with various degrees of eleganc …
3
votes
Prevent site data from being crawled and ripped
Good crawlers will follow the rules you specify in your robots.txt, malicious ones will not.
You can set up a "trap" for bad robots, like it is explained here:
…
1
vote
When NOT to use AJAX in web application development?
It depends on the complexity of your web application.
If you can, having it functional with javascript disabled is great, because it makes your application usable not only by users on js-dis …
