<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Corey Kimball</title>
	<atom:link href="http://coreykimball.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://coreykimball.wordpress.com</link>
	<description>Keep it in the short grass.</description>
	<lastBuildDate>Mon, 06 Jun 2011 11:39:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='coreykimball.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Corey Kimball</title>
		<link>http://coreykimball.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://coreykimball.wordpress.com/osd.xml" title="Corey Kimball" />
	<atom:link rel='hub' href='http://coreykimball.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Are Your Domino Web Pages A Little Quirky?</title>
		<link>http://coreykimball.wordpress.com/2010/07/02/are-your-domino-web-pages-a-little-quirky/</link>
		<comments>http://coreykimball.wordpress.com/2010/07/02/are-your-domino-web-pages-a-little-quirky/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 19:15:38 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Notes/Domino]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[domino]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">https://coreykimball.wordpress.com/2010/07/02/are-your-domino-web-pages-a-little-quirky/</guid>
		<description><![CDATA[So you’ve taken the time to carefully craft your Domino web site with standards compliant code, using HTML for the content and CSS for the layout. No table or frames layout for you! You’ve properly coded your HTML so that the content is separated from the layout,&#160; and carefully crafted your CSS so that the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=84&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So you’ve taken the time to carefully craft your Domino web site with standards compliant code, using HTML for the content and CSS for the layout. </p>
<p>No table or frames layout for you! You’ve properly coded your HTML so that the content is separated from the layout,&#160; and carefully crafted your CSS so that the layout is flawless, checking frequently with <a title="Get Firefox!" href="http://www.mozilla.com/en-US/">Firefox.</a> You are using <a title="Get Firefox!" href="http://www.mozilla.com/en-US/">Firefox</a> aren’t you?</p>
<p>You eagerly open your OTHER company approved browser so that you can check your layout, and discover that IE is still sucking eggs! WHAT, I thought I could use CSS? Why is IE still not working properly? </p>
<p>Glad you asked. You probably don’t have a <a title="A List Apart Proper DocType" href="http://www.alistapart.com/articles/doctype/">proper DTD</a>. Don’t be offended. It’s not just you. Many people move from Lotus Notes to web development thinking that Domino will handle all the web “stuff” for you. Not so. </p>
<p>What happens is that the DTD that Domino renders is not correct. In r8.5 it has gotten much better, but it still only renders half the information. </p>
<p>This is what you get with 8.5.1.</p>
<p><a href="http://coreykimball.files.wordpress.com/2010/07/image.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://coreykimball.files.wordpress.com/2010/07/image_thumb.png?w=522&#038;h=73" width="522" height="73" /></a> </p>
<p>So what’s the problem? Isn’t this a proper DTD? Well, not really. Although the DTD part is correct, there is a piece missing. There should also be a URI that tells the browser where to go to verify the DTD. </p>
<p>Like this…</p>
<p>&quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;</p>
<p>But Domino doesn’t supply that piece. Without a proper DTD IE will render the page in <a title="Quirks Mode" href="http://en.wikipedia.org/wiki/Quirks_mode">“Quirks”</a> mode, so your css isn’t nearly as effective as you’d like. </p>
<p>To get that piece you need to do a little bit of work. There is a field that has been around since r7 that will allow you to control the output of code before the “&lt;html&gt;” tag, which is where the DTD is!</p>
<p>1. At the top of your form create a hidden, computed for display field called “$$HTMLFrontMatter”. I do this in a commonFields subform&#160; that gets embedded in all the web forms.</p>
<p><a href="http://coreykimball.files.wordpress.com/2010/07/image1.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://coreykimball.files.wordpress.com/2010/07/image_thumb1.png?w=176&#038;h=30" width="176" height="30" /></a> </p>
<p>2. For the value of the field enter</p>
<p>{&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;    <br />&quot;<a href="http://www.w3.org/TR/html4/strict.dtd&quot;">http://www.w3.org/TR/html4/strict.dtd&quot;</a>&gt;}</p>
<p>OR,</p>
<p>{&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;    <br />&quot;<a href="http://www.w3.org/TR/html4/loose.dtd&quot;">http://www.w3.org/TR/html4/loose.dtd&quot;</a>&gt;}</p>
<p>NOTE: IE will still kick your page into Quirks mode if there is ANYTHING in front of the DTD, so make sure there is NOTHING above it.</p>
<p>3. Save the form, open it with a browser and view the source. You should now have a proper DTD.</p>
<p><a href="http://coreykimball.files.wordpress.com/2010/07/image3.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://coreykimball.files.wordpress.com/2010/07/image_thumb3.png?w=520&#038;h=131" width="520" height="131" /></a> </p>
</p>
</p>
<p>Of course this doesn’t solve all of IE’s issues. There is still the <a title="IE Box Model" href="http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug">box model</a> and several others, but at least you are now rendering in the proper mode, and are no longer quirky!</p>
<p>Have Fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=84&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2010/07/02/are-your-domino-web-pages-a-little-quirky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>

		<media:content url="http://coreykimball.files.wordpress.com/2010/07/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://coreykimball.files.wordpress.com/2010/07/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://coreykimball.files.wordpress.com/2010/07/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Simply No Words&#8230;.</title>
		<link>http://coreykimball.wordpress.com/2010/04/27/simply-no-words/</link>
		<comments>http://coreykimball.wordpress.com/2010/04/27/simply-no-words/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 19:54:47 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Main Stream Media]]></category>
		<category><![CDATA[msm]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/?p=76</guid>
		<description><![CDATA[&#8230;for this<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=76&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="MSNBC says it's illegal to be illegal..." href="http://www.weeklystandard.com/blogs/msnbc-law-makes-it-crime-be-illegal-immigrant" target="_blank">&#8230;for this</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=76&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2010/04/27/simply-no-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>Is This The Man We Want Negotiating With Terrorists?</title>
		<link>http://coreykimball.wordpress.com/2008/07/09/is-this-the-man-we-want-negotiating-with-terrorists/</link>
		<comments>http://coreykimball.wordpress.com/2008/07/09/is-this-the-man-we-want-negotiating-with-terrorists/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 15:27:32 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Obama]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/?p=60</guid>
		<description><![CDATA[“I think that we got carried away in the moment” Really? Seriously? Obama has vowed to keep his children out of the sway, but here is gettting &#8220;carried away in the moment&#8221;. If he can&#8217;t protect his kids from the vultures, how can we expect him to protect us from the preditors? Can you just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=60&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>“<a title="Wow" href="http://elections.foxnews.com/2008/07/09/obama-says-family-will-be-avoiding-daughters-interviews/" target="_blank">I think that we got carried away in the moment</a>”</p>
<p>Really? Seriously?</p>
<p>Obama has vowed to keep his children out of the sway, but here is gettting &#8220;carried away in the moment&#8221;.</p>
<p>If he can&#8217;t protect his kids from the vultures, how can we expect him to protect us from the preditors?</p>
<p>Can you just imagine being &#8220;carried away in the moment&#8221; in conversations with world leaders or terrorists?</p>
<p>I for one want someone that will sit down and seriously, soberly consider all the options, not someone who will be &#8220;carried away in the moment&#8221;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/60/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/60/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=60&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2008/07/09/is-this-the-man-we-want-negotiating-with-terrorists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama Changes His Mind&#8230;Again</title>
		<link>http://coreykimball.wordpress.com/2008/07/03/obama-changes-his-mindagain/</link>
		<comments>http://coreykimball.wordpress.com/2008/07/03/obama-changes-his-mindagain/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 22:49:03 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Obama]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/?p=58</guid>
		<description><![CDATA[Today Obama says that his plan for troop withdrawal will depend on the opinion of the commanders on the ground. He will get this opinion after he has the chance to visit them and talk to them. From Politico&#8230; &#8220;When I go to Iraq and I have a chance to talk to some of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=58&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today Obama says that his plan for troop withdrawal will depend on the opinion of the commanders on the ground. He will get this opinion <strong><em>after </em></strong>he has the chance to visit them and talk to them.</p>
<p><a title="Obama changes mind on Iraq" href="http://www.politico.com/news/stories/0708/11517.html" target="_blank">From Politico&#8230;</a></p>
<blockquote><p>&#8220;When I go to Iraq and I have a chance to talk to some of the commanders on the ground, <em><strong>I&#8217;m sure I&#8217;ll have more information and will continue to refine my policies,&#8221; </strong></em>he said, according to CBS News. “I have been consistent, throughout this process, that I believe the war in Iraq was a mistake.”</p></blockquote>
<p><em>When</em> he goes to Iraq? When might that be? After he is President? He would sit down with mad men with no pre-conditions, but now it seems as though there are pre-conditions on his pull out plan.</p>
<p>I especially like the line where he says <strong><em>&#8220;and will continue to refine my policies&#8221;</em></strong>, which means &#8216;I&#8217;ll give you my message of the day depending on how the political winds are blowing&#8217;</p>
<p>Funny, that&#8217;s not what he says on his web site. Here is a <a title="Obama's troop timeline" href="http://www.barackobama.com/issues/iraq/#bring-home" target="_blank">quote from his web site </a>(emphasis mine). He says he will <strong><em>Immediately begin to remove our troops. </em></strong>This doesn&#8217;t sound like he&#8217;s waiting for anyone&#8217;s input. His time table also seems firm, <em><strong>all of our combat brigades out of Iraq within 16 months. </strong></em></p>
<blockquote>
<h4>Bringing Our Troops Home</h4>
<p>Obama <em><strong>will immediately </strong></em>begin to remove our troops from Iraq. <strong><em>He will remove one to two combat brigades  							each month</em></strong>, and <strong><em>have all of our combat brigades out of Iraq within 16 months.</em></strong> Obama will make it clear that  							we will not build any permanent bases in Iraq. He will keep some troops in Iraq to protect our embassy and  							diplomats; if al Qaeda attempts to build a base within Iraq, he will keep troops in Iraq or elsewhere in the  							region to carry out targeted strikes on al Qaeda.</p></blockquote>
<p>Tomorrow we&#8217;ll probably hear about the &#8220;inartful&#8221; wording that he used.</p>
<p>The candidate of change, changing his message yet again.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=58&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2008/07/03/obama-changes-his-mindagain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama Doesn&#8217;t Think He Has The Experience To Be President</title>
		<link>http://coreykimball.wordpress.com/2008/05/23/obama-thinks-he-doesnt-have-the-experience-to-be-president/</link>
		<comments>http://coreykimball.wordpress.com/2008/05/23/obama-thinks-he-doesnt-have-the-experience-to-be-president/#comments</comments>
		<pubDate>Fri, 23 May 2008 20:07:06 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Obama]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/?p=55</guid>
		<description><![CDATA[There has been much speculation on Obama&#8217;s qualifications to occupy the White House. Some people say that he is youthful and &#8220;Kennedy-esque&#8221;. These are the people that are tired of the current president and want the change that Obama has been espousing. On the other side, there are people that believe that Obama simply lacks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=55&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There has been much speculation on Obama&#8217;s qualifications to occupy the White House.</p>
<p>Some people say that he is youthful and &#8220;Kennedy-esque&#8221;. These are the people that are tired of the current president and want the change that Obama has been espousing.</p>
<p>On the other side, there are people that believe that Obama simply lacks the experience needed to be president. They would say that he hasn&#8217;t done anything. He has no foreign policy experience, and his experience here at home is basically that he was a local figure helping out his fellow citizens in Chicago.</p>
<p>Apparently, Obama agrees with the second group of people. <a title="Obama Not Ready" href="http://politicalwire.com/archives/2004/11/04/obama_will_not_run_in_2008.html" target="_blank">He </a><a title="Obama Not Ready" href="http://politicalwire.com/archives/2004/11/04/obama_will_not_run_in_2008.html" target="_blank">doesn&#8217;t even believe</a> that he has what it takes to be the agent of change.</p>
<blockquote>
<h3><a title="Obama Will Not Run in 2008" href="http://politicalwire.com/archives/2004/11/04/obama_will_not_run_in_2008.html">Obama Will Not Run in 2008</a></h3>
<p>Calling it as &#8220;a silly question,&#8221; Sen.-elect Barack Obama (D-IL) pledged &#8220;he would resist any overtures to run for president or vice president before the end of his six-year term as a U.S. senator,&#8221; the <a href="http://www.suntimes.com/output/elect/cst-nws-sen04.html">Chicago Sun-Times</a> reports.<br />
Said Obama: &#8220;I was elected yesterday. I have never set foot in the U.S. Senate. I&#8217;ve never worked in Washington. And the notion that somehow I&#8217;m immediately going to start running for higher office just doesn&#8217;t make sense.&#8221;    November  4, 2004</p></blockquote>
<p>Just 3 1/2 short years ago, he was saying he &#8220;never set foot in the U.S. Senate&#8221;, and he &#8220;never worked in Washington&#8221;. And now, after 3 years in the Senate he is supposed to be the man capable of putting an end to the partisan bickering in Washington and bring what he calls needed &#8220;change&#8221;.</p>
<p><!-- google_ad_section_end --></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=55&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2008/05/23/obama-thinks-he-doesnt-have-the-experience-to-be-president/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>IE6 &#8220;Peek-a-boo&#8221; bug</title>
		<link>http://coreykimball.wordpress.com/2008/05/23/ie6-peek-a-boo-bug/</link>
		<comments>http://coreykimball.wordpress.com/2008/05/23/ie6-peek-a-boo-bug/#comments</comments>
		<pubDate>Fri, 23 May 2008 19:08:58 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[IE6 Bugs]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/?p=54</guid>
		<description><![CDATA[I&#8217;ve been doing some web design work and the client uses IE6. There is a bug where at times certain chunks of text don&#8217;t appear on the screen, although they are actually present in the html markup. I had seen this before, but couldn&#8217;t remember the fix, so I googled and came across some interesting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=54&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing some web design work and the client uses IE6. There is a bug where at times certain chunks of text don&#8217;t appear on the screen, although they are actually present in the html markup.</p>
<p>I had seen this before, but couldn&#8217;t remember the fix, so I googled and came across some interesting reading. See <a title="Peekaboo" href="http://www.positioniseverything.net/explorer/peekaboo.html" target="_blank">here</a> and <a title="onHavingLayout" href="http://www.satzansatz.de/cssd/onhavinglayout.html" target="_blank">here</a>.</p>
<p>The fix that I put into place is <a title="IE Peekaboo bug fix" href="http://positioniseverything.net/easyclearing.html" target="_blank">listed here</a>, under the &#8220;But what about IE?&#8221; section.</p>
<p>I inserted the following code in my css file and the problem was fixed.</p>
<p>/* Hides from IE-mac \*/<br />
* html .container {height: 1%;}<br />
/* End hide from IE-mac */</p>
<p>I also added the following code for the &#8220;Guillotine-Bug&#8221;.</p>
<p>.container:after {<br />
content: &#8220;.&#8221;;<br />
display: block;<br />
height: 0;<br />
clear: both;<br />
visibility: hidden;<br />
}</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/54/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/54/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=54&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2008/05/23/ie6-peek-a-boo-bug/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>JQuery Global Error With IE6</title>
		<link>http://coreykimball.wordpress.com/2008/05/21/jquery-global-error-with-ie6/</link>
		<comments>http://coreykimball.wordpress.com/2008/05/21/jquery-global-error-with-ie6/#comments</comments>
		<pubDate>Wed, 21 May 2008 19:14:44 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[IE6]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JQuery/IE6]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/?p=52</guid>
		<description><![CDATA[I was putting together some ajax functionality to work with a Domino site, and kept running into a global error in IE6. Firefox worked fine, but IE 6 kept complaining about a global error. See image below. I had set up a tabbed interface to retrieve the appropriate views via Ajax based on parameters set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=52&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was putting together some ajax functionality to work with a Domino site, and kept running into a global error in IE6. Firefox worked fine, but IE 6 kept complaining about a global error. See image below.</p>
<p><a href="http://coreykimball.files.wordpress.com/2008/05/ie6jqueryruntimeerror.png"><img class="aligncenter size-medium wp-image-53" src="http://coreykimball.files.wordpress.com/2008/05/ie6jqueryruntimeerror.png?w=223&#038;h=160" alt="IE6 Runtime Error" width="223" height="160" /></a></p>
<p>I had set up a tabbed interface to retrieve the appropriate views via Ajax based on parameters set on the calling document. When the page loaded, and the document tried to get the views from the back-end the error occurred.</p>
<p>I googled around a bit, and came up with <a title="JQuery Global Error IE6" href="http://blog.dotsmart.net/2008/04/21/ie-6-bug-causes-jquery-globaleval-error/" target="_blank">this post</a>, which fixed the problem.</p>
<p>The issue is that the site has a &#8220;base&#8221; element in the head section of the form (&lt;base href=&#8221;someURL&#8221;/&gt;), and IE needs to have it closed like a normal tag as in &lt;base href=&#8221;someURL&#8221;&gt;&lt;/base&gt;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/52/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/52/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=52&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2008/05/21/jquery-global-error-with-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>

		<media:content url="http://coreykimball.files.wordpress.com/2008/05/ie6jqueryruntimeerror.png?w=223" medium="image">
			<media:title type="html">IE6 Runtime Error</media:title>
		</media:content>
	</item>
		<item>
		<title>And so it begins&#8230;</title>
		<link>http://coreykimball.wordpress.com/2007/12/18/and-so-it-begins/</link>
		<comments>http://coreykimball.wordpress.com/2007/12/18/and-so-it-begins/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 14:29:51 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Life Stuff]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/2007/12/18/and-so-it-begins/</guid>
		<description><![CDATA[New &#8220;Life&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=50&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>New <a href="http://www.washingtonpost.com/wp-dyn/content/article/2007/12/16/AR2007121601900_pf.html" title="New Life">&#8220;Life&#8221;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/50/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/50/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=50&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2007/12/18/and-so-it-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>Campaign over&#8230;Promises missed</title>
		<link>http://coreykimball.wordpress.com/2007/07/11/campaign-overpromises-missed/</link>
		<comments>http://coreykimball.wordpress.com/2007/07/11/campaign-overpromises-missed/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 14:03:41 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Iraq]]></category>
		<category><![CDATA[War on terror]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/2007/07/11/campaign-overpromises-missed/</guid>
		<description><![CDATA[Well, it&#8217;s becoming increasingly apparent that the Democrats couldn&#8217;t keep the promises that they made during the last mid term campaigns. There have been several news stories of how the promises just haven&#8217;t been met, but now comes the Democratic Senate whip, Dick Durbin stating that the goal of immediate withdrawal is &#8220;unrealistic&#8221;. Read the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=49&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s becoming increasingly apparent that the Democrats couldn&#8217;t keep the promises that they made during the last mid term campaigns. There have been several news stories of how the promises just haven&#8217;t been met, but now comes the Democratic Senate whip, Dick Durbin stating that the goal of immediate withdrawal is &#8220;unrealistic&#8221;. <a href="http://www.earthtimes.org/articles/show/81600.html" title="Durbin speaks out on withdrawal">Read the article here.</a></p>
<p><a href="http://www.earthtimes.org/articles/show/81600.html" title="Durbin speaks out on withdrawal"></a><br />
Well, well. Isn&#8217;t this the point that so many people were making during the campaigns? But, the Democrats just kept saying &#8220;Put me in office, and we&#8217;ll end this war immediately&#8221;. Even Durbin was spouting off that we needed an immediate withdrawl. Apparently, he now sees how wrong he and the others were.</p>
<p>Part of the article states</p>
<p><em><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Durbin conceded to the Post that Democrats, with a slim majority in the Senate, won&#8217;t be able to placate calls from liberal Democrats who want a specific end date to the war and a funding cut off.</font></em></p>
<p><em><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Major troop withdrawal must be done gradually, Durbin said.</font></em></p>
<p><em><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&#8220;We also understand that just leaving cold turkey, with everything gone, could have the whole region descend into chaos,&#8221; Durbin told the Post.</font> </em></p>
<p>Isn&#8217;t this just the opposite of what was promised. The first line above says it all</p>
<p>&#8220;<em><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Durbin conceded to the Post that Democrats, with a slim majority in the Senate, won&#8217;t be able to placate calls from liberal Democrats who want a specific end date to the war and a funding cut off.&#8221;. </font></em></p>
<p>It seems as though the campaign promises were just a ploy to &#8220;placate calls from liberal Democrats&#8230;&#8221;.</p>
<p>One of the amazing things to me is that this article appears  at &#8220;earthtimes.org&#8221;. I did a quick look at ABC and MSNBC and didn&#8217;t see any mention of this article there.</p>
<p>When are we going to learn?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=49&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2007/07/11/campaign-overpromises-missed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
		<item>
		<title>Libby scoots out of jail&#8230;</title>
		<link>http://coreykimball.wordpress.com/2007/07/03/libby-scoots-out-of-jail/</link>
		<comments>http://coreykimball.wordpress.com/2007/07/03/libby-scoots-out-of-jail/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 16:02:31 +0000</pubDate>
		<dc:creator>coreykimball</dc:creator>
				<category><![CDATA[Life Stuff]]></category>

		<guid isPermaLink="false">http://coreykimball.wordpress.com/2007/07/03/libby-scoots-out-of-jail/</guid>
		<description><![CDATA[It&#8217;s amazing to me how it takes someone from another country to say this so well. Have a look&#8230; Where is the American media on this? They are still reporting it as Scooter outed Plame. Amazing, even after all the nonsense and the trial, the media still doesn&#8217;t report the facts. Let&#8217;s review&#8230; Scooter was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=48&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s amazing to me how it takes someone from another country to say this so well.</p>
<p><a href="http://www.theaustralian.news.com.au/story/0,20867,22014570-601,00.html" title="Libby Scoots" target="_blank">Have a look&#8230; </a></p>
<p>Where is the American media on this? They are still reporting it as Scooter outed Plame. Amazing, even after all the nonsense and the trial, the media still doesn&#8217;t report the facts.</p>
<p>Let&#8217;s review&#8230;</p>
<p>Scooter was convicted of lying to a Grand Jury, NOT for outing Plame.</p>
<p>It&#8217;s been revealed that Dick Armetage is the one that actually outed Plame to Woodward, and this he did when he thought she wasn&#8217;t &#8220;covert&#8221;.</p>
<p>It&#8217;s a witch hunt folks, plain and simple.</p>
<p>Hhhmm. Wasn&#8217;t there someone else that got caught lying? Yeh, let&#8217;s see he was the last American President to be impeached. Oh, sorry I forgot. He&#8217;s the leader of the party. My bad&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coreykimball.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coreykimball.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coreykimball.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coreykimball.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coreykimball.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coreykimball.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coreykimball.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coreykimball.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coreykimball.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coreykimball.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coreykimball.wordpress.com&amp;blog=276679&amp;post=48&amp;subd=coreykimball&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coreykimball.wordpress.com/2007/07/03/libby-scoots-out-of-jail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d74549b757c1b607fcc313c0fb4f3be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coreykimball</media:title>
		</media:content>
	</item>
	</channel>
</rss>
