<?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>Cory Sessions Blog</title>
	<atom:link href="http://www.corysessions.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.corysessions.com</link>
	<description>Developer &#124; SEO &#124; Professional Slacker</description>
	<lastBuildDate>Thu, 11 Mar 2010 22:00:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Error: $ is not a function</title>
		<link>http://www.corysessions.com/jquery/jquery-error-is-not-a-function/</link>
		<comments>http://www.corysessions.com/jquery/jquery-error-is-not-a-function/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:58:56 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=85</guid>
		<description><![CDATA[This is a fun little jQuery error you&#8217;ll hit sometimes when you are trying to integrate jQuery into an already established system like Wordpress or Drupal, that is already using a Javascript library like prototype.  The problem is that you are hitting conflicts between the two libraries.  And most likely they are fighting over the [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "jQuery Error: $ is not a function", url: "http://www.corysessions.com/jquery/jquery-error-is-not-a-function/" });</script>]]></description>
			<content:encoded><![CDATA[<p>This is a fun little jQuery error you&#8217;ll hit sometimes when you are trying to integrate jQuery into an already established system like Wordpress or Drupal, that is already using a Javascript library like prototype.  The problem is that you are hitting conflicts between the two libraries.  And most likely they are fighting over the $ .</p>
<p>Luckily, jQuery is prepared to handle this!  Good&#8217;ol jQuery.</p>
<p>jQuery has a &#8220;noConflict&#8221; mode, that will let all the jQuery content to run without using the $.  You just state that you are running in noConflict mode in your first line, then instead of using $(function(){&#8230;}, you replace the $ with jQuery, so it looks like this: jQuery(function(){&#8230;.</p>
<p>Here&#8217;s a full example.</p>
<p>&lt;script&gt;</p>
<p>jQuery.noConflict(); // Tell jQuery you are going with noConflict mode.</p>
<p>jQuery(function(){ // Replace the $ with jQuery<br />
jQuery(&#8217;div&#8217;).doStuff();<br />
});</p>
<p>&lt;/script&gt;</p>
<p>This will allow the other library to use the $ without conflict.</p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=jQuery+Error%3A+%24+is+not+a+function&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fjquery%2Fjquery-error-is-not-a-function%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/jquery/jquery-error-is-not-a-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Wordpress White Screen of Death!</title>
		<link>http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/</link>
		<comments>http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 21:18:24 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=81</guid>
		<description><![CDATA[So there you are, happily updating your blog theme and BAM!
The Wordpress whitescreen of death!
The Wordpress white screen indicates that there is a problem with your current theme.  Unfortunately at this point, you can&#8217;t go change the theme to unbreak it, since the theme selector is just going to spit out PHP errors.  See the [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "The Wordpress White Screen of Death!", url: "http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/" });</script>]]></description>
			<content:encoded><![CDATA[<p>So there you are, happily updating your blog theme and BAM!</p>
<p>The Wordpress whitescreen of death!</p>
<p>The Wordpress white screen indicates that there is a problem with your current theme.  Unfortunately at this point, you can&#8217;t go change the theme to unbreak it, since the theme selector is just going to spit out PHP errors.  See the problem is, the database still has entries pointed to the &#8220;current&#8221; theme, which is either bugged, incomplete or gone.</p>
<p>Here are the symptoms:</p>
<ul>
<li>All Wordpress pages, posts, tags etc. bring up a blank white screen.</li>
<li>There is no code or html output.</li>
<li>The Wordpress Admin area still works. (which is a good thing).</li>
<li>The Wordpress theme selector (Appearance -&gt; Themes) page won&#8217;t load and spits out PHP errors.</li>
</ul>
<p>What to look for:</p>
<p>Check to make sure your theme files are still in place.  Deleting the current themes directory, renaming the theme directory or moving the current themes directory to a new location will all cause this error.</p>
<p>If files were moved or deleted, the best thing to do is to just put things back where they were, switch to another theme, then do your changes or removal of the old theme.</p>
<p>If that&#8217;s not possible, you can go manually change the current active theme in the database.  The current template data is stored in the &#8216;options&#8217; table, option_name &#8220;template&#8221;.  Just change it to the folder name of another theme.  It&#8217;s not pretty, but it works and will get you back up and running.</p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=The+Wordpress+White+Screen+of+Death%21&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fwordpress%2Fthe-wordpress-white-screen-of-death%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official Wedding Announcement</title>
		<link>http://www.corysessions.com/personal/official-wedding-announcement/</link>
		<comments>http://www.corysessions.com/personal/official-wedding-announcement/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 05:18:40 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=54</guid>
		<description><![CDATA[Well it&#8217;s official, I be getting married!  Wohoo!
Here&#8217;s the &#8220;official&#8221; announcement.
Together with their families
Danielle Gugeler
&#38;
Cory Sessions
would like to announce their marriage on
Wednesday, the 8th of July in Nauvoo, Illinois.
There will be a reception on July 7, 2009 from 6pm to 8pm
at the LDS chapel in Mt. Vernon.
380 Lincoln Highway, Mt. Vernon, Iowa 52314
There will be [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Official Wedding Announcement", url: "http://www.corysessions.com/personal/official-wedding-announcement/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Well it&#8217;s official, I be getting married!  Wohoo!</p>
<p>Here&#8217;s the &#8220;official&#8221; announcement.<span id="more-54"></span></p>
<p style="text-align: center;">Together with their families</p>
<p style="text-align: center;">Danielle Gugeler<br />
&amp;<br />
Cory Sessions</p>
<p style="text-align: center;">would like to announce their marriage on<br />
Wednesday, the 8th of July in Nauvoo, Illinois.</p>
<p style="text-align: center;">There will be a reception on July 7, 2009 from 6pm to 8pm<br />
at the LDS chapel in Mt. Vernon.<br />
380 Lincoln Highway, Mt. Vernon, Iowa 52314</p>
<p style="text-align: center;">There will be an open house with the new couple July 31, 2009 from 6pm to 8pm<br />
at the LDS chapel at 965 W 2000 N, Orem, UT 84057.<br />
This will be a barbecue, so come hungry!</p>
<p style="text-align: center;">
<p style="text-align: center;"><a title="Dani and Cory" rel="lightbox" href="http://www.corysessions.com/images/wedding-1.jpg"><img class="alignnone size-thumbnail wp-image-57" title="Wedding Photo 1" src="http://www.corysessions.com/wp-content/uploads/2009/06/0036-150x150.jpg" alt="Wedding Photo 1" width="150" height="150" /></a> <a title="The Proposal?" rel="lightbox" href="http://www.corysessions.com/images/wedding-2.jpg"><img class="alignnone size-thumbnail wp-image-60" title="Wedding Photo 2" src="http://www.corysessions.com/wp-content/uploads/2009/06/0130-150x150.jpg" alt="Wedding Photo 2" width="150" height="150" /></a> <a title="Cory and Dani" rel="lightbox" href="http://www.corysessions.com/images/wedding-3.jpg"><img class="alignnone size-thumbnail wp-image-62" title="Wedding Photo 3" src="http://www.corysessions.com/wp-content/uploads/2009/06/0150-150x150.jpg" alt="Wedding Photo 3" width="150" height="150" /></a></p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=Official+Wedding+Announcement&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fpersonal%2Fofficial-wedding-announcement%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/personal/official-wedding-announcement/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Loooooooong Break</title>
		<link>http://www.corysessions.com/personal/loooooooong-break/</link>
		<comments>http://www.corysessions.com/personal/loooooooong-break/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 17:40:50 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=46</guid>
		<description><![CDATA[Wow, I have not posted in quite a while.  I&#8217;ve been spending a LOT of time working on my own personal side projects.  Building sites and working on promoting them.  Fun stuff!
Now that I have a little group of growing sites, it&#8217;s been interesting to see the results.
Some sites seem to just [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Loooooooong Break", url: "http://www.corysessions.com/personal/loooooooong-break/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Wow, I have not posted in quite a while.  I&#8217;ve been spending a LOT of time working on my own personal side projects.  Building sites and working on promoting them.  Fun stuff!</p>
<p>Now that I have a little group of growing sites, it&#8217;s been interesting to see the results.</p>
<p><span id="more-46"></span>Some sites seem to just take off.  Getting rankings and traffic is pretty easy with them.  Other sites take a while before they go anywhere, then they start moving at a moderate pace.  Then there seems to be sites that for all you do they just won&#8217;t go anywhere and you&#8217;re stuck with just a couple hundred visitors a month.</p>
<p>Internet marketing and SEO is a rather interesting thing.  You can talk about it and read about it all day long, but staying at that academic level really won&#8217;t help you learn it.  When you dive in and start building sites and driving traffic to them then you really start learning how things work.  You start to see patterns emerging and you get those &#8220;A Ha!&#8221; moments.  You find out what works and what doesn&#8217;t.</p>
<p>So, time to go build another site.</p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=Loooooooong+Break&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fpersonal%2Floooooooong-break%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/personal/loooooooong-break/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strange Blizzard Splash Screen Image</title>
		<link>http://www.corysessions.com/random/strange-blizzard-splash-screen-image/</link>
		<comments>http://www.corysessions.com/random/strange-blizzard-splash-screen-image/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 16:59:46 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=41</guid>
		<description><![CDATA[So Blizzard Entertainment has some new &#8220;super amazing something&#8221;(tm) that they are going to announce.  So in true Blizzard style they are keeping everyone in suspense, with a splash screen that has been slowly showing &#8220;something&#8221; locked behind a sheet of ice.
Today you can see a pair of glowing eyes.

If you&#8217;re a code nerd, you [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Strange Blizzard Splash Screen Image", url: "http://www.corysessions.com/random/strange-blizzard-splash-screen-image/" });</script>]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://www.blizzard.com/">Blizzard Entertainment</a> has some new &#8220;super amazing something&#8221;(tm) that they are going to announce.  So in true Blizzard style they are keeping everyone in suspense, with a <a href="http://www.blizzard.com/us/splash.html">splash screen</a> that has been slowly showing &#8220;something&#8221; locked behind a sheet of ice.</p>
<p>Today you can see a pair of glowing eyes.<span id="more-41"></span></p>
<p><a href="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-splash-screen.jpg"><img class="alignnone size-medium wp-image-42" style="vertical-align: middle;" title="Blizzard Splash Screen" src="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-splash-screen-300x229.jpg" alt="" width="495" height="376" /></a></p>
<p>If you&#8217;re a code nerd, you can go look at the .css file.  If you do you&#8217;ll see several lines are commented out.  If you piece those images back together, you get a picture of &#8230; something.  No clue what that is supposed to be.</p>
<p><a href="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-css-image.jpg"><img class="alignnone size-medium wp-image-43" title="Blizzard Splash Screen CSS Image" src="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-css-image-255x300.jpg" alt="" width="500" height="587" /></a></p>
<p>I have a strange feeling that the image from the css has nothing to do with whatever they plan on announcing&#8230;  most likely it&#8217;s a Blizzard joke.</p>
<p><strong>Update: </strong></p>
<p>Well, it turns out that all this was for Diablo 3!   While I have no idea how the above images are related to the Diablo games in any way&#8230; It&#8217;s still cool!  Time for some hack and slash!</p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=Strange+Blizzard+Splash+Screen+Image&amp;url=http%3A%2F%2Fwww.corysessions.com%2Frandom%2Fstrange-blizzard-splash-screen-image%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/random/strange-blizzard-splash-screen-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Minority Rules</title>
		<link>http://www.corysessions.com/rants/how-minority-rules/</link>
		<comments>http://www.corysessions.com/rants/how-minority-rules/#comments</comments>
		<pubDate>Wed, 21 May 2008 16:53:02 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=40</guid>
		<description><![CDATA[I now know why Democracy fails.  I learned this at work. Bare with me, this is a stupid example, but so fitting.
There are 9 of us in our office.  7 of us would prefer to have the lights off.  2 people want them on and blindingly bright.  So in true democratic fashion, the lights stay [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "How Minority Rules", url: "http://www.corysessions.com/rants/how-minority-rules/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I now know why Democracy fails.  I learned this at work. Bare with me, this is a stupid example, but so fitting.</p>
<p>There are 9 of us in our office.  7 of us would prefer to have the lights off.  2 people want them on and blindingly bright.  So in true democratic fashion, the lights stay on all day as the majority are forced to capitulate to the loudly voiced demands of the minority.</p>
<p>Apparently in a Democracy all you have to do is yell and complain louder than anyone else and you get your way.  And that is how minority rules.</p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=How+Minority+Rules&amp;url=http%3A%2F%2Fwww.corysessions.com%2Frants%2Fhow-minority-rules%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/rants/how-minority-rules/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My PPC Crash Course</title>
		<link>http://www.corysessions.com/ppc/my-ppc-crash-course/</link>
		<comments>http://www.corysessions.com/ppc/my-ppc-crash-course/#comments</comments>
		<pubDate>Fri, 02 May 2008 04:54:14 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=39</guid>
		<description><![CDATA[Today was like PPC overload.
Our company had a PPC training today, which interestingly, all the SEO guys attended  (I think we are all secretly jealous cause they get instant traffic).  It was really really good.  I picked up a lot of things I didn&#8217;t know about PPC.   I have been running PPC ads on a [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "My PPC Crash Course", url: "http://www.corysessions.com/ppc/my-ppc-crash-course/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Today was like PPC overload.</p>
<p>Our company had a PPC training today, which interestingly, all the SEO guys attended  (I think we are all secretly jealous cause they get instant traffic).  It was really really good.  I picked up a lot of things I didn&#8217;t know about PPC.   I have been running PPC ads on a personal project for a while now, but today showed me that I really didn&#8217;t know what I was doing.<span id="more-39"></span></p>
<p>Later Jared, one of the PPC managers, sat down with me and went though my account.  He was very polite and didn&#8217;t openly mock me, to much.  It pretty much came down to: you should delete that campaign and start over.  I was really resistant to that, until he showed me the report that tells you which keywords people are searching when they clicked on your ad.  I was shocked.   I have a ring related website and I was getting searches for rings for piercings in places you don&#8217;t want to talk about in civilized conversation.  I didn&#8217;t even know you could pierce some of these places&#8230;  *shudder*.  Anyway, it basically came down to, 2/3rds of my money was going straight out the window on keywords that had nothing to do with what I was trying to promote.  Part of that was a mysterious &#8220;Unknown&#8221; section that Google wouldn&#8217;t even tell us about that amounted to about 500 clicks.  I guess you doesn&#8217;t realize how much you don&#8217;t know until someone shows you.</p>
<p>So taking Jared&#8217;s advice, I promptly chucked my old campaign and started over.  We&#8217;ll see how it goes now.</p>
<p>Below are some of the great PPC related things I picked up today.  Enjoy.</p>
<p><strong>Exact Match Keywords</strong> &#8211; [keyword keyword]</p>
<p>Your ad only shows up when that exact phrase is typed in.  No more, no less.</p>
<ul>
<li>Exact phrase only</li>
<li>In that exact order</li>
</ul>
<p><em>Examples:</em> [red tennis shoes]</p>
<p>Your ad shows up if the search is: &#8216;red tennis shoes&#8217;.</p>
<p>But not for: &#8216;buy red tennis shoes&#8217; or &#8216;tennis shoes red&#8217; or anything else.</p>
<p><strong>Phrase Match</strong> &#8211; &#8220;keyword keyword&#8221;</p>
<p>This seems to be the one that gets used most commonly.  Also use in conjunction with negative keywords.</p>
<ul>
<li>Plural and singular keywords are separate and distinct keywords.</li>
<li>Keyword order specific</li>
</ul>
<p><em>Examples:</em> &#8220;red tennis shoes&#8221;</p>
<p>Ad shows up for: &#8216;buy red tennis shoes&#8217;, &#8216;red tennis shoes buy now&#8217;</p>
<p>Ad won&#8217;t show up for: &#8216;tennis shoes red&#8217; (out of order), &#8216;red tennis shoe&#8217; (singular)</p>
<p><strong>Broad Match</strong> &#8211; keyword keyword</p>
<p>Your ad shows up for the entered keyword, as well as pretty much anything Google deems slightly related.</p>
<p>If you use this, good luck.  This is what I was using, without knowing what it would actually do to my campaign.</p>
<ul>
<li>Not order specific</li>
<li>Not plural or singular specific</li>
<li>Not order specific</li>
</ul>
<p><em>Examples:</em> red tennis shoes</p>
<p>Ad shows up for: &#8216;buy red tennis shoes&#8217;, &#8216;red tennis shoes buy now&#8217;, &#8216;bobs red tennis shoes&#8217;, &#8216;tennis shoes&#8217;, &#8216;red shoes&#8217;, &#8217;shoes&#8217;, &#8216;red&#8217;, &#8217;socks&#8217; (cause they are feet related too), &#8216;Nike&#8217; (cause it&#8217;s a type of shoe) etc.  The list is huge.</p>
<p>Ad won&#8217;t show up for: &#8216;Grandma&#8217;s knitting&#8217;.  Pretty much something completely unrelated.  Cause if it can find a link, it will try to put your ad there.</p>
<p>So yeah, it was a good day.  I learned I had been loosing money for a long time.  But on the bright side, I got to learn about the problem before launching any major projects!  <img src='http://www.corysessions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Oh, and on a side note, it snowed this morning here in Utah.  It&#8217;s frigg&#8217;in May 1st and its still snowing!  Damn this global warming!  It&#8217;s going to freeze us all to death!</p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=My+PPC+Crash+Course&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fppc%2Fmy-ppc-crash-course%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/ppc/my-ppc-crash-course/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Code Snippets Integrated into Google Universal Search</title>
		<link>http://www.corysessions.com/code/google-integrated-code-snippits/</link>
		<comments>http://www.corysessions.com/code/google-integrated-code-snippits/#comments</comments>
		<pubDate>Thu, 01 May 2008 03:52:27 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=36</guid>
		<description><![CDATA[I just saw this as I was looking up a function.  Nice little code example integrated right into the search results.  Pretty fancy.


I like that.   Now I need to get my code to show up like that.   
<script type="text/javascript">SHARETHIS.addEntry({ title: "Code Snippets Integrated into Google Universal Search", url: "http://www.corysessions.com/code/google-integrated-code-snippits/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I just saw this as I was looking up a function.  Nice little code example integrated right into the search results.  Pretty fancy.</p>
<p style="text-align: center;"><a href="http://www.corysessions.com/wp-content/uploads/2008/04/google-code-snippets.jpg"><img class="alignnone size-full wp-image-37" title="google-code-snippets" src="http://www.corysessions.com/wp-content/uploads/2008/04/google-code-snippets.jpg" alt="Code integrated into Google Universal Search" width="500" height="438" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">I like that.   Now I need to get my code to show up like that.  <img src='http://www.corysessions.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=Code+Snippets+Integrated+into+Google+Universal+Search&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fcode%2Fgoogle-integrated-code-snippits%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/code/google-integrated-code-snippits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal Responsibility has Vanished in America</title>
		<link>http://www.corysessions.com/rants/personal-responsibility-has-vanished-in-america/</link>
		<comments>http://www.corysessions.com/rants/personal-responsibility-has-vanished-in-america/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 02:54:02 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/rants/personal-responsibility-has-vanished-in-america/</guid>
		<description><![CDATA[I am just going to quote a big block of this from Glenn Beck, because I tend to agree with it so much.  There is a major trend forming in America.  People won&#8217;t take responsibility for their own actions.
Note: The election part of this rant has been removed because I am so tired [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Personal Responsibility has Vanished in America", url: "http://www.corysessions.com/rants/personal-responsibility-has-vanished-in-america/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I am just going to quote a big block of this from Glenn Beck, because I tend to agree with it so much.  There is a major trend forming in America.  People won&#8217;t take responsibility for their own actions.</p>
<p><strong>Note:</strong> The election part of this rant has been removed because I am so tired of hearing about politics and feel that the other half of the message has a very important point to make.</p>
<p><span id="more-32"></span></p>
<p>Starting quote:</p>
<p>What do these stories all have in common?</p>
<ul>
<li> A woman who says she lost more $1 million gambling in Atlantic City sues some casinos for $20 million, claiming they should&#8217;ve stopped her compulsive gambling.</li>
<li>People who bought houses they couldn&#8217;t afford with loans they didn&#8217;t understand want their lenders to change the terms.</li>
<li>Congress authorizes a war and then tries everything it can think of to get out of it.</li>
<li>Our country gets addicted to oil and then blames OPEC when it doesn&#8217;t like the price.</li>
</ul>
<p>These stories prove how <strong>personal responsibility has all but vanished in America, and our government is leading the way</strong>.</p>
<p><img title="Glenn Beck" src="http://www.corysessions.com/wp-content/uploads/2008/03/glenn-beck.jpg" alt="Glenn Beck" width="220" height="165" align="left" />Remember the kid from that interminable 1980s commercial whose father caught him using drugs? The father incredulously asked, &#8220;Who taught you how to do this stuff?&#8221; and the kid responded, &#8220;You, alright? I learned it by watching you.&#8221;</p>
<p>Well, we are that kid and our government is that drug-using father who doesn&#8217;t think that anyone notices his bad habits.</p>
<p>Our government is leading us by example, and I don&#8217;t mean that in a good way. For years, it has spent us into oblivion, mortgaging our future for programs we can&#8217;t afford, and Americans have happily followed suit, running up credit card bills and home equity loans for things they never should&#8217;ve bought.</p>
<p>Unfortunately, we&#8217;re also learning something else from our government: how to avoid taking responsibility for our actions.</p>
<p>From Eliot Spitzer&#8217;s alleged hooker craze to the revelation that Arnold Schwarzenegger commutes to work in a large private jet even as he preaches the dangers of carbon dioxide emissions, there&#8217;s never been a shortage of &#8220;do what I say, not what I do&#8221; hypocrites in politics.</p>
<p>&#8230;</p>
<p>If you want to talk about disenfranchised voters, then let&#8217;s talk about why just 17 percent of Americans have a positive view of Congress. Let&#8217;s talk about why we still have wide open borders despite most Americans wanting them sealed. Let&#8217;s talk about why we keep selling out our sovereignty and our security by borrowing billions of dollars from-less-than friendly countries, such as China.</p>
<p>Americans aren&#8217;t disenfranchised because our leaders won&#8217;t count votes in a couple of states. They&#8217;re disenfranchised because our leaders aren&#8217;t doing their jobs. They&#8217;re disenfranchised because after working hard to support their families and to raise kids who understand the difference between right and wrong, their leaders do exactly the opposite.</p>
<p><strong>Source:</strong> <a title="Personal Responsibility has Vanished in America" href="http://www.cnn.com/2008/US/03/14/beckfloridamichigan/index.html?eref=rss_topstories" target="_blank">CNN &#8211; Glenn Beck: Too bad, Michigan and Florida</a></p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=Personal+Responsibility+has+Vanished+in+America&amp;url=http%3A%2F%2Fwww.corysessions.com%2Frants%2Fpersonal-responsibility-has-vanished-in-america%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/rants/personal-responsibility-has-vanished-in-america/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Trends &#8211; Google Analyst Day 2007</title>
		<link>http://www.corysessions.com/business/internet-trends-google-analyst-day-2007/</link>
		<comments>http://www.corysessions.com/business/internet-trends-google-analyst-day-2007/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 07:10:39 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/business/internet-trends-google-analyst-day-2007/</guid>
		<description><![CDATA[I was just watching the video from Google Analyst Day 2007 with Vint Cerf and Alan Eustace.  They discussed everything from the evolution and future of the internet to internet neutrality and Google bidding on the 700mhz spectrum.

<script type="text/javascript">SHARETHIS.addEntry({ title: "Internet Trends &#8211; Google Analyst Day 2007", url: "http://www.corysessions.com/business/internet-trends-google-analyst-day-2007/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I was just watching the video from Google Analyst Day 2007 with Vint Cerf and Alan Eustace.  They discussed everything from the evolution and future of the internet to internet neutrality and Google bidding on the 700mhz spectrum.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/pyJ_wQah3U0&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/pyJ_wQah3U0&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><a href="http://sharethis.com/item?&wp=2.8&amp;publisher=19b12226-7f49-4984-a914-2a07ba5c41f6&amp;title=Internet+Trends+%26%238211%3B+Google+Analyst+Day+2007&amp;url=http%3A%2F%2Fwww.corysessions.com%2Fbusiness%2Finternet-trends-google-analyst-day-2007%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/business/internet-trends-google-analyst-day-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
