SCJP

Publicado por · 1 Comentario 

Hoy mismo nos han dado la oportunidad en el trabajo de sacarnos la certificación Java que queramos (estoy pensando en SCJP) en un mes de plazo.

¡Es todo un reto! Hasta ahora había hecho algunos programas en Java (que para mí es el paradigma de la complejidad), pero desde luego no a nivel de una certificación oficial.

Pues nada, a por ellos, que son pocos y cobardes.

Simplicidad

Publicado por · 1 Comentario 

Desde ya hace un tiempo no comprendo gran parte de la complejidad que se introduce en la programación de algunos sistemas. Encuentro que un conjunto de soluciones sencillas y fáciles de comprender es mejor que un gran programa del tipo one-size-fits-all.

A veces la búsqueda de la generalidad y la abstracción resulta en un programa complejo de configurar y de utilizar. No es para complicar las cosas por lo que se buscan estos dos principios, sino más bien para lo contrario: la búsqueda de la simplicidad.

Ubuntu 10.4 y Asus EEE 901

Publicado por · 1 Comentario 

Hoy he actualizado Ubuntu en el miniportátil a la versión 10.4, que además es una LTS (con soporte extendido). Mi idea era dejar el sistema operativo estable en esa versión…

… pero resulta que la wifi no funciona.

A cambio los tiempos de arranque son fabulosos, pero no me compensa. Una de cal y una de arena. Ahora vuelta atrás y a esperar a que se resuelva.

De reformas

Publicado por · 1 Comentario 

Estoy reformando la estructura de la página… así que probablemente muchas cosas estarán un tiempo con pinzas.

Lo siento…

Paragraph spacing on FB2 files

Publicado por · Deja un comentario 

I recently bought a Papyre 5.1 device, which is the Spanish variant of the Hanlin v5 e-book reader. Although I don’t mind reading properly formatted PDF files, it is clear that an unstructured textual format works much better. The FB2 format is the better supported and the one with more options and choices.

I prefer using a 110% inter-line separation. Additionally I find that a little space between paragraphs makes reading much easier, but there is no option to automatically set this up. Fortunately, FB2 files are just an XML variant, and a plain text editor is enough to change little things. In particular, paragraphs are delimited by <p> tags, and a small embedded CSS section may be added at the beginning of the file.

Just after the second line of the file:

<FictionBook xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.gribuser.ru/xml/fictionbook/2.0">

The following text should be added:

<stylesheet type="text/css">
p { margin-top: 10px; margin-bottom: 10px;}
</stylesheet>

If the stylesheet section already exists, only the following line should be added:

p { margin-top: 10px; margin-bottom: 10px;}

Now there will be a separation between paragraphs, which will make reading even more enjoyable.

Another option would be changing the style in the fb2.css file, which is stored inside the crengine folder of the SD card. Personally I prefer hand-editing each file, as formatting is not always set in the same way.