<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NonStopSites Blog &#187; Tools</title>
	<atom:link href="http://blog.nonstopsites.us/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nonstopsites.us</link>
	<description>Dynamic Websites Done Right!</description>
	<lastBuildDate>Sat, 24 Jul 2010 06:02:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Easiest Way To Solve Windows Install/Uninstall Problems</title>
		<link>http://blog.nonstopsites.us/easiest-way-to-solve-windows-installuninstall-problems/</link>
		<comments>http://blog.nonstopsites.us/easiest-way-to-solve-windows-installuninstall-problems/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 05:24:33 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Windows Uninstaller]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=197</guid>
		<description><![CDATA[I have been running the Microsoft Windows office 2010 Pro Beta version until yesterday. After the official release of Microsoft Office 2010, I wanted to uninstall the Beta version but it would not uninstall. So I tried to install the new release over only to be greeted by an error message asking me to remove [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I have been running the Microsoft Windows office 2010 Pro Beta version until yesterday. After the official release of Microsoft Office 2010, I wanted to uninstall the Beta version but it would not uninstall. So I tried to install the new release over only to be greeted by an error message asking me to remove the pre-release or beta version first. Nice!</p>
<p>Luckily I remembered trusty old <a href="http://support.microsoft.com/kb/290301">Windows Installer CleanUp Utility</a>. It removed beta version in a jiff and now, I am enjoying the all-new Microsoft office 2010.</p>
<p>Windows Installer CleanUp Utility is a great utility to have in your toolbox. Anytime you are having an issue uninstalling a program, use this utility.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/easiest-way-to-solve-windows-installuninstall-problems/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/easiest-way-to-solve-windows-installuninstall-problems/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/easiest-way-to-solve-windows-installuninstall-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ColorBox JQuery Plugin</title>
		<link>http://blog.nonstopsites.us/using-colorbox-jquery-plugin/</link>
		<comments>http://blog.nonstopsites.us/using-colorbox-jquery-plugin/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 04:19:13 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=157</guid>
		<description><![CDATA[There are a number of lightbox tools are available. Until I discovered ColorBox JQuery plugin, I wasn't completely comfortable using any of them. Why ColorBox? Well, it is easy to use, lightweight and it supports all kinds of different content like photos, photo groups, slideshow, ajax, inline, and iframed content. I am using ColorBox JQuery [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>There are a number of lightbox tools are available. Until I discovered <a href="http://colorpowered.com/colorbox/">ColorBox JQuery plugin</a>, I wasn't completely comfortable using any of them.</p>
<p>Why ColorBox? Well, it is easy to use, lightweight and it supports all kinds of different content like photos, photo groups, slideshow, ajax, inline, and iframed content.</p>
<p>I am using ColorBox JQuery plugin on one of my sites but I wish it was as easy as the <a href="http://www.longren.org/wordpress/thumbnail-viewer/">thumbnail viewer plugin</a> when using on a WordPress site. With thumbnail viewer plugin all you need to do is add rel=thumbnail to any link tag surrounding your thumbnail. You'll see an example below.</p>
<p>There are a couple of <a href="http://wordpress.org/extend/plugins/tags/colorbox">WordPress ColorBox plugins available</a>. I haven't tried the LightBox Plus yet. I haven't been able to get the JQuery ColorBox WordPress plugin to work. I'd rather use ColorBox JQuery plugin on my WordPress site without a plugin. I am still experimenting with that. Including JQuery functions on WordPress header is a little different. I will soon update you on that. Stay tuned...</p>
<p>UPDATE 03/06/2010:</p>
<p>OK! Now the image on this post works with ColorBox. Here is how I made it work:</p>
<p>Added the link to the ColorBox stylesheet on the header.php right after all the other stylesheet links.<br />
After  "wp_head();", I put the link to the ColorBox script and the JQuery function call:</p>
<blockquote><p>
$(document).ready(function($){<br />
	$("a[rel='colorbox']").colorbox();<br />
});
</p></blockquote>
<p>Now, pay attention to the $ in the function bracket. You won't see it on ColorBox example pages. This is required when you are adding JQuery functions to your WordPress header. Without that all the $ within your code would not be interpreted correctly. This is the best way to add JQuery functions to your WordPress header.</p>
<p>Finally I added the rel="colorbox" to the link to the image. You can use a different name but make sure it is the same one you in the JQuery function.</p>
<p>One last point: If you have the <a href="http://blog.nonstopsites.us/wordpress-flickr-manager-plugin/">WordPress Flickr Manager plugin</a> as I do, disable the image viewer.</p>
<p>Here is the ColorBox example:</p>
<p><a href="http://blog.nonstopsites.us/wp-content/uploads/2010/01/1257390858019.jpg" rel="colorbox"><img src="http://blog.nonstopsites.us/wp-content/uploads/2010/01/1257390858019-216x300.jpg" alt="" title="ColorBox Test" width="216" height="300" class="aligncenter size-medium wp-image-159" /></a></p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/using-colorbox-jquery-plugin/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/using-colorbox-jquery-plugin/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/using-colorbox-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Complete Protection And Advanced Security Features with Comodo Internet Security Pro</title>
		<link>http://blog.nonstopsites.us/get-complete-protection-and-advanced-security-features-with-comodo-internet-security-pro/</link>
		<comments>http://blog.nonstopsites.us/get-complete-protection-and-advanced-security-features-with-comodo-internet-security-pro/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 02:52:26 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=111</guid>
		<description><![CDATA[Resource management is better than before, with hogging all but eliminated. It provides a smorgasbord of information and options for advanced users, but it's simple enough for beginners, and runs smoothly and silently in the background. The version 3 interface utilizes a plain white color scheme and replaces old terminology with more intuitive terms such [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><a target='new' href="http://click.linksynergy.com/fs-bin/click?id=JzooHArxgCs&#038;offerid=173837.10000060&#038;subid=0&#038;type=4"><IMG border="0"   alt="Comodo Internet Security Pro" src="http://ad.linksynergy.com/fs-bin/show?id=JzooHArxgCs&#038;bids=173837.10000060&#038;subid=0&#038;type=4&#038;gridnum=0"></a></p>
<blockquote><p>Resource management is better than before, with hogging all but eliminated. It provides a smorgasbord of information and options for advanced users, but it's simple enough for beginners, and runs smoothly and silently in the background. The version 3 interface utilizes a plain white color scheme and replaces old terminology with more intuitive terms such as Summary, Firewall, Defense, and Miscellaneous. In each, there are links to relevant security issues so users can drill down to learn more about how the firewall is performing. The firewall rears its head most often when Security Alerts ask about new Internet connections as the program "learns" your computer's behavior. </p></blockquote>
<p><a href="http://download.cnet.com/Comodo-Internet-Security/3000-10435_4-10460704.html" target="_blank"><br />
CNET editors' review by: Seth Rosenblatt on June 22, 2009</a></p>
<p><a  href="http://click.linksynergy.com/fs-bin/click?id=JzooHArxgCs&#038;offerid=173837.10000017&#038;type=3&#038;subid=0" >Try Comodo Internet Security Pro for 30 Days, FREE</a><IMG border=0 width=1 height=1 src="http://ad.linksynergy.com/fs-bin/show?id=JzooHArxgCs&#038;bids=173837.10000017&#038;type=3&#038;subid=0" ></p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/get-complete-protection-and-advanced-security-features-with-comodo-internet-security-pro/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/get-complete-protection-and-advanced-security-features-with-comodo-internet-security-pro/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/get-complete-protection-and-advanced-security-features-with-comodo-internet-security-pro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Money with eBay Affiliate Program</title>
		<link>http://blog.nonstopsites.us/making-money-with-ebay-affiliate-program/</link>
		<comments>http://blog.nonstopsites.us/making-money-with-ebay-affiliate-program/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 06:44:52 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[affiliate]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[monetize]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=46</guid>
		<description><![CDATA[Information About Monetizing Blogs by Using eBay Affiliate Program and phpBayPro Plugin for WordPress.]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><a title="phpBay Pro" href="http://www.phpbay.com/affiliates/jrox.php?id=1470"><strong>phpBay Pro</strong></a> is a great Ebay Affiliate plugin for WordPress for  generating affiliate income using eBay partner Network. With <a title="phpBay Pro" href="http://www.phpbay.com/affiliates/jrox.php?id=1470"><strong>phpBay Pro</strong></a>,  you can quickly and easily add rich keyword based content to your WordPress blog to complement your existing content.</p>
<p><a title="phpBay Pro" href="http://www.phpbay.com/affiliates/jrox.php?id=1470">phpBay Pro</a> plugin for WordPress is a powerful tool you can use to integrate eBay auctions into your  website / blog. When a user  clicks on a product and places a winning bid, you receive a commission from ebay.</p>
<p>If you have been thinking about finding additional ways of monetizing your blog; <a title="phpBayPro" href="http://www.phpbay.com/affiliates/jrox.php?id=1470">phpBay Pro</a> is the way to go. You do not even need to build full-blown auction sites. Just add 5-10 auction items that are related to what you are writing about on some of your posts by using <a title="phpBayPro" href="http://www.phpbay.com/affiliates/jrox.php?id=1470">phpBayPro</a>. Your readers will appreciate the immediate availability of products you are writing about and you will make money when they purchase these products.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/making-money-with-ebay-affiliate-program/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/making-money-with-ebay-affiliate-program/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/making-money-with-ebay-affiliate-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Constant Contact for Email Marketing</title>
		<link>http://blog.nonstopsites.us/constant-contact-for-email-marketing/</link>
		<comments>http://blog.nonstopsites.us/constant-contact-for-email-marketing/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 06:02:48 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[NonStopSites]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=33</guid>
		<description><![CDATA[Here is another tool I use and recommend: Constant Contact for email marketing, newsletters and online surveys. It does not cost a bundle, it is easy to use and you can get started immediately. It is do-it-yourself email marketing at its best. I have been using constant contact for years now and I am impressed [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Here is another tool I use and recommend:</p>
<p>Constant Contact for email marketing, newsletters and online surveys. It does not cost a bundle, it is easy to use and you can get started immediately. It is do-it-yourself email marketing at its best. I have been using constant contact for years now and I am impressed by their service. They have a variety of templates that are easy to use and customize. They also make it a snap to create subscription forms that you can integrate into your web site.</p>
<blockquote><p>Constant Contact's leading email marketing and online survey tools supported by its expert personal coaching and support help all types of small businesses and organizations create professional-looking email newsletters and insightful online surveys and begin a dialogue with their customers.</p></blockquote>
<p>The service is great to build and maintain an opt-in list for permission based email marketing. You can send eye-catching HTML email newsletters, email postcards, coupons to your clients, customers or web site visitors. There is a wealth of information available on their site.</p>
<p>You can try Constant Contact free.</p>
<p><a onmouseover="window.status='http://affiliate.constantcontact.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.dpbolvw.net/bd111p-85-7NQWUPSQQNWPSRUUQ" target="_blank">Do-It-Yourself Email Marketing</a><br />
<img src="http://www.awltovhc.com/7g116qmqeki36CA58663C587AA6" border="0" alt="" width="1" height="1" /></p>
<p>Â </p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/constant-contact-for-email-marketing/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/constant-contact-for-email-marketing/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/constant-contact-for-email-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Site in a Hurry</title>
		<link>http://blog.nonstopsites.us/wordpress-site-hurry/</link>
		<comments>http://blog.nonstopsites.us/wordpress-site-hurry/#comments</comments>
		<pubDate>Sat, 10 May 2008 18:53:11 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[NonStopSites]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=32</guid>
		<description><![CDATA[Last week I had to put together a site in a few hours that would contain videos, mp3 files and a simple contact form.  Considering the lack of time I decided toÂ useÂ WordPress to put this site together. Step One was to pick a theme that I can quickly make it look distinct without spending much time. I [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Last week I had to put together a site in a few hours that would contain videos, mp3 files and a simple contact form.  Considering the lack of time I decided toÂ useÂ WordPress to put this site together.</p>
<p>Step One was to pick a theme that I can quickly make it look distinct without spending much time. I found the <a title="Options Theme by Justin Tadlock" href="http://justintadlock.com/archives/2008/02/24/options-wordpress-theme" target="_self">Options theme by Justin Tadlock</a> was perfect for the job. I have not studied the documentation and not even using most of the options available but it was a good choice since it fit the project.</p>
<p>Step Two was to add some static pages. One was a location page where I wanted to use Google Maps Plugin for WordPress I <a title="Google Maps Plugin for WordPress" href="http://blog.nonstopsites.us/google-maps-plugin-for-wordpress/" target="_self">mentioned here before</a>. Unfortunately it only displayed the map as a gray rectangle. Figuring that it was due to style sheet issues and not having time to go through it, I opted to use the iframe embed of the Google Map which worked perfectly.</p>
<p>I also wanted to have some documents available on this site. I like scribd and the ipaper format so I went ahead and got the <a title="WP IPaper Plugin" href="http://www.beardygeek.com/ipaper-plugin/" target="_self">WP IPaper Plugin</a>. It did not work at first. Since I really wanted to have the IPaper version of documents on this site, I decided to spend a little more time to troubleshoot which led me to discover that the plugin works only if you do not put the access key in quotes. Cool!</p>
<p>It is time for the videos and I realize what a hassle to embed videos in WordPress... Well, after a quick search online I came across <a title="FLV-Embed Plugin" href="http://www.channel-ai.com/blog/plugins/flv-embed/" target="_self">FLV-Embed Plugin</a>. SinceÂ I already had FLV copies of videos available this plugin was a perfect choice.</p>
<p>To have the mp3 files embedded, the clear choice was <a title="Audio Player WordPress Plugin" href="http://www.1pixelout.net/code/audio-player-wordpress-plugin/" target="_self">Audio Player WordPress Plugin</a>.</p>
<p>When it came to deciding on the contact form, I quickly scanned and tried a few plugins promising to accomplish this task effortlessly. Finally I decided to use <a title="cforms II" href="http://www.deliciousdays.com/cforms-plugin" target="_self">cforms II</a>. It is easy to understand, install, use and customize. It does the job!</p>
<p>In less than three hours <a title="Swift299Gas.com" href="http://swift299gas.com/" target="_self">Swift299Gas.com</a> was up and running thanks to WordPress and all these theme and plugin authors who make them available.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/wordpress-site-hurry/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/wordpress-site-hurry/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/wordpress-site-hurry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JQuery</title>
		<link>http://blog.nonstopsites.us/jquery/</link>
		<comments>http://blog.nonstopsites.us/jquery/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 18:44:09 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=27</guid>
		<description><![CDATA[When I wanted to have basic AJAX functionality, I searched, downloaded, tested a variety of AJAX frameworks. In the end I started using JQuery to add AJAX and other nifty interactions to the web sites I build. jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>When I wanted to have basic AJAX functionality, I searched, downloaded, tested a variety of AJAX frameworks. In the end I started using JQuery to add AJAX and other nifty interactions to the web sites I build.</p>
<blockquote><p>jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. <strong>jQuery is designed to change the way that you write JavaScript.</strong></p></blockquote>
<p><a title="JQuery.com" href="http://jquery.com/" target="_blank">JQuery.com</a></p>
<p>Above pretty much sums up what JQuery is and what it will do for you. It is easy to understand and use but if you are in a hurry and need to get certain type of interactions available on your web site, you can find a solution by browsing through the library of plugins that are readily available. In no time you would have Ajax functionality available on your web site.</p>
<p>Here are some of my favorite JQuery Plugins:</p>
<p><a title="Tablesorter JQuery Plugin" href="http://tablesorter.com/docs/" target="_blank">Tablesorter 2.0</a><br />
<a title="MP# Player JQuery Plugin" href="http://www.sean-o.com/jquery/jmp3/" target="_blank">Sean O's MP3 Player</a><br />
<a title="Tabs JQuery Plugin" href="http://stilbuero.de/jquery/tabs_3/" target="_blank">UI Tabs</a></p>
<p>If you wanted to dig deeper and learn more about JQuery, there is a wealth of information available online including tutorials. You may also want to get the following books:</p>
<div class="amtap-item" lang="en" xml:lang="en"><a href="http://www.amazon.com/Learning-jQuery-Interaction-Development-JavaScript/dp/1847192505%3FSubscriptionId%3D1HFSGG3Z2D759XAJMPG2%26tag%3Dnonstopsiteco-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1847192505"><img src="http://ecx.images-amazon.com/images/I/51icudX%2BtaL._SL110_.jpg" width="89" height="110" alt=""/></a><br />
<h3><a href="http://www.amazon.com/Learning-jQuery-Interaction-Development-JavaScript/dp/1847192505%3FSubscriptionId%3D1HFSGG3Z2D759XAJMPG2%26tag%3Dnonstopsiteco-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1847192505">Learning jQuery</a></h3>
<p class="author">Jonathan Chaffer.					Packt Publishing 2007, 					Paperback,				380 pages,				&#36;35.99</p>
</div>
<div class="amtap-item" lang="en" xml:lang="en"><a href="http://www.amazon.com/jQuery-Action-Bear-Bibeault/dp/1933988355%3FSubscriptionId%3D1HFSGG3Z2D759XAJMPG2%26tag%3Dnonstopsiteco-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1933988355"><img src="http://ecx.images-amazon.com/images/I/41xoiw-VC-L._SL110_.jpg" width="88" height="110" alt=""/></a><br />
<h3><a href="http://www.amazon.com/jQuery-Action-Bear-Bibeault/dp/1933988355%3FSubscriptionId%3D1HFSGG3Z2D759XAJMPG2%26tag%3Dnonstopsiteco-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1933988355">jQuery in Action</a></h3>
<p class="author">John Resig (Foreword).					Manning Publications 2008, 					Paperback,				376 pages,				&#36;21.38</p>
</div>
<p>Â </p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/jquery/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/jquery/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SourceGear DiffMerge</title>
		<link>http://blog.nonstopsites.us/sourcegear-diffmerge/</link>
		<comments>http://blog.nonstopsites.us/sourcegear-diffmerge/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 04:29:13 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=25</guid>
		<description><![CDATA[Once you have good solid text editor like UltraEdit, you want to have another tool to compare and merge files. SourceGear DiffMerge isÂ the tool I use to visually compare and merge files. It is easy to use and saves a lot of time for me when applying changes to the different versions of source code. [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Once you have good solid text editor like UltraEdit, you want to have another tool to compare and merge files.</p>
<p><a title="SourceGear DiffMerge" href="http://www.sourcegear.com/diffmerge/index.html" target="_blank">SourceGear DiffMerge</a> isÂ the tool I use to visually compare and merge files. It is easy to use and saves a lot of time for me when applying changes to the different versions of source code. And it is free for <span style="text-decoration: line-through;">a single userÂ </span> pretty much any number of users -- as Paul Roub corrected below.Â I recommend you give it a try.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/sourcegear-diffmerge/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/sourcegear-diffmerge/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/sourcegear-diffmerge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UltraEdit Text Editor</title>
		<link>http://blog.nonstopsites.us/ultraedit-text-editor/</link>
		<comments>http://blog.nonstopsites.us/ultraedit-text-editor/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 06:50:17 +0000</pubDate>
		<dc:creator>Sech</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://blog.nonstopsites.us/?p=20</guid>
		<description><![CDATA[I want to share with everyone the tools I use and recommend on the Tools Categories of this blog. Number one tool everyone needs to have is a good solid text editor. Notepad is useless. There are probably zillions of text editors out there. My choice has been UltraEdit for a long time. It is [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I want to share with everyone the tools I use and recommend on the Tools Categories of this blog.</p>
<p>Number one tool everyone needs to have is a good solid text editor. Notepad is useless. There are probably zillions of text editors out there. My choice has been UltraEdit for a long time. It is just one of these utilities I couldn't do without.Â I find itÂ a lot more intuitive to use compared to other text editors available.</p>
<p>UltraEdit is the ideal text, hex, HTML, PHP, Java, Javascript, Perl, and programmer's editor.Â  I probably am not taking advantage of all of its capabilities but for what IÂ use and what I need it is an absolutely indispensible tool for me. I love that I can open huge text or csv files, do quick searches, use it as a HEX editor, put windows side by side and all kinds of neat stuff. Its search and replace functions are great.</p>
<p>UltraEdit is my text editor and I recommend it to anyone.</p>
<p><a title="Download a Trial Version of UltraEdit" href="http://www.regnow.com/trialware/download/Download_ue_englishv1400+1.exe?item=13992-1&amp;affiliate=178221" target="_self">Click here to try UltraEdit</a>.</p>
<p>Â </p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://blog.nonstopsites.us/ultraedit-text-editor/')" href="http://www.sphere.com/search?q=sphereit:http://blog.nonstopsites.us/ultraedit-text-editor/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nonstopsites.us/ultraedit-text-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
