Monday, November 1, 2010

Learn jQuery

15+ Excellent Websites To Learn jQuery

Creating mobile web applications with jQuery mobile and Grails

1 comment:

  1. your tips are great for developers. Nice artielce , by the way just to add from my experience I think we should make a variable volatile when we want ensure that thread doesn' cache the value of variable ,e.g. in below code
    while(!stop) {
    doWork() ;
    }

    Thread can cache the value of "stop" instead of getting it from main memory every time and if in between any other thread changes the value , it would not be visible to this thread. making boolean variable "stop" as volatile ensures this will not happen.

    ReplyDelete