<?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>computeraxe &#187; Software</title>
	<atom:link href="http://computeraxe.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://computeraxe.com</link>
	<description>wordpress tips and tricks</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Commands for Cron Jobs</title>
		<link>http://computeraxe.com/commands-for-cron-jobs/</link>
		<comments>http://computeraxe.com/commands-for-cron-jobs/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 18:46:30 +0000</pubDate>
		<dc:creator>axe</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=476</guid>
		<description><![CDATA[I got totally lost the other day when I couldn&#8217;t get a cron job to work. Now, what path was that? WordPress Database Backup is a plugin that I&#8217;d relied on in the past to keep a randomly backed up &#8230; <a href="http://computeraxe.com/commands-for-cron-jobs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got totally lost the other day when I couldn&#8217;t get a cron job to work. Now, what path was that?</p>
<p>WordPress Database Backup is a plugin that I&#8217;d relied on in the past to keep a randomly backed up copy of a WordPress site. Unfortunately, that&#8217;s not a complete solution as the images or uploads folder, as well as any modified theme pages, won&#8217;t be saved during the database backup. Nor will the blog links! Keep an archive copy of everything you put on your website, so everything can be reconstructed in the case of a disaster or even a host switch. In case a website is made up of more than one database, you&#8217;d need a different backup solution than what a WordPress plugin can provide.</p>
<p>Use CRON jobs to automate the task of backing up all your hard work. It might take a while to figure things out, but once you do you&#8217;ll be secure in the knowledge that you did it and your data is safe.</p>
<p>At first I didn&#8217;t have the command part right for the cron job to work. After the time elements you need to indicate the path to sh, any flags (none used here), and the path to the shell script. In this case the command was -</p>
<p>/bin/sh /home/owner/backup/automysqlbackup.sh</p>
<p>where &#8220;owner&#8221; is the CPanel login name, and &#8220;backup&#8221; is an empty directory or folder that you create above the public_html directory. Some hosts will have a folder called &#8220;etc&#8221; already created for you. Check with your host!</p>
<p>In this case the /bin/sh directory was already created at the server level, in other words, I didn&#8217;t have to create it. The corresponding first line in the .sh file was -</p>
<p>#!/bin/sh</p>
<p>Originally, the .sh file had an opening #!/bin/bash, but that didn&#8217;t work on this particular host.</p>
<ul>
<li>A great <a title="cron commands" href="http://www.interspire.com/support/kb/questions/383/How+does+the+CRON+command+work%3F">explanation of CRON commands</a> is found in the rainbow. Nice touch, guys!</li>
<li>Best <a title="Set up automysqlbackup" href="http://freenuts.com/6-steps-to-back-up-your-blog-database-with-automysqlbackup/">explanation of setting up automysqlbackup</a> shell script.</li>
<li>Get the open source database backup script from sourceforge, <a title="automysqlbackup" href="http://sourceforge.net/projects/automysqlbackup/">automysqlbackup</a>.</li>
</ul>
<p>The host tells me the script is running successfully, so I know the lack of output is my fault &#8211; somewhere. Checks the paths&#8230;found it! An error in the path for the configuration file lead to the script trying to run with default parameters, some of them blank. The script ran as far as it could so there was no error reported by the cron daemon to my email address. When the output is successful a log file is sent to that address.</p>
<p>When I finally got the paths straightened out, the backup files were zipped and in their proper places and an email log was sent to the proper address at the time the cron job was to run. It worked! Now I&#8217;ll go back and set up a couple of other cron jobs to back up other databases. I&#8217;ll use the same script, modified to back up different sets of databases on different schedules.</p>
<ul>
<li>If you&#8217;re looking for a simple script to make one database backup and save that on your server, check out DaniWeb&#8217;s <a title="CRON job for backup" href="http://www.daniweb.com/forums/thread646.html">CRON job for backup</a>.</li>
<li><a title="backup home directory" href="http://www.alphaone-tech.com/tech-support/index.php?_m=knowledgebase&amp;_a=viewarticle&amp;kbarticleid=68">Backing up your home directory</a> is just as easy!</li>
</ul>
<p>Once you have your sites backed up automatically, you can do away with any backup plugins that you may have relied on in the past. When at all possible, automate the task of backing up a database. It&#8217;ll make your life easier!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/commands-for-cron-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Analytics Options Beyond Google</title>
		<link>http://computeraxe.com/websites-analytic-option-stats/</link>
		<comments>http://computeraxe.com/websites-analytic-option-stats/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 17:12:21 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[awstats]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[statcounter]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[webalizer]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=321</guid>
		<description><![CDATA[If you have any interest in knowing where your website traffic is coming from and what brought them to your site, you need to use some type of analytics software to learn these things. As with any kind of software, &#8230; <a href="http://computeraxe.com/websites-analytic-option-stats/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have any interest in knowing where your website traffic is coming from and what brought them to your site, you need to use some type of analytics software to learn these things.</p>
<p>As with any kind of software, there are free and open source alternatives to paid versions. The one pay-software for site stats worth mentioning here is called Mint and is found at haveamint.com. It&#8217;s a totally configurable way to look at your site stats. If you don&#8217;t have many web properties, the $30 per site license isn&#8217;t too bad.</p>
<p>Let&#8217;s take a look at the software that doesn&#8217;t cost anything but an investment of time&#8230;.</p>
<p>Site statistics are included in CPanel which comes with most hosting packages. Once you sign in to CPanel, look under the <em>Logs</em> section for Awstats or Webalizer Stats. More people seem to talk about using Awstats, but if you go to Webalizer Stats and click on any month name under the summary you&#8217;ll get all the same data that is provided by Awstats. Pick one whose layout is easy to read and you&#8217;ll have your site statistics at your fingertips.</p>
<p>Google Analytics (GA) is geared towards marketers and can easily be integrated with an Adwords or Adsense account, both from Google. If you want to formulate a plan for meeting sales goals or increasing conversions, the big G can help you when you link your existing accounts. Some folks have written that they don&#8217;t trust Google and don&#8217;t want Big Brother knowing their every move online, so they shy away from using a GA account.</p>
<p>Instead, you could rely on a free alternative called statcounter. Visit statcounter.com and click on the features page. You&#8217;ll see many of the same items listed that occur in your CPanel stats options. The downside to using statcounter or GA is that you&#8217;ll have to dig into the page code and insert a few lines of code. It&#8217;s not that hard, but it does take a little time to set up. You only have to set it up once, though.</p>
<p>If you&#8217;re running a WordPress blog, try the stats plugin found at http://wordpress.org/extend/plugins/stats/ for a pretty look at your site stats.</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/c3245e09-1321-44ff-a1f6-931c46764ef0/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=c3245e09-1321-44ff-a1f6-931c46764ef0" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/websites-analytic-option-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Replace Plug-in for HTML-Kit</title>
		<link>http://computeraxe.com/batch-replace-plug-in-for-html-kit/</link>
		<comments>http://computeraxe.com/batch-replace-plug-in-for-html-kit/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 13:28:03 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=262</guid>
		<description><![CDATA[Batch replacing a bunch of lines across multiple files would save tons of time as compared to manually editing each file. I had 41 files to update and cringed at the thought of doing all the updates by hand. Then &#8230; <a href="http://computeraxe.com/batch-replace-plug-in-for-html-kit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Batch replacing a bunch of lines across multiple files would save tons of time as compared to manually editing each file. I had 41 files to update and cringed at the thought of doing all the updates by hand. Then I remembered about the <a title="batch replace for html-kit" href="http://www.chami.com/html-kit/plugins/info/cmbatchreplace/">Batch Replace plugin</a> for the editor I use, HTML-Kit.</p>
<p>I couldn&#8217;t get this plug-in to work until I changed &#8220;.php&#8221; to &#8220;*.*&#8221; in the &#8216;include files of type&#8217; box. When I tried that it took mere seconds for the software to replace 180 instances of a single change across all my files in the designated folder.</p>
<p>Fantastic savings of time and effort! Thanks Chami!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/batch-replace-plug-in-for-html-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Resource for Learning The GIMP</title>
		<link>http://computeraxe.com/great-resource-learn-gimp/</link>
		<comments>http://computeraxe.com/great-resource-learn-gimp/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 14:53:07 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=258</guid>
		<description><![CDATA[Ran across a great resource for learning more about using The GIMP. You can purchase a hard copy of the book or read it step by step online or download an HTML-tarball of the book. Learn more about the best &#8230; <a href="http://computeraxe.com/great-resource-learn-gimp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ran across a great resource for learning more about using The GIMP. You can purchase a hard copy of the book or read it step by step online or download an HTML-tarball of the book.</p>
<p>Learn more about the best open source alternative to expensive image editing programs. Lots of screen shots will help you <a title="learn about the GIMP" href="http://gimp-savvy.com/BOOK/index.html">learn tricks of the GIMP</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/great-resource-learn-gimp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calendar Pick-A-Date Scripts Reviewed</title>
		<link>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/</link>
		<comments>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:51:41 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=220</guid>
		<description><![CDATA[This week I needed to make a form where the user needed to enter two dates in order to produce a report with the selected start and end dates. What were my options? I considered writing my own php script &#8230; <a href="http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This week I needed to make a form where the user needed to enter two dates in order to produce a report with the selected start and end dates. What were my options?</p>
<p>I considered writing my own php script where I would have separate pull-down boxes for the day, month and year to assure that there was no mistake as to the actual dates. That would take a little extra format massaging to create the date in MySQL format, so I looked for scripts that others had already written. Who wouldn&#8217;t?</p>
<p>Formatting dates can drive a person crazy. Does &#8217;06-08-2000&#8242; mean June 8th or the 6th of August? Writing for the Web should be universal. The month-day format that we tend to use in the U.S. is confusing to everybody else who uses the day-month format, and vice-versa.</p>
<p>Writing by hand I like to use this format &#8217;12-Mar-2000&#8242; so there is no ambiguity, but that format needs to be converted to &#8216;YYYY-MM-DD&#8217; format when sending dates to MySQL.</p>
<p>So, what are my requirements for such a Date-Picker Script?</p>
<ul>
<li>easy, intuitive for the user</li>
<li>easy for me with output in MySQL format (YYYY-MM-DD)</li>
<li>unrestricted license would be nice</li>
</ul>
<p>I tried a few different date picker scripts and decided upon SpiffyCalendar because it&#8217;s the most advanced, yet easily modified to suit my purposes. Also, there is an established support system via a Yahoo! user group. That&#8217;s really nice, and unexpected.</p>
<p>Here&#8217;s the scripts I tried and the pros and cons for each&#8230;most weren&#8217;t as user-friendly as SpiffyCalendar.</p>
<p>&nbsp;</p>
<h3><a href="http://www.phpclasses.org/browse/package/3611/download/zip.html">PHP Calendar</a></h3>
<ul>PROS</p>
<li>I like the look of this calendar, but it&#8217;s difficult to determine how to modify the calendar other than for css of calendar appearance.</li>
<li>Date output is already in MySQL format: YYYY-MM-DD</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Ugly and excessively long query strings in links.</li>
</ul>
<h3><a href="http://www.javascriptkit.com/script/script2/timestamp.shtml">DatePick</a></h3>
<ul>PROS</p>
<li>I like the little calendar icon.</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Timestamp is included. Don&#8217;t need it.</li>
<li>Relies on javascript and pop-up window to select date.</li>
<li>Calendar doesn&#8217;t update well when moving from month to month. Part of the calendar doesn&#8217;t get loaded in so all days are not selectable. Have to manually widen window to see all days.</li>
<li>Can&#8217;t select year directly, have to click through months to get to next year.</li>
<li>No directions on how to modify output.</li>
</ul>
<h3><a href="http://www.javascriptkit.com/script/script2/tengcalendar.shtml">DateTimePick</a></h3>
<ul>PROS</p>
<li>I like the little calendar icon.</li>
<li>Can modify output via provided directions.</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Relies on javascript and pop-up window to select date.</li>
<li>Calendar doesn&#8217;t update well when moving from month to month. Part of the calendar doesn&#8217;t get loaded in so all days are not selectable. Have to manually widen window to see all days.</li>
<li>Can select year directly, but calendar doesn&#8217;t update well.</li>
</ul>
<h3><a href="http://simplythebest.net/scripts/DHTML_scripts/javascripts/javascript_48.html">SpiffyCalendar</a></h3>
<p><del datetime="2010-08-26T15:28:02+00:00">Sign up to the Yahoo! Group to download the script.</del> <em>Script used to be offered at the now defunct GeoCities. The above link is the first place I found it posted afterwards.</em></p>
<ul>PROS</p>
<li>Calendar pops into page, not a separate window.</li>
<li>Can modify output via provided directions.</li>
<li>Can get help at Yahoo! Groups.</li>
<li>Unrestricted license.</li>
<li>Can refresh page containing calendars as link is not modified after picking a date or two.</li>
<li>Highlights holidays, although will have to remove Dec 1st developer&#8217;s birthday. (OK, modified holiday array in script on lines 86-87.)</li>
</ul>
<ul>CONS</p>
<li>Format of date will have to be modified for MySQL. (OK, Added <code>"cal1.dateFormat="yyyy-MM-dd";</code> after instantiation in header for calendar named &#8216;cal1&#8242;.)</li>
<li>Relies on javascript.</li>
<li>Had to modify the images folder location in the .js file to an absolute address, although things worked fine on my local server with a relative address.</li>
</ul>
<p>I&#8217;m sure there are plenty of these date-picker scripts floating around the Web. Do you have a different one to share with us? Leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Online Backup Service and Off-Site File Storage</title>
		<link>http://computeraxe.com/best-online-backup-service-file-storage-offsite/</link>
		<comments>http://computeraxe.com/best-online-backup-service-file-storage-offsite/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 18:30:42 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=148</guid>
		<description><![CDATA[Running out of room on that great big hard drive? If you find yourself needing more space for all those pictures or mp3s, try the free service from Mozy. You get 2 GB free and they have automated backups so &#8230; <a href="http://computeraxe.com/best-online-backup-service-file-storage-offsite/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Running out of room on that great big hard drive? If you find yourself needing more space for all those pictures or mp3s, try the free service from Mozy. You get 2 GB free and they have automated backups so you&#8217;re never bothered.</p>
<p><a href="http://www.computeraxe.com/mozy/index1.htm">2GB Free Online Backup &#8211; Mozy</a></p>
<p>If you need a more complete solution, Mozy&#8217;s automatic backups will save your whole hard drive, or just the parts that you need to have protected&#8230;<a href="http://www.computeraxe.com/mozy/index2.htm">Peace of Mind &#8211; Only $4.95/Month! Get Mozy Unlimited Online Backup.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/best-online-backup-service-file-storage-offsite/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ColorZilla Browser Extension for Firefox</title>
		<link>http://computeraxe.com/colorzilla-browser-extension-firefox/</link>
		<comments>http://computeraxe.com/colorzilla-browser-extension-firefox/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 12:24:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=132</guid>
		<description><![CDATA[Yet another way to explore colors is to use the ColorZilla browser extension for Firefox. This is one of my favorite ways to pick up colors as Firefox is always handy. Once installed, Colorzilla resides down in the left, bottom &#8230; <a href="http://computeraxe.com/colorzilla-browser-extension-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yet another way to explore colors is to use the <a href="http://www.iosart.com/firefox/colorzilla/">ColorZilla browser extension for Firefox</a>. This is one of my favorite ways to pick up colors as Firefox is always handy.</p>
<p>Once installed, Colorzilla resides down in the left, bottom corner of Firefox. You&#8217;ll see a little eye dropper icon. Click the eyedropper and the mouse pointer changes to a cross hair. Hover over any spot on the page and the RGB and #hex values are noted at the bottom of your browser. Click again and the color values are stored temporarily until you click on the eyedropper again.</p>
<p>If you leave the current tab and come back you&#8217;ll note that the color values have disappeared from the bottom bar, but they&#8217;re not really gone. Right-click the eyedropper and you&#8217;ll be presented with a menu of choices.</p>
<div id="attachment_133" class="wp-caption aligncenter" style="width: 227px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu1.jpg"><img class="size-full wp-image-133" title="colorzilla-menu" src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu1.jpg" alt="Right-click menu for ColorZilla Firefox browser extension." width="217" height="405" /></a><p class="wp-caption-text">Right-click menu for ColorZilla Firefox browser extension.</p></div>
<p>Have fun exploring all the features of ColorZilla, but take note that the details of the last color picked are ready for you to copy in your favorite format.</p>
<p>The Options menu has a hidden feature that you might want to check out:</p>
<div id="attachment_135" class="wp-caption aligncenter" style="width: 269px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-options1.jpg"><img src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-options1.jpg" alt="ColorZilla Firefox browser extension options menu." title="colorzilla-menu-options" width="259" height="261" class="size-full wp-image-135" /></a><p class="wp-caption-text">ColorZilla Firefox browser extension options menu.</p></div>
<p>Right-click on the eyedropper, click on Options, then click on <strong>Statusbar Format&#8230;</strong>. Here, you can modify the information that you see in the bottom bar of the Firefox browser when you activate ColorZilla.</p>
<div id="attachment_136" class="wp-caption aligncenter" style="width: 458px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-status1.jpg"><img src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-status1.jpg" alt="ColorZilla menu for statusbar formatting." title="colorzilla-menu-status" width="448" height="393" class="size-full wp-image-136" /></a><p class="wp-caption-text">ColorZilla menu for statusbar formatting.</p></div>
<p>Now, along with color values, you can &#8220;see&#8221; elements of a webpage, their paths, URLs and distances to other page elements.</p>
<p>A great feature that I must point out is the Webpage DOM Color Analyzer that you can reach from the Options menu. Visit a page where you like the color scheme, right-click the eyedropper and choose the <strong>Webpage DOM Color Analyzer&#8230;</strong>. A window at the bottom of the screen will show the main colors of the page, but not from the images on the page. Clicking on any of the colors in the palette will show you the css rules that are using that color.</p>
<p>ColorZillla &#8211; what a neat way to explore a page and all its colors!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/colorzilla-browser-extension-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Your Colors in a Widget for Your Homepage or Blog</title>
		<link>http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/</link>
		<comments>http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 11:51:19 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=122</guid>
		<description><![CDATA[Into widgets? Get all the colors you want by posting the Farbtastic Widget to your favorite site, or put it right on your desktop. Don&#8217;t have a site yet? Post your widgets to iGoogle, a Google &#8220;homepage&#8221; that you can &#8230; <a href="http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Into widgets? Get all the colors you want by posting the <a title="Widget for picking colors." href="http://www.widgetbox.com/widget/farbtastic-widget">Farbtastic Widget</a> to your favorite site, or put it right on your desktop.</p>
<p>Don&#8217;t have a site yet? Post your widgets to iGoogle, a Google &#8220;homepage&#8221; that you can modify as you see fit. Click on the iGoogle link at the the top right of www.google.com and you&#8217;ll see a version of google that you can modify to your liking by arranging tabs and blocks of content.</p>
<p>Here&#8217;s the widget I&#8217;m talking about:</p>
<p><script type="text/javascript" src="http://widgetserver.com/syndication/subscriber/InsertWidget.js?appId=18929961-7f25-4d19-bcbb-232d3d528713"></script><noscript>Get the <a href="http://www.widgetbox.com/widget/farbtastic-widget">Farbtastic Widget</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript></p>
<p>Try moving either color pointer and see the resulting color and #hex value in the top box.</p>
<p>On the widget&#8217;s page at widgetbox, look under <strong>Get Widget</strong> on the right side of the page. If you&#8217;re not familiar with some of the icons, just hover your mouse pointer to get a tool tip that tells you the name of the site that the icon represents. Click on &#8220;more&#8230;&#8221; to see other icons. Here, you can also choose your language and modify your widget, if possible. Code is available for WordPress blogs &#8211; just look for the big W in the icon list.</p>
<p>To post the widget at iGoogle, click on the big G icon. A small window pops up that directs you to click on the &#8220;Add Widget&#8221; button to open the iGoogle installer. When the installer page opens click on the &#8220;Add to Google&#8221; button. Your new iGoogle page opens with the new widget displayed. Drag and drop the widget into the place you prefer and make sure to sign in to Google to save your page.</p>
<p>Same thing with WordPress. Add your favorite widget to a post or put it in your sidebar.</p>
<p>The only catch here is to grab the right code. If you take the code from one of the icons presented, the widget will be in its default state. Should you modify or customize your widget &#8211; like I did with Farbtastic by changing the language to English and enlarging the widget to 300 x 300 px &#8211; make sure to click on the small &#8220;Get Widget&#8221; button that has a little checkmark &#8211; it&#8217;s right below the customize part of the <strong>Get Widget</strong> section. Post your customized widget and make sure it&#8217;s what you want before you finish up with widgetbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toying Around with Colors? Check Out ColorToy!</title>
		<link>http://computeraxe.com/toying-around-with-colors-check-out-colortoy/</link>
		<comments>http://computeraxe.com/toying-around-with-colors-check-out-colortoy/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 13:43:56 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=116</guid>
		<description><![CDATA[On the topic of colors&#8230;here&#8217;s a fun toy, called ColorToy. Click the Random button to see randomly chosen color schemes or input your own RGB or Hex value to start the color selection. Copy the screen to save an image &#8230; <a href="http://computeraxe.com/toying-around-with-colors-check-out-colortoy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On the topic of colors&#8230;here&#8217;s a fun toy, called <a title="Color Toy" href="http://www.defencemechanism.com/color/">ColorToy</a>.</p>
<p>Click the Random button to see randomly chosen color schemes or input your own RGB or Hex value to start the color selection.</p>
<p>Copy the screen to save an image of the color scheme containing nine colors and their hex values.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/toying-around-with-colors-check-out-colortoy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color Schemes Aplenty and Saved Favorites to Boot!</title>
		<link>http://computeraxe.com/color-schemes-favorites/</link>
		<comments>http://computeraxe.com/color-schemes-favorites/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 15:42:45 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=111</guid>
		<description><![CDATA[Browse over 3600 color schemes at ColorSchemer. Professional color editing software is available from ColorSchemer. The color schemes that you can download are .cs files that can be opened by ColorSchemer Studio. Their PhotoSchemer, which helps you pick out a &#8230; <a href="http://computeraxe.com/color-schemes-favorites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Browse over 3600 color schemes at <a title="ColorSchemer" href="http://www.colorschemer.com/schemes/">ColorSchemer</a>. Professional color editing software is available from ColorSchemer. The color schemes that you can download are .cs files that can be opened by ColorSchemer Studio. Their PhotoSchemer, which helps you pick out a color scheme based on a photo, might well be worth the price of the software!</p>
<p>But you don&#8217;t really need to download the software to pick up the color schemes that you like. Just hover your mouse pointer over the color blocks in your favorite color scheme and write down the #hex code from the tool tip. Now you&#8217;re all set to use your favorite new colors!</p>
<p>Better yet, sign up for a free account on ColorSchemer. For parting with an email address you&#8217;ll be able to build a personalized <strong>Favorite Schemes</strong> list. Once you sign up, go to the Scheme Gallery and browse to a scheme you like. You&#8217;ll see who made the scheme, the number of times its been downloaded, the scheme&#8217;s rating out of 5 stars (and how many people rated it), and a link called &#8220;Add Fav&#8221;. Click on Add Fav to put the scheme you like into your Favorite Schemes.</p>
<p>My Favorite Schemes will show what you have saved so far. What a nice service to allow us to collect these color schemes and save them for later.</p>
<p>Bookmark ColorSchemer!</p>
<p>Don&#8217;t miss the fantastic post on <a title="Named Colors" href="http://www.colorschemer.com/blog/2007/07/24/140-named-colors/">140 Named Colors!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/color-schemes-favorites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
