Category: Tips and Tricks

Update ColdFusion with Unofficial Updater 2

ColdFusion has numerous hot fixes and security bulletins published and available for download. However, navigating through the Adobe website to obtain all necessary patches can be a daunting experience. Once you have the patches, then there is the application of each patch. Through the ColdFusion Adminstrator, select the patch, apply the patch (if it doesn’t fail), stop and start services,…

Read More »

Update ColdFusion 9 JVM on Windows

ColdFusion 9.0.1 ships with Java 1.6.0_17. This guide will show how to upgrade to a newer version of Java. ColdFusion supports all minor releases of Java. For example, if ColdFusion supports JDK 1.6.0, all JDK 1.6.0_x updates are supported. JDK 1.7.0 is not considered a minor Java release. Unless explicitly stated that ColdFusion supports JDK 1.7.0, you cannot upgrade to…

Read More »

A Custom SyntaxHighlighter 2.0 brush for INNO Setup

Using the SyntaxHighlighter Evolved Plugin (version 2.x) for WordPress has really given the code on this site more curb appeal. As many brushes that come with the plugin and searching through the third-party brushes throughout the Internet, I could not track down a brush for INNO Setup scripts. After a couple of hours and many attempts at this, I have…

Read More »

Add SyntaxHighlighter Evolved Plugin Third Party Brushes To Your WordPress Installation

SyntaxHighlighter Evolved allows you to easily post syntax-highlighted code to your site without losing it’s formatting or making any manual changes. It uses the SyntaxHighlighter JavaScript package by Alex Gorbatchev. It is prepackaged with a select handful of brushes, which includes several third-party brushes. There are many more third-party brushes that are available and not part of the plug-in package….

Read More »
VMWare Logo

Optimize VMware Virtual Machines Using a Batch File

Years ago, there was a couple of batch files that were floating around the Internet that were designed to defrag and shrink virtual machines created and used by VMware Workstation or VMware Server. Over time, the scripts became a little obsolete in that some of the command line functionality was lost from the removal of a utility, vmware-mount, from newer…

Read More »

Microsoft Windows XP won’t detect SATA DVD drive

An older Pentium 4 computer recently had an IDE DVD burner that died. The quick replacement available was a SATA DVD burner. The BIOS recognized the drive, but Windows XP SP3 did not. It turned out to be a quick fix. Go to Device Manager and uninstall the IDE ATA/ATAPI controllers. After the computer rebooted, the controller automatically reinstalled, this…

Read More »

Enable The Root User In Ubuntu 10.0.4

Many Linux distributions permit the use of the root user as a primary login, however, the dominant and popular Ubuntu has left some users in a conundrum. In order to perform tasks as a root user, this must be performed within a terminal window with the sudo command. However, here are a set of instructions that will allow the root…

Read More »

Install SelfSSL on IIS 6.0 Development Server

A production IIS 6.0 server serves secure pages using SSL. To get a development server as close to the production server as possible, the final touch was to add a SSL. Since the SSL is generated for the production server, it cannot be used on the development server. A new SSL is needed. To accomplish this, use SelfSSL 1.0. The…

Read More »

Download YouTube Content with Firefox and Add-ons

There are many plugins that are available to Firefox users that are capable of great many things. In some cases, as is the case of YouTube downloaders, there are many add-on to from which to choose. Not all add-ons are created equally, so to determine which one is best for your particular situation, you may find yourself downloading all the…

Read More »

Update Multiple Linux Servers Simultaneously From Windows

Unlike Windows, Linux can be extremely flexible. Have you ever updated multiple Windows servers. It is a daunting task, even when using an automated approach like WSUS or whatever it is called these days. Linux is easier, however, to log into server, and run a simple command can become time-consuming if there are many servers. I have written a script…

Read More »

Making background image fit any screen resolution with CSS

The usual approach for placing a background image is by placing the background within the body using CSS. No modifications are needed to the HTML file for the background to be displayed. However, what if instead of a small repeating image, a much larger, single image is desired. In some resolutions this approach with some slight modifications to the CSS…

Read More »

Change the Microsft Word setting for automatic curly quotes to straight quotes

Microsft Word 2007 automatically changes straight quotes to curly quotes. While they may have some esthetic appeal to some, when writing code or scripts that contain quotes, the code is automatically broken. Well not that anyone would use Microsoft Word to write code, however, when documenting your code. There is a fix. It works. Here is an example of curly…

Read More »

Track Date and Time A Document is Modified using Microsft Word 2007

In a Microsoft Office Word 2007 document it is possible to track modified dates and times from within the document. Instead of manually maintaining a document with a line like Last Modified July 20, 2012, there is built in functionality from within Word that will maintain this date. Launch Microsoft Word and type something like Last Modified. In a previously…

Read More »

Use scp command for file transfer in Linux

The goal is to copy files from one Linux computer to another Linux computer. The scp command is the command of choice. To get help, type scp –help, the result is the following usage syntax. Basic syntax is scp source destination on a local Linux computer. However if the source is a remote computer, add the following to the syntax….

Read More »

How to Sort Text Using Notepad++

Notepad++ is a free source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License. For one reason or another, the process for sorting text within Notepad++ seems to elude me. Some text editors have a plugin that is easy to identify, well so does Notepad++, when you…

Read More »

Remove All Pictures from Spreadsheet

Sometimes you may copy and paste a web page into an Excel spreadsheet, the result may be a spreadsheet peppered with pictures throughout. Too many to individually delete. There is a way to remove all pictures from a spreadsheet by using a macro. Press ALT F8 to get the Macro box. Type in a name and edit it. Copy and…

Read More »

Changing the name of a SQL Server Machine

After cloning a Microsoft SQL 2000 Server into a virtual machine and renaming the server, the scheduled Jobs no longer worked. Essentially, the reason is that the jobs were created while using a server with a different server name. The SQL Server will act as if the job originated on a master server, and will not allow changes to that…

Read More »