change maximum memory for coldfusion 8
First, it might be good for you to get the total amount of free memory on your system (using -m will present the information in MB):
Looks like I have about 1754 MB free.
Edit the following file:
/opt/jrun4/bin/jvm.config
then change the following line from:
-XX:MaxPermSize=512m
to something higher, like:
-XX:MaxPermSize=768m
Another day at the bus stop
Another day at the bust stop that got me to take a panorama of the weather. This time I saw lots of fog!
When starting Dreamweaver CS4 I get an error of microsoft visual c++ runtime library: runtime error
Today I got an error message of "microsoft visual c++ runtime library: runtime error ..." when attempting to run Adobe Dreamweaver CS4. This is horrible!! Here is a screen show showing what I got:
My method for fixing this error on Windows XP was to do move the following directory into my Recycle Bin:
- c:\Documents and Settings\[username]\Application Data\Adobe\Dreamweaver CS4
Note: The "Application Data" folder is hidden and you might need to do the following:
- Choose menu "Tools"
- Choose menu item "Folder Options"
- Choose tab "View"
- Enable "Show hidden files and folders"
- Click "OK"
After removing the directory, launching Dreamweaver worked! I was also surprised that I did not loose any of my site settings.
bash script template to be used for parsing arguments to make your shell programming life easier
I found that all my bash scripts really bennifet with the following template because:
- it handles options with possible responses of needs
- debugging with a flag
- help description of the script
This template keeps proving to be enough to start my script building. There is really nothing more to say about this so here is my template:













