<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Estes Technology Group</title>
	<atom:link href="http://estestech.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://estestech.wordpress.com</link>
	<description>IT That Works For You!</description>
	<lastBuildDate>Mon, 29 Jun 2009 15:14:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='estestech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/a475afb759c684ea5c650f7c84fd8c6b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Estes Technology Group</title>
		<link>http://estestech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://estestech.wordpress.com/osd.xml" title="Estes Technology Group" />
		<item>
		<title>Display Featured Links Randomly Using PHP</title>
		<link>http://estestech.wordpress.com/2009/06/29/display-featured-links-randomly-using-php/</link>
		<comments>http://estestech.wordpress.com/2009/06/29/display-featured-links-randomly-using-php/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 14:23:37 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work Links]]></category>
		<category><![CDATA[clickableLinks]]></category>
		<category><![CDATA[CodeProject]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[random links]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/06/29/display-featured-links-randomly-using-php/</guid>
		<description><![CDATA[Use PHP to read a CSV file and automatically generate links for display.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=121&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had a request to add a &quot;Link of the Day&quot; feature to one of the pages on the Law-related Education pages of the <a href="http://www.okbar.org/">OBA</a> Web site using what we currently have in place.&#160; I’m sure there are widgets out there already that will do this for me, and it may even be built into whatever CMS we deploy next, but I wanted to learn a bit so I decided to implement it on our current site.&#160; I don’t know much about PHP, but I learned to code in VB.NET and C++, so I can learn enough as I go to make things work.</p>
<p>With the help of The Google, I was able to piece together a little bit of code that reads from a CSV file into an array, then randomly displays a link from within that array on each page load, so that a new link is loaded on each visit.</p>
<p>The original code has appeared in several forms across the Internet already, so if it’s yours, please let me know so I can credit you.&#160; I’ve made some slight adjustments to fit my needs.</p>
<pre></pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  1: <span style="color:#0000ff;">&lt;?</span>php
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  2: <a style="color:#0000ff;" href="http://www.php.net/function">function</a> makeClickableLinks($text) {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  3:
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  4:   $text = <a style="color:#ffa500;" href="http://www.php.net/eregi_replace">eregi_replace</a>('<span style="color:#8b0000;">(((f|ht){1}(tp|tps)://)[-a-zA-Z0-9@:%_\+.~#?&amp;//=]+)</span>',
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  5:     '<span style="color:#8b0000;">\\1</span>', $text);
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  6:   $text = <a style="color:#ffa500;" href="http://www.php.net/eregi_replace">eregi_replace</a>('<span style="color:#8b0000;">([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&amp;//=]+)</span>',
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  7:     '<span style="color:#8b0000;">\\1\\2</span>', $text);
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  8:   $text = <a style="color:#ffa500;" href="http://www.php.net/eregi_replace">eregi_replace</a>('<span style="color:#8b0000;">([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})</span>',
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;">  9:     '<span style="color:#8b0000;">\\1</span>', $text);
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 10:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 11: <a style="color:#0000ff;" href="http://www.php.net/return">return</a> $text;
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 12:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 13: } <span style="color:#008000;">// end function</span>
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 14:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 15:
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 16: <a style="color:#0000ff;" href="http://www.php.net/function">function</a> displayLink(){
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 17:
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 18: $fp = <a style="color:#ffa500;" href="http://www.php.net/fopen">fopen</a>(&quot;<span style="color:#8b0000;">your-file.csv</span>&quot;, &quot;<span style="color:#8b0000;">r</span>&quot;);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 19: <a style="color:#0000ff;" href="http://www.php.net/while">while</a> (!<a style="color:#ffa500;" href="http://www.php.net/feof">feof</a> ($fp)) {
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 20: $contents[] = <a style="color:#ffa500;" href="http://www.php.net/explode">explode</a>(&quot;<span style="color:#8b0000;">,</span>&quot;, <a style="color:#ffa500;" href="http://www.php.net/fgets">fgets</a>($fp, 512));
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 21: }
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 22: <a style="color:#ffa500;" href="http://www.php.net/fclose">fclose</a> ($fp);
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 23:
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 24: <a style="color:#0000ff;" href="http://www.php.net/do">do</a> {
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 25: 	$x = <a style="color:#ffa500;" href="http://www.php.net/rand">rand</a>(0, <a style="color:#ffa500;" href="http://www.php.net/count">count</a>($contents)-1);
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 26: 		} <a style="color:#0000ff;" href="http://www.php.net/while">while</a> ($contents[$x] == '<span style="color:#8b0000;">0</span>');
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 27:
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 28: <span style="color:#008000;">// displays link title above clickable URL</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 29: <a style="color:#0000ff;" href="http://www.php.net/echo">echo</a> $contents[$x][0] . &quot;<span style="color:#8b0000;">&lt;br /&gt;\n</span>&quot; . makeClickableLinks($contents[$x][1]) . &quot;<span style="color:#8b0000;">&lt;br /&gt;\n</span>&quot;;</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 30:
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 31: <span style="color:#008000;">// displays link title as clickable link</span>
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 32: <a style="color:#0000ff;" href="http://www.php.net/echo">echo</a> '<span style="color:#8b0000;">&lt;a href=&quot;</span>' . $contents[$x][1] . '<span style="color:#8b0000;">&quot; rel=&quot;nofollow&quot;&gt;</span>' . $contents[$x][0] . '<span style="color:#8b0000;">&lt;/a&gt;</span>';
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 33: </pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 34: } <span style="color:#008000;">// end function</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 35:
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 36: <span style="color:#0000ff;">?&gt;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 37: <span style="color:#0000ff;">&lt;</span><span style="color:#800000;">body</span><span style="color:#0000ff;">&gt;</span>
</pre>
<pre style="background-color:#ffffff;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 38: <span style="color:#0000ff;">&lt;?</span>php displayLink(); <span style="color:#0000ff;">?&gt;</span>
</pre>
<pre style="background-color:#fbfbfb;width:100%;font-family:consolas,&#39;font-size:12px;margin:0;"> 39: <span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">body</span><span style="color:#0000ff;">&gt;</span></pre>
<p><a href="http://stgwww.okbar.org/morgan/lre-links.php" rel="nofollow">Click to view a working sample of this page here</a>.</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b4d33fb5-ed30-4407-9318-26d24cb637c8" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/PHP" rel="tag">PHP</a>,<a href="http://del.icio.us/popular/CSV" rel="tag">CSV</a>,<a href="http://del.icio.us/popular/random+links" rel="tag">random links</a>,<a href="http://del.icio.us/popular/Web+Development" rel="tag">Web Development</a>,<a href="http://del.icio.us/popular/clickableLinks" rel="tag">clickableLinks</a></div>
</p>
<p>WordPress Tags: <a href="http://wordpress.com/tag/Display" rel="Tag">Display</a>,<a href="http://wordpress.com/tag/Links" rel="Tag">Links</a>,<a href="http://wordpress.com/tag/Link" rel="Tag">Link</a>,<a href="http://wordpress.com/tag/Education" rel="Tag">Education</a>,<a href="http://wordpress.com/tag/code" rel="Tag">code</a>,<a href="http://wordpress.com/tag/Google" rel="Tag">Google</a>,<a href="http://wordpress.com/tag/Internet" rel="Tag">Internet</a>,<a href="http://wordpress.com/tag/text" rel="Tag">text</a>,<a href="http://wordpress.com/tag/Click" rel="Tag">Click</a>,<a href="http://wordpress.com/tag/Development" rel="Tag">Development</a>,<a href="http://wordpress.com/tag/adjustments" rel="Tag">adjustments</a>,<a href="http://wordpress.com/tag/makeClickableLinks" rel="Tag">makeClickableLinks</a>,<a href="http://wordpress.com/tag/eregi_replace" rel="Tag">eregi_replace</a>,<a href="http://wordpress.com/tag/displayLink" rel="Tag">displayLink</a>,<a href="http://wordpress.com/tag/clickable" rel="Tag">clickable</a><br />
<a href="http://www.codeproject.com/script/Articles/BlogFeedList.aspx?amid=1820269" rel="tag">My CodeProject articles</a></p>
Posted in Main, Tech Tips, Web Development, Work Links Tagged: clickableLinks, CodeProject, CSV, Link of the Day, PHP, random links, Web Development <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=121&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/06/29/display-featured-links-randomly-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
		<item>
		<title>Bonjour, mDNS Responder!</title>
		<link>http://estestech.wordpress.com/2009/06/17/bonjour-mdns-responder/</link>
		<comments>http://estestech.wordpress.com/2009/06/17/bonjour-mdns-responder/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 20:08:54 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech support]]></category>
		<category><![CDATA[Bonjour]]></category>
		<category><![CDATA[goodbye]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[mDNSResponder.exe]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/06/17/bonjour-mdns-responder/</guid>
		<description><![CDATA[I’m tired of iTunes.&#160; Listening to streaming radio is frustrating, as it stops to buffer often and brings the window to the front every time, which interrupts what I’m working on.&#160; I can just listen to the station straight from the browser, thankyouverymuch.&#160; It’s a hog when it’s running, Apple assumes I have an iWhatever [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=120&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I’m tired of iTunes.&#160; Listening to streaming radio is frustrating, as it stops to buffer often and brings the window to the front every time, which interrupts what I’m working on.&#160; I can just listen to the station straight from the browser, thankyouverymuch.&#160; It’s a hog when it’s running, Apple assumes I have an iWhatever and tries to force apps down my throat every time I start up.&#160; The only good thing with it was that I can download movies to watch on demand.&#160; Oh, and it’s a pretty decent podcaster, but that can be handled with other, nicer software.</p>
<p>So I removed iTunes, but that pesky Bonjour remained to laugh at me, as if to say “you can’t leave Apple behind, we’re the silent Google!”.&#160; Fun.&#160; Thanks to the wonderful Interweb, here’s how I got rid of it once and for all:</p>
<p><a href="http://www.raymond.cc/blog/archives/2008/02/10/how-to-uninstall-or-remove-bonjour-mdnsresponderexe/">How To Uninstall or Remove Bonjour mDNSResponder.exe</a></p>
<p>Hope this helps!</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:419ebf37-03c8-4118-bb62-9e009ba6a068" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/apple" rel="tag">apple</a>,<a href="http://del.icio.us/popular/iTunes" rel="tag">iTunes</a>,<a href="http://del.icio.us/popular/mDNSResponder.exe" rel="tag">mDNSResponder.exe</a>,<a href="http://del.icio.us/popular/Bonjour" rel="tag">Bonjour</a>,<a href="http://del.icio.us/popular/goodbye" rel="tag">goodbye</a>,<a href="http://del.icio.us/popular/uninstall" rel="tag">uninstall</a>,<a href="http://del.icio.us/popular/remove" rel="tag">remove</a></div>
</p>
<p> WordPress Tags: <a href="http://wordpress.com/tag/Bonjour" rel="Tag">Bonjour</a>,<a href="http://wordpress.com/tag/Responder" rel="Tag">Responder</a>,<a href="http://wordpress.com/tag/Apple" rel="Tag">Apple</a>,<a href="http://wordpress.com/tag/Google" rel="Tag">Google</a>,<a href="http://wordpress.com/tag/Interweb" rel="Tag">Interweb</a>,<a href="http://wordpress.com/tag/Uninstall" rel="Tag">Uninstall</a>,<a href="http://wordpress.com/tag/Remove" rel="Tag">Remove</a>,<a href="http://wordpress.com/tag/goodbye" rel="Tag">goodbye</a>,<a href="http://wordpress.com/tag/iTunes" rel="Tag">iTunes</a>,<a href="http://wordpress.com/tag/mDNSResponder" rel="Tag">mDNSResponder</a></p>
Posted in Apple, Main, Software, Tech support Tagged: Apple, Bonjour, goodbye, iTunes, mDNSResponder.exe <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=120&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/06/17/bonjour-mdns-responder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
		<item>
		<title>Don&#8217;t Forget to Clean Your Code!</title>
		<link>http://estestech.wordpress.com/2009/06/17/dont-forget-to-clean-your-code/</link>
		<comments>http://estestech.wordpress.com/2009/06/17/dont-forget-to-clean-your-code/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 15:03:15 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/06/17/dont-forget-to-clean-your-code/</guid>
		<description><![CDATA[I recently was asked to update a Web page with a rather long list of names, which were provided in a Word document.&#160; I use a combination of Dreamweaver and Expression Web, because they both have good tools for stripping out problematic HTML from Word, but today they weren’t much help.
This particular document had a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=119&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently was asked to update a Web page with a rather long list of names, which were provided in a Word document.&#160; I use a combination of <a href="http://www.adobe.com/products/dreamweaver/">Dreamweaver</a> and <a href="http://www.microsoft.com/expression">Expression Web</a>, because they both have good tools for stripping out problematic HTML from Word, but today they weren’t much help.</p>
<p>This particular document had a table (of sorts) built into it, which listed names and cities, but after a good ol’</p>
<p>copy and paste, I found that things didn’t quite line up.&#160; Upon closer review, I found that the “table” was actually made up of tabs and spaces.&#160; While this worked in Word, it made a horrible mess for the Web.&#160; Just doing a copy and paste job created spaces (technically non-breaking spaces &#8212; “nbsp”) that seemed like empty space, but actually take up quite a lot.&#160; In fact, these spaces made the page 322kb!&#160; Most of the larger pages on the site were around 20-25kb, so I took another look at things.</p>
<p>In this case, I decided not to go with a table for the little bit of text that could fit in, instead going with the city name in parentheses after the person’s name.&#160; After removing all the nbsp’s from the code, I was able to shrink the page to 32kb – <strong>a 90% reduction in page size</strong>!&#160; That means the page will load in just over 1 second, instead of over 12 from before.</p>
<p>So, to recap: </p>
<ol>
<li>Copy and paste doesn’t work as expected with the web, so be prepared to clean up your code a bit. </li>
<li>Check for spaces that don’t belong, particularly the “&amp;nbsp;” – they take up more space than just hitting the spacebar does. </li>
<li>Use a tool like <a href="http://getfirebug.com/">Firebug</a> for <a href="http://www.getfirefox.com/">Firefox</a>, or the built-in tools in several other browsers (<a href="http://www.microsoft.com/ie">IE8</a>, <a href="http://www.apple.com/safari">Safari 4</a>, <a href="http://www.google.com/chrome">Chrome</a>) to test your page for load times and see how you can improve them. </li>
</ol>
<p>Windows Live Tags: <a href="http://windows.live.com/connect/tag/Code" rel="clubhouseTag">Code</a>,<a href="http://windows.live.com/connect/tag/Word" rel="clubhouseTag">Word</a>,<a href="http://windows.live.com/connect/tag/Dreamweaver" rel="clubhouseTag">Dreamweaver</a>,<a href="http://windows.live.com/connect/tag/Expression" rel="clubhouseTag">Expression</a>,<a href="http://windows.live.com/connect/tag/tools" rel="clubhouseTag">tools</a>,<a href="http://windows.live.com/connect/tag/HTML" rel="clubhouseTag">HTML</a>,<a href="http://windows.live.com/connect/tag/spaces" rel="clubhouseTag">spaces</a>,<a href="http://windows.live.com/connect/tag/text" rel="clubhouseTag">text</a>,<a href="http://windows.live.com/connect/tag/reduction" rel="clubhouseTag">reduction</a>,<a href="http://windows.live.com/connect/tag/size" rel="clubhouseTag">size</a>,<a href="http://windows.live.com/connect/tag/Copy" rel="clubhouseTag">Copy</a>,<a href="http://windows.live.com/connect/tag/tool" rel="clubhouseTag">tool</a>,<a href="http://windows.live.com/connect/tag/Firebug" rel="clubhouseTag">Firebug</a>,<a href="http://windows.live.com/connect/tag/Firefox" rel="clubhouseTag">Firefox</a>,<a href="http://windows.live.com/connect/tag/Safari" rel="clubhouseTag">Safari</a>,<a href="http://windows.live.com/connect/tag/Chrome" rel="clubhouseTag">Chrome</a>,<a href="http://windows.live.com/connect/tag/nbsp" rel="clubhouseTag">nbsp</a></p>
<p> 
<p>WordPress Tags: <a href="http://wordpress.com/tag/Code" rel="Tag">Code</a>,<a href="http://wordpress.com/tag/Word" rel="Tag">Word</a>,<a href="http://wordpress.com/tag/Dreamweaver" rel="Tag">Dreamweaver</a>,<a href="http://wordpress.com/tag/Expression" rel="Tag">Expression</a>,<a href="http://wordpress.com/tag/tools" rel="Tag">tools</a>,<a href="http://wordpress.com/tag/HTML" rel="Tag">HTML</a>,<a href="http://wordpress.com/tag/spaces" rel="Tag">spaces</a>,<a href="http://wordpress.com/tag/text" rel="Tag">text</a>,<a href="http://wordpress.com/tag/reduction" rel="Tag">reduction</a>,<a href="http://wordpress.com/tag/size" rel="Tag">size</a>,<a href="http://wordpress.com/tag/Copy" rel="Tag">Copy</a>,<a href="http://wordpress.com/tag/tool" rel="Tag">tool</a>,<a href="http://wordpress.com/tag/Firebug" rel="Tag">Firebug</a>,<a href="http://wordpress.com/tag/Firefox" rel="Tag">Firefox</a>,<a href="http://wordpress.com/tag/Safari" rel="Tag">Safari</a>,<a href="http://wordpress.com/tag/Chrome" rel="Tag">Chrome</a>,<a href="http://wordpress.com/tag/nbsp" rel="Tag">nbsp</a> </p>
<p> 
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:36eec063-d3d8-45e2-a14b-b9951da928d6" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/dreamweaver" rel="tag">dreamweaver</a>,<a href="http://del.icio.us/popular/expressionweb" rel="tag">expressionweb</a>,<a href="http://del.icio.us/popular/microsoft" rel="tag">microsoft</a>,<a href="http://del.icio.us/popular/word" rel="tag">word</a>,<a href="http://del.icio.us/popular/html" rel="tag">html</a>,<a href="http://del.icio.us/popular/cleancode" rel="tag">cleancode</a>,<a href="http://del.icio.us/popular/nbsp" rel="tag">nbsp</a></div>
Posted in Main, Microsoft, Tech Tips, Web Development Tagged: Dreamweaver, Expression Web, html, Microsoft, Web Development, Word <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=119&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/06/17/dont-forget-to-clean-your-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
		<item>
		<title>If you need to track your mileage for work, here&#8217;s an easy tool for you</title>
		<link>http://estestech.wordpress.com/2009/02/20/if-you-need-to-track-your-mileage-for-work-heres-an-easy-tool-for-you/</link>
		<comments>http://estestech.wordpress.com/2009/02/20/if-you-need-to-track-your-mileage-for-work-heres-an-easy-tool-for-you/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 17:14:57 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[IRS]]></category>
		<category><![CDATA[mileage]]></category>
		<category><![CDATA[taxes]]></category>
		<category><![CDATA[TripBook]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/02/20/if-you-need-to-track-your-mileage-for-work-heres-an-easy-tool-for-you/</guid>
		<description><![CDATA[&#160;
Many small business owners and consultants spend time on the road in their personal vehicles traveling to clients and work sites.&#160; We know those miles need to be tracked for tax purposes (money back from the IRS is a good thing), but it’s often a pain to do.&#160; That’s where the TripBook comes into play.
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=118&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#160;</p>
<p>Many small business owners and consultants spend time on the road in their personal vehicles traveling to clients and work sites.&#160; We know those miles need to be tracked for tax purposes (money back from the IRS is a good thing), but it’s often a pain to do.&#160; That’s where the <a href="http://www.gisteq.com/TripBook/" target="_blank">TripBook</a> comes into play.</p>
<p> <span id="more-118"></span>
<p>Here’s the idea: you don’t want to carry a log book around in the car just for tracking your mileage.&#160; What if you forget to write it down, or need to make extra notes?&#160; You either open your laptop right then and try to keep track of it all, or you try to remember to bring your log book into the office and back to the car.&#160; We all know what a pain it is to track these things, and in the end we ask ourselves if it’s really worth the few cents we get back for it.</p>
<p>The answer is “Yes!”&#160; So here’s what you do.&#160; Plug the TripBook into your cigarette lighter when you start your trip.&#160; Take it out when you’re done.&#160; Plug the TripBook into your computer’s USB port and review your trip.&#160; It takes care of reports and tracking so you don’t have to worry about it.</p>
<p>TripBook can also be used to keep track of employees so they don’t have to maintain separate travel records, which minimizes accounting problems.</p>
<p>Related Posts:</p>
<p><a href="http://www.engadget.com/2009/02/19/gisteq-usb-dongle-makes-trip-logging-quick-easy-and-utterly-he/">GiSTEQ USB dongle makes trip logging quick, easy, and utterly heroic</a></p>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:75b013db-b9f7-4daf-9812-5fd72f4d229d" style="display:inline;float:none;margin:0;padding:0;">del.icio.us Tags: <a href="http://del.icio.us/popular/GPS" rel="tag">GPS</a>,<a href="http://del.icio.us/popular/IRS" rel="tag">IRS</a>,<a href="http://del.icio.us/popular/mileage" rel="tag">mileage</a>,<a href="http://del.icio.us/popular/TripBook" rel="tag">TripBook</a>,<a href="http://del.icio.us/popular/taxes" rel="tag">taxes</a>,<a href="http://del.icio.us/popular/logger" rel="tag">logger</a></div>
Posted in Main, Software, Tech Tips Tagged: GPS, IRS, mileage, taxes, TripBook <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=118&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/02/20/if-you-need-to-track-your-mileage-for-work-heres-an-easy-tool-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
		<item>
		<title>Tweet, Tweet</title>
		<link>http://estestech.wordpress.com/2009/02/10/tweet-tweet/</link>
		<comments>http://estestech.wordpress.com/2009/02/10/tweet-tweet/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 22:54:25 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/02/10/tweet-tweet/</guid>
		<description><![CDATA[New, exciting things happening here in OKC.&#160; You can follow Estes Tech on twitter for updates to the blog and news items.
Follow us at http://www.twitter.com/estestech for the latest happenings!
Posted in Main       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=117&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>New, exciting things happening here in OKC.&#160; You can follow Estes Tech on <a href="http://www.twitter.com/estestech">twitter</a> for updates to the blog and news items.</p>
<p>Follow us at <a href="http://www.twitter.com/estestech">http://www.twitter.com/estestech</a> for the latest happenings!</p>
Posted in Main  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=117&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/02/10/tweet-tweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
		<item>
		<title>&quot;Could not Open Install.Log File!&quot; Problem Solved!!</title>
		<link>http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/</link>
		<comments>http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 23:12:28 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Tech support]]></category>
		<category><![CDATA[could not open install.log file]]></category>
		<category><![CDATA[error messages]]></category>
		<category><![CDATA[install.log]]></category>
		<category><![CDATA[Symantec]]></category>
		<category><![CDATA[uninstall]]></category>
		<category><![CDATA[Wise]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/</guid>
		<description><![CDATA[When a program won't uninstall properly and unwise.exe generates the error message "Could not open INSTALL.LOG file", here are a few steps that might help you out.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=112&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="wlWriterEditableSmartContent" id="scid:d7bf807d-7bb0-458a-811f-90c51817d5c2:b4719621-0c12-4063-88ad-bbc8299dba9e" style="display:inline;float:none;margin:0;padding:0;">
<p><span class="TagSite">Technorati:</span> <a href="http://technorati.com/tag/wise+uninstaller" rel="tag" class="tag">wise uninstaller</a>, <a href="http://technorati.com/tag/unwise.exe" rel="tag" class="tag">unwise.exe</a>, <a href="http://technorati.com/tag/Symantec" rel="tag" class="tag">Symantec</a>, <a href="http://technorati.com/tag/install.log" rel="tag" class="tag">install.log</a>, <a href="http://technorati.com/tag/could+not+open+install.log+file" rel="tag" class="tag">could not open install.log file</a>, <a href="http://technorati.com/tag/error+messages" rel="tag" class="tag">error messages</a><br /><!-- StartInsertedTags: wise uninstaller, unwise.exe, Symantec, install.log, could not open install.log file, error messages :EndInsertedTags --></p>
</div>
<p>I recently installed some backup software for testing and decided to remove the ones I wasn’t interested in anymore.&#160; My hard drive has had some corruption issues, which means I’m losing programs, but don’t know it until I try to start them and something fails.&#160; This, I think, is what happened with today’s problem.</p>
<p> <span id="more-112"></span>
<p>When I tried to run the uninstaller from the Add/Remove Programs feature in Windows XP, I was greeted with a message box telling me “Could not open INSTALL.LOG file.”&#160; I opened the folder where the program was installed (%programfiles%\&lt;program name&gt;) and found the INSTALL.LOG file intact.&#160; I was able to open it and read all the contents, which looked OK.&#160; I tried to launch the uninstaller directly, but was greeted with the same error.&#160; A little bit of <a title="Google search results" href="http://www.google.com/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=4qo&amp;q=could+not+open+install.log+file&amp;btnG=Search&amp;aq=f&amp;oq=" target="_blank" rel="nofollow">Googling</a> solved my problem (link below).</p>
<p><a href="http://www.thinkdigit.com/forum/archive/index.php/t-11563.html">&quot;Could not Open Install.Log File!&quot; Problem Solved!! [Archive] &#8211; Digit Online Technology Discussion Forum</a></p>
<p>Turns out that this particular problem is often seen with <a href="http://www.symantec.com/business/wise-installation-studio" target="_blank">Wise uninstallers</a> and is easily remedied.&#160; Just cut and paste the INSTALL.LOG file to another folder (desktop is easy) and run the uninstaller from within the installation folder (NOT Add/Remove Programs).&#160; You’ll be prompted for the install file, so just browse to where you moved it, select and hit OK.&#160; From there, the program should uninstall like normal.&#160; Why?&#160; No idea, but it works like a charm.&#160; I’m sure there are others out there who could detail why this works.&#160; If so, please leave your words of wisdom in the comments section.&#160; Thanks!</p>
</p>
<hr />
<p><span class="TagSite">del.icio.us:</span> <a class="tag" href="http://del.icio.us/popular/uninstall" rel="tag">uninstall</a>, <a class="tag" href="http://del.icio.us/popular/Wise" rel="tag">Wise</a>, <a class="tag" href="http://del.icio.us/popular/Symantec" rel="tag">Symantec</a>, <a class="tag" href="http://del.icio.us/popular/install.log" rel="tag">install.log</a>, <a class="tag" href="http://del.icio.us/popular/could+not+open+install.log+file" rel="tag">could not open install.log file</a>, <a class="tag" href="http://del.icio.us/popular/error+messages" rel="tag">error messages</a>     <br /><!-- StartInsertedTags: uninstall, Wise, Symantec, install.log, could not open install.log file, error messages :EndInsertedTags --></p>
<p> <span class="sbmLink"><br />
<table cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td class="sbmText">Share this post : </td>
<td class="sbmDim"><a class="sbmDim" title="Post it to del.icio.us" href="http://del.icio.us/post?url=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;;title=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/deliciou4.png" border="0" />del.icio.us it!</a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to digg" href="http://digg.com/submit?phase=2&amp;url=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;title=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/digg14.png" border="0" />digg it!</a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to dotnetkicks" href="http://www.dotnetkicks.com/kick/?url=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;title=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/CropperCapture154.jpg" border="0" />dotnetkicks it!</a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to live" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;title=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/live4.png" border="0" />live it!</a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to reddit!" href="http://reddit.com/submit?url=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;title=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/reddit4.png" border="0" />reddit!</a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to technorati!" href="http://technorati.com/faves/?add=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;title=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/technora4.png" border="0" />technorati!</a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to yahoo!" href="http://myweb.yahoo.com/myresults/bookmarklet?u=http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/&amp;t=Could not Open Install.Log File - Problem Solved" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/yahoo9.png" border="0" />yahoo!</a></td>
</tr>
</tbody>
</table>
<p> </span></p>
Posted in Main, Software, Tech support, Tech Tips Tagged: could not open install.log file, error messages, install.log, Symantec, uninstall, Wise <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=112&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/02/03/could-not-open-installlog-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/deliciou4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/digg14.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/CropperCapture154.jpg" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/live4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/reddit4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/technora4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/yahoo9.png" medium="image" />
	</item>
		<item>
		<title>Are your programs up to date?</title>
		<link>http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/</link>
		<comments>http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 22:06:29 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Tech support]]></category>
		<category><![CDATA[AppSnap]]></category>
		<category><![CDATA[FileHippo]]></category>
		<category><![CDATA[software upgrades]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/</guid>
		<description><![CDATA[Software gets outdated quickly.  Fortunately, there are a few tools out there to help us stay up to date.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=109&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I often find myself installing software for a specific purpose (testing, maintenance, etc.) and not using it regularly, which means it’s probably outdated when I need to use it again.&#160; Sometimes it’s a game that is still being developed (like <a title="Frets on Fire - Sourceforge.net" href="http://fretsonfire.sourceforge.net/" target="_blank">Frets on Fire</a>, a free, great <a title="Guitar Hero - Official Site" href="http://www.guitarhero.com/" target="_blank">Guitar Hero</a> style game for your PC) that gets updates pretty often.&#160; When I go to use it after a while, I have to take the time to update it to the latest release before I can use it, which is kind of a pain.</p>
<p>Fortunately, there are a couple of programs out there that minimize the hassle of updating software.&#160; While they don’t automatically update the programs that are installed on your machine, they make it easier for you to do it when you have some free time.&#160; Let’s take a look at a couple of them.</p>
<p> <span id="more-109"></span><br />
<h3>FileHippo</h3>
<p>The first is <a href="http://www.filehippo.com/updatechecker/" target="_blank">FileHippo.com’s Update Checker</a>, which comes in two versions.&#160; One is <a href="http://estestech.files.wordpress.com/2009/01/image.png"><img title="FileHippo Update Checker Results" style="display:inline;margin-left:0;margin-right:0;border-width:0;" height="150" alt="FileHippo Update Checker Results" src="http://estestech.files.wordpress.com/2009/01/image-thumb.png?w=240&#038;h=150" width="240" align="right" border="0" /></a>installed and runs automatically in the background, the other is a standalone version.&#160; If you’re the type who just wants to be told when there are new versions available, go ahead and install it and let it run in the background.&#160; If you’re worried about another background process taking up resources and don’t mind running it yourself, I’d recommend the standalone version.</p>
<p>Once it’s done running, a window is opened in your default browser with information about what programs need updating.&#160; You’re presented with a list of installed software and version, along with what new version is available.&#160; Each entry has a download link with it that changes to let you know what you’ve already upgraded.&#160; All the files are hosted on their servers so there’s no hunting down every program from the publisher, which makes for easy updating.</p>
<h3>AppSnap</h3>
<p>The other program that I often use is <a href="http://appsnap.genotrance.com/" target="_blank">AppSnap</a> (<a title="AppSnap WordPress blog" href="http://appsnap.wordpress.com/" target="_blank">official blog</a>).&#160; According to their website,&#160; </p>
<blockquote><p>AppSnap is an application that simplifies installation of software. It automatically figures out the latest version, downloads the installer and then installs the software in one seamless step. AppSnap is primarily designed for Windows which does not have any decent package manager such as APT and RPM as in the Linux world.</p>
</blockquote>
<p><a href="http://estestech.files.wordpress.com/2009/01/image1.png"><img title="AppSnap Gui" style="display:inline;margin-left:0;margin-right:0;border-width:0;" height="240" alt="AppSnap Gui" src="http://estestech.files.wordpress.com/2009/01/image-thumb1.png?w=203&#038;h=240" width="203" align="left" border="0" /></a>This one is a great way to find new software as well as updating the programs you already have installed.&#160; In fact, AppSnap is how I found Frets on Fire (see above).&#160; This program presents you with a long list of programs that can be filtered by type or status.&#160; Once there, you can easily add, remove, or upgrade programs from one central window.&#160; Since this is installed on your computer, you should click the “Update” button to make sure the database is the latest.&#160; From there, it’s a snap (pun intended) to select what you want to install and let the program do its thing.</p>
<p>&#160;</p>
<p>So those are my two for today.&#160; What do you use to keep your software updated?&#160; Leave a comment below and share your tricks with the rest of us.</p>
</p>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:12d421fc-527a-4b6c-96ea-be0acfb46568" style="display:inline;float:none;margin:0;padding:0;">del.icio.us Tags: <a href="http://del.icio.us/popular/FileHippo" rel="tag">FileHippo</a>,<a href="http://del.icio.us/popular/AppSnap" rel="tag">AppSnap</a>,<a href="http://del.icio.us/popular/software" rel="tag">software</a>,<a href="http://del.icio.us/popular/update" rel="tag">update</a>,<a href="http://del.icio.us/popular/upgrades" rel="tag">upgrades</a>,<a href="http://del.icio.us/popular/howto" rel="tag">howto</a></div>
<p> <span class="sbmLink"><br />
<table cellspacing="1" cellpadding="1">
<tbody>
<tr>
<td class="sbmText">Share this post : </td>
<td class="sbmDim"><a class="sbmDim" title="Post it to del.icio.us" href="http://del.icio.us/post?url=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;;title=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/deliciou4.png" border="0" /></a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to digg" href="http://digg.com/submit?phase=2&amp;url=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;title=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/digg14.png" border="0" /></a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to dotnetkicks" href="http://www.dotnetkicks.com/kick/?url=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;title=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/CropperCapture154.jpg" border="0" /></a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to live" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;title=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/live4.png" border="0" /></a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to reddit!" href="http://reddit.com/submit?url=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;title=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/reddit4.png" border="0" /></a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to technorati!" href="http://technorati.com/faves/?add=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;title=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/technora4.png" border="0" /></a></td>
<td class="sbmDim"><a class="sbmDim" title="Post it to yahoo!" href="http://myweb.yahoo.com/myresults/bookmarklet?u=http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/&amp;t=Are your programs up to date?" target="_blank"><img src="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/yahoo9.png" border="0" /></a></td>
</tr>
</tbody>
</table>
<p> </span></p>
Posted in Main, Software, Tech support, Tech Tips Tagged: AppSnap, FileHippo, software upgrades, Tech support, update <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=109&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2009/01/27/how-updated-is-your-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>

		<media:content url="http://estestech.files.wordpress.com/2009/01/image-thumb.png" medium="image">
			<media:title type="html">FileHippo Update Checker Results</media:title>
		</media:content>

		<media:content url="http://estestech.files.wordpress.com/2009/01/image-thumb1.png" medium="image">
			<media:title type="html">AppSnap Gui</media:title>
		</media:content>

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/deliciou4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/digg14.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/CropperCapture154.jpg" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/live4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/reddit4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/technora4.png" medium="image" />

		<media:content url="http://blogs.msdn.com/blogfiles/rahulso/WindowsLiveWriter/IconsfordifferentSocialBookmarkingSites_B387/yahoo9.png" medium="image" />
	</item>
		<item>
		<title>Cross-posting from one blog to another</title>
		<link>http://estestech.wordpress.com/2008/09/27/cross-posting-from-one-blog-to-another/</link>
		<comments>http://estestech.wordpress.com/2008/09/27/cross-posting-from-one-blog-to-another/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 21:19:15 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2008/09/27/cross-posting-from-one-blog-to-another/</guid>
		<description><![CDATA[I’m testing out a new plug-in for Windows Live Writer which lets me write one blog entry and post it to both of my blogs.&#160; This should show up on both WordPress and Windows Live Spaces.
Posted in Main       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=100&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I’m testing out a new plug-in for <a href="http://get.live.com/writer/overview">Windows Live Writer</a> which lets me write one blog entry and post it to both of my blogs.&#160; This should show up on both <a href="http://estestech.wordpress.com/">WordPress</a> and <a href="http://estestech.spaces.live.com/">Windows Live Spaces</a>.</p>
Posted in Main  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=100&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2008/09/27/cross-posting-from-one-blog-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
		<item>
		<title>Foxit PDF Preview Handler</title>
		<link>http://estestech.wordpress.com/2008/09/27/foxit-pdf-preview-handler/</link>
		<comments>http://estestech.wordpress.com/2008/09/27/foxit-pdf-preview-handler/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 19:40:24 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2008/09/27/foxit-pdf-preview-handler/</guid>
		<description><![CDATA[I love the preview feature built in to Windows Vista and Outlook 2007, but have been frustrated that the only way to view PDF files within Outlook preview is with Adobe Acrobat.&#160; Since I use Foxit PDF Reader, which is faster and smaller, I haven’t been able to use the preview feature.&#160; Until now, that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=99&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I love the preview feature built in to Windows Vista and Outlook 2007, but have been frustrated that the only way to view PDF files within Outlook preview is with Adobe Acrobat.&#160; Since I use Foxit PDF Reader, which is faster and smaller, I haven’t been able to use the preview feature.&#160; Until now, that is.</p>
<p>Thanks to <a href="http://timheuer.com/blog/" target="_blank">Tim Heuer</a>, you can now use <a href="http://www.foxitsoftware.com/pdf/rd_intro.php" target="_blank">Foxit PDF Reader</a> with Outlook’s preview feature.&#160; He’s written an <a href="http://timheuer.com/blog/archive/2007/02/27/14001.aspx" target="_blank">add-on</a> that allows Vista users who use Foxit to preview PDF files within the Outlook 2007 Reading Pane.</p>
<p>For those of us who are still (or also) using Windows XP with Outlook 2007, good news!&#160; Tim’s now created an add-on just for us.&#160; You can <a href="http://timheuer.com/blog/archive/2008/03/28/foxit-preview-handler-for-xp.aspx" target="_blank">read about it and download</a> it from Tim’s blog.</p>
<hr />
<p>Related links:</p>
<p><a href="http://timheuer.com/blog/archive/2007/02/27/14001.aspx">Foxit PDF Preview Handler (Vista)</a></p>
<p><a href="http://timheuer.com/blog/archive/2008/03/28/foxit-preview-handler-for-xp.aspx" target="_blank">Foxit PDF Preview Handler (XP)</a></p>
<p><a href="http://www.foxitsoftware.com/pdf/rd_intro.php">Download Foxit PDF Reader</a></p>
<p><a href="http://www.foxitsoftware.com/pdf/rd_intro.php"><img title="icon_getreader" style="display:inline;" height="31" alt="icon_getreader" src="http://estestech.files.wordpress.com/2008/09/icon-getreader.gif?w=88&#038;h=31" width="88" border="0" /></a><a href="http://www.foxitsoftware.com/pdf/rd_intro.php"></a></p>
</p>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b3eb4fd9-1c7e-4508-a492-ce39f0ccbaf8" style="display:inline;float:none;margin:0;padding:0;">del.icio.us Tags: <a href="http://del.icio.us/popular/Foxit" rel="tag">Foxit</a>,<a href="http://del.icio.us/popular/PDF" rel="tag">PDF</a>,<a href="http://del.icio.us/popular/Outlook+2007" rel="tag">Outlook 2007</a>,<a href="http://del.icio.us/popular/Tim+Heuer" rel="tag">Tim Heuer</a></div>
Posted in Software, Tech Tips  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=99&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2008/09/27/foxit-pdf-preview-handler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>

		<media:content url="http://estestech.files.wordpress.com/2008/09/icon-getreader.gif" medium="image">
			<media:title type="html">icon_getreader</media:title>
		</media:content>
	</item>
		<item>
		<title>Making Excel Charts Even Easier</title>
		<link>http://estestech.wordpress.com/2008/08/31/making-excel-charts-even-easier/</link>
		<comments>http://estestech.wordpress.com/2008/08/31/making-excel-charts-even-easier/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 02:52:48 +0000</pubDate>
		<dc:creator>Morgan Estes</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://estestech.wordpress.com/2008/08/31/making-excel-charts-even-easier/</guid>
		<description><![CDATA[If you&#8217;re like me, you crunch numbers.&#160; It may be sales, inventory, finances, or any number of things.&#160; You probably use Microsoft Excel; maybe you even need a chart now and then but avoid it because it&#8217;s just a bit too crazy.&#160; 
If this describes you (even a little), check out the Chart Advisor from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=97&subd=estestech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you&#8217;re like me, you crunch numbers.&nbsp; It may be sales, inventory, finances, or any number of things.&nbsp; You probably use Microsoft Excel; maybe you even need a chart now and then but avoid it because it&#8217;s just a bit too crazy.&nbsp; </p>
<p>If this describes you (even a little), check out the <a title="Chart Advisor from Microsoft Office Labs" href="http://www.officelabs.com/projects/chartadvisor/Pages/default.aspx" target="_blank">Chart Advisor</a> from <a title="Microsoft Office Labs" href="http://www.officelabs.com/Pages/Default.aspx" target="_blank">Office Labs</a>.&nbsp; These folks have been putting out some good Add-Ins that run within various Office programs.&nbsp; This one evaluates your data, creates a chart, and automatically puts it in your spreadsheet.&nbsp; I&#8217;ve tried it and am immensely impressed with it.</p>
<p>Here&#8217;s the official description:</p>
<blockquote><p>Chart Advisor is a prototype that provides an alternate approach for creating charts in Excel 2007. This add-in uses an advanced rules engine to scan your data and, based on predefined rules, displays charts according to score. Top scoring charts are available for you to preview, tweak, and insert into your Excel worksheet.</p>
</blockquote>
<p>&nbsp;</p>
</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:dc519c2c-3fe3-44e7-acd1-f8947f1ab923" style="display:inline;margin:0;padding:0;">del.icio.us Tags: <a href="http://del.icio.us/popular/Chart%20Advisor" rel="tag">Chart Advisor</a>,<a href="http://del.icio.us/popular/Excel" rel="tag">Excel</a>,<a href="http://del.icio.us/popular/Office%20Labs" rel="tag">Office Labs</a>,<a href="http://del.icio.us/popular/Estes%20Tech" rel="tag">Estes Tech</a>,<a href="http://del.icio.us/popular/Tech%20tips" rel="tag">Tech tips</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/estestech.wordpress.com/97/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/estestech.wordpress.com/97/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/estestech.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/estestech.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/estestech.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/estestech.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/estestech.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/estestech.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/estestech.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/estestech.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/estestech.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/estestech.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=estestech.wordpress.com&blog=155766&post=97&subd=estestech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://estestech.wordpress.com/2008/08/31/making-excel-charts-even-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/007ab70baae50feee34a8d0bffdec609?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">estestech</media:title>
		</media:content>
	</item>
	</channel>
</rss>