Ir al contenido principal

2012

El 2012 apenas inicia y es hora de plantearse objetivos para mi cada vez menos frecuente blog!

Como primer objetivo es la reescritura de un tutorial que habia escrito hace 12 años,
http://www.geocities.ws/jsanca2000/tuto/index.html el mismo intentare retomarlo, ver que partes sirven y que otras se encuentran obsoletas con el HTML5 y el CSS 3.

Adicionalmente me he planteado la posibilidad de escribir algunos otros tutoriales, como uno de Spring, otro de Apache Wicket y Stripes, asi como Lucene y quizas MongoDB, vamos a ver como pinta este nuevo periodo, en tiempo y ganas para escribir!

Un saludo y feliz año nuevo a todos
J

Comentarios

Unknown dijo…




If you would like to book an escort like Call Girls in Aerocity for an upcoming time, you can use our mail reservation type where you can specify a substitute woman should your perfect option not be available. You will need to provide us with your real name on thereservation type, but be confident we are very distinct and will keep your private information private and protected. Check our other Services...
Escorts Service in Aerocity
Female Escorts in Aerocity
Russian Escorts in Aerocity
Call Girls in Mahipalpur
Escorts in Mahipalpur

Entradas más populares de este blog

Pasos para remover Postgresql 8.3 en MAC OS

Tomado de: http://forums.enterprisedb.com/posts/list/1437.page In Mac OSX: (Assuming Default Locations) Via uninstaller: 1) In the installation directory, there will be a uninstall-postgresql.app file will be there, executing (double clicking) that will uninstall the postgresql installation. Manual Uninstallation: 1) Stop the server sudo /sbin/SystemStarter stop postgresql-8.3 2) Remove menu shortcuts: sudo rm -rf /Applications/PostgreSQL 8.3 3) Remove the ini file sudo rm -rf /etc/postgres-reg.ini 4) Removing Startup Items sudo rm -rf /Library/StartupItems/postgresql-8.3 5) Remove the data and installed files sudo rm -rf /Library/PostgreSQL/8.3 6) Delete the user postgres sudo dscl . delete /users/postgres

Enrique Bunbury - 3 de Octubre 2009 - Heredia CR

Via periodico la nacion, me entero de este conciertazo: http://www.nacion.com/viva/2009/julio/29/viva2042768.html Ah esperar mas detalles y la venta de la entradas, "Para solo si me perdonas ..." EDIT ..... Via http://www.enriquebunbury.com/hellville.aspx (gracias a andres por su post) venta anticipada: Entradas a la venta a partir del 13 de agosto en: www.costaricaticket.com Por ahi estare anunciando, el 13 si las estan vendiendo!

Impensando acerca de las referencias en Java

Fue hace ya algún tiempo que pase un rato discutiendo con algunos compañeros acerca de si existe o no el paso por referencia; el discurso fue mucho hacia que en Java el comportamiento, en el supuestamente pasamos por referencia un objeto y por valor los objetos primitivos creo mucha polémica. Para ubicarnos en contexto veamos el siguiente ejemplo. public static void main(String[] args) { int value = 10; changeValue(value); System.out.println("value = " + value); User user = new User(); Name name = new Name(); user.setName(name); name.setName("jsanca"); name.setLastName("XXX"); user.setPassword("123queso"); System.out.println("user: " + user.getName().getName() + ", " + user.getName().getLastName() + ", " + user.getPassword()); changeValue1(user); System.out.println("user: " + user.getName().getName() + ", " + user.getName().getLastName() + ", " + user.ge...