Tuesday, June 23, 2009

cvs command to see the status in a single line

We can use the command - 'cvs status'. But it is too verbose. You may not need all those details all the time.
To see the status in a single line do - cvs -q -n update
Courtesy :
http://stackoverflow.com/questions/211819/is-there-a-way-to-get-a-short-cvs-status-from-command-line


Friday, June 19, 2009

Nebeans debugger msg : delete method not implemented

When I apply code changes using netbeans debugger, i get this message :
The virtual machine does not support this operation: delete method not implemented
and I am not able to apply my code changes.

The problem was :
I had another file where i had added a method and had not compiled. so not able to apply code changes. (debugger does not allow adding new methods. If you add or remove a method [or any other type of class member] you have to compile the code before using debugger).

Monday, June 15, 2009

Form submit in FireFox and IE

I am using FireFox 3 and IE 7 for my development.

For form submit, FF uses post as the default method. IE sends params as post only if specified in the <form> tag.