11.15.2012
11.13.2012
11.12.2012
setInterval( function(){doStuff()} ,100 )
//THIS IS BETTER.
(function myfunction(){
//Do stuff, finish
doStuff();
//wait after doStuff finishes then calls it again.
//and I guess we can stop this loop as well.
setTimeout(myfunction,100);
//we could also use arguments.callee but is deprecated
})();
From: http://www.youtube.com/watch?v=i_qE1iAmjFg
Jquery performance links:
Jquery performance links:
Este link tiene un video, pero a veces la pagina esta caida...
Este link tiene un video, pero a veces la pagina esta caida...
8.02.2012
Motorola defy does not recognize sdcard on recovery
-Connect cel to USB
-On Recovery, start the adb daemon,
-On pc, open a command windows, open adb shell
type:
http://forum.cyanogenmod.com/topic/33179-problems-installing-71-recovery-cant-mount-sdcard/page__p__249355#entry249355
-On Recovery, start the adb daemon,
-On pc, open a command windows, open adb shell
type:
cd /dev/blockmknod mmcblk0 b 179 0mknod mmcblk0p1 b 179 1
and there you go. You can now mount sdcard on recovery.
Ref:http://wiki.cyanogenmod.com/wiki/Motorola_Defy:_FAQ
8.24.2011
blendMode must be non-null when using selenium flex (sfapi)
Well, this one was easy: I was using maven to import sfapi, however, the version in the maven repository is compiled against 3.3, causing this error.
Easy fix: Download the sfapi.swc from the offcial page and install it on your maven repo with somehting like "customversion" and compile versus that one.
----
By the way, you see against what version it was compiled by unzipping th swc, and checking out catalog.xml
Easy fix: Download the sfapi.swc from the offcial page and install it on your maven repo with somehting like "customversion" and compile versus that one.
----
By the way, you see against what version it was compiled by unzipping th swc, and checking out catalog.xml
7.20.2011
java.lang.NoSuchMethodError: javax.xml.ws.WebFault.messageName()Ljava/lang/String;
java.lang.NoSuchMethodError: javax.xml.ws.WebFault.messageName()Ljava/lang/String;
Esto me paso cuando estaba yo tratando de usar Metrgo glassfish 2.2 en java 1.6, resulta que hay que copiar
jaxws-api.jar and jaxb-api.jar into the JRE endorsed directory, which is $JRE_HOME/lib/endorsed (or $JDK_HOME/jre/lib/endorsed).
More info:
http://metro.java.net/guide/Using_JAX_WS_2_x___Metro_1_x_2_0_with_Java_SE_6.html#Using_Metro_2_0_with_Java_SE_6Publish Post
Esto me paso cuando estaba yo tratando de usar Metrgo glassfish 2.2 en java 1.6, resulta que hay que copiar
jaxws-api.jar and jaxb-api.jar into the JRE endorsed directory, which is $JRE_HOME/lib/endorsed (or $JDK_HOME/jre/lib/endorsed).
More info:
http://metro.java.net/guide/Using_JAX_WS_2_x___Metro_1_x_2_0_with_Java_SE_6.html#Using_Metro_2_0_with_Java_SE_6Publish Post
Suscribirse a:
Entradas (Atom)