<?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>MatthewRoy.com</title>
	<atom:link href="http://matthewroy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewroy.com</link>
	<description>Big Business Websites for Small Business Budgets</description>
	<lastBuildDate>Tue, 11 Oct 2011 00:27:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Goodbye Sky!</title>
		<link>http://matthewroy.com/2009/06/goodbye-sky/</link>
		<comments>http://matthewroy.com/2009/06/goodbye-sky/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 19:55:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experiments]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Image Manipulation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Weather]]></category>
		<category><![CDATA[Web Service]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=429</guid>
		<description><![CDATA[So I didn&#8217;t get a chance to put all this on my wordpress site yet but follow this link to see what I&#8217;ve been working on. See The Goodbye Sky! Code in action (not quite finished but a decent demo)]]></description>
			<content:encoded><![CDATA[<p>So I didn&#8217;t get a chance to put all this on my wordpress site yet but follow this link to see what I&#8217;ve been working on.</p>
<p><a title="Goodbye Sky!" href="http://dev.matthewroy.com/weather/imagetest/demopage.html" target="_blank">See The Goodbye Sky! Code in action </a>(not quite finished but a decent demo)</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/06/goodbye-sky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Latitude Current Weather</title>
		<link>http://matthewroy.com/2009/05/google-latitude-current-weather/</link>
		<comments>http://matthewroy.com/2009/05/google-latitude-current-weather/#comments</comments>
		<pubDate>Fri, 22 May 2009 17:44:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Weather]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=421</guid>
		<description><![CDATA[This tutorial/code sample is a quick guide to using google latitude&#8217;s new api and a weather service to get your current weather conditions in PHP.  First off I should say that this tutorial will be using the Google Latitude API and a web service from http://www.geonames.org/ using PHP 5.  This is not an end-all tutorial on how to [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial/code sample is a quick guide to using google latitude&#8217;s new api and a weather service to get your current weather conditions in PHP.  <span id="more-421"></span></p>
<p>First off I should say that this tutorial will be using the <a title="Google Latitude API" href="http://www.google.com/latitude/apps/badge" target="_blank">Google Latitude API</a> and a web service from <a href="http://www.geonames.org/">http://www.geonames.org/</a> using PHP 5.  This is not an end-all tutorial on how to do this, just a simple example.  Using this technique you can do all sorts of stuff with your GPS position. </p>
<p>You&#8217;ll need to have a <a title="Google Latitude" href="http://www.google.com/latitude/" target="_blank">Google Latitude Account</a> and probably a GPS and Web enabled Cell phone would be helpful.</p>
<p>Google Latitude is a service that allows you to share your current location with friends.  You location is updated whenever you use google maps on your mobile device and can continue sharing your location even after you&#8217;ve exited the maps.  I personally think this is pretty cool because that means I don&#8217;t have to write my own location sharing app for windows mobile.    You can also update your location online via an iGoogle Widget so you don&#8217;t have to worry about crazy stalkers finding you.</p>
<p>So, here&#8217;s the code:</p>
<p> </p>
<p>&lt;?php<br />
$googleLatID=&#8221;XXXXXXXXXXXXXXXXXXX&#8221;; //find this at http://www.google.com/latitude/apps/badge<br />
$url =&#8221;http://www.google.com/latitude/apps/badge/api?user=&#8221;.$googleLatID.&#8221;&amp;type=json&#8221;;<br />
try{<br />
$contents = file_get_contents($url);<br />
$contents = utf8_encode($contents);<br />
$results = json_decode($contents, true);<br />
$loc=&#8221;lat=&#8221;.$results['features'][0]['geometry']['coordinates'][1].&#8221;&amp;lng=&#8221;.$results['features'][0]['geometry']['coordinates'][0];<br />
$Wurl =&#8221;http://ws.geonames.org/findNearByWeatherJSON?&#8221;.$loc;<br />
try{<br />
$Wcontents=file_get_contents($Wurl);<br />
$Wcontents=utf8_encode($Wcontents);<br />
$Weather = json_decode($Wcontents, true);<br />
print_r($Weather);<br />
}<br />
catch (Exception $e){<br />
echo &#8216;WEATHER NOT FOUND!<br />
&#8216;;<br />
}<br />
}<br />
catch (Exception $e){<br />
echo &#8216;LOCATION NOT FOUND!<br />
&#8216;;<br />
}</p>
<p>?&gt;</p>
<p>Let&#8217;s break it down and see what it does:</p>
<p>$googleLatID=&#8221;XXXXXXXXXXXXXXXXXXX&#8221;; //find this at <a href="http://www.google.com/latitude/apps/badge">http://www.google.com/latitude/apps/badge</a><br />
$url =&#8221;<a href="http://www.google.com/latitude/apps/badge/api?user=&quot;.$googleLatID.&quot;&amp;type=json">http://www.google.com/latitude/apps/badge/api?user=&#8221;.$googleLatID.&#8221;&amp;type=json</a>&#8220;;</p>
<p>The first two lines just set variables for your Google Latitude Id and the url to the web service.  You will need to replace the &#8220;XXXXXXX&#8221; with your own Id, but that should be the only thing you have to change to make this work.</p>
<p>$contents = file_get_contents($url);<br />
 $contents = utf8_encode($contents);<br />
 $results = json_decode($contents, true);<br />
 $loc=&#8221;lat=&#8221;.$results['features'][0]['geometry']['coordinates'][1].&#8221;&amp;lng=&#8221;.$results['features'][0]['geometry']['coordinates'][0];<br />
$Wurl =&#8221;<a href="http://ws.geonames.org/findNearByWeatherJSON?&quot;.$loc">http://ws.geonames.org/findNearByWeatherJSON?&#8221;.$loc</a>;</p>
<p>This reads the contents of the JSON feed from Google then decodes it into a nice neat PHP Associative Array using  json_decode().  Then we set the $loc string for your query string variables of latitude and longitude.  You might notice that the lat/lon returned by Google are actually in reverse so its ['coordinates'][1], ['coordinates'][0].  $Wurl is the next url you need for the weather service.</p>
<p>$Wcontents=file_get_contents($Wurl);<br />
  $Wcontents=utf8_encode($Wcontents);<br />
  $Weather = json_decode($Wcontents, true);<br />
  print_r($Weather);</p>
<p>This does the same thing that we did above but instead of reading the feed from google you get the feed from geonames.com. </p>
<p>And that&#8217;s it.  You now have a nice Associative Array in PHP to display however you want.</p>
<p>So here&#8217;s an example of doing something with google latitude, weather underground feeds and php dynamic sky image: <a title="Dynamic Sky" href="http://dev.matthewroy.com/weather/" target="_blank">http://dev.matthewroy.com/weather/</a></p>
<p>I hope you enjoyed this quick tutorial/code sample.  I&#8217;d love to hear what you do with this so feel free to send me email or comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/google-latitude-current-weather/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PrimeCare Medical</title>
		<link>http://matthewroy.com/2009/05/primecare-medical/</link>
		<comments>http://matthewroy.com/2009/05/primecare-medical/#comments</comments>
		<pubDate>Thu, 21 May 2009 12:34:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=413</guid>
		<description><![CDATA[PrimeCare Medical, Inc. is a privately owned correctional healthcare provider based out of Harrisburg, Pennsylvania.  PrimeCare&#8217;s facilities are located in Pennsylvania, Maryland, New Hampshire, and West Virginia.  They asked me to create a site for them that included a flash banner, custom maps of their locations and an employment application. Visit PrimeCare Medical&#8217;s Website!  ]]></description>
			<content:encoded><![CDATA[<p><span class="boldtext"><a href="http://matthewroy.com/wp-content/uploads/2009/05/primecare_home.jpg"><img class="size-medium wp-image-414 alignleft" title="primecare_home" src="http://matthewroy.com/wp-content/uploads/2009/05/primecare_home-300x216.jpg" alt="primecare_home" width="300" height="216" /></a>PrimeCare Medical, Inc.</span> is a privately owned <span class="boldtext">correctional healthcare provider</span> based out of Harrisburg, Pennsylvania.  PrimeCare&#8217;s facilities are located in Pennsylvania, Maryland, New Hampshire, and West Virginia.  They asked me to create a site for them that included a flash banner, custom maps of their locations and an employment application. <a title="Visit PrimeCare Medical's Website" href="http://www.primecaremedical.com/primecare/" target="_blank">Visit PrimeCare Medical&#8217;s Website!</a></p>
<p><span id="more-413"></span> 
<a href='http://matthewroy.com/2009/05/primecare-medical/primecare_home/' title='primecare_home'><img width="150" height="150" src="http://matthewroy.com/wp-content/uploads/2009/05/primecare_home-150x150.jpg" class="attachment-thumbnail" alt="primecare_home" title="primecare_home" /></a>
<a href='http://matthewroy.com/2009/05/primecare-medical/primecare_application/' title='primecare_application'><img width="150" height="150" src="http://matthewroy.com/wp-content/uploads/2009/05/primecare_application-150x150.jpg" class="attachment-thumbnail" alt="primecare_application" title="primecare_application" /></a>
<a href='http://matthewroy.com/2009/05/primecare-medical/primecare_maps/' title='primecare_maps'><img width="150" height="150" src="http://matthewroy.com/wp-content/uploads/2009/05/primecare_maps-150x150.jpg" class="attachment-thumbnail" alt="primecare_maps" title="primecare_maps" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/primecare-medical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Club Med Billiards</title>
		<link>http://matthewroy.com/2009/05/club-med-billiards/</link>
		<comments>http://matthewroy.com/2009/05/club-med-billiards/#comments</comments>
		<pubDate>Wed, 20 May 2009 16:28:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=410</guid>
		<description><![CDATA[This design was for a local pool hall.  The concept was to integrate billiards imagery into the design.  This design was then turned into a dotnetnuke site.]]></description>
			<content:encoded><![CDATA[<p>This design was for a local pool hall.  The concept was to integrate billiards imagery into the design.  This design was then turned into a dotnetnuke site.</p>
<p><a href="http://matthewroy.com/wp-content/uploads/2009/05/cmbdesignproof21.jpg"><img class="alignnone size-medium wp-image-411" title="cmbdesignproof21" src="http://matthewroy.com/wp-content/uploads/2009/05/cmbdesignproof21-300x236.jpg" alt="cmbdesignproof21" width="300" height="236" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/club-med-billiards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NTMX Logo</title>
		<link>http://matthewroy.com/2009/05/ntmx-logo/</link>
		<comments>http://matthewroy.com/2009/05/ntmx-logo/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:51:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Logo Design]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=406</guid>
		<description><![CDATA[NTMX Recordings requested a logo.  This is what I came up with for them.]]></description>
			<content:encoded><![CDATA[<p>NTMX Recordings requested a logo.  This is what I came up with for them.</p>
<p><a href="http://matthewroy.com/wp-content/uploads/2009/05/ntmxdesign1.jpg"><img class="alignnone size-medium wp-image-407" title="ntmxdesign1" src="http://matthewroy.com/wp-content/uploads/2009/05/ntmxdesign1-300x200.jpg" alt="ntmxdesign1" width="300" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/ntmx-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green Energy Association</title>
		<link>http://matthewroy.com/2009/05/green-energy-association/</link>
		<comments>http://matthewroy.com/2009/05/green-energy-association/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:49:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Logo Design]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=403</guid>
		<description><![CDATA[This logo was created for the Green Energy Association.  The client provided the drawing shown in the bottom right corner.  I created several versions of the logo for them.  The logo was prepped for print  and web and transferred to the client.]]></description>
			<content:encoded><![CDATA[<p>This logo was created for the Green Energy Association.  The client provided the drawing shown in the bottom right corner.  I created several versions of the logo for them.  The logo was prepped for print  and web and transferred to the client.</p>
<p><a href="http://matthewroy.com/wp-content/uploads/2009/05/greenlogodesignc.jpg"><img class="alignnone size-medium wp-image-404" title="greenlogodesignc" src="http://matthewroy.com/wp-content/uploads/2009/05/greenlogodesignc-249x300.jpg" alt="greenlogodesignc" width="249" height="300" /></a><a href="http://matthewroy.com/wp-content/uploads/2009/05/greenlogodesignc.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/green-energy-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyser Consulting</title>
		<link>http://matthewroy.com/2009/05/keyser-consulting/</link>
		<comments>http://matthewroy.com/2009/05/keyser-consulting/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:44:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Logo]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=397</guid>
		<description><![CDATA[I designed this logo for a consultant based in Lancaster, PA.  He provided the concept he wanted of a k and c interlaced together.]]></description>
			<content:encoded><![CDATA[<p>I designed this logo for a consultant based in Lancaster, PA.  He provided the concept he wanted of a k and c interlaced together.</p>
<p><a href="http://matthewroy.com/wp-content/uploads/2009/05/514x175_blue.jpg"><img class="alignnone size-medium wp-image-399" title="514x175_blue" src="http://matthewroy.com/wp-content/uploads/2009/05/514x175_blue-300x102.jpg" alt="514x175_blue" width="300" height="102" /></a></p>
<p><a href="http://matthewroy.com/wp-content/uploads/2009/05/514x175_blue3d.jpg"><img class="alignnone size-medium wp-image-398" title="514x175_blue3d" src="http://matthewroy.com/wp-content/uploads/2009/05/514x175_blue3d-300x102.jpg" alt="514x175_blue3d" width="300" height="102" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/keyser-consulting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Portal</title>
		<link>http://matthewroy.com/2009/05/mobile-portal/</link>
		<comments>http://matthewroy.com/2009/05/mobile-portal/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:32:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=390</guid>
		<description><![CDATA[I had created this site many years ago when I had my first smartphone.  I had a palm treo so the site was formatted specifically for the screen.  In recent years a lot of providers have created mobile portals but at the time there was a limited selection of stuff available.  I never really liked yahoo&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://matthewroy.com/wp-content/uploads/2009/05/palmportpreview.jpg"><img class="size-full wp-image-393 alignleft" title="palmportpreview" src="http://matthewroy.com/wp-content/uploads/2009/05/palmportpreview.jpg" alt="palmportpreview" width="326" height="473" /></a>I had created this site many years ago when I had my first smartphone.  I had a palm treo so the site was formatted specifically for the screen. <span id="more-390"></span> In recent years a lot of providers have created mobile portals but at the time there was a limited selection of stuff available.  I never really liked yahoo&#8217;s old mobile site either so I made my own.  The site used Yahoo Map API, Yahoo Weather API and Yahoo Local API.  I also used the Google API for web searches.</p>

<a href='http://matthewroy.com/2009/05/mobile-portal/palmportpreview1/' title='palmportpreview1'><img width="150" height="150" src="http://matthewroy.com/wp-content/uploads/2009/05/palmportpreview1-150x150.jpg" class="attachment-thumbnail" alt="palmportpreview1" title="palmportpreview1" /></a>
<a href='http://matthewroy.com/2009/05/mobile-portal/palmportpreview2/' title='palmportpreview2'><img width="150" height="150" src="http://matthewroy.com/wp-content/uploads/2009/05/palmportpreview2-150x150.jpg" class="attachment-thumbnail" alt="palmportpreview2" title="palmportpreview2" /></a>
<a href='http://matthewroy.com/2009/05/mobile-portal/palmportpreview/' title='palmportpreview'><img width="150" height="150" src="http://matthewroy.com/wp-content/uploads/2009/05/palmportpreview-150x150.jpg" class="attachment-thumbnail" alt="palmportpreview" title="palmportpreview" /></a>

]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/mobile-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ascii Art Generator</title>
		<link>http://matthewroy.com/2009/05/ascii-art-generator/</link>
		<comments>http://matthewroy.com/2009/05/ascii-art-generator/#comments</comments>
		<pubDate>Wed, 20 May 2009 14:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experiments]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Image Manipulation]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=385</guid>
		<description><![CDATA[You can use this PixaMixa Application to turn any photo into ascii art.  Ascii art is art made from text characters.  http://pixamixa.com/asciiGen/index.php]]></description>
			<content:encoded><![CDATA[<p>You can use this PixaMixa Application to turn any photo into <a title="Ascii Art Definition" href="http://www.babylon.com/definition/ASCII_art/" target="_blank">ascii art</a>. <br />
<a href="http://matthewroy.com/wp-content/uploads/2009/05/asciiartify.jpg"><img class="alignnone size-full wp-image-386" title="asciiartify" src="http://matthewroy.com/wp-content/uploads/2009/05/asciiartify.jpg" alt="asciiartify" width="404" height="305" /></a></p>
<p>Ascii art is art made from text characters. </p>
<p><a href="http://pixamixa.com/asciiGen/index.php">http://pixamixa.com/asciiGen/index.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/ascii-art-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PixaMixa Ctrl+A</title>
		<link>http://matthewroy.com/2009/05/pixamixa-ctrla/</link>
		<comments>http://matthewroy.com/2009/05/pixamixa-ctrla/#comments</comments>
		<pubDate>Wed, 20 May 2009 13:56:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Experiments]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Image Manipulation]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://matthewroy.com/?p=382</guid>
		<description><![CDATA[PixaMixa&#8217;s Ctrl+A image generator lets you hide a picture inside of another one using the &#8220;Microsoft Hidden Image&#8221; bug. &#8220;Ctrl+A images&#8221; are images hidden inside other images which reveal themselves when selected in some Microsoft applications such as Internet Explorer and Microsoft Outlook. The name &#8220;Ctrl+A images&#8221; refers to the shortcut &#8220;Ctrl+A&#8221; which &#8220;Selects All&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>PixaMixa&#8217;s Ctrl+A image generator lets you hide a picture inside of another one using the &#8220;Microsoft Hidden Image&#8221; bug.</p>
<p><a href="http://pixamixa.com/ctrlAGen/"><img class="alignnone size-full wp-image-383" title="hiddenimg" src="http://matthewroy.com/wp-content/uploads/2009/05/hiddenimg.jpg" alt="hiddenimg" width="320" height="252" /></a><a href="http://matthewroy.com/wp-content/uploads/2009/05/hiddenimg.jpg"></a></p>
<p><span id="more-382"></span></p>
<p>&#8220;Ctrl+A images&#8221; are images hidden inside other images which reveal themselves when selected in some Microsoft applications such as Internet Explorer and Microsoft Outlook. The name &#8220;Ctrl+A images&#8221; refers to the shortcut &#8220;Ctrl+A&#8221; which &#8220;Selects All&#8221; in these applications. It can be a fun way to make a joke such as hiding a picture of an old person inside a picture of your spouse then emailing with a caption like &#8220;Press Ctrl+A to see your future&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewroy.com/2009/05/pixamixa-ctrla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

