<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;Ck4BQHc7cCp7ImA9WhBVGUk.&quot;"><id>tag:blogger.com,1999:blog-18243792</id><updated>2013-04-25T20:49:11.908-05:00</updated><category term="webitect.net" /><category term="recession" /><category term="live" /><category term="CSS" /><category term="Technology" /><category term="crackberry" /><category term="Library" /><category term="tutorial" /><category term="Online" /><category term="Tech" /><category term="strategy" /><category term="streaming" /><category term="Graphic Design" /><category term="qik" /><category term="geek" /><category term="Comic" /><category term="Photoshop" /><category term="fanboy" /><category term="blackberry" /><category term="tips" /><category term="storm" /><category term="video" /><category term="SQL NET FIND FOR WORK" /><category term="Dilbert" /><category term="Free" /><category term="Books" /><title>Left Outer Join</title><subtitle type="html">A place for a SQL geek to "talk" about his day....</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://joinleft.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>199</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/sqlgeek" /><feedburner:info uri="sqlgeek" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><link rel="license" type="text/html" href="http://creativecommons.org/licenses/by/2.0/" /><entry gd:etag="W/&quot;CUQMRng5eCp7ImA9WhVTGE0.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-5186385340551998423</id><published>2012-03-03T13:28:00.003-05:00</published><updated>2012-03-03T14:36:27.620-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-03T14:36:27.620-05:00</app:edited><title>sp_updatestats and Update Statistics</title><content type="html">Before I get started on this one, I wanted to give thanks to &lt;a href="http://j.mp/yaRSrY" target="_blank"&gt;RK Kuppãla&lt;/a&gt; for pointing me to &lt;a href="http://j.mp/w6pKaX" target="_blank"&gt;the great article and code&lt;/a&gt; written by &lt;a href="http://j.mp/zgxWaJ" target="_blank"&gt;Michelle Ufford (aka SQLFool)&lt;/a&gt; - this has been a HUGE help!&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I am blogging about this so that I can keep my thoughts in one spot and due to the potential length of the post. This needs to be introduced with the back story of how I got to this point. Our Student Information System is produced by a vendor. That vendor has certain specifications that we are required to follow - if they are not followed, the first thing their support folks point to is that we are not following protocol (although most of the time it is not the issue) when we have problems. The one that we get hit with a lot is the Maintenance Plans for rebuilding indexes and updating statistics not running to completion. Note that the maintenance plan rebuilt every index in the entire database and the update statistics run a full scan on every index in the database.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;We determined that this was happening because the system is available 24/7 and a lot of the users were accessing data through the application that were in deadlock with the maintenance plan which wound up being the loser in the deadlock. Obviously the maintenance plan has no control over deadlock priority and neither do we when it comes to the application code.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;There are also several processes in place that have to be scheduled each night to check student attendance and modify the all day information based on how many periods a student missed. Because of the amount of workload that these processes take, we had to switch things around as to when different plans run. The attendance schedule runs two different processes and takes about 4 hours in total. The maintenance plans were taking about 8 hours.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I decided to rebuild how the maintenance plans run by dividing them into groups according to what was needed for the attendance schedule and completing those first, then running the other tables according to order of how often they are "touched" during the day. I took out all temporary tables, any manual backups and lookup tables that rarely get changed. The only problem with this method is that it is no longer dynamic and would need to be reviewed if the vendor added tables when they do upgrades. This took a good hour off of what we had before, and it allowed me to start the attendance processes earlier since their tables were no longer being used by the plan.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The problem we are faced with now is that we are still 11 hours with these processes we have no good time to schedule others. I contacted the vendor when I looked over the previously mentioned script to see if they would approve of it - they did! I have been testing all week a modified version of the script and have gotten the index portion down to less than an hour (obviously variable based on percent of fragmentation). The problem is that the update statistics with the fullscan takes anywhere between 3 and 4 hours. Yes, that has me down to 4 to 5 hours which is a total reduction of 3, but my hopes were to get it down to less than 2 hours so that we can truly optimize our time.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Here (finally) is where the question comes in - doing research on sp_updatestats vs. update statistics has shown that most run the stored procedure nightly and then the other once a week or once a month. Because the vendor requires the fullscan on every index. what am I losing with running the stored procedure if it truly sees that an update is not required? Because this runs so quickly (usually less than 10 minutes), would it be a bad idea to run this a few times a day just to make sure everything is accurate?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I have also seen that when you rebuild an index, it fully updates the statistics anyway - if I have to stick with the update statistics, could I not just skip all of the ones that were rebuilt? Would it hurt and/or help to run sp_updatestats after the individual update statistics has run, or would that process actually cause issues with the previously run update because of the method it uses to scan?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thanks in advance for any help!!!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=J2i4KJH6saU:pDbSY3KJ-70:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=J2i4KJH6saU:pDbSY3KJ-70:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=J2i4KJH6saU:pDbSY3KJ-70:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=J2i4KJH6saU:pDbSY3KJ-70:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=J2i4KJH6saU:pDbSY3KJ-70:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=J2i4KJH6saU:pDbSY3KJ-70:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=J2i4KJH6saU:pDbSY3KJ-70:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=J2i4KJH6saU:pDbSY3KJ-70:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/J2i4KJH6saU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/5186385340551998423/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=5186385340551998423&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/5186385340551998423?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/5186385340551998423?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/J2i4KJH6saU/spupdatestats-and-update-statistics.html" title="sp_updatestats and Update Statistics" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2012/03/spupdatestats-and-update-statistics.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEARn8-eyp7ImA9WhdQFUw.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-432505051436957093</id><published>2011-08-16T12:10:00.001-05:00</published><updated>2011-08-16T12:10:47.153-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-16T12:10:47.153-05:00</app:edited><title /><content type="html">&lt;object id="vp1jimSl" width="432" height="240" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"&gt;&lt;param name="movie" value="http://static.animoto.com/swf/w.swf?w=swf/vp1&amp;e=1313515009&amp;f=jimSlFByZUb3ohuDkWAcZQ&amp;d=324&amp;m=a&amp;r=240p&amp;volume=100&amp;start_res=240p&amp;i=m&amp;options="&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed id="vp1jimSl" src="http://static.animoto.com/swf/w.swf?w=swf/vp1&amp;e=1313515009&amp;f=jimSlFByZUb3ohuDkWAcZQ&amp;d=324&amp;m=a&amp;r=240p&amp;volume=100&amp;start_res=240p&amp;i=m&amp;options=" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="432" height="240"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=0H1pwa9PsoA:_juVwj3eVKU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=0H1pwa9PsoA:_juVwj3eVKU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=0H1pwa9PsoA:_juVwj3eVKU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=0H1pwa9PsoA:_juVwj3eVKU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=0H1pwa9PsoA:_juVwj3eVKU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=0H1pwa9PsoA:_juVwj3eVKU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=0H1pwa9PsoA:_juVwj3eVKU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=0H1pwa9PsoA:_juVwj3eVKU:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/0H1pwa9PsoA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/432505051436957093/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=432505051436957093&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/432505051436957093?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/432505051436957093?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/0H1pwa9PsoA/blog-post.html" title="" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2011/08/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0UCSHo6eyp7ImA9WhdRGEw.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-2798831221448213480</id><published>2011-08-08T09:53:00.000-05:00</published><updated>2011-08-08T09:54:29.413-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-08T09:54:29.413-05:00</app:edited><title>First Day of School - 3rd Grade and Pre-K!</title><content type="html">&lt;embed type="application/x-shockwave-flash" src="https://picasaweb.google.com/s/c/bin/slideshow.swf" width="600" height="400" flashvars="host=picasaweb.google.com&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fke4uar%2Falbumid%2F5638495368611396465%3Falt%3Drss%26kind%3Dphoto%26authkey%3DGv1sRgCMHtieu-l5jjVg%26hl%3Den_US" pluginspage="http://www.macromedia.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=z-C-JevQN6A:-y-Az3u2_50:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=z-C-JevQN6A:-y-Az3u2_50:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=z-C-JevQN6A:-y-Az3u2_50:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=z-C-JevQN6A:-y-Az3u2_50:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=z-C-JevQN6A:-y-Az3u2_50:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=z-C-JevQN6A:-y-Az3u2_50:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=z-C-JevQN6A:-y-Az3u2_50:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=z-C-JevQN6A:-y-Az3u2_50:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/z-C-JevQN6A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/2798831221448213480/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=2798831221448213480&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2798831221448213480?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2798831221448213480?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/z-C-JevQN6A/first-day-of-school-3rd-grade-and-pre-k.html" title="First Day of School - 3rd Grade and Pre-K!" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2011/08/first-day-of-school-3rd-grade-and-pre-k.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8ERnk8cCp7ImA9WhdRFUg.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-132475914658442756</id><published>2011-08-05T09:33:00.001-05:00</published><updated>2011-08-05T09:33:27.778-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-05T09:33:27.778-05:00</app:edited><title>Love this skit!</title><content type="html">&lt;object id="flashObj" width="480" height="270" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0"&gt;&lt;param name="movie" value="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&amp;isUI=1" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="flashVars" value="videoId=180307966001&amp;playerID=88099121001&amp;playerKey=AQ~~,AAAAE_NrUDk~,9UfhLajbcOlyPMfj8agIezIfOO7dbe4P&amp;domain=embed&amp;dynamicStreaming=true" /&gt;&lt;param name="base" value="http://admin.brightcove.com" /&gt;&lt;param name="seamlesstabbing" value="false" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="swLiveConnect" value="true" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;embed src="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&amp;isUI=1" bgcolor="#FFFFFF" flashVars="videoId=180307966001&amp;playerID=88099121001&amp;playerKey=AQ~~,AAAAE_NrUDk~,9UfhLajbcOlyPMfj8agIezIfOO7dbe4P&amp;domain=embed&amp;dynamicStreaming=true" base="http://admin.brightcove.com" name="flashObj" width="480" height="270" seamlesstabbing="false" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=a75xEzCSe5w:gjba_67wkm4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=a75xEzCSe5w:gjba_67wkm4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=a75xEzCSe5w:gjba_67wkm4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=a75xEzCSe5w:gjba_67wkm4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=a75xEzCSe5w:gjba_67wkm4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=a75xEzCSe5w:gjba_67wkm4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=a75xEzCSe5w:gjba_67wkm4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=a75xEzCSe5w:gjba_67wkm4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/a75xEzCSe5w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/132475914658442756/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=132475914658442756&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/132475914658442756?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/132475914658442756?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/a75xEzCSe5w/love-this-skit.html" title="Love this skit!" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2011/08/love-this-skit.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkIGRHo6fCp7ImA9WhdSFU4.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-4257217725202484304</id><published>2011-07-24T15:15:00.001-05:00</published><updated>2011-07-24T15:15:25.414-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-24T15:15:25.414-05:00</app:edited><title>Church at the Crossings Message</title><content type="html">Hello. Have you heard about Church at the Crossings?&lt;br /&gt;&lt;br /&gt;Why no, I have not. Where is it located?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It is in the same complex as the old WalMart building. We meet at 10:30 AM every Sunday.&lt;br /&gt;&lt;br /&gt;Really? That seems earlier than other churches in the area.&lt;br /&gt;&lt;br /&gt;You are correct. Because we meet earlier, we are also out earlier and you can beat the lunch crowds.&lt;br /&gt;&lt;br /&gt;That is awesome. How is the music?&lt;br /&gt;&lt;br /&gt;We have very upbeat music with electric guitars and drums - it is more of a band atmosphere.&lt;br /&gt;&lt;br /&gt;Excellent - but will my kids enjoy that type of service.&lt;br /&gt;&lt;br /&gt;Your children are always welcome to stay with you in the service. However, we have a superb Crossings Kids team for babies and toddlers, preschoolers and school age children through twelve years of age. This experience is geared towards their age group so that they can experience worship and learning on their level.&lt;br /&gt;&lt;br /&gt;Wow - this sounds like a place perfect for me. I will see you there next Sunday! Woo Hoo!&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=5yG0q5OgT5g:njiGeTKQzUw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=5yG0q5OgT5g:njiGeTKQzUw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=5yG0q5OgT5g:njiGeTKQzUw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=5yG0q5OgT5g:njiGeTKQzUw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=5yG0q5OgT5g:njiGeTKQzUw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=5yG0q5OgT5g:njiGeTKQzUw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=5yG0q5OgT5g:njiGeTKQzUw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=5yG0q5OgT5g:njiGeTKQzUw:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/5yG0q5OgT5g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/4257217725202484304/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=4257217725202484304&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4257217725202484304?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4257217725202484304?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/5yG0q5OgT5g/church-at-crossings-message.html" title="Church at the Crossings Message" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2011/07/church-at-crossings-message.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UNRXg-eyp7ImA9WxBVEEU.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-3180289962960616915</id><published>2010-02-13T14:28:00.001-05:00</published><updated>2010-02-13T14:28:14.653-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-13T14:28:14.653-05:00</app:edited><title>Olympics Mobile TV</title><content type="html">&lt;div&gt;This is too neat!&lt;/div&gt;&lt;br /&gt;&lt;script type="text/javascript" src="http://wgtclsp.nbcolympics.com/o/4ae96cca2a2653d3/4b76fd4db3bde379/4ae96cca7ef35934/9441489d/widget.js"&gt;&lt;/script&gt;&lt;div style="font:10px arial;width:300px;margin-top:3px;"&gt;Exclusive &lt;a href="http://www.nbcolympics.com/" target="_blank"&gt;Winter Olympics&lt;/a&gt; news &amp; widgets at NBC Olympics.com!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=VYDJBn12guM:NLeUFrBTmd4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=VYDJBn12guM:NLeUFrBTmd4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=VYDJBn12guM:NLeUFrBTmd4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=VYDJBn12guM:NLeUFrBTmd4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=VYDJBn12guM:NLeUFrBTmd4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=VYDJBn12guM:NLeUFrBTmd4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=VYDJBn12guM:NLeUFrBTmd4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=VYDJBn12guM:NLeUFrBTmd4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/VYDJBn12guM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/3180289962960616915/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=3180289962960616915&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/3180289962960616915?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/3180289962960616915?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/VYDJBn12guM/olympics-mobile-tv.html" title="Olympics Mobile TV" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2010/02/olympics-mobile-tv.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEIMRX44eSp7ImA9WxNTF0w.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-8363082680346983526</id><published>2009-08-19T14:53:00.003-05:00</published><updated>2009-08-19T15:09:44.031-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-19T15:09:44.031-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="strategy" /><category scheme="http://www.blogger.com/atom/ns#" term="webitect.net" /><category scheme="http://www.blogger.com/atom/ns#" term="tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="CSS" /><title>65 Must-Know CSS Strategies and Tutorials</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://webitect.net/resources/65-must-know-css-strategies.php"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 80px; height: 80px;" src="http://www.gravatar.com/avatar/a946bf5e1b469c26ef4e43301d0cdf34?s=80&amp;d=http%3A%2F%2Fwebitect.net%2Fwp-content%2Fthemes%2Fconvergence%2Fimages%2Fdefault_avatar_author.gif%3Fs%3D80&amp;r=G" border="0" alt="" /&gt;&lt;/a&gt;Adding details and advanced CSS techniques to projects when unasked can increase the value of yourself as a designer, so learning new things is practical as both a personal and business move. I encourage everyone to try out at least a few of these techniques you are unaware of. Even if it’s hard to imagine a practical use for them right now, it can be incredibly useful in future projects, or you may come up with a revolutionary idea based on these strategies.&lt;br /&gt;&lt;br /&gt;Either way — try them out. Put them into practice, and brainstorm ways to include them in your current design process. It can do any designer or developer a lot of good. Constantly learning new techniques is the key to becoming a successful designer or developer. &lt;a href="http://webitect.net/resources/65-must-know-css-strategies.php" target="_blank"&gt;READ MORE&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=BwunZDbjUOQ:-uOnZZBXEZY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=BwunZDbjUOQ:-uOnZZBXEZY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=BwunZDbjUOQ:-uOnZZBXEZY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=BwunZDbjUOQ:-uOnZZBXEZY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=BwunZDbjUOQ:-uOnZZBXEZY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=BwunZDbjUOQ:-uOnZZBXEZY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=BwunZDbjUOQ:-uOnZZBXEZY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=BwunZDbjUOQ:-uOnZZBXEZY:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/BwunZDbjUOQ" height="1" width="1"/&gt;</content><link rel="related" href="http://webitect.net/resources/65-must-know-css-strategies.php" title="65 Must-Know CSS Strategies and Tutorials" /><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/8363082680346983526/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=8363082680346983526&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8363082680346983526?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8363082680346983526?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/BwunZDbjUOQ/65-must-know-css-strategies-and.html" title="65 Must-Know CSS Strategies and Tutorials" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/08/65-must-know-css-strategies-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MAQno6eCp7ImA9WxNTF0w.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-3848888660119425231</id><published>2009-08-19T14:45:00.004-05:00</published><updated>2009-08-19T14:50:43.410-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-19T14:50:43.410-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technology" /><category scheme="http://www.blogger.com/atom/ns#" term="Tech" /><category scheme="http://www.blogger.com/atom/ns#" term="fanboy" /><category scheme="http://www.blogger.com/atom/ns#" term="recession" /><category scheme="http://www.blogger.com/atom/ns#" term="tips" /><category scheme="http://www.blogger.com/atom/ns#" term="geek" /><title>Twelve Tips for Techies Trying to Resist Recessions</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.fanboy.com/2009/08/resisting-recessions.html"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px;" src="http://www.fanboy.com/wp-content/uploads/2009/08/city01.jpg" alt="" border="0" /&gt;&lt;/a&gt;To me things seem very bad right now, but on some level what’s going on isn’t quite as bad for the tech sector as things were during the dot.com crash. Now this isn’t to say that folks aren’t hurting, but that last crash seemed very specific to the tech sector while this crash seems to be hitting everyone everywhere. My gut feeling is that the worst may not be over, so with this in mind here are my tips (both small and large) from what I’ve learned:&lt;br /&gt;&lt;a href="http://www.fanboy.com/2009/08/resisting-recessions.html" target="_blank"&gt;READ MORE&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=jGqg3c6pkpI:8gadseJzXSI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=jGqg3c6pkpI:8gadseJzXSI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=jGqg3c6pkpI:8gadseJzXSI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=jGqg3c6pkpI:8gadseJzXSI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=jGqg3c6pkpI:8gadseJzXSI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=jGqg3c6pkpI:8gadseJzXSI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=jGqg3c6pkpI:8gadseJzXSI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=jGqg3c6pkpI:8gadseJzXSI:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/jGqg3c6pkpI" height="1" width="1"/&gt;</content><link rel="related" href="http://www.fanboy.com/2009/08/resisting-recessions.html" title="Twelve Tips for Techies Trying to Resist Recessions" /><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/3848888660119425231/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=3848888660119425231&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/3848888660119425231?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/3848888660119425231?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/jGqg3c6pkpI/twelve-tips-for-techies-trying-to.html" title="Twelve Tips for Techies Trying to Resist Recessions" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/08/twelve-tips-for-techies-trying-to.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IDQXc4fip7ImA9WxNTEEw.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-7477465562309705869</id><published>2009-08-11T14:34:00.004-05:00</published><updated>2009-08-11T14:39:30.936-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-11T14:39:30.936-05:00</app:edited><title>Why So Serious? Obama/Joker Poster Draws 'Outrage'</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.gopusa.com/theloft/wp-trackback.php?p=1808"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 150px; height: 219px;" src="http://www.gopusa.com/images/obama_joker_sm.jpg" alt="" border="0" /&gt;Read the full story here&lt;/a&gt;&lt;br /&gt;If there's one thing about liberals, it's that they're predictably predictable. In their eyes, it is more than acceptable to mock Sarah Palin and her family, using descriptions that range from rude to crude. When President Bush was in office, he was the focus of daily ridicule from left-wing journalists and bloggers.&lt;br /&gt;&lt;br /&gt;However, no one better make fun of Barack Obama or the thought police will express "outrage" and brand you a racist. That's exactly what is happening now as a poster of Obama in "Joker" makeup is popping up on walls and city streets. My question to the lefties: Why so serious?&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=frcSTT9sQ9U:WWrX2PbeRm0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=frcSTT9sQ9U:WWrX2PbeRm0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=frcSTT9sQ9U:WWrX2PbeRm0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=frcSTT9sQ9U:WWrX2PbeRm0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=frcSTT9sQ9U:WWrX2PbeRm0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=frcSTT9sQ9U:WWrX2PbeRm0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=frcSTT9sQ9U:WWrX2PbeRm0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=frcSTT9sQ9U:WWrX2PbeRm0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/frcSTT9sQ9U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/7477465562309705869/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=7477465562309705869&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/7477465562309705869?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/7477465562309705869?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/frcSTT9sQ9U/why-so-serious-obamajoker-poster-draws.html" title="Why So Serious? Obama/Joker Poster Draws 'Outrage'" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/08/why-so-serious-obamajoker-poster-draws.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkUCRX07eyp7ImA9WxJWE04.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-4925678599291927401</id><published>2009-06-18T07:49:00.002-05:00</published><updated>2009-06-18T08:04:24.303-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-18T08:04:24.303-05:00</app:edited><title>Frustrations...</title><content type="html">I absolutely hate those stupid Kroger commercials they have. People talking about how much fresher their fruit is than everybody else's? How do they know? Most folks I know have one store they like going to. So unless you have some independent "mystery" shopper going out or an investigative reporter going and checking out fruit at every store and comparing them, I would say that these comments are crap.&lt;br /&gt;&lt;br /&gt;I heard a commercial this morning talking about the meats. Now I understand that meat quality can differ from store to store, but there is a baseline that has to be met and that should be well over anyone's expectations. This one woman was talking about how Kroger's meat specifically was tender and juicy. OK, unless this lady eats meat raw, isn't that subject to the way it is cooked? You're going to tell me you can't go buy meat anywhere else and after you cook it to the same specifications it is not tender and juicy?&lt;br /&gt;&lt;br /&gt;Hey - Guess what folks, the name of the store is Kroger - K-R-O-G-E-R - go look at the front of the building. There is no "S" on the end. It is not on their grocery bags, their carts or their sales flyers. And I am not talking about people that use it in the possessive sense like "Kroger's meat is magically better and grants my wishes when I rub it like a lamp" or in the plural sense like "Of all the Krogers in the metro Atlanta area, mine is the best." I am specifically talking about folks that think the name of the store is Krogers - like "My local Krogers store carries Unicorn steaks."&lt;br /&gt;&lt;br /&gt;OK, rant over...&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=HfXSeMCV0BY:TscfAXeEnUw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=HfXSeMCV0BY:TscfAXeEnUw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=HfXSeMCV0BY:TscfAXeEnUw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=HfXSeMCV0BY:TscfAXeEnUw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=HfXSeMCV0BY:TscfAXeEnUw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=HfXSeMCV0BY:TscfAXeEnUw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=HfXSeMCV0BY:TscfAXeEnUw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=HfXSeMCV0BY:TscfAXeEnUw:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/HfXSeMCV0BY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/4925678599291927401/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=4925678599291927401&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4925678599291927401?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4925678599291927401?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/HfXSeMCV0BY/frustrations.html" title="Frustrations..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/06/frustrations.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkcCSXY6fip7ImA9WxJWEEo.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-8691445843218644048</id><published>2009-06-15T07:46:00.001-05:00</published><updated>2009-06-15T07:47:48.816-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-15T07:47:48.816-05:00</app:edited><title /><content type="html">&lt;object width="420" height="346"&gt;&lt;param name="movie" value="http://www.roadrunnerrecords.com/widgets/videoplayer_swf/2496"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.roadrunnerrecords.com/widgets/videoplayer_swf/2496" type="application/x-shockwave-flash" allowfullscreen="true" width="420" height="346"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br&gt;&lt;br /&gt;Really looking forward to the new Dream Theater Release!&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=ntEV8L2cyRQ:1Fe01kqUN-A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=ntEV8L2cyRQ:1Fe01kqUN-A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=ntEV8L2cyRQ:1Fe01kqUN-A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=ntEV8L2cyRQ:1Fe01kqUN-A:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=ntEV8L2cyRQ:1Fe01kqUN-A:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=ntEV8L2cyRQ:1Fe01kqUN-A:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=ntEV8L2cyRQ:1Fe01kqUN-A:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=ntEV8L2cyRQ:1Fe01kqUN-A:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/ntEV8L2cyRQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/8691445843218644048/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=8691445843218644048&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8691445843218644048?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8691445843218644048?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/ntEV8L2cyRQ/really-looking-forward-to-new-dream.html" title="" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/06/really-looking-forward-to-new-dream.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIHSX8-eCp7ImA9WxJTF0s.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-6359064537052964428</id><published>2009-04-26T12:14:00.001-05:00</published><updated>2009-04-26T12:22:18.150-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-26T12:22:18.150-05:00</app:edited><title>Amazing Video</title><content type="html">Found this via &lt;a href="http://twitter.com/LeoLaporte/statuses/1621526951" target="_blank"&gt;Leo Laporte&lt;/a&gt; - this is really cool!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;object height="300" width="400"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4116727&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1"&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=4116727&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;a href="http://vimeo.com/4116727"&gt;Noteboek&lt;/a&gt; from &lt;a href="http://vimeo.com/evelienlohbeck"&gt;Evelien Lohbeck&lt;/a&gt; on &lt;a href="http://vimeo.com/"&gt;Vimeo&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=CQsNwxjC_FE:e1QJ5IVoxJ8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=CQsNwxjC_FE:e1QJ5IVoxJ8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=CQsNwxjC_FE:e1QJ5IVoxJ8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=CQsNwxjC_FE:e1QJ5IVoxJ8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=CQsNwxjC_FE:e1QJ5IVoxJ8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=CQsNwxjC_FE:e1QJ5IVoxJ8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=CQsNwxjC_FE:e1QJ5IVoxJ8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=CQsNwxjC_FE:e1QJ5IVoxJ8:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/CQsNwxjC_FE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/6359064537052964428/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=6359064537052964428&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/6359064537052964428?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/6359064537052964428?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/CQsNwxjC_FE/amazing-video.html" title="Amazing Video" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/04/amazing-video.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0ENQXYzeip7ImA9WxJTEUs.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-8301061671672133171</id><published>2009-04-19T13:20:00.003-05:00</published><updated>2009-04-19T13:28:10.882-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-19T13:28:10.882-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="video" /><category scheme="http://www.blogger.com/atom/ns#" term="streaming" /><category scheme="http://www.blogger.com/atom/ns#" term="blackberry" /><category scheme="http://www.blogger.com/atom/ns#" term="crackberry" /><category scheme="http://www.blogger.com/atom/ns#" term="qik" /><category scheme="http://www.blogger.com/atom/ns#" term="storm" /><category scheme="http://www.blogger.com/atom/ns#" term="live" /><title>Qik on the Blackberry Storm</title><content type="html">&lt;a href="http://www.blogger.com/www.qik.com/sqlgeek"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 5px 0px; WIDTH: 351px; CURSOR: hand; HEIGHT: 263px" alt="" src="http://i.d.com.com/i/dl/media/dlimage/20/85/82/208582_medium.jpeg" border="0" /&gt;&lt;/a&gt;I have fooled around with this app for the last few days and it has the potential to be really good. It is not true live streaming on the Blackberry Storm. It may say it is live, but it doesn't actually start uploading until after you stop the recording on the device (which is not truly live).&lt;br /&gt;&lt;br /&gt;&lt;div&gt;The version I had was 0.1.4 and I played around with some of the settings - it only gave me a choice of CDMA or to do nothing in the upload options. I decided to check and see if there was a newer version. I downloaded again and it was 0.1.8 - this gave me the 3G option finally. However, the speed of upload did not improve at all - still extremely slow in my opinion. Also, I had a couple of fewer choices in the menu and the application would not close at all. I have to do a battery pull each time I open the app even if I don't record a video.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Without a doubt it could be the OS I am running - it is a Hybrid 4.7.0.114 - still the app would shut down properly before the upgrade, so that has me baffled. Finally, if you are lacking in device memory, it is nearly impossible to run this app because it brings the entire phone to a screeching halt if you try to navigate with it open (thus the constant battery pull).&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;I wrote about this on the &lt;a href="http://crackberry.com/qik-your-blackberry-storm#comment-133731"&gt;Crackberry.com Comments section &lt;/a&gt;for the announcement of the release of a Storm version.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=6jGlgtpCjz0:jP2L_FnE2cc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=6jGlgtpCjz0:jP2L_FnE2cc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=6jGlgtpCjz0:jP2L_FnE2cc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=6jGlgtpCjz0:jP2L_FnE2cc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=6jGlgtpCjz0:jP2L_FnE2cc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=6jGlgtpCjz0:jP2L_FnE2cc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=6jGlgtpCjz0:jP2L_FnE2cc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=6jGlgtpCjz0:jP2L_FnE2cc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/6jGlgtpCjz0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/8301061671672133171/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=8301061671672133171&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8301061671672133171?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8301061671672133171?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/6jGlgtpCjz0/qik-on-blackberry-storm.html" title="Qik on the Blackberry Storm" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/04/qik-on-blackberry-storm.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C04ERXszfyp7ImA9WxVaF0s.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-4827734897876054265</id><published>2009-04-14T21:17:00.001-05:00</published><updated>2009-04-14T21:18:24.587-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-14T21:18:24.587-05:00</app:edited><title>I Love This Skit...</title><content type="html">&lt;object height="296" width="512"&gt;&lt;param name="movie" value="http://www.hulu.com/embed/Ehx5rv4H2X8P37EooR3hWQ/50"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;embed src="http://www.hulu.com/embed/Ehx5rv4H2X8P37EooR3hWQ/50" type="application/x-shockwave-flash" allowfullscreen="true" width="512" height="296"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;I have probably watched this 20 times, but I think it is one of the funniest things I have ever seen...&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=pXRtIre4ss4:hEHQk77n8Yw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=pXRtIre4ss4:hEHQk77n8Yw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=pXRtIre4ss4:hEHQk77n8Yw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=pXRtIre4ss4:hEHQk77n8Yw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=pXRtIre4ss4:hEHQk77n8Yw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=pXRtIre4ss4:hEHQk77n8Yw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=pXRtIre4ss4:hEHQk77n8Yw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=pXRtIre4ss4:hEHQk77n8Yw:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/pXRtIre4ss4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/4827734897876054265/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=4827734897876054265&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4827734897876054265?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4827734897876054265?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/pXRtIre4ss4/i-love-this-skit.html" title="I Love This Skit..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/04/i-love-this-skit.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C04HR3Y6cCp7ImA9WxVaFk4.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-4524894043040014656</id><published>2009-04-13T08:52:00.003-05:00</published><updated>2009-04-13T09:12:16.818-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-13T09:12:16.818-05:00</app:edited><title>Crazy Monday</title><content type="html">So far this morning it has taken almost 2 hours for my e-mail to get settled, although I still don't think it is working correctly. Normally, Mondays are pretty wild anyway, but when you add a week of Spring Break on top of major Thunderstorms, all you-know-what breaks loose. Now that my e-mail seems to be straightened out, it is extremely slow. We have about 10 schools that have either lost power completely or have no network connectivity nor phones. Plus, if all of this stuff wasn't enough, people are having trouble logging into Active Directory based authentication applications not realizing that it is all related (and therefore my phone is ringing off the hook). Not to mention that the lights keep flickering making the battery backups click and beep each time it happens. Perhaps I will be able to get something done by lunch time today?!?!&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=r7Gh9kmu3rg:yZM8sEr4K6A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=r7Gh9kmu3rg:yZM8sEr4K6A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=r7Gh9kmu3rg:yZM8sEr4K6A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=r7Gh9kmu3rg:yZM8sEr4K6A:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=r7Gh9kmu3rg:yZM8sEr4K6A:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=r7Gh9kmu3rg:yZM8sEr4K6A:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=r7Gh9kmu3rg:yZM8sEr4K6A:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=r7Gh9kmu3rg:yZM8sEr4K6A:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/r7Gh9kmu3rg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/4524894043040014656/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=4524894043040014656&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4524894043040014656?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4524894043040014656?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/r7Gh9kmu3rg/crazy-monday.html" title="Crazy Monday" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/04/crazy-monday.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYMR3c-fSp7ImA9WxVbGUs.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-8426524377662648908</id><published>2009-04-05T15:07:00.000-05:00</published><updated>2009-04-05T15:09:46.955-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-05T15:09:46.955-05:00</app:edited><title>Funny Video...</title><content type="html">&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/keA8lG-jTI0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/keA8lG-jTI0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br&gt;Had to share...&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=lhgA9v5guzs:7cLOUe3oHj8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=lhgA9v5guzs:7cLOUe3oHj8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=lhgA9v5guzs:7cLOUe3oHj8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=lhgA9v5guzs:7cLOUe3oHj8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=lhgA9v5guzs:7cLOUe3oHj8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=lhgA9v5guzs:7cLOUe3oHj8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=lhgA9v5guzs:7cLOUe3oHj8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=lhgA9v5guzs:7cLOUe3oHj8:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/lhgA9v5guzs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/8426524377662648908/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=8426524377662648908&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8426524377662648908?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/8426524377662648908?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/lhgA9v5guzs/funny-video.html" title="Funny Video..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/04/funny-video.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYARXk_fCp7ImA9WxVbFEs.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-2316072731690097079</id><published>2009-03-30T21:17:00.002-05:00</published><updated>2009-03-30T21:55:44.744-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-30T21:55:44.744-05:00</app:edited><title>Dishwasher Blues...</title><content type="html">It has been crazy the last couple of days with our dishwasher. There was a pool of water at the bottom of the unit right below the heating element as if the pump wasn't draining all of he water out. After everything I had read online, we had determined that the pump in question was at least $150.00. My thought was that it would be easier to go ahead and purchase a brand new dishwasher. This one is nearly 10 years old, and it has served us well.&lt;br /&gt;&lt;br /&gt;So I started taking the thing apart - flipped the breaker, popped the kick plate, unscrewed the brackets and slid it out as far as I could. I unscrewed the power box, removed the wire nuts and the ground screw. I loosened the drain tube and got ready to remove the water source. I went through every tool I have in my storage containers - not the first adjustable wrench in the entire house...&lt;br /&gt;&lt;br /&gt;I got really frustrated and got what dishes were in the sink ready to wash by hand. At this point I figured out that the drain was clogged. I read somewhere that this could be an issue, even if the tube from the dishwasher to the drain isn't clogged. I took a plunger to the sink and cleared out the mess. I put everything back together and tested the unit - it drained just like it was supposed to this time! So I have put everything back and we are good.to.go. Hopefully this resolved the issue and we won't have to spend ANY money for a while on a major appliance.&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=7kq7omnGRB0:z5YqEFmENJ0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=7kq7omnGRB0:z5YqEFmENJ0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=7kq7omnGRB0:z5YqEFmENJ0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=7kq7omnGRB0:z5YqEFmENJ0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=7kq7omnGRB0:z5YqEFmENJ0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=7kq7omnGRB0:z5YqEFmENJ0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=7kq7omnGRB0:z5YqEFmENJ0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=7kq7omnGRB0:z5YqEFmENJ0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/7kq7omnGRB0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/2316072731690097079/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=2316072731690097079&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2316072731690097079?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2316072731690097079?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/7kq7omnGRB0/dishwasher-blues.html" title="Dishwasher Blues..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/03/dishwasher-blues.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEUFRXg_fSp7ImA9WxVbEEo.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-3686446923577533285</id><published>2009-03-26T08:45:00.003-05:00</published><updated>2009-03-26T09:03:34.645-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-26T09:03:34.645-05:00</app:edited><title>Letter shock for grieving parents...</title><content type="html">&lt;embed name="flashObj" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=" src="http://c.brightcove.com/services/viewer/federated_f8/1127703951" width="486" height="412" type="application/x-shockwave-flash" bgcolor="#FFFFFF" flashvars="videoId=17525905001&amp;amp;playerId=1127703951&amp;amp;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&amp;amp;servicesURL=http://services.brightcove.com/services&amp;amp;cdnURL=http://admin.brightcove.com&amp;amp;domain=embed&amp;amp;autoStart=false&amp;amp;" base="http://admin.brightcove.com" seamlesstabbing="false" swliveconnect="true"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.manchestereveningnews.co.uk/news/s/1104477_letter_shock_for_grieving_parents"&gt;Letter shock for grieving parents - News - Manchester Evening News&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;The parents of a British teen, who died suddenly two months ago, received a disturbing letter from the girl's high school saying she needs to improve her attendance or can't go to the prom, the Manchester Evening News reported.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Posted using &lt;a href="http://sharethis.com/"&gt;ShareThis&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=2FcNnvQXAwA:Q2NoEIsO_2g:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=2FcNnvQXAwA:Q2NoEIsO_2g:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=2FcNnvQXAwA:Q2NoEIsO_2g:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=2FcNnvQXAwA:Q2NoEIsO_2g:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=2FcNnvQXAwA:Q2NoEIsO_2g:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=2FcNnvQXAwA:Q2NoEIsO_2g:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=2FcNnvQXAwA:Q2NoEIsO_2g:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=2FcNnvQXAwA:Q2NoEIsO_2g:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/2FcNnvQXAwA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/3686446923577533285/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=3686446923577533285&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/3686446923577533285?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/3686446923577533285?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/2FcNnvQXAwA/letter-shock-for-grieving-parents.html" title="Letter shock for grieving parents..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/03/letter-shock-for-grieving-parents.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEcDQ3kzfCp7ImA9WxVbEEo.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-2578797386456048550</id><published>2009-03-25T14:35:00.005-05:00</published><updated>2009-03-26T09:01:12.784-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-26T09:01:12.784-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="SQL NET FIND FOR WORK" /><title>FOR and NET FILE</title><content type="html">I was presented with the task of figuring out how to kick users off of a server who did not properly log off at the end of their work day. These folks would unknowingly hang on to a file that pretty well kinked up the entire schedule. The solution to this seems easy enough, right? Problem is, most of the scripts that are out there are an all-or-nothing solution. Most of our users utilize a terminal server to get to the app that we want to disable when our nightly processes are to begin. Those users that are directly connecting through a mapped drive would not be included in a NET SESSION /DELETE command. Also, that could potentially knock off someone that may be connected to that server for another purpose that didn't include the application in question.&lt;br /&gt;&lt;br /&gt;In my search for other possibilities in the NET suite of commands, I found NET FILE. This lists all of the open files on the machine the command is executed on with the ID, File path and name, user id and 1 or 0 for locked file indicator. Since I didn't want to knock out the main user id that connects up the middle-ware, I had to find a way to tell it to kick out all users except for one and only those that have locked files. This is where I found that the FOR command was helpful. I was able to get it to pull the three fields I needed into variable, use IF condition to test for the values I wanted and, if it found them, it passed the ID into the NET FILE ID /CLOSE command.&lt;br /&gt;&lt;br /&gt;We tested it last night as a batch file in a scheduled task and it worked great! I am excited that I have discovered this (although it has been around forever) and the potential that it has to make a lot of tasks run more smoothly or even be completely automated!&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=wevKqc8AfU4:lpfK80lDtS0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=wevKqc8AfU4:lpfK80lDtS0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=wevKqc8AfU4:lpfK80lDtS0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=wevKqc8AfU4:lpfK80lDtS0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=wevKqc8AfU4:lpfK80lDtS0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=wevKqc8AfU4:lpfK80lDtS0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=wevKqc8AfU4:lpfK80lDtS0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=wevKqc8AfU4:lpfK80lDtS0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/wevKqc8AfU4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/2578797386456048550/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=2578797386456048550&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2578797386456048550?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2578797386456048550?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/wevKqc8AfU4/for-and-net-file.html" title="FOR and NET FILE" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/03/for-and-net-file.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYDRnoyeSp7ImA9WxVUGU8.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-9115257778778306208</id><published>2009-03-24T14:45:00.003-05:00</published><updated>2009-03-24T14:49:37.491-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-24T14:49:37.491-05:00</app:edited><title>Georgians help needed...</title><content type="html">&lt;a href="http://georgiafrontpage.blogspot.com/2009/03/georgians-help-needed-to-locate-harnful.html"&gt;&lt;img id="BLOGGER_PHOTO_ID_5316843453643359714" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_tbsrvfgyr3c/Sck484TGBeI/AAAAAAAACCg/bAej5gzJ19k/s400/georgians.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;To find a spell checker...&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=Zcu4iZYknw0:TMLzRh8cyh4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=Zcu4iZYknw0:TMLzRh8cyh4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=Zcu4iZYknw0:TMLzRh8cyh4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=Zcu4iZYknw0:TMLzRh8cyh4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=Zcu4iZYknw0:TMLzRh8cyh4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=Zcu4iZYknw0:TMLzRh8cyh4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=Zcu4iZYknw0:TMLzRh8cyh4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=Zcu4iZYknw0:TMLzRh8cyh4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/Zcu4iZYknw0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/9115257778778306208/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=9115257778778306208&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/9115257778778306208?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/9115257778778306208?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/Zcu4iZYknw0/georgians-help-needed.html" title="Georgians help needed..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_tbsrvfgyr3c/Sck484TGBeI/AAAAAAAACCg/bAej5gzJ19k/s72-c/georgians.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/03/georgians-help-needed.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4FQHo5eSp7ImA9WxVUGUw.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-5810148629162636277</id><published>2009-03-24T11:39:00.002-05:00</published><updated>2009-03-24T11:58:31.421-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-24T11:58:31.421-05:00</app:edited><title>Schönes Jubiläum!</title><content type="html">&lt;a href="http://www.facebook.com/photo.php?pid=71408&amp;amp;l=8d95e5ea37&amp;amp;id=1193733400"&gt;&lt;img style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 295px; CURSOR: hand" alt="" src="http://photos-a.ak.fbcdn.net/photos-ak-sf2p/v250/91/81/1193733400/n1193733400_71408_3722.jpg" border="0" /&gt;&lt;/a&gt;8 years ago today my wife and I began our life together as one. It has not been the smoothest of roads, but I wouldn't give anything for it! Just like anyone else, we've had our ups and downs, but we got throught it... together. There have been many mileposts along the way - home ownership, vehicle ownership, many churches, many jobs, but I would say the best thing that has happened to us has been our boys. Our two little men are growing up fast. I can't thank my wife enough for giving me such magnificent gifts - her hand in marriage, her trust and belief in me and those two little miracles that sleep in the next room every night. I hope to one day be able to show her how much the three of them mean to me, but I don't know if words will ever be able to express the depth, height, width and length of its measure. All I can offer is I Love You!!!&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=zzCgWZiKzdI:B0Ab-BjGdd4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=zzCgWZiKzdI:B0Ab-BjGdd4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=zzCgWZiKzdI:B0Ab-BjGdd4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=zzCgWZiKzdI:B0Ab-BjGdd4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=zzCgWZiKzdI:B0Ab-BjGdd4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=zzCgWZiKzdI:B0Ab-BjGdd4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=zzCgWZiKzdI:B0Ab-BjGdd4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=zzCgWZiKzdI:B0Ab-BjGdd4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/zzCgWZiKzdI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/5810148629162636277/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=5810148629162636277&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/5810148629162636277?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/5810148629162636277?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/zzCgWZiKzdI/schones-jubilaum.html" title="Schönes Jubiläum!" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/03/schones-jubilaum.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8BRHc4eCp7ImA9WxVUGE4.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-4716916270878662510</id><published>2009-03-23T13:41:00.002-05:00</published><updated>2009-03-23T13:44:15.930-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-23T13:44:15.930-05:00</app:edited><title>I'm Baaaaaaaack...</title><content type="html">Don't know why I have not posted in so long. I promise I will try to do better.&lt;br /&gt;&lt;br /&gt;We had a rough night with the boys last night. With the addition of the bunk beds I think the baby is out of his comfort zone. Needless to say, big brother has a hard time sleeping with full on crying going on in the bed below. So the little one came and slept with us last night. He moves constantly - I don't know that any of us slept much at all. It will be interesting to see what happens this evening...&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=8W5EJ5iGBMA:dL1zsKt2KbU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=8W5EJ5iGBMA:dL1zsKt2KbU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=8W5EJ5iGBMA:dL1zsKt2KbU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=8W5EJ5iGBMA:dL1zsKt2KbU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=8W5EJ5iGBMA:dL1zsKt2KbU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=8W5EJ5iGBMA:dL1zsKt2KbU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=8W5EJ5iGBMA:dL1zsKt2KbU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=8W5EJ5iGBMA:dL1zsKt2KbU:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/8W5EJ5iGBMA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/4716916270878662510/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=4716916270878662510&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4716916270878662510?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/4716916270878662510?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/8W5EJ5iGBMA/im-baaaaaaaack.html" title="I'm Baaaaaaaack..." /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2009/03/im-baaaaaaaack.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEFRH48eCp7ImA9WxRUEUQ.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-2366375209928228035</id><published>2008-11-20T10:23:00.001-05:00</published><updated>2008-11-20T10:23:35.070-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-20T10:23:35.070-05:00</app:edited><title /><content type="html">At home sick - caught what the boys had...&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=JfwOULp86F8:EAJ43TppVfc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=JfwOULp86F8:EAJ43TppVfc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=JfwOULp86F8:EAJ43TppVfc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=JfwOULp86F8:EAJ43TppVfc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=JfwOULp86F8:EAJ43TppVfc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=JfwOULp86F8:EAJ43TppVfc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=JfwOULp86F8:EAJ43TppVfc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=JfwOULp86F8:EAJ43TppVfc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/JfwOULp86F8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/2366375209928228035/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=2366375209928228035&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2366375209928228035?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/2366375209928228035?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/JfwOULp86F8/at-home-sick-caught-what-boys-had.html" title="" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2008/11/at-home-sick-caught-what-boys-had.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UDRHgyeSp7ImA9WxRVFk0.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-1697975887766205244</id><published>2008-11-13T13:34:00.001-05:00</published><updated>2008-11-13T13:34:35.691-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-13T13:34:35.691-05:00</app:edited><title /><content type="html">Trying out ping.fm for the first time&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=EmmLPjG_mPY:PZp9owWuTP4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=EmmLPjG_mPY:PZp9owWuTP4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=EmmLPjG_mPY:PZp9owWuTP4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=EmmLPjG_mPY:PZp9owWuTP4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=EmmLPjG_mPY:PZp9owWuTP4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=EmmLPjG_mPY:PZp9owWuTP4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=EmmLPjG_mPY:PZp9owWuTP4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=EmmLPjG_mPY:PZp9owWuTP4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/EmmLPjG_mPY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/1697975887766205244/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=1697975887766205244&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/1697975887766205244?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/1697975887766205244?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/EmmLPjG_mPY/trying-out-ping.html" title="" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2008/11/trying-out-ping.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcMQ3w5eyp7ImA9WxRXEUs.&quot;"><id>tag:blogger.com,1999:blog-18243792.post-6843023814005171990</id><published>2008-10-16T08:02:00.003-05:00</published><updated>2008-10-16T08:18:02.223-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-16T08:18:02.223-05:00</app:edited><title>Post Turtle</title><content type="html">&lt;a href="http://bp0.blogger.com/_iKcZ3qcCmyo/R_y2UoHUGcI/AAAAAAAAGq0/eb1fZGHoWxs/s400/post+turtle.jpg"&gt;&lt;img style="FLOAT: right; MARGIN: 0px 0px 10px 10px; WIDTH: 200px; CURSOR: hand" alt="" src="http://bp0.blogger.com/_iKcZ3qcCmyo/R_y2UoHUGcI/AAAAAAAAGq0/eb1fZGHoWxs/s400/post+turtle.jpg" border="0" /&gt;&lt;/a&gt;While suturing a cut on the hand of a Texas Rancher whose hand had been caught in a gate while working cattle, the doctor struck up a conversation with the old man.&lt;br /&gt;&lt;br /&gt;Eventually, the topic got around to Obama and his bid for the presidency.&lt;br /&gt;&lt;br /&gt;The old rancher said, Well, ya know, Obama is a 'post turtle'.&lt;br /&gt;Not being familiar with the term, the doctor asked, 'What is a post turtle'?&lt;br /&gt;&lt;br /&gt;The old rancher said, When you're driving down a country road and you come across a fence post with a turtle balanced on top, that's a 'post turtle'.&lt;br /&gt;&lt;br /&gt;The old rancher saw a puzzled look on the doctor's face, so he continued to explain.&lt;br /&gt;&lt;br /&gt;'You know he didn't get up there by himself, he sure as heck doesn't belong up there, he doesn't know what to do while he is up there and you just wonder what kind of an idiot put him there in the first place.'&lt;br /&gt;&lt;br /&gt;&lt;a href="http://tinyurl.com/2ue8z4"&gt;&lt;img src="http://tinyurl.com/yrmhlc" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href="http://www.jbrowndesign.net" target="_blank"&gt;Web Hosting&lt;/a&gt;
&lt;br /&gt;
&lt;a href="https://www.ixwebhosting.com/cgi-bin/affiliates/clickthru.cgi?id=bensdad03"&gt;Check Out IXWebHosting&lt;/a&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=oQPZIBrI7bA:cyGgbO71sh0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=oQPZIBrI7bA:cyGgbO71sh0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=oQPZIBrI7bA:cyGgbO71sh0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=oQPZIBrI7bA:cyGgbO71sh0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=oQPZIBrI7bA:cyGgbO71sh0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?i=oQPZIBrI7bA:cyGgbO71sh0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=oQPZIBrI7bA:cyGgbO71sh0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/sqlgeek?a=oQPZIBrI7bA:cyGgbO71sh0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/sqlgeek?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/sqlgeek/~4/oQPZIBrI7bA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://joinleft.blogspot.com/feeds/6843023814005171990/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=18243792&amp;postID=6843023814005171990&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/6843023814005171990?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/18243792/posts/default/6843023814005171990?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/sqlgeek/~3/oQPZIBrI7bA/post-turlte.html" title="Post Turtle" /><author><name>Jason Brown</name><uri>https://plus.google.com/114265345258074737164</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-IrQlUBDn-6M/AAAAAAAAAAI/AAAAAAAAIsY/tEGyXmDanYw/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp0.blogger.com/_iKcZ3qcCmyo/R_y2UoHUGcI/AAAAAAAAGq0/eb1fZGHoWxs/s72-c/post+turtle.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://joinleft.blogspot.com/2008/10/post-turlte.html</feedburner:origLink></entry></feed>
