<?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>George&#039;s Technology Blog</title>
	<atom:link href="http://imblogginghere.com/techblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://imblogginghere.com/techblog</link>
	<description>» Smart Phones, Web Design, Google or whatever</description>
	<lastBuildDate>Thu, 11 Mar 2010 16:53:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Redirecting Dynamic URL to Static using .htaccess</title>
		<link>http://imblogginghere.com/techblog/201003/webdesign/redirecting-dynamic-url-to-static-using-htaccess/</link>
		<comments>http://imblogginghere.com/techblog/201003/webdesign/redirecting-dynamic-url-to-static-using-htaccess/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 16:53:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=901</guid>
		<description><![CDATA[I (finally) found some documentation today on how to redirect a dynamic URL to a static URL. For example changing www.example.com/page.php?article=22 to www.example.com/apples-and-oranges.php
This is your .htaccess file entry to do the above redirection, of course the RewriteEngine on command is only needed once before the first redirect... This will work for ONE variable pair
RewriteEngine on
RewriteCond [...]]]></description>
			<content:encoded><![CDATA[<p>I (finally) found some documentation today on how to redirect a dynamic URL to a static URL. For example changing www.example.com/page.php?article=22 to www.example.com/apples-and-oranges.php</p>
<p>This is your .htaccess file entry to do the above redirection, of course the RewriteEngine on command is only needed once before the first redirect... This will work for ONE variable pair</p>
<blockquote><p>RewriteEngine on</p>
<p>RewriteCond %{QUERY_STRING} ^article=22$<br />
RewriteRule ^page\.php$ http://www.example.com/apples-and-oranges.php? [R=301,L]</p></blockquote>
<p>Now if you need to redirect a dynamic URL with more than one name/valu pair like this:</p>
<p>www.example.com/page.php?widget=cellphone22&amp;color=red</p>
<p>You will need to use the following code:</p>
<blockquote><p>RewriteEngine on</p>
<p>RewriteCond %{QUERY_STRING} [&amp;]?widget=cellphone22[&amp;]?<br />
RewriteRule ^page\.php$ www.example.com/cellphone22.php? [R=301,L]</p></blockquote>
<p>In this last example, <em>&amp;color=22</em> is ignored.</p>
<p><strong>Resources for this post:</strong></p>
<p>http://www.webmasterworld.com/apache/3365089.htm<br />
http://www.seoverflow.com/blog/seo/setting-up-301-redirects-for-dynamic-urls/</p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/201003/webdesign/redirecting-dynamic-url-to-static-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail &#8211; Merge Contacts</title>
		<link>http://imblogginghere.com/techblog/200912/email-gmail/gmail-merge-contacts/</link>
		<comments>http://imblogginghere.com/techblog/200912/email-gmail/gmail-merge-contacts/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 03:54:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email and Gmail]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=885</guid>
		<description><![CDATA[
Finally, merge all duplicate contacts with one button. I just tried this out and it found and merged several contacts, and now I don't need to do it manually "later" since this one-click and review option was so easy!
How? Go to Gmail &#62; Contacts and look for the "Find Duplicates" button. Press it and follow [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-894" style="border: 0pt none; margin: 10px;" title="google-contact-merge" src="http://imblogginghere.com/techblog/wp-content/uploads/2009/12/google-contact-merge-350x323.jpg" alt="google-contact-merge" width="350" height="323" /></p>
<p>Finally, <a href="http://gmailblog.blogspot.com/2009/12/one-button-to-merge-all-duplicate.html" target="_blank">merge all duplicate contacts</a> with one button. I just tried this out and it found and merged several contacts, and now I don't need to do it manually "later" since this one-click and review option was so easy!</p>
<p>How? Go to <strong>Gmail</strong> &gt; <strong>Contacts</strong> and look for the "Find Duplicates" button. Press it and follow the directions, and visit the original Gmail blog post (link above) for more detail.</p>
<p><a href="http://mail.google.com/support/bin/answer.py?answer=165334&amp;hl=en" target="_blank">Learn more about merging contacts</a>.</p>
<p><strong>MORE GMAIL</strong></p>
<p><a href="http://imblogginghere.com/techblog/200911/email-gmail/gmail-more-storage-for-less/">More Gmail Storage</a><br />
<a href="http://imblogginghere.com/techblog/200910/email-gmail/more-gmail-security-tips/">More Gmail Security Tips</a><br />
<a href="http://imblogginghere.com/techblog/200909/email-gmail/hide-gmail-labels-not-containing-new-messages/">Hide Gmail Labels With No New Messages</a></p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200912/email-gmail/gmail-merge-contacts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call of Duty: Modern Warfare 2: Fighting Tips (in the Favela)</title>
		<link>http://imblogginghere.com/techblog/200912/videogames/call-of-duty-modern-warfare-2-fighting-tips-in-the-favela/</link>
		<comments>http://imblogginghere.com/techblog/200912/videogames/call-of-duty-modern-warfare-2-fighting-tips-in-the-favela/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 03:58:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=874</guid>
		<description><![CDATA[Favela: Head to the LZ to the South of the market
LISTEN TO THE ENEMY
During this mission, as in many of COD: MW2 missions it pays to listen to the enemy. First off, listen to your enemy. Even with a moderately priced ($15-$30) set of stereo headsets you can get a pretty good idea of where [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Favela: Head to the LZ to the South of the market</strong></h2>
<p><strong>LISTEN TO THE ENEMY</strong></p>
<p>During this mission, as in many of COD: MW2 missions it pays to listen to the enemy. First off, listen to your enemy. Even with a moderately priced ($15-$30) set of stereo headsets you can get a pretty good idea of where your enemy is - above you, below you, behind you, or to either side - you get the idea. Also listen to WHAT they say, even though you may not know the language. Many of the IMPORTANT words are similar in English. Here are some, though the spelling may be off...</p>
<p>covertura = cover<br />
grenata = grenade</p>
<p><strong><img class="alignleft size-full wp-image-882" style="border: 0pt none; margin: 10px;" title="Chickens in cages in the favela - COD: Modern Warfare 2" src="http://imblogginghere.com/techblog/wp-content/uploads/2009/12/callofduty-favelachickens.jpg" alt="Chickens in cages in the favela - COD: Modern Warfare 2" width="221" height="192" /></strong><strong>MOVEMENT</strong></p>
<p>This area of the favela has a LOT of chickens jumping around in their cages that will make it harder to determine what to shoot. The first time in I killed as many chickens as people - partly because I started shooting them in an effort to get rid of their "ambient movement" so I'd be able to recognize threats, the gun-toting Brazialians.</p>
<p>Watch for shadows to give away your enemy, especially shadows from above. Shadows can be an important tip-off, but before you go attacking a shadow make sure you know its an enemy and not one of your own - friendly fire isn't friendly!</p>
<p><strong>MOVEMENT ROUTES &amp; ENEMY INTELLIGENCE</strong></p>
<p><strong><img class="size-full wp-image-879 alignright" style="border: 0pt none; margin: 10px;" title="COD, Modern warefare 2, the favela" src="http://imblogginghere.com/techblog/wp-content/uploads/2009/12/cod-mw2-favela1.jpg" alt="cod-mw2-favela1" width="250" height="188" /></strong>The favela has lots of different paths to move through if you look. I tend to look straight down the middle and sometimes miss flanking routes, side alleys, paths around stands and paths through stands and buildings. Keep an eye open for alternate paths, especially in areas where enemy resistance is strong.</p>
<p>Be sure that you remember the people of the favela knows its paths well and take advantage of the fact that most places have 2 areas and rooms of approach, if not more. Its difficult ot get your back safely up against a wall there.</p>
<p>In this particular area there are 4 pieces of enemy intelligence. There is a lot of "visual noise" in the favela because its a city area - things laying around like clothing, boxes, pots, pans, cans, bottles, cages, baskets, LP gas tanks etc. Keep an eye out for enemy intelligence (open laptops).</p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200912/videogames/call-of-duty-modern-warfare-2-fighting-tips-in-the-favela/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>COD4: Modern Warfare 2 &#8211; Doorway/Opening glitch</title>
		<link>http://imblogginghere.com/techblog/200912/videogames/cod4-modern-warfare-2-doorwayopening-glitch/</link>
		<comments>http://imblogginghere.com/techblog/200912/videogames/cod4-modern-warfare-2-doorwayopening-glitch/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 03:17:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=870</guid>
		<description><![CDATA[Call of Duty: Modern Warfare 2 is a great game (more later) but having completed it once, and playing through it again tonight I have to complain about "sticky places".  If you've logged enough time on the game then you've surely gotten stuck running through a doorway or other opening where you should be able [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-871" style="border: 0pt none; margin: 10px;" title="call of duty - modern warfare 2 - doorway, openings glitch, sticky spots" src="http://imblogginghere.com/techblog/wp-content/uploads/2009/12/cod4-mod-warfare2-stick.jpg" alt="cod4-mod-warfare2-stick" width="300" height="209" />Call of Duty: Modern Warfare 2 is a great game (more later) but having completed it once, and playing through it again tonight I have to complain about "sticky places".  If you've logged enough time on the game then you've surely gotten stuck running through a doorway or other opening where you should be able to move, but instead get stuck.</p>
<p>Assassin's Creed 2 has a similar glitch in which Ezio will suddenly look down as if on top of something when, in fact, he's standing in a doorway or other surface. In COD: MW2 the issue is openings (doors, wall openings, and the like) and it can be a little frustrating when you are running full tilt and get "stuck" - boom, dead.</p>
<p>Great game, and admittedly this is a <em>minor glitch</em> that is not "everywhere" and its not "every" doorway, either.</p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200912/videogames/cod4-modern-warfare-2-doorwayopening-glitch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Local Time &#8211; Your timezone</title>
		<link>http://imblogginghere.com/techblog/200912/webdesign/php-local-time-your-timezone/</link>
		<comments>http://imblogginghere.com/techblog/200912/webdesign/php-local-time-your-timezone/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 20:41:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=867</guid>
		<description><![CDATA[UPDATE: After a comment from a visitor I re-checked my code, did some testing and added the echo statement with formatted time, and improved the comments about how to check for the correct value of $offset. Also, note I have not used this code for a year yet so I do not know if daylight [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE: </strong>After a comment from a visitor I re-checked my code, did some testing and added the echo statement with <a href="http://us3.php.net/time" target="_blank">formatted time</a>, and improved the comments about how to check for the correct value of $offset. Also, note I have not used this code for a year yet so I do not know if daylight savings has been taken into account.</p>
<p>PHP code to get time in YOUR timezone...</p>
<blockquote><p>&lt;?</p>
<p>$mydatetime = time ();<br />
$offset= 0; // offset in # of hours from desired location<br />
// check the time displayed using $offset = 0 and adjust<br />
// the offset accordingly<br />
$mydatetime = $mydatetime + ($offset * 60 * 60);<br />
echo date ("g:i A", $mydatetime);</p>
<p>?&gt;</p></blockquote>
<p>Check the <a href="http://us3.php.net/time" target="_blank">PHP Time manual</a> page for formatting the time. This code has only been tested on two implementations. When I wanted to display the local time for a website's "offical time" I couldn't find any simple explanations online.</p>
<p>Comments/feedback are invited.</p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200912/webdesign/php-local-time-your-timezone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gmail Robot &#8211; Hey its Android!</title>
		<link>http://imblogginghere.com/techblog/200911/email-gmail/gmail-robot-hey-its-android/</link>
		<comments>http://imblogginghere.com/techblog/200911/email-gmail/gmail-robot-hey-its-android/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 04:30:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email and Gmail]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[smartphones]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=864</guid>
		<description><![CDATA[Sometimes a snippett speaks for itself, and this new feature letting you know which of your IM buddies is "online" using their cell phone (hence not really online, but not offline) is one of those cases:
Turn on Green Robot, a new experiment in Gmail Labs, and you'll see a robot icon next to people who [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes a snippett speaks for itself, and this new feature letting you know which of your IM buddies is "online" using their cell phone (hence not really online, but not offline) is one of those cases:</p>
<blockquote><p><em>Turn on Green Robot, a new experiment in Gmail Labs, and you'll see a robot icon next to people who are currently using Android phones. In the case below, Shirley is online with Android, Nicolle R. is using regular Gmail chat, and Chris I. is currently away but also on Android. Slatka is not an angry robot — she's online with Android but currently busy.</em></p>
<p><em>- Gmail Blog: New in Labs: <a href="http://gmailblog.blogspot.com/2009/11/new-in-labs-green-robot-icon.html" target="_blank">Green Robot Icon</a></em></p></blockquote>
<p>Click the link above for a small screenshot and more detail (if the snippett above wasn't enough for you).<em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200911/email-gmail/gmail-robot-hey-its-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phone, Music, Camera, and Chemical Sensor?</title>
		<link>http://imblogginghere.com/techblog/200911/technology/phone-music-camera-and-chemical-sensor/</link>
		<comments>http://imblogginghere.com/techblog/200911/technology/phone-music-camera-and-chemical-sensor/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 07:22:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[smartphones]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=859</guid>
		<description><![CDATA[Smartphones haven't been "just for phone calls" for a long time. They have also been playing music, taking pictures and shooting video for some time now. According to Engadget (and others) NASA has developed technology to detect ammonia, chorine gas or methane using the iPhone! Maybe there will be an iPhone on the next mission [...]]]></description>
			<content:encoded><![CDATA[<p>Smartphones haven't been "just for phone calls" for a long time. They have also been playing music, taking pictures and shooting video for some time now. According to <a href="http://www.engadget.com/2009/11/13/nasa-turnes-iphone-into-chemical-sensor-can-an-app-store-reject/" target="_blank">Engadget</a> (and others) NASA has developed technology to detect ammonia, chorine gas or methane using the iPhone! Maybe there will be an iPhone on the next mission to Mars?</p>
<p><em>Spock?</em></p>
<p><em>Yes, Jim?</em></p>
<p><em>I need to call Scotty, where did I put my iPhone?</em></p>
<p><strong>MORE<br />
</strong></p>
<p>1) <a href="http://www.nasa.gov/centers/ames/iphone/index.html">NASA Loves iPhone</a><strong><br />
</strong>2)<strong> </strong>Oh, hey I found another alternative to <a href="http://imblogginghere.com/techblog/200911/email-gmail/nokia-x6-or-game-console/">buying the Nokia X6</a> (coming in at just under $900)... you could buy 4 <strong>iPhone 3G'</strong>s and still money left!<br />
3) Will this make it easier to <a href="http://imblogginghere.com/techblog/200811/internet/hacking-nasa/">Hack NASA</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200911/technology/phone-music-camera-and-chemical-sensor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail more storage for less</title>
		<link>http://imblogginghere.com/techblog/200911/email-gmail/gmail-more-storage-for-less/</link>
		<comments>http://imblogginghere.com/techblog/200911/email-gmail/gmail-more-storage-for-less/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 06:08:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email and Gmail]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=857</guid>
		<description><![CDATA[On Nov 10, 2009 the Gmail blog announced lower pricing for extra storage, specifically the price for 20GB is only $5/year. Here's some extra info on that:
This extra storage acts as an overflow that you only start using when you reach the limit of your free storage, and is shared for use between Gmail and [...]]]></description>
			<content:encoded><![CDATA[<p>On Nov 10, 2009 the Gmail blog announced lower pricing for extra storage, specifically the price for 20GB is only $5/year. Here's some extra info on that:</p>
<blockquote><p>This extra storage acts as an overflow that you only start using when you reach the limit of your free storage, and is shared for use between Gmail and Picasa Web Albums.</p>
<p>- <em><strong>Gmail Blog</strong></em></p></blockquote>
<p><strong>Read Gmail Post</strong>: <a href="http://gmailblog.blogspot.com/2009/11/more-extra-storage-for-less.html">More Extra Storage For Less</a></p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200911/email-gmail/gmail-more-storage-for-less/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia X6 or Game Console?</title>
		<link>http://imblogginghere.com/techblog/200911/email-gmail/nokia-x6-or-game-console/</link>
		<comments>http://imblogginghere.com/techblog/200911/email-gmail/nokia-x6-or-game-console/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:36:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email and Gmail]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[smartphones]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=855</guid>
		<description><![CDATA[With a price tag higher than any of the current gaming consoles the Nokia X6 is sure to be a hit - for that crowd that's currently running around saying "Recession? What recession?" You know, those guys with all of that extra cash right now who aren't feeling the pinch AND have about $900 for [...]]]></description>
			<content:encoded><![CDATA[<p>With a price tag higher than any of the current gaming consoles the Nokia X6 is sure to be a hit - for that crowd that's currently running around saying "Recession? What recession?" You know, those guys with all of that extra cash right now who aren't feeling the pinch AND have about $900 for a phone. I mean, its a cool-looking phone, but I *could* buy about 900 double cheese burgers off of the McD's value menu, or 300 meals off of their value menu. Or maybe I want Xbox 360, a Playsation 3 AND a Nintendo Wii!</p>
<p style="text-align: center;"><strong>NOKIA X6 on YOUTUBE</strong><br />
<p><a href="http://imblogginghere.com/techblog/200911/email-gmail/nokia-x6-or-game-console/"><em>Click here to view the embedded video.</em></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200911/email-gmail/nokia-x6-or-game-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choices in Mice and Messages</title>
		<link>http://imblogginghere.com/techblog/200911/internet/choices-in-mice-and-messages/</link>
		<comments>http://imblogginghere.com/techblog/200911/internet/choices-in-mice-and-messages/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:11:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://imblogginghere.com/techblog/?p=845</guid>
		<description><![CDATA[Today Wired.com wrote about the OpenOffice Mouse. Not to be outdone by the Apple's 1-button design, or 2 or 3 button mice for the PC, OpenOffice has created and 18 button OOMouse. OpenOffice users, Photoshop users, and gamers may really be happy about this new 18 button mouse - and gamers especially so if they [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://imblogginghere.com/techblog/wp-content/uploads/2009/11/OOmouse_model.png" target="_blank"><img class="alignright size-medium wp-image-849" style="border: 0pt none; margin: 10px;" title="Open Office 18 button nouse" src="http://imblogginghere.com/techblog/wp-content/uploads/2009/11/OOmouse_model-350x344.png" alt="Check out the OpenOffice 18 button nouse" width="350" height="344" /></a>Today <a href="http://www.wired.com/gadgetlab/2009/11/18-button-open-office-mouse-makes-a-keyboard-look-minimal/" target="_blank">Wired.com wrote about the OpenOffice Mouse</a>. Not to be outdone by the Apple's 1-button design, or 2 or 3 button mice for the PC, <strong>OpenOffice</strong> has created and <a href="www.openofficemouse.com" target="_blank" title="Buy your 18 button OOMouse here"><strong>18 button OOMouse</strong></a>. OpenOffice users, Photoshop users, and gamers may really be happy about this new 18 button mouse - and gamers especially so if they prefer mouse+keyboard instead of a joystick and <a href="http://www.openofficemouse.com/game_list.html" target="_blank">play one of the currently supported games</a>.</p>
<p>In the middle of last week, Gmail posted  <a href="http://gmailblog.blogspot.com/2009/11/choose-which-messages-get-downloaded.html" target="_blank">Choose which messages get downloaded for offline use</a> so I guess the theme for the week is <strong><em>CHOICE</em></strong>.</p>
<p>I am a fan of (FREE) OpenOffice, but I don't know if I'll be giving that mouse a shot or not. Of course, it could become the next hot PC accessory, who knows!? And about choosing which messages to download for offline, I may give that one a try.</p>
<p>So you are reading about this stuff, what do YOU think?</p>
]]></content:encoded>
			<wfw:commentRss>http://imblogginghere.com/techblog/200911/internet/choices-in-mice-and-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
