Search This Blog

Thursday, January 21, 2010

removing svn files using command line

find ./ -name .svn -exec rm -rf {} \;

Tuesday, January 19, 2010

Jquery: To prevent double submission

from http://jquery-howto.blogspot.com/2009/05/disable-submit-button-on-form-submit.html

// Prevent form double-submission
$('form').submit(function(){
$('input[type=submit]', this).attr('disabled', 'disabled');
$('select', this).attr('disabled', 'disabled');
$('input[type=text]', this).attr('readonly', 'readonly');
$('textarea', this).attr('readonly', 'readonly');
});

Friday, January 15, 2010

Scrum (development)

http://en.wikipedia.org/wiki/Scrum_(development)

During the meeting, each team member answers three questions:
  • What have you done since yesterday?
  • What are you planning to do today?
  • Do you have any problems preventing you from accomplishing your goal?

When I become TL o higher, I'll follow this too.. ^^

Wednesday, January 13, 2010