5.21.2008

Java post

estructura app j2ee: http://java.sun.com/blueprints/code/projectconventions.html documentos jboss (muy buena) http://www.coredevelopers.net/technology/jboss/ //Serg

Ubuntu guides

Ubuntu guides -------------------------------------------------- http://ubuntuguide.org/ Lista de equivalencias de SW https://help.ubuntu.com/community/SoftwareEquivalents //Serg

validaciones de struts sin tanto peso

validaciones de struts sin tanto peso ------------------------------------------------
<script type=\"text/javascript\" src=\"\">/js/strutsValidator.js\"></script> <html:javascript formname=\"xxxxxxx\" staticjavascript=\"false\">
//Serg

Formas de incluir Javascript en jsp

Formas de incluir Javascript en jsp ----------------------------------------- //nice.. rapido y sin ocupar espacio de más <script type=\"text/javascript\" src=\"\">/js/xxxx/xxxxx.js\"></script> //for debug <script type=\"text/javascript\"><br /> <jsp:include flush=\"true\" page=\"/js/xx/xxxxxxxx.js\"><br /></script> //Serg

Evaluar Regular Expression en linea

Evaluar Regular Expression en linea
------------------------------------------
http://gskinner.com/RegExr/

//Serg

toString() con introspeccion...

Haz toString() con introspeccion... --------------------------------------- El unico toString y hashCode que vas a necesitar jamas. http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/class-use/ToStringBuilder.html public String toString() { StringBuffer buff = new StringBuffer(); return org.apache.commons.lang.builder.ToStringBuilder.reflectionToString(this); } //Serg

Sacar canciones de Ipod Touch

Sacar canciones de Ipod Touch ---------------------------------- ephPod : http://www.ephpod.com/ En ubuntu... http://www.simplehelp.net/2007/07/04/how-to-use-amarok-to-manage-your-ipod-in-ubuntu/ //Serg

Ubuntu PS3 Resolutions

Instale Ubuntu en mi PS3 y no jalo inmediatemente la resolucion... not good! Ubuntu PS3 Resolutions -------------------------------------------- http://www.psubuntu.com/forum/viewtopic.php?t=1262 http://www.psubuntu.com/forum/viewtopic.php?t=2950 http://psubuntu.com/forum/viewtopic.php?p=8340#8340 http://psubuntu.com/forum/viewtopic.php?t=1688 //Serg

Create your own Ubuntu distro

Una excelente opcion ya que he roto mi dirto mas de 6 veces y he tenido que empezar desde cero ... por falat de experiencia. Create your own Ubuntu distro ------------------------------------------- http://reconstructor.aperantis.com/ -> Download: http://reconstructor.aperantis.com/index.php?option=com_remository&Itemid=33&func=select&id=5 http://uck.sourceforge.net/ http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys //Serg

Ubuntu DVD Playback

Ubuntu DVD Playback --------------------------------------------- http://www.tech-recipes.com/rx/2765/ubuntu_enable_dvd_playback
Correr la sig. instrucción... sudo /usr/share/doc/libdvdread3/./install-css.sh
//Serg

Find common bugs on java / encontrar bugs en java

Find common bugs on java --------------------------------------------- http://findbugs.sourceforge.net/ http://jlint.sourceforge.net/ Paper que indica otras herramientas... Pero esas dos parecen bastante buenas. http://www.cs.umd.edu/~jfoster/papers/issre04.pdf //Serg

Ubuntu eye candy

Temas, iconos, splash screens... llevelo llevelo Ubuntu eye candy --------------------------------------------- http://www.gnome-look.org/ //Serg

Iniciativa mexicana de apoyo a creacion de videojuegos

Iniciativa mexicana de apoyo a creacion de videojuegos --------------------------------------------------- http://www.juegodetalento.com //Serg

Javascript Plus, alternativa de prototype

Javascript Plus, alternativa de prototype ------------------------------------------ http://mootools.net/ //Serg

Serializar una forma con prototype

Serializar una forma con prototype Form.serialize(document.forms[0]) //Serg