Using alias commands you can easily perform your regular jobs.
1, open "~/.bashrc" in any editor.
vi ~/.bashrc
2. Add your alias commands at the end of the file.
Ex:
#Tomcat Alias
alias starttomcat='/usr/apache-tomcat-6.0.26/bin/catalina.sh jpda start'
...
A Technology Blog About Code Development, Architecture, Operating System, Hardware, Tips and Tutorials for Developers.
Wednesday, August 3, 2011
Thursday, February 24, 2011
IMAGE FLUSHING IN JSF
Recently in my project we got one problem that we are getting wrong barcodes. We use to call one API which used to give us a byte array which is a barcode. We are using ice faces and we were rendering the byte array as bellow.
<ice:graphicImage value="#{bytearray}" height="32px" width="150px" rendered="true">
Initially we thought it is the barcode API, which is giving the wrong...