<?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>Rants and Raves &#187; Search</title>
	<atom:link href="http://blog.rogersoles.com/category/technology/internet/search/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rogersoles.com</link>
	<description>The best laid plans of mice and men...</description>
	<lastBuildDate>Thu, 29 Jul 2010 07:00:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Dynamic Sitemap</title>
		<link>http://blog.rogersoles.com/2010/02/23/technology/dynamic-sitemap/</link>
		<comments>http://blog.rogersoles.com/2010/02/23/technology/dynamic-sitemap/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 07:00:50 +0000</pubDate>
		<dc:creator>roger</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Sitemap]]></category>

		<guid isPermaLink="false">http://blog.rogersoles.com/?p=2358</guid>
		<description><![CDATA[About two years ago I wrote a program that created a sitemap from a local copy of my web pages (I also wrote an automation wrapper so that I could do all my web sites along with other mundane tasks reliably). When I installed WordPress over a year ago I really liked the fact that [...]


<hr/>
Related posts:<ol><li><a href='http://blog.rogersoles.com/2008/11/03/general/rants-and-raves/' rel='bookmark' title='Permanent Link: Rants and Raves'>Rants and Raves</a> <small>I&#8217;ve started to write more posts, and for the moment I&#8217;ve scheduled them out for the next month one per day at noon to keep...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/16/technology/linux-desktop-search/' rel='bookmark' title='Permanent Link: Linux &#8211; Desktop Search'>Linux &#8211; Desktop Search</a> <small>A while ago I published a post on Desktop Search on Linux (specifically Ubuntu).  I was far from happy with my conclusions and I felt...</small></li>
<li><a href='http://blog.rogersoles.com/2010/04/07/technology/compactcms-review/' rel='bookmark' title='Permanent Link: CompactCMS Review'>CompactCMS Review</a> <small>CompactCMS is an extremely light weight and fast Content Management Solution (CMS).  Actually it might be a bit of a stretch to call it a...</small></li>
<li><a href='http://blog.rogersoles.com/2009/08/26/technology/internet-explorer-8/' rel='bookmark' title='Permanent Link: Internet Explorer 8'>Internet Explorer 8</a> <small>Microsoft released Internet Explorer 8 quite a while ago, and I&#8217;m not sure they fully realized how many web pages it would break. Sure, they...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/21/technology/dynamic-dns/' rel='bookmark' title='Permanent Link: Dynamic DNS'>Dynamic DNS</a> <small>Most broadband users have an IP address that is issued by their provider via DHCP or PPP (PPPoE technically); that address, generally, will not change...</small></li>
<li><a href='http://blog.rogersoles.com/2010/02/21/technology/defragmenting/' rel='bookmark' title='Permanent Link: Defragmenting'>Defragmenting</a> <small>There are many people out there that say that *nix and Mac file systems don&#8217;t fragment &#8212; only Windows does. They&#8217;re dead wrong. [I know...</small></li>
<li><a href='http://blog.rogersoles.com/2008/07/18/technology/web-site-version-control/' rel='bookmark' title='Permanent Link: Web Site Version Control'>Web Site Version Control</a> <small>I&#8217;m not sure this is something that occurs to everyone, but I use SVN to version control my web pages. Essentially I treat my web...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/12/technology/ubuntu-raid-creation/' rel='bookmark' title='Permanent Link: Ubuntu &#8211; RAID Creation'>Ubuntu &#8211; RAID Creation</a> <small>I think learning how to use mdadm (/sbin/mdadm) is a good idea, but in Ubuntu Desktop you can use Disk Utility (/usr/bin/palimpsest) to create most...</small></li>
<li><a href='http://blog.rogersoles.com/2008/12/09/technology/maybe/' rel='bookmark' title='Permanent Link: Maybe&#8230;'>Maybe&#8230;</a> <small> Maybe, just maybe I&#8217;ve found a clue why BitTorrent can&#8217;t make any money &#8212; and here&#8217;s a good example from a web page on their...</small></li>
<li><a href='http://blog.rogersoles.com/2010/03/27/technology/php-as-a-general-scripting-language/' rel='bookmark' title='Permanent Link: PHP as a general scripting language'>PHP as a general scripting language</a> <small>Invariable working smart involves automation, and automation will almost always involve scripting repetitive tasks. Under *nix operating systems you could write a shell script, though...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>About two years ago I wrote a program that created a sitemap from a local copy of my web pages (I also wrote an automation wrapper so that I could do all my web sites along with other mundane tasks reliably).</p>
<p>When I installed WordPress over a year ago I really liked the fact that the sitemap plug in was capable of dynamically creating a sitemap when a request was made; and I set it as a goal to implement that on my web site.</p>
<p>Well, yesterday that goal was realized.</p>
<p>I wrote a simple PHP script that takes some meta information and creates a sitemap, either uncompressed or compressed based on what is requested.  I used a rewrite rule in my .htaccess file to allow search engines to continue to request the familiar sitemap.xml and/or sitemap.xml.gz file.</p>
<p>Now I don&#8217;t have to worry about creating and deploying a sitemap file when I change a file; I only have to make sure that the meta information is updated when I add or remove pages.  Plus, I incorporated the concept of dynamic pages, so that the sitemap can accurately report fresh content.</p>
<p>At the moment I haven&#8217;t decided if I&#8217;m going to &#8220;publish&#8221; this code or not.  It&#8217;s likely I will once I clean it up and actually test it more completely.  Like I said, it isn&#8217;t rocket science &#8211; it just takes a little knowledge of what a sitemap is, and you can get everything you need from <a title="sitemaps.org" href="http://sitemaps.org/" target="_blank">sitemaps.org</a>; a little ability in PHP, and a basic understanding of how to write a re-write rule for Apache.</p>


<p><hr/><p>Related posts:<ol><li><a href='http://blog.rogersoles.com/2008/11/03/general/rants-and-raves/' rel='bookmark' title='Permanent Link: Rants and Raves'>Rants and Raves</a> <small>I&#8217;ve started to write more posts, and for the moment I&#8217;ve scheduled them out for the next month one per day at noon to keep...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/16/technology/linux-desktop-search/' rel='bookmark' title='Permanent Link: Linux &#8211; Desktop Search'>Linux &#8211; Desktop Search</a> <small>A while ago I published a post on Desktop Search on Linux (specifically Ubuntu).  I was far from happy with my conclusions and I felt...</small></li>
<li><a href='http://blog.rogersoles.com/2010/04/07/technology/compactcms-review/' rel='bookmark' title='Permanent Link: CompactCMS Review'>CompactCMS Review</a> <small>CompactCMS is an extremely light weight and fast Content Management Solution (CMS).  Actually it might be a bit of a stretch to call it a...</small></li>
<li><a href='http://blog.rogersoles.com/2009/08/26/technology/internet-explorer-8/' rel='bookmark' title='Permanent Link: Internet Explorer 8'>Internet Explorer 8</a> <small>Microsoft released Internet Explorer 8 quite a while ago, and I&#8217;m not sure they fully realized how many web pages it would break. Sure, they...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/21/technology/dynamic-dns/' rel='bookmark' title='Permanent Link: Dynamic DNS'>Dynamic DNS</a> <small>Most broadband users have an IP address that is issued by their provider via DHCP or PPP (PPPoE technically); that address, generally, will not change...</small></li>
<li><a href='http://blog.rogersoles.com/2010/02/21/technology/defragmenting/' rel='bookmark' title='Permanent Link: Defragmenting'>Defragmenting</a> <small>There are many people out there that say that *nix and Mac file systems don&#8217;t fragment &#8212; only Windows does. They&#8217;re dead wrong. [I know...</small></li>
<li><a href='http://blog.rogersoles.com/2008/07/18/technology/web-site-version-control/' rel='bookmark' title='Permanent Link: Web Site Version Control'>Web Site Version Control</a> <small>I&#8217;m not sure this is something that occurs to everyone, but I use SVN to version control my web pages. Essentially I treat my web...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/12/technology/ubuntu-raid-creation/' rel='bookmark' title='Permanent Link: Ubuntu &#8211; RAID Creation'>Ubuntu &#8211; RAID Creation</a> <small>I think learning how to use mdadm (/sbin/mdadm) is a good idea, but in Ubuntu Desktop you can use Disk Utility (/usr/bin/palimpsest) to create most...</small></li>
<li><a href='http://blog.rogersoles.com/2008/12/09/technology/maybe/' rel='bookmark' title='Permanent Link: Maybe&#8230;'>Maybe&#8230;</a> <small> Maybe, just maybe I&#8217;ve found a clue why BitTorrent can&#8217;t make any money &#8212; and here&#8217;s a good example from a web page on their...</small></li>
<li><a href='http://blog.rogersoles.com/2010/03/27/technology/php-as-a-general-scripting-language/' rel='bookmark' title='Permanent Link: PHP as a general scripting language'>PHP as a general scripting language</a> <small>Invariable working smart involves automation, and automation will almost always involve scripting repetitive tasks. Under *nix operating systems you could write a shell script, though...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.rogersoles.com/2010/02/23/technology/dynamic-sitemap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wikipedia Funding</title>
		<link>http://blog.rogersoles.com/2010/01/24/technology/wikipedia-funding/</link>
		<comments>http://blog.rogersoles.com/2010/01/24/technology/wikipedia-funding/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 08:00:35 +0000</pubDate>
		<dc:creator>roger</dc:creator>
				<category><![CDATA[Communications]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://blog.rogersoles.com/?p=2187</guid>
		<description><![CDATA[I&#8217;m a big fan of Wikipedia&#8211; that should be clear from my previous posts on Wikipedia and my frequent use of Wikipedia as a reference tool (and to link to from my posts). Wikipedia rose from the ashes of failue much like a phoenix&#8230; and currently operates one of the largest (if not the largest) [...]


<hr/>
Related posts:<ol><li><a href='http://blog.rogersoles.com/2009/02/20/technology/wikipedia/' rel='bookmark' title='Permanent Link: Wikipedia'>Wikipedia</a> <small>Wikipedia is an incredible place to find information; if you&#8217;ve never used it, you should try it out. That said, you should always question the...</small></li>
<li><a href='http://blog.rogersoles.com/2009/12/18/technology/advertising/' rel='bookmark' title='Permanent Link: Advertising'>Advertising</a> <small>I have added side-bar and banner advertisements to my BLOG in order to offset the hosting costs.  The advertisements are supplied through Google AdSense, and...</small></li>
<li><a href='http://blog.rogersoles.com/2009/12/24/technology/give-in-the-present-for-the-future/' rel='bookmark' title='Permanent Link: Give in the present for the future&#8230;'>Give in the present for the future&#8230;</a> <small>Help Wikipedia grow &#8212; read the appeal from Jimmy Wales, Wikipedia&#8217;s founder, for US tax deductible donations to help grow Wikipedia and keep it free for...</small></li>
<li><a href='http://blog.rogersoles.com/2010/06/17/technology/microsoft-office-2010/' rel='bookmark' title='Permanent Link: Microsoft Office 2010'>Microsoft Office 2010</a> <small>The ides of June (that was Monday the 15th) Microsoft announced the newest version of their Office suite &#8212; Microsoft Office 2010&#8230; yawn. As part...</small></li>
<li><a href='http://blog.rogersoles.com/2010/06/11/technology/iad/' rel='bookmark' title='Permanent Link: iAd'>iAd</a> <small>Monday&#8217;s announcement by Apple of the iPhone 4 included their announcement of a mobile advertising network &#8211; iAd. Google, of course, had recently closed it&#8217;s...</small></li>
<li><a href='http://blog.rogersoles.com/2008/08/07/technology/auction-bidding/' rel='bookmark' title='Permanent Link: Auction Bidding'>Auction Bidding</a> <small>I&#8217;m not a huge fan of eBay (and certainly not a fan of PayPal); I consider them just another big company that does what they...</small></li>
<li><a href='http://blog.rogersoles.com/2009/07/30/technology/rising-from-the-dead/' rel='bookmark' title='Permanent Link: Rising from the dead&#8230;'>Rising from the dead&#8230;</a> <small>OK, so my BLOG wasn&#8217;t exactly dead &#8212; I&#8217;ve had way too many things that have been requiring my attention here of late to spend...</small></li>
<li><a href='http://blog.rogersoles.com/2009/08/26/technology/internet-explorer-8/' rel='bookmark' title='Permanent Link: Internet Explorer 8'>Internet Explorer 8</a> <small>Microsoft released Internet Explorer 8 quite a while ago, and I&#8217;m not sure they fully realized how many web pages it would break. Sure, they...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/10/technology/windows-live/' rel='bookmark' title='Permanent Link: Windows Live'>Windows Live</a> <small>Microsoft introduced it&#8217;s next generation online services quit some time ago under the name Windows Live through the URL live.com. It&#8217;s intended as far more...</small></li>
<li><a href='http://blog.rogersoles.com/2010/05/14/technology/att-u-verse/' rel='bookmark' title='Permanent Link: AT&#038;T U-Verse'>AT&#038;T U-Verse</a> <small>I signed up for AT&amp;T U-Verse service about two months ago &#8212; I&#8217;ve already made a post on that, but I decide to go ahead...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of <a title="Wikipedia" href="http://en.wikipedia.org/" target="_blank">Wikipedia</a>&#8211; that should be clear from my previous posts on Wikipedia and my frequent use of Wikipedia as a reference tool (and to link to from my posts).</p>
<p>Wikipedia rose from the ashes of failue much like a phoenix&#8230; and currently operates one of the largest (if not the largest) repositories of human knowledge.</p>
<p>Wikipedia is freely accessed by anyone with an Internet connection (provided their provider does not block such access), and is currently funded completely through donations.</p>
<p>While I applaud the dreams of Wikipedia&#8217;s founder Jimmy Wales to keep the site free of advertising, my feeling is that advertising might well be a better way to sustain the site.</p>
<p>My concept is that those who do not wish to see advertisement donate, and are free from advertisements as long as they have &#8220;credits&#8221;&#8230; when they run out of credits then they like those who choose not to donate see advertisements.</p>
<p>Since Wikipedia is one of the heaviest traveled sites on the internet, advertisers will likely pay top dollar, and there&#8217;s likely no need to work through an advertising network&#8230;</p>


<p><hr/><p>Related posts:<ol><li><a href='http://blog.rogersoles.com/2009/02/20/technology/wikipedia/' rel='bookmark' title='Permanent Link: Wikipedia'>Wikipedia</a> <small>Wikipedia is an incredible place to find information; if you&#8217;ve never used it, you should try it out. That said, you should always question the...</small></li>
<li><a href='http://blog.rogersoles.com/2009/12/18/technology/advertising/' rel='bookmark' title='Permanent Link: Advertising'>Advertising</a> <small>I have added side-bar and banner advertisements to my BLOG in order to offset the hosting costs.  The advertisements are supplied through Google AdSense, and...</small></li>
<li><a href='http://blog.rogersoles.com/2009/12/24/technology/give-in-the-present-for-the-future/' rel='bookmark' title='Permanent Link: Give in the present for the future&#8230;'>Give in the present for the future&#8230;</a> <small>Help Wikipedia grow &#8212; read the appeal from Jimmy Wales, Wikipedia&#8217;s founder, for US tax deductible donations to help grow Wikipedia and keep it free for...</small></li>
<li><a href='http://blog.rogersoles.com/2010/06/17/technology/microsoft-office-2010/' rel='bookmark' title='Permanent Link: Microsoft Office 2010'>Microsoft Office 2010</a> <small>The ides of June (that was Monday the 15th) Microsoft announced the newest version of their Office suite &#8212; Microsoft Office 2010&#8230; yawn. As part...</small></li>
<li><a href='http://blog.rogersoles.com/2010/06/11/technology/iad/' rel='bookmark' title='Permanent Link: iAd'>iAd</a> <small>Monday&#8217;s announcement by Apple of the iPhone 4 included their announcement of a mobile advertising network &#8211; iAd. Google, of course, had recently closed it&#8217;s...</small></li>
<li><a href='http://blog.rogersoles.com/2008/08/07/technology/auction-bidding/' rel='bookmark' title='Permanent Link: Auction Bidding'>Auction Bidding</a> <small>I&#8217;m not a huge fan of eBay (and certainly not a fan of PayPal); I consider them just another big company that does what they...</small></li>
<li><a href='http://blog.rogersoles.com/2009/07/30/technology/rising-from-the-dead/' rel='bookmark' title='Permanent Link: Rising from the dead&#8230;'>Rising from the dead&#8230;</a> <small>OK, so my BLOG wasn&#8217;t exactly dead &#8212; I&#8217;ve had way too many things that have been requiring my attention here of late to spend...</small></li>
<li><a href='http://blog.rogersoles.com/2009/08/26/technology/internet-explorer-8/' rel='bookmark' title='Permanent Link: Internet Explorer 8'>Internet Explorer 8</a> <small>Microsoft released Internet Explorer 8 quite a while ago, and I&#8217;m not sure they fully realized how many web pages it would break. Sure, they...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/10/technology/windows-live/' rel='bookmark' title='Permanent Link: Windows Live'>Windows Live</a> <small>Microsoft introduced it&#8217;s next generation online services quit some time ago under the name Windows Live through the URL live.com. It&#8217;s intended as far more...</small></li>
<li><a href='http://blog.rogersoles.com/2010/05/14/technology/att-u-verse/' rel='bookmark' title='Permanent Link: AT&#038;T U-Verse'>AT&#038;T U-Verse</a> <small>I signed up for AT&amp;T U-Verse service about two months ago &#8212; I&#8217;ve already made a post on that, but I decide to go ahead...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.rogersoles.com/2010/01/24/technology/wikipedia-funding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wikipedia</title>
		<link>http://blog.rogersoles.com/2009/02/20/technology/wikipedia/</link>
		<comments>http://blog.rogersoles.com/2009/02/20/technology/wikipedia/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 09:00:57 +0000</pubDate>
		<dc:creator>roger</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.rogersoles.com/?p=866</guid>
		<description><![CDATA[Wikipedia is an incredible place to find information; if you&#8217;ve never used it, you should try it out. That said, you should always question the accuracy of any information you get off the internet (really you should question the accuracy of any information you get period). When you read something on the internet, it&#8217;s best [...]


<hr/>
Related posts:<ol><li><a href='http://blog.rogersoles.com/2010/01/24/technology/wikipedia-funding/' rel='bookmark' title='Permanent Link: Wikipedia Funding'>Wikipedia Funding</a> <small>I&#8217;m a big fan of Wikipedia&#8211; that should be clear from my previous posts on Wikipedia and my frequent use of Wikipedia as a reference...</small></li>
<li><a href='http://blog.rogersoles.com/2008/12/13/technology/browser-spelling-check/' rel='bookmark' title='Permanent Link: Browser Spelling Check'>Browser Spelling Check</a> <small>If you use Firefox you&#8217;re set, build of that have included a spell check add in for quite sometime; however, if you use Internet Explorer...</small></li>
<li><a href='http://blog.rogersoles.com/2009/02/12/technology/all-the-news-fit-to-print/' rel='bookmark' title='Permanent Link: All the news fit to print&#8230;'>All the news fit to print&#8230;</a> <small>Hmm&#8230; maybe that should be all the bs that can be gotten away with! When you read news articles or when people relay to you...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/07/technology/stop-%e2%80%a2-think-%e2%80%a2-click/' rel='bookmark' title='Permanent Link: STOP • THINK • CLICK'>STOP • THINK • CLICK</a> <small>I&#8217;ve mentioned the Internet Crime Complain Centerbefore, but the US Government also sponsors OnGuard Online with the slogan STOP • THINK • CLICK While most...</small></li>
<li><a href='http://blog.rogersoles.com/2010/03/16/politics/comparison-of-canadian-and-american-health-care-systems/' rel='bookmark' title='Permanent Link: Comparison of Canadian and American health care systems'>Comparison of Canadian and American health care systems</a> <small>There are a number of comparisons between the Canadian and US health care systems; and like with any complex issue you can make the comparison...</small></li>
<li><a href='http://blog.rogersoles.com/2010/04/04/technology/joomla-review/' rel='bookmark' title='Permanent Link: Joomla Review'>Joomla Review</a> <small>Joomla is one of the most popular open source Content Management Systems (CMSs) around. The core of Joomla is open source and free to use;...</small></li>
<li><a href='http://blog.rogersoles.com/2010/02/07/technology/just-host/' rel='bookmark' title='Permanent Link: Just Host'>Just Host</a> <small>As I posted a couple weeks ago I&#8217;d gone ahead and moved some of my domains over to JustHost.com. Mainly I was looking for an...</small></li>
<li><a href='http://blog.rogersoles.com/2008/11/13/technology/hdx-media-player/' rel='bookmark' title='Permanent Link: HDX Media Player'>HDX Media Player</a> <small>I ran across this site while reading on the web.  The HDX 1000 and HDX 900 look like they could be interesting devices to hookup...</small></li>
<li><a href='http://blog.rogersoles.com/2008/11/21/technology/can-you-hear-me-now/' rel='bookmark' title='Permanent Link: Can You Hear Me Now?'>Can You Hear Me Now?</a> <small>And who else can hear me or can see my cellular phone records? Verizon Wireless informed the Obama transition team, the US Secret Service, and...</small></li>
<li><a href='http://blog.rogersoles.com/2010/04/19/politics/trust-in-government-hits-near-historic-low/' rel='bookmark' title='Permanent Link: Trust In Government Hits Near-Historic Low'>Trust In Government Hits Near-Historic Low</a> <small>A Pew Poll released yesterday shows &#8220;Americans&#8217; trust in government and its institutions has plummeted to a near-historic low&#8230;&#8221; Americans&#8217; trust in government and its...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Wikipedia is an incredible place to find information; if you&#8217;ve never used it, you should try it out.</p>
<p>That said, you should always question the accuracy of any information you get off the internet (really you should question the accuracy of any information you get period).</p>
<p>When you read something on the internet, it&#8217;s best to confirm the accuracy of that information by visiting a web site that should be authoritative one it.</p>
<p>For instance, if you&#8217;re gathering medical related information, check out the medical web sites provided by major medical schools and clinics; and the government.  Compare what&#8217;s there with what you&#8217;re reading on another site, and don&#8217;t take anything as being factual if you can&#8217;t corroborate it.</p>
<p>I&#8217;m not trying to diminish the value of Wikipedia, I&#8217;m just pointing out that all the information there probably isn&#8217;t correct; and you should double check anything before using it.</p>
<ul>
<li><a title="Wikipedia" href="http://en.wikipedia.org/" target="_blank">Wikipedia</a></li>
</ul>


<p><hr/><p>Related posts:<ol><li><a href='http://blog.rogersoles.com/2010/01/24/technology/wikipedia-funding/' rel='bookmark' title='Permanent Link: Wikipedia Funding'>Wikipedia Funding</a> <small>I&#8217;m a big fan of Wikipedia&#8211; that should be clear from my previous posts on Wikipedia and my frequent use of Wikipedia as a reference...</small></li>
<li><a href='http://blog.rogersoles.com/2008/12/13/technology/browser-spelling-check/' rel='bookmark' title='Permanent Link: Browser Spelling Check'>Browser Spelling Check</a> <small>If you use Firefox you&#8217;re set, build of that have included a spell check add in for quite sometime; however, if you use Internet Explorer...</small></li>
<li><a href='http://blog.rogersoles.com/2009/02/12/technology/all-the-news-fit-to-print/' rel='bookmark' title='Permanent Link: All the news fit to print&#8230;'>All the news fit to print&#8230;</a> <small>Hmm&#8230; maybe that should be all the bs that can be gotten away with! When you read news articles or when people relay to you...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/07/technology/stop-%e2%80%a2-think-%e2%80%a2-click/' rel='bookmark' title='Permanent Link: STOP • THINK • CLICK'>STOP • THINK • CLICK</a> <small>I&#8217;ve mentioned the Internet Crime Complain Centerbefore, but the US Government also sponsors OnGuard Online with the slogan STOP • THINK • CLICK While most...</small></li>
<li><a href='http://blog.rogersoles.com/2010/03/16/politics/comparison-of-canadian-and-american-health-care-systems/' rel='bookmark' title='Permanent Link: Comparison of Canadian and American health care systems'>Comparison of Canadian and American health care systems</a> <small>There are a number of comparisons between the Canadian and US health care systems; and like with any complex issue you can make the comparison...</small></li>
<li><a href='http://blog.rogersoles.com/2010/04/04/technology/joomla-review/' rel='bookmark' title='Permanent Link: Joomla Review'>Joomla Review</a> <small>Joomla is one of the most popular open source Content Management Systems (CMSs) around. The core of Joomla is open source and free to use;...</small></li>
<li><a href='http://blog.rogersoles.com/2010/02/07/technology/just-host/' rel='bookmark' title='Permanent Link: Just Host'>Just Host</a> <small>As I posted a couple weeks ago I&#8217;d gone ahead and moved some of my domains over to JustHost.com. Mainly I was looking for an...</small></li>
<li><a href='http://blog.rogersoles.com/2008/11/13/technology/hdx-media-player/' rel='bookmark' title='Permanent Link: HDX Media Player'>HDX Media Player</a> <small>I ran across this site while reading on the web.  The HDX 1000 and HDX 900 look like they could be interesting devices to hookup...</small></li>
<li><a href='http://blog.rogersoles.com/2008/11/21/technology/can-you-hear-me-now/' rel='bookmark' title='Permanent Link: Can You Hear Me Now?'>Can You Hear Me Now?</a> <small>And who else can hear me or can see my cellular phone records? Verizon Wireless informed the Obama transition team, the US Secret Service, and...</small></li>
<li><a href='http://blog.rogersoles.com/2010/04/19/politics/trust-in-government-hits-near-historic-low/' rel='bookmark' title='Permanent Link: Trust In Government Hits Near-Historic Low'>Trust In Government Hits Near-Historic Low</a> <small>A Pew Poll released yesterday shows &#8220;Americans&#8217; trust in government and its institutions has plummeted to a near-historic low&#8230;&#8221; Americans&#8217; trust in government and its...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.rogersoles.com/2009/02/20/technology/wikipedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All the news fit to print&#8230;</title>
		<link>http://blog.rogersoles.com/2009/02/12/technology/all-the-news-fit-to-print/</link>
		<comments>http://blog.rogersoles.com/2009/02/12/technology/all-the-news-fit-to-print/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 09:00:46 +0000</pubDate>
		<dc:creator>roger</dc:creator>
				<category><![CDATA[Communications]]></category>
		<category><![CDATA[Economy]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Legal]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.rogersoles.com/?p=868</guid>
		<description><![CDATA[Hmm&#8230; maybe that should be all the bs that can be gotten away with! When you read news articles or when people relay to you &#8220;facts&#8221; be sure and do your homework; read accounts of the same events on multiple un-related sources.  In fact it&#8217;s often good to get a perspective from an international source. [...]


<hr/>
Related posts:<ol><li><a href='http://blog.rogersoles.com/2009/02/20/technology/wikipedia/' rel='bookmark' title='Permanent Link: Wikipedia'>Wikipedia</a> <small>Wikipedia is an incredible place to find information; if you&#8217;ve never used it, you should try it out. That said, you should always question the...</small></li>
<li><a href='http://blog.rogersoles.com/2009/12/29/technology/gsm-hacked/' rel='bookmark' title='Permanent Link: GSM Hacked'>GSM Hacked</a> <small>Computer security researchers have reported that GSM phones (the cellular protocol used by most of the world &#8212; roughly 80% of all cell phones) can...</small></li>
<li><a href='http://blog.rogersoles.com/2010/02/23/technology/dynamic-sitemap/' rel='bookmark' title='Permanent Link: Dynamic Sitemap'>Dynamic Sitemap</a> <small>About two years ago I wrote a program that created a sitemap from a local copy of my web pages (I also wrote an automation...</small></li>
<li><a href='http://blog.rogersoles.com/2008/10/29/politics/a-political-message/' rel='bookmark' title='Permanent Link: A Political Message'>A Political Message</a> <small>Political commentary is a little out of place for my BLOG, and the most important message for this post is CHECK and DOUBLE-CHECK everything everyone...</small></li>
<li><a href='http://blog.rogersoles.com/2008/10/24/technology/report-fraud/' rel='bookmark' title='Permanent Link: Report Fraud'>Report Fraud</a> <small>Each and every time you encounter someone trying to defraud you make sure you report it. Phishing scams, money scams, premium SMS message, suspicious phone calls,...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/14/technology/smart-phones/' rel='bookmark' title='Permanent Link: Smart Phones'>Smart Phones</a> <small>If you&#8217;re looking for a smart phone, you&#8217;ve got lots of great choices now. Whether you&#8217;re interested in an Android based phone, a Windows Mobile...</small></li>
<li><a href='http://blog.rogersoles.com/2009/08/19/technology/free-email/' rel='bookmark' title='Permanent Link: Free EMail&#8230;'>Free EMail&#8230;</a> <small>Right LOL Most of you probably think that the free email provider you&#8217;re using makes money by showing you those annoying advertisements when you access...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/18/general/disclosing-personal-information/' rel='bookmark' title='Permanent Link: Disclosing Personal Information'>Disclosing Personal Information</a> <small>I find more and more companies attempt to get as much personal information on me as they can. I also find more and more companies...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/21/technology/7-zip/' rel='bookmark' title='Permanent Link: 7-Zip'>7-Zip</a> <small>I&#8217;ve written about 7-Zip before; but since we&#8217;re on the verge of a significant improvement I felt it was time to highlight it again. 7-Zip...</small></li>
<li><a href='http://blog.rogersoles.com/2008/11/08/legal/identity-theft/' rel='bookmark' title='Permanent Link: Identity Theft'>Identity Theft</a> <small>Identity theft is a real problem, and credit bureaus make it all to easy for individuals who get a little bit of information about you...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Hmm&#8230; maybe that should be all the bs that can be gotten away with!</p>
<p>When you read news articles or when people relay to you &#8220;facts&#8221; be sure and do your homework; read accounts of the same events on multiple un-related sources.  In fact it&#8217;s often good to get a perspective from an international source.</p>
<p>Take a look at any of the facts, figures, and claims &#8212; try and verify those against an authoritative source.</p>
<p>If the information reported is important to you; check to see if any of the &#8220;facts&#8221; it&#8217;s based on, or claims it makes are updated over time.</p>
<p>Most journalists report the news impartially from their perspective; but it is from their perspective.  Many journalists and news organization like to sensationalize the news or majorly spin it to suit their agenda.</p>
<p>Question everything.</p>


<p><hr/><p>Related posts:<ol><li><a href='http://blog.rogersoles.com/2009/02/20/technology/wikipedia/' rel='bookmark' title='Permanent Link: Wikipedia'>Wikipedia</a> <small>Wikipedia is an incredible place to find information; if you&#8217;ve never used it, you should try it out. That said, you should always question the...</small></li>
<li><a href='http://blog.rogersoles.com/2009/12/29/technology/gsm-hacked/' rel='bookmark' title='Permanent Link: GSM Hacked'>GSM Hacked</a> <small>Computer security researchers have reported that GSM phones (the cellular protocol used by most of the world &#8212; roughly 80% of all cell phones) can...</small></li>
<li><a href='http://blog.rogersoles.com/2010/02/23/technology/dynamic-sitemap/' rel='bookmark' title='Permanent Link: Dynamic Sitemap'>Dynamic Sitemap</a> <small>About two years ago I wrote a program that created a sitemap from a local copy of my web pages (I also wrote an automation...</small></li>
<li><a href='http://blog.rogersoles.com/2008/10/29/politics/a-political-message/' rel='bookmark' title='Permanent Link: A Political Message'>A Political Message</a> <small>Political commentary is a little out of place for my BLOG, and the most important message for this post is CHECK and DOUBLE-CHECK everything everyone...</small></li>
<li><a href='http://blog.rogersoles.com/2008/10/24/technology/report-fraud/' rel='bookmark' title='Permanent Link: Report Fraud'>Report Fraud</a> <small>Each and every time you encounter someone trying to defraud you make sure you report it. Phishing scams, money scams, premium SMS message, suspicious phone calls,...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/14/technology/smart-phones/' rel='bookmark' title='Permanent Link: Smart Phones'>Smart Phones</a> <small>If you&#8217;re looking for a smart phone, you&#8217;ve got lots of great choices now. Whether you&#8217;re interested in an Android based phone, a Windows Mobile...</small></li>
<li><a href='http://blog.rogersoles.com/2009/08/19/technology/free-email/' rel='bookmark' title='Permanent Link: Free EMail&#8230;'>Free EMail&#8230;</a> <small>Right LOL Most of you probably think that the free email provider you&#8217;re using makes money by showing you those annoying advertisements when you access...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/18/general/disclosing-personal-information/' rel='bookmark' title='Permanent Link: Disclosing Personal Information'>Disclosing Personal Information</a> <small>I find more and more companies attempt to get as much personal information on me as they can. I also find more and more companies...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/21/technology/7-zip/' rel='bookmark' title='Permanent Link: 7-Zip'>7-Zip</a> <small>I&#8217;ve written about 7-Zip before; but since we&#8217;re on the verge of a significant improvement I felt it was time to highlight it again. 7-Zip...</small></li>
<li><a href='http://blog.rogersoles.com/2008/11/08/legal/identity-theft/' rel='bookmark' title='Permanent Link: Identity Theft'>Identity Theft</a> <small>Identity theft is a real problem, and credit bureaus make it all to easy for individuals who get a little bit of information about you...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.rogersoles.com/2009/02/12/technology/all-the-news-fit-to-print/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Live Cashback Search</title>
		<link>http://blog.rogersoles.com/2008/05/28/technology/internet/microsoft-live-cashback-search/</link>
		<comments>http://blog.rogersoles.com/2008/05/28/technology/internet/microsoft-live-cashback-search/#comments</comments>
		<pubDate>Thu, 29 May 2008 05:28:58 +0000</pubDate>
		<dc:creator>roger</dc:creator>
				<category><![CDATA[Deals]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Shopping]]></category>

		<guid isPermaLink="false">http://blog.rogersoles.com/?p=41</guid>
		<description><![CDATA[So Microsoft has introduced a new product search feature on live to compete with PriceGrabber, PriceWatch, etc&#8230; they call it Cashback. And the reason they call it Cashback is because they pay you a small amount as a &#8221;rebate&#8221; when you purchase some items through the service. Check it out; obviously the engine with the lowest [...]


<hr/>
Related posts:<ol><li><a href='http://blog.rogersoles.com/2009/11/22/technology/microsoft-live-essentials/' rel='bookmark' title='Permanent Link: Microsoft Live Essentials'>Microsoft Live Essentials</a> <small>With Windows 7 Microsoft has removed email, instant messaging, address book, calendaring,  and movie maker from the Windows install.  If you run the Windows 7 Upgrade...</small></li>
<li><a href='http://blog.rogersoles.com/2009/11/24/technology/windows-live-mail/' rel='bookmark' title='Permanent Link: Windows Live Mail'>Windows Live Mail</a> <small>Part of the Microsoft Live Essential software suite available either from Live.com (see link below) or through the Microsoft Update is Live Mail; a simple,...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/06/technology/ubuntu-desktop-search/' rel='bookmark' title='Permanent Link: Ubuntu &#8211; Desktop Search'>Ubuntu &#8211; Desktop Search</a> <small>Microsoft has really shown the power of desktop search in Vista and Windows 7; their newest Desktop Search Engine works, and works well&#8230; so in...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/10/technology/windows-live/' rel='bookmark' title='Permanent Link: Windows Live'>Windows Live</a> <small>Microsoft introduced it&#8217;s next generation online services quit some time ago under the name Windows Live through the URL live.com. It&#8217;s intended as far more...</small></li>
<li><a href='http://blog.rogersoles.com/2008/05/12/technology/windows-live-mail-failings/' rel='bookmark' title='Permanent Link: Windows Live Mail Failings and Features'>Windows Live Mail Failings and Features</a> <small>Since I&#8217;ve given Windows Live Mail a &#8220;recommendation&#8221; I do want to be clear about about some of the specifics. First, when you move a...</small></li>
<li><a href='http://blog.rogersoles.com/2009/11/23/technology/windows-live-writer/' rel='bookmark' title='Permanent Link: Windows Live Writer'>Windows Live Writer</a> <small>Part of the Microsoft Live Essential software suite available either from Live.com (see link below) or through the Microsoft Update is Live Writer; a simple...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/20/technology/os-x-desktop-search/' rel='bookmark' title='Permanent Link: OS-X &#8211; Desktop Search'>OS-X &#8211; Desktop Search</a> <small>I&#8217;m posting this mainly to illustrate that not Microsoft alone get&#8217;s the importance of desktop search &#8212; Apple&#8217;s Spotlight provides much the same level of...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/22/technology/desktop-search/' rel='bookmark' title='Permanent Link: Desktop Search'>Desktop Search</a> <small>Let me start by saying that Windows Desktop Search is a great addition to Windows; and while it might have taken four major releases to...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/17/technology/windows-desktop-search/' rel='bookmark' title='Permanent Link: Windows &#8211; Desktop Search'>Windows &#8211; Desktop Search</a> <small>Most people realize how valuable Internet search engines are; but not everyone has figured out how valuable desktop (and server) search engines can be. Even...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/16/technology/linux-desktop-search/' rel='bookmark' title='Permanent Link: Linux &#8211; Desktop Search'>Linux &#8211; Desktop Search</a> <small>A while ago I published a post on Desktop Search on Linux (specifically Ubuntu).  I was far from happy with my conclusions and I felt...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So Microsoft has introduced a new product search feature on live to compete with PriceGrabber, PriceWatch, etc&#8230; they call it Cashback.</p>
<p>And the reason they call it Cashback is because they pay you a small amount as a &#8221;rebate&#8221; when you purchase some items through the service.</p>
<p>Check it out; obviously the engine with the lowest price (overall) wins.</p>
<p><a href="http://search.live.com/cashback" target="_blank">Live Cashback</a></p>
<p> </p>


<p><hr/><p>Related posts:<ol><li><a href='http://blog.rogersoles.com/2009/11/22/technology/microsoft-live-essentials/' rel='bookmark' title='Permanent Link: Microsoft Live Essentials'>Microsoft Live Essentials</a> <small>With Windows 7 Microsoft has removed email, instant messaging, address book, calendaring,  and movie maker from the Windows install.  If you run the Windows 7 Upgrade...</small></li>
<li><a href='http://blog.rogersoles.com/2009/11/24/technology/windows-live-mail/' rel='bookmark' title='Permanent Link: Windows Live Mail'>Windows Live Mail</a> <small>Part of the Microsoft Live Essential software suite available either from Live.com (see link below) or through the Microsoft Update is Live Mail; a simple,...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/06/technology/ubuntu-desktop-search/' rel='bookmark' title='Permanent Link: Ubuntu &#8211; Desktop Search'>Ubuntu &#8211; Desktop Search</a> <small>Microsoft has really shown the power of desktop search in Vista and Windows 7; their newest Desktop Search Engine works, and works well&#8230; so in...</small></li>
<li><a href='http://blog.rogersoles.com/2009/01/10/technology/windows-live/' rel='bookmark' title='Permanent Link: Windows Live'>Windows Live</a> <small>Microsoft introduced it&#8217;s next generation online services quit some time ago under the name Windows Live through the URL live.com. It&#8217;s intended as far more...</small></li>
<li><a href='http://blog.rogersoles.com/2008/05/12/technology/windows-live-mail-failings/' rel='bookmark' title='Permanent Link: Windows Live Mail Failings and Features'>Windows Live Mail Failings and Features</a> <small>Since I&#8217;ve given Windows Live Mail a &#8220;recommendation&#8221; I do want to be clear about about some of the specifics. First, when you move a...</small></li>
<li><a href='http://blog.rogersoles.com/2009/11/23/technology/windows-live-writer/' rel='bookmark' title='Permanent Link: Windows Live Writer'>Windows Live Writer</a> <small>Part of the Microsoft Live Essential software suite available either from Live.com (see link below) or through the Microsoft Update is Live Writer; a simple...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/20/technology/os-x-desktop-search/' rel='bookmark' title='Permanent Link: OS-X &#8211; Desktop Search'>OS-X &#8211; Desktop Search</a> <small>I&#8217;m posting this mainly to illustrate that not Microsoft alone get&#8217;s the importance of desktop search &#8212; Apple&#8217;s Spotlight provides much the same level of...</small></li>
<li><a href='http://blog.rogersoles.com/2010/01/22/technology/desktop-search/' rel='bookmark' title='Permanent Link: Desktop Search'>Desktop Search</a> <small>Let me start by saying that Windows Desktop Search is a great addition to Windows; and while it might have taken four major releases to...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/17/technology/windows-desktop-search/' rel='bookmark' title='Permanent Link: Windows &#8211; Desktop Search'>Windows &#8211; Desktop Search</a> <small>Most people realize how valuable Internet search engines are; but not everyone has figured out how valuable desktop (and server) search engines can be. Even...</small></li>
<li><a href='http://blog.rogersoles.com/2010/07/16/technology/linux-desktop-search/' rel='bookmark' title='Permanent Link: Linux &#8211; Desktop Search'>Linux &#8211; Desktop Search</a> <small>A while ago I published a post on Desktop Search on Linux (specifically Ubuntu).  I was far from happy with my conclusions and I felt...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.rogersoles.com/2008/05/28/technology/internet/microsoft-live-cashback-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
