<?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>Alan Kleymeyer's Blog</title>
	<atom:link href="http://blog.kleymeyer.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kleymeyer.com</link>
	<description>What is up.</description>
	<lastBuildDate>Wed, 03 Mar 2010 17:53:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>C Run-Time Error R6025 pure virtual function call</title>
		<link>http://blog.kleymeyer.com/2010/03/c-run-time-error-r6025-pure-virtual-function-call/</link>
		<comments>http://blog.kleymeyer.com/2010/03/c-run-time-error-r6025-pure-virtual-function-call/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:29:22 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1412</guid>
		<description><![CDATA[I did a bad bad thing.
Not so bad.  Calling a virtual pure function using a pointer to the abstract base class, or calling  it before the derived class has been initialized (in the constructor of the abstract class for example), is a no no.  I did the latter.
Here is Microsoft&#8217;s explanation:

No object has been instantiated [...]]]></description>
			<content:encoded><![CDATA[<p>I did a bad bad thing.</p>
<p>Not so bad.  Calling a virtual pure function using a pointer to the abstract base class, or calling  it before the derived class has been initialized (in the constructor of the abstract class for example), is a no no.  I did the latter.</p>
<p>Here is Microsoft&#8217;s explanation:</p>
<blockquote>
<p style="padding-left: 30px;"><em>No object has been instantiated to handle the pure virtual function call. This error is caused by calling a virtual function in an abstract base class through a pointer which is created by a cast to the type of the derived class, but is actually a pointer to the base class. This can occur when casting from a </em><strong><em>void*</em></strong><em> to a pointer to a class when the </em><strong><em>void*</em></strong><em> was created during the construction of the base class.</em></p>
</blockquote>
<p>And an <a href="http://support.microsoft.com/kb/125749">explanation and example</a> of the exact thing I did:</p>
<div><code></p>
<pre>   /* Compile options needed: none
   */ 

   class A;

   void fcn( A* );

   class A
   {
   public:
       virtual void f() = 0;
       A() { fcn( this ); }
   };

   class B : A
   {
       void f() { }
   };

   void fcn( A* p )
   {
       p-&gt;f();
   }

   // The declaration below invokes class B's constructor, which
   // first calls class A's constructor, which calls fcn. Then
   // fcn calls A::f, which is a pure virtual function, and
   // this causes the run-time error. B has not been constructed
   // at this point, so the B::f cannot be called. You would not
   // want it to be called because it could depend on something
   // in B that has not been initialized yet.

   B b;

   void main()
   {
   }</pre>
<p></code>I was actually able to make the following adjustment:</p>
<p><strong>Before:</strong></p>
<p>A:A()<br />
{<br />
VirtualPureFunction();<br />
}</p>
<p>B:B() : A()<br />
{<br />
}</p>
<p><strong>After:</strong></p>
<p>A:A()<br />
{<br />
// VirtualPureFunction(); //  Don&#8217;t call  here.  Derived object not guaranteed to be intialized<br />
}</p>
<p>B:B() : A()<br />
{<br />
VirtualPureFunction(); // Safe to call here since A() constructor already called<br />
}</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/03/c-run-time-error-r6025-pure-virtual-function-call/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call of Duty Modern Warfare 2 Accolades</title>
		<link>http://blog.kleymeyer.com/2010/02/call-of-duty-modern-warfare-2-accolades/</link>
		<comments>http://blog.kleymeyer.com/2010/02/call-of-duty-modern-warfare-2-accolades/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 03:51:27 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Entertainment]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1403</guid>
		<description><![CDATA[Unstoppable: Longest killstreak
Sharpshooter: Most headshots
Wingman: Most assists
Devastation: Highest multikill
Clutch Player: Match Winning Kill
The Feared: Most kills
MVP: Most kills/Fewest deaths
Overkill: Most kills/Most headshots
Steamroller: Most kills/Longest killstreak
The Show: 10 kills/No deaths
Supernatural: Kill/Death ratio over 10
Decimator: Killed entire enemy team without dying
Immortal: Highest kill/death ratio
Juggernaut: Fewest deaths
Pathfinder Most UAVs
Top Gun: Most airstrikes
Air Ops: Most helicopters
Flanker: Most kills from [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Unstoppable</strong>: Longest killstreak<br />
<strong>Sharpshooter</strong>: Most headshots<br />
<strong>Wingman</strong>: Most assists<br />
<strong>Devastation</strong>: Highest multikill<br />
<strong>Clutch Player</strong>: Match Winning Kill<br />
<strong>The Feared</strong>: Most kills<br />
<strong>MVP</strong>: Most kills/Fewest deaths<br />
<strong>Overkill</strong>: Most kills/Most headshots<br />
<strong>Steamroller</strong>: Most kills/Longest killstreak<br />
<strong>The Show</strong>: 10 kills/No deaths<br />
<strong>Supernatural</strong>: Kill/Death ratio over 10<br />
<strong>Decimator</strong>: Killed entire enemy team without dying<br />
<strong>Immortal</strong>: Highest kill/death ratio<br />
<strong>Juggernaut</strong>: Fewest deaths<br />
<strong>Pathfinder</strong> Most UAVs<br />
<strong>Top Gun</strong>: Most airstrikes<br />
<strong>Air Ops</strong>: Most helicopters<br />
<strong>Flanker</strong>: Most kills from behind<br />
<strong>Blindfire</strong>: Most bullet penetration kills<br />
<strong>Vengeful</strong>: Most paybacks<br />
<strong>Avenger</strong>: Most avenger kills<br />
<strong>Rescuer</strong>: Most rescues<br />
<strong>Marksman</strong>: Most longshots<br />
<strong>Upriser</strong>: Most kills of higher rank<br />
<strong>Revenge</strong>: Most last stand kills<br />
<strong>Executioner</strong>: Most execution kills<br />
<strong>Genocidal</strong>: Most multikills<br />
<strong>Rally</strong>: Most comebacks<br />
<strong>Lifer</strong>: Longest life<br />
<strong>Statuesque:</strong> Most stationary kills<br />
<strong>Lights Out</strong>: Most tactical insertions prevented<br />
<strong>Shell Shocked</strong>: Most explosions survived<br />
<strong>Unbreakable</strong>: Most bullets deflected<br />
<strong>Blinder</strong>: Most flashbang hits<br />
<strong>Stunner</strong>: Most stun grenade kills<br />
<strong>Hot Potato</strong>: Most grenades thrown back<br />
<strong>None Spared</strong>: Killed entire enemy team<br />
<strong>6th Sense</strong>: No deaths from behind<br />
<strong>Switchblade</strong>: Most knife kills<br />
<strong>Hard Boiled</strong>: Most pistol kills<br />
<strong>Grenadier</strong>: Most grenade kills<br />
<strong>Fragger</strong>: Most frag grenade kills<br />
<strong>C4 Killer</strong>: Most C4 kills<br />
<strong>Semtex Pro</strong>: Most semtex kills<br />
<strong>Ambusher</strong>: Most claymore kills<br />
<strong>Butcher</strong>: Most throwing knife kills<br />
<strong>CQB</strong>: Most SMG kills<br />
<strong>AR Specialist</strong>: Most assault rifle kills<br />
<strong>Explosivo</strong>: Most rocket kills<br />
<strong>Buckshot</strong>: Most shotgun kills<br />
<strong>7.62MM</strong>: Most LMG kills<br />
<strong>Sniper</strong>: Most sniper kills<br />
<strong>Smoking Gun</strong>: Most pistol headshots<br />
<strong>SMG Expert</strong>: Most SMG headshots<br />
<strong>AR Expert</strong>: Most assault rifle headshots<br />
<strong>Boomstick</strong>: Most shotgun headshots<br />
<strong>LMG Expert</strong>: Most LMG headshots<br />
<strong>Dead Aim</strong>: Most sniper headshots<br />
<strong>Survivalist</strong>: Most equipment kills<br />
<strong>Magnifier</strong>: Most scoped kills<br />
<strong>White Hot</strong>: Most thermal kills<br />
<strong>Exterminator</strong>: Most thumper kills<br />
<strong>Crowd Control</strong>: Most riot shield kills<br />
<strong>Hairtrigger</strong>: Most ADS kills (Aiming Down Sights)<br />
<strong>Sprayer</strong>: Most hipfire kills<br />
<strong>Alpha Male</strong>: Most kills of lower rank<br />
<strong>Loaner</strong>: Most kills with enemy weapons<br />
<strong>Nomad</strong>: Longest distance traveled<br />
<strong>Runner</strong>: Most time spent sprinting<br />
<strong>Sneaker</strong>: Most time spent crouched<br />
<strong>Grassy Knoll</strong>: Most time spent prone<br />
<strong>Spy Game</strong>: Most time watching killcams<br />
<strong>Lock &amp; Load</strong>: Most reloads<br />
<strong>Weapon Rack</strong>: Most weapon swaps<br />
<strong>Trigger Happy</strong>: Most shots fired<br />
<strong>Lockdown</strong>: Most time spent in one place<br />
<strong>High Command</strong>: Highest average altitude<br />
<strong>Low Profile</strong>: Lowest average altitude<br />
<strong>Nearsighted</strong>: Most friendlies shot<br />
<strong>Grudge Match</strong>: Most kills of same player<br />
<strong>Arsenal</strong>: Most weapons used<br />
<strong>Undercover</strong>: Most time near enemies<br />
<strong>Evolver</strong>: Most classes changed<br />
<strong>Starter</strong>: Most killcams skipped<br />
<strong>Participant</strong>: No kills/At least 1 death<br />
<strong>Accident prone</strong>: Most suicides<br />
<strong>Blindsided</strong>: Most deaths from behind<br />
<strong>Clay Pigeon</strong>: Most deaths by shotgun<br />
<strong>Terminal</strong>: Shortest life<br />
<strong>Deathrow</strong>: Longest deathstreak<br />
<strong>Hijacker</strong>: Most stolen kills<br />
<strong>AFK</strong>: No kills/No deaths<br />
<strong>Protester</strong>: Most deaths by riot shield<br />
<strong>Warming Up</strong>: Just getting started <strong>PLUS </strong>the warming up accolade is for getting no other accolades in a private match, so you have to play a full length match in a private match and get no other accolades while doing it.<br />
<strong>Bomb Expert</strong>: Most bombs planted<br />
<strong>Defuser</strong>: Most bombs defused<br />
<strong>Destroyer</strong>: Most targets destroyed<br />
<strong>Bomb Blocker</strong>: Most bomb carrier kills<br />
<strong>Bomb Threat</strong>: Most kills as a bomb carrier<br />
<strong>Bomb Runner</strong>: Most bombs carried<br />
<strong>Dominator</strong>: Most points captured<br />
<strong>HQ Capturer</strong>: Most HQs captured<br />
<strong>HQ Destroyer</strong>: Most HQs destroyed<br />
<strong>Flag Capturer</strong>: Most flags captured<br />
<strong>Flag Returner</strong>: Most flags returned<br />
<strong>Flag Runner</strong>: Most flags carried<br />
<strong>Flag Blocker</strong>: Most flag carrier kills<br />
<strong>Double Threat</strong>: Most kills as flag carrier</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/02/call-of-duty-modern-warfare-2-accolades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading blogs with an aggregator</title>
		<link>http://blog.kleymeyer.com/2010/02/reading-blogs-with-an-aggregator/</link>
		<comments>http://blog.kleymeyer.com/2010/02/reading-blogs-with-an-aggregator/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 20:34:15 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1400</guid>
		<description><![CDATA[The blogging experience has two parts. The first part is creating and maintaining a weblog. The second part is reading and keeping track of multiple weblogs using a dedicated program that works similar to a mail program.  Often referred to as RSS readers, feed readers, feed aggregators, news readers, or search aggregators,  these programs allows you [...]]]></description>
			<content:encoded><![CDATA[<p>The blogging experience has two parts. The first part is creating and maintaining a weblog. The second part is reading and keeping track of multiple weblogs using a dedicated program that works similar to a mail program.  Often referred to as RSS readers, feed readers, feed aggregators, news readers, or search aggregators,  these programs allows you to &#8220;subscribe&#8221; to various weblogs and not have to worry about whe new information has been posted to each blog. The information will be pulled down and ready to read in the Newsreader at regular intervals, just like a mail program.  A special program is not required to read a weblog.  A weblog is always available through a browser.  But a specialized program is highly recommended.</p>
<p>I  recommend:</p>
<p><a href="http://www.newsgator.com/individuals/feeddemon/default.aspx">FeedDemon</a> for Windows<br />
<a href="http://www.newsgator.com/individuals/netnewswire/default.aspx">NetNewsWire</a> for Mac<br />
<a href="http://www.google.com/reader">GoogleReader</a> for a  web-based reader.</p>
<p>There are even Microsoft Outlook plugins that can download and place new posts in Outlook.   <a href="http://www.newsgator.com/individuals/newsgatorinbox/default.aspx">Newsgator</a>,  owner of FeedDemon and NetNewsWire offers one, though it is not free.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/02/reading-blogs-with-an-aggregator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Videos on your TV</title>
		<link>http://blog.kleymeyer.com/2010/01/home-videos-on-your-tv/</link>
		<comments>http://blog.kleymeyer.com/2010/01/home-videos-on-your-tv/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:53:50 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1396</guid>
		<description><![CDATA[I posted before my goal of having all my home videos available for viewing on my HDTV in the living room.  The XBOX hasn&#8217;t quite delivered.  Lo and behold I recently gave my PS3 another try and it does circles around the XBOX! I can view all my MPEG2 video using the free TVersity Media [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://blog.kleymeyer.com/2008/12/how-to-enjoy-home-videos/">posted</a> before my goal of having all my <a href="http://blog.kleymeyer.com/2008/12/how-to-enjoy-home-videos/">home videos available for viewing on my HDTV in the living room</a>.  The XBOX hasn&#8217;t quite delivered.  Lo and behold I recently gave my PS3 another try and it does circles around the XBOX! I can view all my MPEG2 video using the free <a href="http://tversity.com/">TVersity Media Server</a> application running on my PC.  I can now get rid of all the lower quality .MP4 files I created for the XBOX.  Maybe the XBOX will one day be updated to allow it to stream the same MPEG2 files; or perhaps it would work today if I knew how to set it up better.  I wonder if the <a href="http://blog.kleymeyer.com/2010/01/the-ipad-is-here/">iPad</a> with iTunes running on my PC will be able to stream my video; if it can it will probably be limited to what formats it will stream (QuickTime).</p>
<p>I ran into the following error message on the PS3 while trying to connect to TVersity:</p>
<blockquote><p>Media Server Error: DLNA Protocol Error (501) has occurred.</p></blockquote>
<p><a href="http://boardsus.playstation.com/playstation/board/message?board.id=ps3media&amp;thread.id=96656">This thread</a> lead me to this<a href="http://tversity.com/support/faq/#network-share-faq"> solution on the TVersity site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/home-videos-on-your-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iPad is here</title>
		<link>http://blog.kleymeyer.com/2010/01/the-ipad-is-here/</link>
		<comments>http://blog.kleymeyer.com/2010/01/the-ipad-is-here/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 06:26:27 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1390</guid>
		<description><![CDATA[
Yeah, I&#8217;m pretty sure I want one.   I did not run out and buy an iPhone.  I never thought it was worth the price of the monthly cell + data plan.  For sometime now, I have been watching TV shows and movies on my MacBook Pro; Cassidy has too.  She is always borrowing it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.kleymeyer.com/wp-content/uploads/iPad.png"><img class="alignnone size-full wp-image-1391" title="iPad" src="http://blog.kleymeyer.com/wp-content/uploads/iPad.png" alt="" width="196" height="290" /></a></p>
<p>Yeah, I&#8217;m pretty sure I want one.   I did not run out and buy an iPhone.  I never thought it was worth the price of the monthly cell + data plan.  For sometime now, I have been watching TV shows and movies on my MacBook Pro; Cassidy has too.  She is always borrowing it on weekends to catch up on the network shows she doesn&#8217;t have time during the week to watch.  We settle in, in our favorite place on the coach, or in our bedroom, put on some headphones and have a close-up immersible experience on the laptop.  So the iPad is in effect, our second &#8220;laptop&#8221; but in a form factor that is better tailored to that personal intimate experience on the coach.  It&#8217;s not a small laptop, it&#8217;s a big iPod Touch (oh, we have 3 of those in the house).  It does not run Mac desktop software, but instead runs iPod apps plus the software that comes on it.</p>
<p>A pleasant surprise was the price!  I feared it would start at $1000 but the WiFi-only model starts at $500 for the 8gig model, $600 for 16gig and $700 for 32gig.  It will be available in March. In April the Wi-Fi + 3G version comes out and will be priced $629, $729, and $829.  Again there&#8217;s that data plan for 3G which I feel I can live without.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/the-ipad-is-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Recovering GamerTag on a new XBOX</title>
		<link>http://blog.kleymeyer.com/2010/01/recovering-gamertag-on-a-new-xbox/</link>
		<comments>http://blog.kleymeyer.com/2010/01/recovering-gamertag-on-a-new-xbox/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 14:56:13 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1384</guid>
		<description><![CDATA[
We just got back our XBOX that was freezing up. Turns out Microsoft was willing to fix it free of charge because it was a Core system.  This system has already been sent in for the red ring of death.
This first Core XBOX I bought used, was a huge bundle. It came with a hard [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.kleymeyer.com/wp-content/uploads/broken-xbox-360.jpg"><img class="alignnone size-full wp-image-1388" title="broken-xbox-360" src="http://blog.kleymeyer.com/wp-content/uploads/broken-xbox-360.jpg" alt="" width="300" height="300" /></a></p>
<p>We just got back our XBOX that was freezing up. Turns out Microsoft was willing to fix it free of charge because it was a Core system.  This system has already been sent in for the red ring of death.</p>
<p>This first Core XBOX I bought used, was a huge bundle. It came with a hard drive, wireless adapter, driving wheel, a custom Gears of War metal carrying case, lots of games, controllers, wireless headset, charging units, Memory Unit.</p>
<p>Microsoft sent a replacement unit which has a new Serial #.  On boot up I had to answer some first-time questions as a brand new system.  I didn&#8217;t have any problem with my XBOX live profiles (FrostySlam and  SuperSlam2)  because I keep those on MUs so David and I can play on either one of our two systems.    If  I had kept our XBOX live profiles on the hard drive, it would have been another story.</p>
<p>Tonight a friend called because he had just gotten back HIS XBox  from the Microsoft repair center, but after connecting his Hard Drive his XBOX Live gamertag was missing.  I suggested he needed to recover the gamertag.  I researched a bit and found out why he had to do this.</p>
<p>When you download content, the content is registered to the gamertag that downloaded as well as to the XBOX that it was downloaded on.  That means ANYONE can use the content on that XBOX, like extra map-packs to Call of Duty or Arcade games (without having to connect to XBOX Live).  In addition, you can re-download and use that content on any other XBOX as long as you are logged in using the gamertag that downloaded the content.  That works out great for us because an extra purchase can be used by both David and I as long as we download on one XBOX, then take the gamertag to the other and download and  use it there.</p>
<p>In addition, it seems that the gamertag is also somehow tied to the xbox on which it was purchased.  So simply replacing the hard drive isn&#8217;t going to allow the gamertag to be active on that xbox, hence the need to recover a gamertag on a new xbox even though you connect the hard drive that had the gamertag stored on it.</p>
<p>My friend, having the worst luck, ran into one more problem as he was recovering his gamertag on the new XBOX. He got the message &#8220;cannot find a storage device or not enough space to recover game tag&#8221;.  He needed to go Settings&#8230;Memory&#8230;Gamer Profiles and delete his XBox live gamertag (it showed up THERE) because it was apprently corrupt.  That allowed him to recover his gamertag again.</p>
<p>A few posts on the subject: <a href="http://www.avsforum.com/avs-vb/showthread.php?t=1003693">1</a> <a href="http://www.avforums.com/forums/xbox-360/1121728-not-enough-space-recover-profile-95gb-free.html">2</a> <a href="http://datarecoverypage.com/hdd-recovery/can-i-do-a-gamertag-recovery-on-a-new-xbox-360-hdd-and-still-be-able-to-get-the-downloads-i-had">3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/recovering-gamertag-on-a-new-xbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ascii Emoticons</title>
		<link>http://blog.kleymeyer.com/2010/01/ascii-emoticons/</link>
		<comments>http://blog.kleymeyer.com/2010/01/ascii-emoticons/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 20:16:26 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1378</guid>
		<description><![CDATA[I needed a mischievous emoticon so I looked for one on Google.
Thought I would post some here for future reference.  Emoticons you can type are referred to ascii emoticons as opposed to icons that are inserted in email or IM.
From  WindWeaver:
HAPPY, SMILING, LAUGHING
 :-)     smiling; agreeing
:-D    laughing
&#124;-)      hee hee
&#124;-D    ho ho
:-&#62;     hey hey
;-)      so happy, [...]]]></description>
			<content:encoded><![CDATA[<p>I<a href="http://www.facebook.com/photo.php?pid=806552&amp;id=1524575739"> needed a mischievous emoticon</a> so I looked for one on Google.</p>
<p>Thought I would post some here for future reference.  Emoticons you can type are referred to ascii emoticons as opposed to icons that are inserted in email or IM.</p>
<p>From  <a href="http://www.windweaver.com/emoticon.htm">WindWeaver</a>:</p>
<p><span style="font-family: arial; font-size: x-small;"><strong><em>HAPPY, SMILING, LAUGHING<br />
</em></strong> :-)     smiling; agreeing<br />
:-D    laughing<br />
|-)      hee hee<br />
|-D    ho ho<br />
:-&gt;     hey hey<br />
;-)      so happy, I&#8217;m crying<br />
:&#8217;-)     crying with joy<br />
\~/     full glass; my glass is full</span></p>
<p><a name="TEASING"></a><strong><em>TEASING, MISCHIEVOUS<br />
</em></strong> ;-)      winking; just kidding<br />
&#8216;-)       winking; just kidding<br />
;-&gt;     devilish wink<br />
:*)      clowning<br />
:-T      keeping a straight face</p>
<p><a name="AFFIRMING"></a><strong><em>AFFIRMING, SUPPORTING<br />
</em></strong> :^D    &#8221;Great! I like it!&#8221;<br />
8-]     &#8221;Wow, maaan&#8221;<br />
:-o     &#8221;Wow!&#8221;<br />
^5      high five<br />
^        thumbs up<br />
:]       Gleep, a friendly midget who wants<br />
to befriend you<br />
(::()::)   bandaid; offering help or support</p>
<p><a name="UNHAPPY"></a><strong><em>UNHAPPY, SAD<br />
</em></strong> :-(    frowning; boo hoo<br />
:(      sad<br />
:-&lt;    really sad<br />
:-c    really unhappy<br />
:-C   really bummed<br />
&amp;-|   tearful<br />
:&#8217;      crying<br />
:&#8217;-(   crying and really sad<br />
:-|     grim<br />
:[      really down<br />
:-[     pouting<br />
\_/    "my glass is empty"</p>
<p><a name="ANGRY"></a><strong><em>ANGRY, SARCASTIC<br />
</em></strong> &gt;:-&lt;   angry<br />
:-||      angry<br />
:-@    screaming<br />
:-V     shouting<br />
:-r      sticking tongue out<br />
&gt;:-&lt;   absolutely livid!!<br />
:-,      smirk<br />
:-P     nyahhhh!<br />
:-&gt;     bitingly sarcastic<br />
<span style="font-family: arial; font-size: x-small;"><strong><em>TRYING TO <a name="COMMUNICATE"></a>COMMUNICATE<br />
</em></strong> :-&amp;    tonguetied<br />
:-S     incoherent<br />
:-\      undecided<br />
:- I     "hmmm..."<br />
:-,      "hmmm "<br />
:-#     "My lips are sealed"<br />
:-X    "My lips are sealed"<br />
:-Y     a quiet aside<br />
:-"      pursing lips<br />
:-W    speaking with forked tongue<br />
:( )     can't stop talking</span></p>
<p><strong><em>FEELING <a name="STUPID"></a>STUPID OR TIRED<br />
</em></strong> :~/     mixed up<br />
%-)    braindead<br />
(:I      egghead<br />
&lt;:-I    dunce<br />
=:-)    hosehead<br />
:-]      smiling blockhead<br />
:-[      un-smiling blockhead<br />
|-O    yawning<br />
|-I      asleep<br />
:-6     exhausted; wipeout</p>
<p><a name="SURPRISED"></a><strong><em>SURPRISED, INCREDULOUS, SKEPTICAL<br />
</em></strong> :&gt;    What?<br />
:@   What?<br />
:Q    What?<br />
:-o   "uhh oh!" OR surprise<br />
;-)     sardonic incredulity<br />
:O     shocked<br />
8-|    eyes wide with surprise<br />
:-/     skeptical<br />
8-O  "Omigod!!"<br />
:-C    just totally unbelieving<br />
|-{    "Good Grief!" (Charlie Brown)</p>
<p><span style="font-family: arial; font-size: x-small;"><strong><em>HUGS AND KISSES<br />
</em></strong> : *      kisses<br />
:-X     a big wet kiss!<br />
:-x      kiss kiss<br />
:-{}    blowing a kiss<br />
[]        hugs<br />
(( )):**    hugs and kisses<br />
((((name))))   hug</span></p>
<p><a name="MISCELLANEOUS"></a><strong><em>MISCELLANEOUS<br />
</em></strong> :-*      Oops!<br />
:-I       indifferent<br />
\-o      bored<br />
:-P      tongue hanging out in anticipation<br />
O :-)   angelic; being an angel (at heart, at least)</p>
<p><a name="NEW"></a><span style="font-family: arial; font-size: x-small;"><em><strong>NEW  EMOTICONS</strong> (by Tracy Marks):<br />
</em> ][       feeling separate<br />
] [      separating<br />
)  (     really separating<br />
{ }     face-to-face<br />
[ ]      wanting to hug<br />
}xx    kisses<br />
()       feeling in harmony; connecting<br />
] ?     moving away and wondering about you?<br />
[ ?     moving toward you and wondering about you?</span></p>
<p><span style="font-family: arial; font-size: x-small;"><span style="font-family: arial; font-size: x-small;"><strong>From Yahoo Messenger 9:</strong></span></span></p>
<p><span style="font-family: arial; font-size: x-small;"><span style="font-family: arial; font-size: x-small;"><a href="http://blog.kleymeyer.com/wp-content/uploads/yahoo_messenger_9_hidden_smilies_emoticons.gif"><img class="alignnone size-medium wp-image-1379" title="yahoo_messenger_9_hidden_smilies_emoticons" src="http://blog.kleymeyer.com/wp-content/uploads/yahoo_messenger_9_hidden_smilies_emoticons-254x300.gif" alt="" width="254" height="300" /></a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/ascii-emoticons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sherlock Holmes (2009)</title>
		<link>http://blog.kleymeyer.com/2010/01/sherlock-holmes-2009/</link>
		<comments>http://blog.kleymeyer.com/2010/01/sherlock-holmes-2009/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 02:53:33 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Movie Review]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1372</guid>
		<description><![CDATA[
Sherlock  Holmes ****  Not your normal Sherlock  Holmes. Robert  Downey plays a funnier, grittier, more action packed version.  Jude Law plays Dr. Watson.  One of my favorite actresses Rachel McAdams,  plays his old girl friend.  I bit hard to understand (english accents) and follow for the younger set (I saw it with David) but enough [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imdb.com/title/tt0988045/"><img class="alignnone size-full wp-image-1374" title="SherlockHolmes" src="http://blog.kleymeyer.com/wp-content/uploads/SherlockHolmes1.jpg" alt="" width="94" height="140" /></a></p>
<p><a href="http://www.imdb.com/title/tt0988045/">Sherlock  Holmes</a> ****  Not your normal Sherlock  Holmes. Robert  Downey plays a funnier, grittier, more action packed version.  Jude Law plays Dr. Watson.  One of my favorite actresses Rachel McAdams,  plays his old girl friend.  I bit hard to understand (english accents) and follow for the younger set (I saw it with David) but enough action to keep them interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/sherlock-holmes-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing portable code</title>
		<link>http://blog.kleymeyer.com/2010/01/writing-portable-code/</link>
		<comments>http://blog.kleymeyer.com/2010/01/writing-portable-code/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 21:19:38 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1363</guid>
		<description><![CDATA[Mozilla C++ Portability Guide &#8211; for portability across ALL C++ compilers
]]></description>
			<content:encoded><![CDATA[<p><a href="https://developer.mozilla.org/En/C___Portability_Guide">Mozilla C++ Portability Guide</a> &#8211; for portability across ALL C++ compilers</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/writing-portable-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail Tips</title>
		<link>http://blog.kleymeyer.com/2010/01/gmail/</link>
		<comments>http://blog.kleymeyer.com/2010/01/gmail/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 05:26:57 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blog.kleymeyer.com/?p=1357</guid>
		<description><![CDATA[I have a Gmail account that I use to login to Google properties such as Google Docs.  Gmail  is not  my primary email  account.  I&#8217;ve started using it more;  for LBJ class reunion stuff for example.   I&#8217;ve used it quite a bit as a &#8220;throwaway&#8221; email when sites ask for an email address but [...]]]></description>
			<content:encoded><![CDATA[<p>I have a Gmail account that I use to login to Google properties such as Google Docs.  Gmail  is not  my primary email  account.  I&#8217;ve started using it more;  for LBJ class reunion stuff for example.   I&#8217;ve used it quite a bit as a &#8220;throwaway&#8221; email when sites ask for an email address but I don&#8217;t want to give them my personal email.  I highly recommend it to anyone as either a primary or secondary address.  There are  two main things I like about  Gmail that I think everyone should take advantage of.</p>
<p>1.  Have Google forward all mail to your primary address.  That way you don&#8217;t ever have to login to Gmail and for all  practical purposes, you can use your primary mail to receive and reply to people using your Gmail account.  Of course if you  don&#8217;t want people knowing your primary account, they you would login to Gmail  and respond from there.  Setup forwarding by clicking Settings in the upper right corner&#8230;select the Forwarding and POP/IMAP  tab&#8230;Select forward a copy of incoming mail  to&#8230;enter your primary email address&#8230;choose what to do with the mail that arrives in your Gmail  account.</p>
<p>2. Take advantage of a little known feature that allows you to create NEW email addresses on the fly!  My email address is alankley@gmail.com.  I can give out alankley+facebook@gmail.com, alankley+anything@gmail.com and those email addresses will be delivered to my Gmail mailbox.  I&#8217;ve created quite a few like that when I&#8217;m asked for an email address. That way I can turn them off if I start receiving spam or I can setup filters to file them away or forward them.  Not all websites accept an email  with a &#8216;+&#8217; in it but many do.  Here is the Google Help page on the subject:  <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=12096">Using an Address Alias</a></p>
<p>If you are concerned about the safety of your information using Google Gmail and Docs, I wrote<a href="http://blog.kleymeyer.com/2008/08/is-google-docs-and-mail-safe-to-use-yes-but-backup/"> this post</a> on what I think of that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kleymeyer.com/2010/01/gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
