mogrify -font /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf pointsize 22 -verbose -draw “gravity south fill black text 0,33 ‘Focused On The Unfocused’ fill white text 1,32 ‘Focused On The Unfocused’ ” *.jpg
source
pjdc Uncategorized
How to locate a file inside a zip file or inside a jar file:
find . -name “*jar” -exec unzip -l {} \; | grep persistence.xml
pjdc Uncategorized
workspace\.metadata\.plugins\org.eclipse.wst.server.core\
pjdc Uncategorized
How to Extend IBM Websphere Trial Period. This is applicable at least form IBM Webshpere 6.1 and 7.
Simple delete the $WAS_HOME/properties/was.license file. When restarting the WAS server, the file will be recreated and the eval period restarts.
This avoids full reinstall of the product
pjdc Uncategorized
how to untar a tar.gz file in php script
-
<?php
-
-
system("tar -zxvf filename.tar.gz");
-
-
?>
pjdc Uncategorized
To run scripts or programs at startup on a linux/unix machine.
create a sh script in /etc/init.d
create a link on rc3.d or rc5.d pointing to the previous created script
pjdc Uncategorized
full fedora bug description here
pjdc Uncategorized
IBM article:
http://www.ibm.com/developerworks/java/library/j-ts1.html?ca=drs-
download
pjdc articles