May 7th, 2008
Recently after upgrading to Ubuntu 8.04/Firefox 3, all of my CSS fonts have been HUGE! I didn’t have the opportunity to look for a solution, so I have been using Opera as my primary browser. After finally getting a little time to dig, I found a quick fix using the following steps.
- Type “about:config” in the address bar of Firefox
- Accept the crazy warning about voiding your warranty
- Change the setting of “layout.css.dpi” from -1 to 96 (or 72)
- Now all should be fine in the CSS/Font world
Reference
http://blog.wolffmyren.com/2008/04/26/firefox-3-ubuntu-804-large-fonts-fix/
Posted in CSS, Firefox, Ubuntu | 2 Comments »
May 5th, 2008

Seems that Dell is a pretty good judge of Linux character
First major company to factory install Red Hat Linux corporate systems.
http://www.redhat.com/about/news/prarchive/1999/press_linuxsuccess.html
First to install ubuntu in 2007
http://www.ubuntu.com/news/dell-to-offer-ubuntu
Posted in GNU/Linux | No Comments »
May 2nd, 2008
Straight from the ColdFusion Documentation
You can change the port on which the built-in web server runs.
To change the port for the built-in web server:
1. Back up the jrun.xml file.
This file is in the cf_root\runtime\servers\default\SERVER-INF directory in Windows, and in the cf_root/runtime/servers/default/SERVER-INF directory on UNIX.
2. Open the original jrun.xml file for editing.
3. Change the port number specified in the WebService port attribute (near the bottom of the file):
<service class=”jrun.servlet.http.WebService” name=”WebService”>
<attribute name=”port”>8500</attribute>
<attribute name=”interface”>*</attribute>
<attribute name=”deactivated”>false</attribute>
…
</service>
Note: Make sure that the deactivated attribute is set to false.
4. Save the file.
5. Restart ColdFusion.
Reference
ColdFusion LiveDocs
Posted in ColdFusion | No Comments »
April 21st, 2008
I love VMware! There is almost nothing cooler than using vmotion to migrate a guest OS to another host, with zero downtime.
I am in the process of upgrading all of my ESX hosts to 3.5 update 1, and I wanted to post some of my notes to remind me (and help others) with some of the bumps I had along the way.
Updating Virtual Center
- After upgrading Virtual Center to 2.5, 3/4 of hosts received the the following error while attempting to connected them to Virtual Center. “Failed to install the VirtualCenter agent service”
- This would typically happen after the process was around 80% complete
- To resolve this issue I used the following steps (Thanks to VMwarewolf for the insight)
- Login to ESX Server via ssh client as root user
- cd /tmp
- mkdir vmware-root
- Try re-connecting the host to Virtual Center
- One of my hosts had the following error. “Unable to access the specified host, it either does not exist, the server is not responding or there is a network problem”
- This was resolved by starting the “mgmt-vmware” process, using the following steps
- Login to ESX server via ssh client as root user
- service mgmt-vmware start
References
VMwarewolf
Posted in VMware | 2 Comments »
April 9th, 2008
For those of you running older versions of MS Office and need to open the newer format:
Click Here
Thanks Jeff for the update ;)
Posted in Microsoft | No Comments »
April 7th, 2008
Posted in Health Care | No Comments »
April 6th, 2008
I recently needed a quick way to populate an existing excel template with data I retrieved from my database. Apache POI to the rescue!! Apache POI is a Java API to Access Microsoft Format Files.
References
http://poi.apache.org/
API Docs
Posted in Java | No Comments »
March 4th, 2008
start “screen”
create new window “ctrl-a c”
switch to next window “ctrl-a n”
switch to previous window “ctrl-a p”
switch to list of windows “ctrl-a “”
switch to a particular window “ctrl-a <number>”
detach sreen “ctrl-a d”
reattach sreen “screen -r”
kill a window “ctrl-a k”
rename a window “ctrl-a A”
Move between split sections of the screen “ctrl-a <TAB>”
Split the current window in two “ctrl-a S”
Kill all regions but the current one “ctrl-a Q”
remove active window from split screen “ctrl-a X”
C-a S (split) command, you can adjust the size with C-a :resize n (n is the number of lines, also +n and -n to add or remove lines).
references
http://linuxgazette.net/147/appaiah.html
http://www.debian-administration.org/articles/34
http://www.neophob.com/serendipity/index.php?/archives/112-GNU-Screen-cheat-sheet.html
Posted in GNU/Linux | No Comments »
February 29th, 2008
fdupes is a program for identifying/deleting duplicate files residing within specified directories.
How I typically use it to find duplicate files
fdupes -r -n -1 -S /path/of/directory/to/search/for/dups
How I typically use it to delete duplicate files. It will prompt you for which file to delete. You can preserve multiple files by using a comma separated list of values. See documentation for caveats.
fdupes -r -n -1 -S -d /path/of/directory/to/search/for/dups
Reference
http://linux.die.net/man/1/fdupes
http://netdial.caribe.net/~adrian2/fdupes.html
Posted in Linux Commands | 1 Comment »
February 8th, 2008
type “uname -r” into a terminal window 
Posted in Linux Commands | No Comments »