What you need : Firefox browser and Firebug addon
A simple example:
INSTEAD OF :
function foo() {
if(some condition) {
alert("Status update");
}
}
USE :
function foo() {
if(some condition) {
console.log("Status update");
}
}
function foo() {
if(some condition) {
alert("Status update");
}
}
USE :
function foo() {
if(some condition) {
console.log("Status update");
}
}
If you've ever found yourself needing to measure the execution time of specific portions of your Python code, the `contextlib` module o...
No comments:
Post a Comment