<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-28097572</id><updated>2012-01-14T21:02:21.093-06:00</updated><category term='Local Characters'/><category term='Iowa Snow Storm'/><title type='text'>KnightStar</title><subtitle type='html'>Chess, Astronomy, Photography, and whats on my mind.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>50</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-28097572.post-7485422009911511897</id><published>2012-01-14T19:49:00.003-06:00</published><updated>2012-01-14T20:00:07.193-06:00</updated><title type='text'>Software Tuning for fun</title><content type='html'>&lt;style type="text/css"&gt;td p { margin-bottom: 0in; }p { margin-bottom: 0.08in; }&lt;/style&gt;  &lt;p style="margin-bottom: 0in;"&gt;If you asked me 15 years ago what my primary programming language was, I would have answered “c”. But it is very hard to produce a gui app in c, and shortly there after I started using Delphi.  Delphi with a add on MySQL Database Library called MySQLDAC makes a powerful environement allowing the quick development of useful database applications.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;As I became more and more interested in Linux (I have always liked obscure OS's since I used to use OS/2),  I became aware of a Delphi for Linux (and other OS's) called Lazarus.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;In reality it is two products in one, the front end app is indeed called Lazarus and is a GUI Application Development Environment very similar to Delphi, but behind it sits Free Pascal.  Free Pascal is a Object Pascal compiler that is almost identical to the Object Pascal that Borland came up with all those years ago.  So in effect you write your app in Lazarus and then Lazarus hands it over to Free Pascal to acually compile it.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;So if you want to write a GUI App, you can use Lazarus and if you want to create a non GUI App, such as something you can use in a Cron App (Cron runs tasks in the background in Unix enviroments), it  can be written in straight Pascal.  It is easier to write then c and everything seems wonderful in the world.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;Now my primary Desktop is a HP with a AMD 64 bit Quad Processor.  More specifically it is a Phenom 9150e.  And at the time I had a Dual Core Pentium (32 bit) cpu which I used for traveling and when I am otherwise away from home. I found a copy of the Dhrystone benchmark written in Pascal and on a lark ran it on the laptop and then later for comparison purposes on the desktop.  The laptop blew the desktop away.  How was this possible, the desktop had a 64 bit cpu  while the laptop was running an older 32 bit cpu.   &lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;Well, AMD Processors have their own instruction sets that is similar to the intel instruction set but NOT the same.  If an AMD  processor sees an Intel instruction it runs it in a interpeted mode, which gives correct results but runs much slower.  Well the Free Pascal Compiler seems to generate only Intel instructions and there is very little tuning that can be done.  There were a couple of recommendations given on the Lazarus Forum, but it made virtually no difference.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;I then found the Dhrystone Benchmark written I c, compiled and ran it on both machines and the run times were much as I would have expected, with it running much faster on the desktop.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;In truth with the speed of modern computers you really aren't going to notice the slowdown that much unless you throw a lot of data at it. The moral of this part of the story is if want to run Free Pascal and want it to run fast, get an Intel Processor.  To be fair to Lazarus and Free Pascal, they are a very small project that is only supported by hobbyists alone.&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;A few weeks ago I decided to have a little refresher course in c,  so I wrote some programs that created some large MySQL tables and then did some crunching with them.  MySQL was actually doing most of the work, but the c programs were issuing the queries to be ran.  Well you can tune c programs written using the gcc compiler a lot better then Free Pascal.  But gcc, is supported by large corporations (like IBM and HP)  and has a lot more money to work with.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;On the desktop I tried compiling it three different ways:&lt;/p&gt;  &lt;ol&gt;&lt;li&gt;&lt;p style="margin-bottom: 0in;"&gt;No tuning: gcc Program.c -o  Program `mysql_config --cflags –libs`&lt;/p&gt;  &lt;/li&gt;&lt;li&gt;&lt;p style="margin-bottom: 0in;"&gt;Using mtune switch: gcc  -mtune=athlon64 Program.c -o Program `mysql_config --cflags –libs`&lt;/p&gt;  &lt;/li&gt;&lt;li&gt;&lt;p style="margin-bottom: 0in;"&gt;Using the march switch: gcc  -march=native Program.c -o Program `mysql_config --cflags –libs`&lt;/p&gt; &lt;/li&gt;&lt;/ol&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;I ran the programs multiple timmes giving me a average runtime:&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;table cellpadding="3" cellspacing="0" width="379"&gt;  &lt;col width="80"&gt;  &lt;col width="81"&gt;  &lt;col width="112"&gt;  &lt;col width="81"&gt;  &lt;tbody&gt;&lt;tr valign="TOP"&gt;   &lt;td style="border-width: 1px medium 1px 1px; border-style: solid none solid solid; border-color: rgb(0, 0, 0) -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0.04in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: 1px medium 1px 1px; border-style: solid none solid solid; border-color: rgb(0, 0, 0) -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0.04in 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;No Tuning&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: 1px medium 1px 1px; border-style: solid none solid solid; border-color: rgb(0, 0, 0) -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0.04in 0in 0.04in 0.04in;" width="112"&gt;    &lt;p&gt;mtune=athlon64&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border: 1px solid rgb(0, 0, 0); padding: 0.04in;" width="81"&gt;    &lt;p&gt;march=native&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr valign="TOP"&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;Wall Time&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;6.2 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="112"&gt;    &lt;p&gt;6.19 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;6.22 seconds&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr valign="TOP"&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;User App time&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;0.75 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="112"&gt;    &lt;p&gt;0.75 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;0.77 seconds&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr valign="TOP"&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="112"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;The gcc web site recommends using “-march=native” which in this case gave the worst performance, but not by much.  I did just as well by not tuning at all!!!  For the record, wall time is the actual runtime as seen on a clock.  I got these results by running the script using the Unix time command.&lt;/p&gt;  &lt;p style="margin-bottom: 0in;"&gt;But, I have since upgraded my laptop to a Intel i5 cpu and the results are a little different.  &lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;table cellpadding="3" cellspacing="0" width="379"&gt;  &lt;col width="80"&gt;  &lt;col width="78"&gt;  &lt;col width="113"&gt;  &lt;col width="81"&gt;  &lt;tbody&gt;&lt;tr valign="TOP"&gt;   &lt;td style="border-width: 1px medium 1px 1px; border-style: solid none solid solid; border-color: rgb(0, 0, 0) -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0.04in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: 1px medium 1px 1px; border-style: solid none solid solid; border-color: rgb(0, 0, 0) -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0.04in 0in 0.04in 0.04in;" width="78"&gt;    &lt;p&gt;No Tuning&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: 1px medium 1px 1px; border-style: solid none solid solid; border-color: rgb(0, 0, 0) -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0.04in 0in 0.04in 0.04in;" width="113"&gt;    &lt;p&gt;mtune=native&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border: 1px solid rgb(0, 0, 0); padding: 0.04in;" width="81"&gt;    &lt;p&gt;march=native&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr valign="TOP"&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;Wall Time&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="78"&gt;    &lt;p&gt;5.68 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="113"&gt;    &lt;p&gt;4.78 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;4.62 seconds&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr valign="TOP"&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;User App time&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="78"&gt;    &lt;p&gt;1.08 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="113"&gt;    &lt;p&gt;0.75 seconds&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;0.74 seconds&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr valign="TOP"&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="80"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="78"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium medium 1px 1px; border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0in 0.04in 0.04in;" width="113"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-width: medium 1px 1px; border-style: none solid solid; border-color: -moz-use-text-color rgb(0, 0, 0) rgb(0, 0, 0); padding: 0in 0.04in 0.04in;" width="81"&gt;    &lt;p&gt;&lt;br /&gt;   &lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;p style="margin-bottom: 0in;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0in;"&gt;So in this case, tuning seems to have helped.  In both of these tables most of the wall times appears to be spent waiting on the MySQL Server to finish running the queries.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-7485422009911511897?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/7485422009911511897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=7485422009911511897' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/7485422009911511897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/7485422009911511897'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2012/01/software-tuning-for-fun.html' title='Software Tuning for fun'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5888316378082072103</id><published>2011-12-16T10:45:00.001-06:00</published><updated>2011-12-16T10:48:24.660-06:00</updated><title type='text'>Haimann</title><content type='html'>&lt;h2&gt;&lt;b&gt;HAIMANN&lt;/b&gt; is a very rare last name&lt;/h2&gt;&lt;h3&gt;&lt;b&gt;Very few last names in the US are &lt;b&gt;HAIMANN&lt;/b&gt;&lt;/b&gt;&lt;/h3&gt;&lt;h4&gt;&lt;b&gt;Be proud of your &lt;b&gt;unique&lt;/b&gt; last name!&lt;/b&gt;&lt;/h4&gt;&lt;h5&gt;&lt;b&gt;source: &lt;a href="http://www.namestatistics.com/" target="_blank"&gt;namestatistics.com&lt;/a&gt;&lt;/b&gt;&lt;/h5&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5888316378082072103?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5888316378082072103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5888316378082072103' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5888316378082072103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5888316378082072103'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2011/12/haimann-is-very-rare-last-name-very-few.html' title='Haimann'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-3509458551330856889</id><published>2011-07-11T13:01:00.014-05:00</published><updated>2011-07-11T13:53:58.229-05:00</updated><title type='text'>Chess Beginners avoid the QGA</title><content type='html'>Really, beginners shouldn't play Queens Gambit Accepted.&lt;br /&gt;&lt;br /&gt;1. d4     d5 &lt;br /&gt;2. c4&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-TOPUw5j_xwQ/Ths9a1cwDZI/AAAAAAAAAmo/rcNVOMOA2O0/s1600/Move2a.jpeg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 278px;" src="http://1.bp.blogspot.com/-TOPUw5j_xwQ/Ths9a1cwDZI/AAAAAAAAAmo/rcNVOMOA2O0/s320/Move2a.jpeg" alt="" id="BLOGGER_PHOTO_ID_5628159690563128722" border="0" /&gt;&lt;/a&gt;The c4 pawn looks free, but it really isn't.  Once black gets the pawn it is very hard to hold on to it.  Usually white responds with a quick e4, which not only puts a discovered attack on the black pawn (from the light squared Bishop) but also gets control of the Center.  White has more then gotten compensation for that pawn.  I'm not saying &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;QGA&lt;/span&gt; isn't playable from blacks side.  It is, but it usually takes a somewhat seasoned player.&lt;br /&gt;&lt;br /&gt;I can and have had a lot of fun when a unseasoned player takes my pawn.  The games I get like this can be a lot of fun for me, but they must be a little humiliating from blacks perspective.&lt;br /&gt;&lt;br /&gt;I played a recent game on &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;FICS&lt;/span&gt; where my opponent accepted the gambit.&lt;br /&gt;&lt;br /&gt;1. d4     d5&lt;br /&gt;2. c4    dc (short hand for d5 x c4)&lt;br /&gt;3. e4    e5&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/-VVLOXGSBvuk/Ths9VZBgU6I/AAAAAAAAAmg/txRxLvAF0K0/s1600/Move3b.jpeg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 278px;" src="http://3.bp.blogspot.com/-VVLOXGSBvuk/Ths9VZBgU6I/AAAAAAAAAmg/txRxLvAF0K0/s320/Move3b.jpeg" alt="" id="BLOGGER_PHOTO_ID_5628159597033313186" border="0" /&gt;&lt;/a&gt;Black would really love white to &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;de&lt;/span&gt; (d4 x e5).  Then black could exchange Queens and after white takes back with his King (he has no choice at that point,) white can no longer castle.  After that black looks forward to at least an equal game, if not better.&lt;br /&gt;&lt;br /&gt;4. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;Nf&lt;/span&gt;3        &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;Bb&lt;/span&gt;4+&lt;br /&gt;5. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;Nbd&lt;/span&gt;2 (That is Knight on b to d2)&lt;br /&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;              Bxd&lt;/span&gt;2&lt;br /&gt;6. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;Qxd&lt;/span&gt;2&lt;br /&gt;  Studies indicate that unless there is additional compensation a Bishop for a Knight is a bad exchange.  A mathematical analysis says that Knights are worth 3 points, but a Bishop is really     worth     3.5.&lt;br /&gt;6.                            ed&lt;br /&gt;7. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;Bxc&lt;/span&gt;4        &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;Nf&lt;/span&gt;6&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-WxhouPUwumc/Ths9NcqawII/AAAAAAAAAmY/e3Eq35ZYfYM/s1600/Move7b.jpeg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 266px;" src="http://1.bp.blogspot.com/-WxhouPUwumc/Ths9NcqawII/AAAAAAAAAmY/e3Eq35ZYfYM/s320/Move7b.jpeg" alt="" id="BLOGGER_PHOTO_ID_5628159460571267202" border="0" /&gt;&lt;/a&gt;8. e5             Ne4&lt;br /&gt;9. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;Qxd&lt;/span&gt;4        &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;Qxd&lt;/span&gt;4&lt;br /&gt;10. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;Nxd&lt;/span&gt;4      o-o&lt;br /&gt;11. o-o          c5&lt;br /&gt;12. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;Nf&lt;/span&gt;3        Nd7&lt;br /&gt;13. Re1&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-C4hNRM0TEDY/Ths9IDGTrWI/AAAAAAAAAmQ/oypkYO8B6Ys/s1600/Move13a.jpeg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 266px;" src="http://1.bp.blogspot.com/-C4hNRM0TEDY/Ths9IDGTrWI/AAAAAAAAAmQ/oypkYO8B6Ys/s320/Move13a.jpeg" alt="" id="BLOGGER_PHOTO_ID_5628159367809576290" border="0" /&gt;&lt;/a&gt;Well now,  black is now down a whole pawn and where does that Knight think he is going.  In truth did I plan this, uh, no.  This was speed chess (time control was 2 minutes to start and 12 seconds added to your clock for each move you make) and all I was doing was making natural moves and not thinking about it very hard.  And now black was going to be a whole minor piece down. I refuse to play slow chess on &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;FICS&lt;/span&gt;, there is too much cheating.&lt;br /&gt;&lt;br /&gt;13.          &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;Nxf&lt;/span&gt;2&lt;br /&gt;14.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;Kxf&lt;/span&gt;2        Re8&lt;br /&gt;15.  e6                 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;fe&lt;/span&gt;&lt;br /&gt;16.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;Bxe&lt;/span&gt;6+    &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;Kf&lt;/span&gt;8&lt;br /&gt;17.  Bf7&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-ce-D5Bkypew/Ths9DN-bpUI/AAAAAAAAAmI/JgcZV7VFR2I/s1600/Move17a.jpeg"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 278px;" src="http://1.bp.blogspot.com/-ce-D5Bkypew/Ths9DN-bpUI/AAAAAAAAAmI/JgcZV7VFR2I/s320/Move17a.jpeg" alt="" id="BLOGGER_PHOTO_ID_5628159284829988162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/-DGnvxCkLC-Y/Ths85dq_EqI/AAAAAAAAAmA/aexRMMmVe_U/s1600/Move7b.jpeg"&gt;&lt;br /&gt;&lt;/a&gt;I realized right after making this move, that I had created a Check-Mate threat (&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;Bd&lt;/span&gt;6.)  Blacks best move here is g6, but even with best play black will be on the defensive for the rest of the game.&lt;br /&gt;&lt;br /&gt;17.                                   &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;Nf&lt;/span&gt;6&lt;br /&gt;18.   &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;Bd&lt;/span&gt;6+     &lt;br /&gt;&lt;br /&gt;Black now has to block the Bishop with the only piece available, the Rook.  If I had his position, I would resign.  All I have to do now is get light squared Bishop out of the way and I will win the Rook outright.&lt;br /&gt;&lt;br /&gt;18.           Re7&lt;br /&gt;19.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;Bxc&lt;/span&gt;8              &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;Bxd&lt;/span&gt;7&lt;br /&gt;20.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;Bxe&lt;/span&gt;7+           &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;Kxe&lt;/span&gt;7&lt;br /&gt;21.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;Bxf&lt;/span&gt;6&lt;br /&gt;&lt;br /&gt;There was no point in not trading down, my opponent was down a Rook and a Knight.  The game went on for a few more moves but after I went after his pawns he gave up.&lt;br /&gt;&lt;br /&gt;The most important point here is that control of the center is worth more then a pawn.  Don't take that pawn unless you can create tactical complications elsewhere.  I recommend looking at something like the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;Tarrasch&lt;/span&gt; or the Slav Openings instead.  Some older games of mine that further demonstrate this point are &lt;a href="http://knightstar.blogspot.com/2006_07_01_archive.html"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I have a copy of &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_29"&gt;ChessBase&lt;/span&gt; which is a few years old.  I ran a report on this opening and this is statistics for strong players using these lines:&lt;br /&gt;&lt;br /&gt;  &lt;span style="font-style: italic; font-weight: bold;"&gt;Black Scores below average (42%).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   Black performs &lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;Elo&lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt; 2239 against an opposition of &lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;Elo&lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt; 2295 (-56%).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   White performs &lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;Elo&lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt; 2338 against an opposition of &lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;Elo&lt;/span&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt; 2282 (+56%).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   White wins: 9640 (=41%), Draws: 8034(+34%), Black wins: 5913 (+25%).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   The drawing quote is Average. (9% quick draws, &amp;lt; 20 moves).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   White wins are shorter then average (37).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   Black wins are of average (40).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;   Draws are shorter than average(32).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So, even Masters don't do that well as black with this line.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/-VYaTRnyagwM/Ths8UjL6OZI/AAAAAAAAAlw/ZaZqai82jTU/s1600/Move2a.jpeg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/-kynoZaTUHJk/Ths8jPChhNI/AAAAAAAAAl4/Ur6-V-e5_EM/s1600/Move3b.jpeg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-3509458551330856889?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/3509458551330856889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=3509458551330856889' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3509458551330856889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3509458551330856889'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2011/07/chess-beginners-avoid-qga.html' title='Chess Beginners avoid the QGA'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-TOPUw5j_xwQ/Ths9a1cwDZI/AAAAAAAAAmo/rcNVOMOA2O0/s72-c/Move2a.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5109531740094664996</id><published>2009-01-21T18:32:00.003-06:00</published><updated>2009-01-21T18:54:50.052-06:00</updated><title type='text'>Northern Flicker</title><content type='html'>I accepted another position from my employer last June.  The hours are better and I can pretty much set my own schedule, but the work site is on the other side of town and the walking situation isn't nearly as good.  I have two choices now as to where to walk.&lt;br /&gt;&lt;br /&gt;Brown's Woods, is a dense wooded area on the border between Des Moines and West Des Moines.  There is a lot of wildlife there, but due to denseness of the woods the wildlife can be hard to see.  You hear a lot of animals, but see very little.  The trails there are also fairly primitive and they make no  attempt to clear them.  So, after we got a thick layer of ice there last December, I gave up.  I might giver it another try in February after a good thaw.&lt;br /&gt;&lt;br /&gt;My other choice is the Great Western Trail which runs through Des Moines.  The area that I walk there is just south of the Des Moines Water Works which goes through the Des Moines Water Works.  I normally turn around in the Water Works.  I see a lot of geese during the summer and an occasional Blue Heron.  Rose Breasted Grosbeaks are also common, but it is harder to get an image of them there. It is actully more road then trail, but I take what I can get  This time of year I rarely see any wildlife.&lt;br /&gt;&lt;br /&gt;Today I got lucky though and saw a Northern Flicker, it is the Yellow Shafted variant.  It was so busy eating some berries, I was able to get about a half dozen images of which the following was the best.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SXe_UGyqR9I/AAAAAAAAAkU/DsCDMEYSh2U/s1600-h/100_0806.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SXe_UGyqR9I/AAAAAAAAAkU/DsCDMEYSh2U/s320/100_0806.jpg" alt="" id="BLOGGER_PHOTO_ID_5293910239138695122" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SXe_TlOV-0I/AAAAAAAAAkM/bbmZjXLlydU/s1600-h/100_0802.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SXe_TlOV-0I/AAAAAAAAAkM/bbmZjXLlydU/s320/100_0802.jpg" alt="" id="BLOGGER_PHOTO_ID_5293910230127999810" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5109531740094664996?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5109531740094664996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5109531740094664996' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5109531740094664996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5109531740094664996'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2009/01/northern-flicker.html' title='Northern Flicker'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/SXe_UGyqR9I/AAAAAAAAAkU/DsCDMEYSh2U/s72-c/100_0806.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5921426145144641759</id><published>2009-01-08T19:14:00.004-06:00</published><updated>2009-01-08T20:01:41.437-06:00</updated><title type='text'>More Chess</title><content type='html'>1.  d4      (0:00)     d5      (0:00)&lt;br /&gt;&lt;br /&gt;He opened with d4 and I am going to go into the Tarrasch.&lt;br /&gt;&lt;br /&gt;2.  e3      (0:02)     e6      (0:01)&lt;br /&gt;3.  Bd3     (0:03)     c5      (0:01)&lt;br /&gt;4.  c3      (0:02)     Nc6     (0:04)&lt;br /&gt;5.  Nd2     (0:04)     Nf6     (0:03)&lt;br /&gt;6.  f4      (0:03)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SWalsx3IxpI/AAAAAAAAAjM/pkuOmpXmSFE/s1600-h/img01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 318px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SWalsx3IxpI/AAAAAAAAAjM/pkuOmpXmSFE/s320/img01.jpg" alt="" id="BLOGGER_PHOTO_ID_5289097001110652562" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Thats is risky.  The e3 pawn will become weak later in the game, Right now I can't get at it.  He is probably planning an all out attack against my King side.&lt;br /&gt;&lt;br /&gt;6. ...                 Be7     (0:06)&lt;br /&gt;7.  Ngf3    (0:01)     O-O     (0:04)&lt;br /&gt;8.  Ne5     (0:03)     Qc7     (0:05)&lt;br /&gt;9.  O-O     (0:06)     c4      (0:24)&lt;br /&gt;10.  Bc2     (0:11)     b5      (0:03)&lt;br /&gt;11.  Rf3     (0:07)     b4      (0:03)&lt;br /&gt;12.  Rh3     (0:18)     h6      (0:13)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SWals5A0mKI/AAAAAAAAAjU/Jjwo8jVWrJ0/s1600-h/img02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 319px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SWals5A0mKI/AAAAAAAAAjU/Jjwo8jVWrJ0/s320/img02.jpg" alt="" id="BLOGGER_PHOTO_ID_5289097003030321314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;His Rook will neeed assistance, right now my knight is preventing his Queen from coming in.&lt;br /&gt;&lt;br /&gt;13.  Qf3     (0:18)     Rb8     (0:07)&lt;br /&gt;14.  Ba4     (0:41)     Bb7     (0:13)&lt;br /&gt;15.  g4      (0:20)     Nd7     (0:15)&lt;br /&gt;16.  Nxc6    (0:37)     Bxc6    (0:03)&lt;br /&gt;17.  Bc2     (0:11)     f6      (0:03)&lt;br /&gt;18.  Qg3     (0:16)     e5      (0:15)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SWaltFegDOI/AAAAAAAAAjc/NIJanPhkhCE/s1600-h/img03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 319px; height: 320px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SWaltFegDOI/AAAAAAAAAjc/NIJanPhkhCE/s320/img03.jpg" alt="" id="BLOGGER_PHOTO_ID_5289097006376029410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;My position was getting cramped, I am pushing pawns to give myself a little more mobility.&lt;br /&gt;19.  fxe5    (0:20)     fxe5    (0:03)&lt;br /&gt;20.  dxe5    (0:51)     Nxe5    (0:03)&lt;br /&gt;21.  Nf3     (0:22)     Bd6     (0:05)&lt;br /&gt;22.  Nxe5    (0:22)     Bxe5    (0:03)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SWaltRPND-I/AAAAAAAAAjk/GNLx0e7kg-Q/s1600-h/img04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 317px; height: 320px;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SWaltRPND-I/AAAAAAAAAjk/GNLx0e7kg-Q/s320/img04.jpg" alt="" id="BLOGGER_PHOTO_ID_5289097009533095906" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Ok.  I have opened up the f file giving my rook full mobility. He hasn't fought me for it. Now he is becoming cramped.&lt;br /&gt;&lt;br /&gt;23.  Qe1     (0:14)     Rbe8    (0:14)&lt;br /&gt;24.  Bd2     (0:22)     d4      (0:02)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SWaltjXIJtI/AAAAAAAAAjs/GTU7alb1_ec/s1600-h/img05.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 319px; height: 320px;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SWaltjXIJtI/AAAAAAAAAjs/GTU7alb1_ec/s320/img05.jpg" alt="" id="BLOGGER_PHOTO_ID_5289097014398166738" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I am trying to set a little trap here.  If e3 takes d4, Bishop then takes h2 check with a discovered attack on the Queen. But he sees it and moves the Queen out of the way.  Which allows me to trade pawns and force his Bishop back to e1 or c1.&lt;br /&gt;&lt;br /&gt;25.  Qd1     (0:32)     dxc3    (0:08)&lt;br /&gt;26.  bxc3    (0:09)     bxc3    (0:04)&lt;br /&gt;27.  Be1     (0:12)     Qf7     (0:49)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/SWapbq_vomI/AAAAAAAAAj0/Civng_NDvz8/s1600-h/img06.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 319px;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/SWapbq_vomI/AAAAAAAAAj0/Civng_NDvz8/s320/img06.jpg" alt="" id="BLOGGER_PHOTO_ID_5289101105256440418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Queen to f7 threatens mate.&lt;br /&gt;&lt;br /&gt;28.  Bh4     (0:53)     Rd8     (0:23)&lt;br /&gt;&lt;br /&gt;If his Bishop takes my rook, Queen f2 is check mate.&lt;br /&gt;&lt;br /&gt;29.  Qe2     (0:09)     Rd2     (0:09)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SWapb7AnGSI/AAAAAAAAAj8/9wzaaBCp51E/s1600-h/img07.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SWapb7AnGSI/AAAAAAAAAj8/9wzaaBCp51E/s320/img07.jpg" alt="" id="BLOGGER_PHOTO_ID_5289101109555042594" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Rook to d2 was a very strong move.  I can win the Queen now and there is very little he can do about it.&lt;br /&gt;If he steps out of the way, I can mate him.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/SWapcFPhTGI/AAAAAAAAAkE/X4gALzKEEas/s1600-h/img08.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/SWapcFPhTGI/AAAAAAAAAkE/X4gALzKEEas/s320/img08.jpg" alt="" id="BLOGGER_PHOTO_ID_5289101112301931618" border="0" /&gt;&lt;/a&gt;30.  Qe1     (0:39)     Rg2+    (0:05)&lt;br /&gt;&lt;br /&gt;He offered me a draw at this point.  It is mate next move. My response:  Nyet! He then resigned&lt;br /&gt;&lt;br /&gt;King to h1 is forced, then Rook to g3 is check Mate (discovered check mate with the Bishop.) Why win a Queen when you can win the King.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5921426145144641759?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5921426145144641759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5921426145144641759' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5921426145144641759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5921426145144641759'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2009/01/1.html' title='More Chess'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/SWalsx3IxpI/AAAAAAAAAjM/pkuOmpXmSFE/s72-c/img01.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5799389153316813020</id><published>2009-01-07T21:29:00.004-06:00</published><updated>2009-01-07T21:49:02.505-06:00</updated><title type='text'>A Quickie</title><content type='html'>White out ranks me by about 100 points, but my rating has been in the dumps.&lt;br /&gt;Mostly because I will play when I am to tired.&lt;br /&gt;&lt;br /&gt;1.  Nf3     (0:00)     d5      (0:00)&lt;br /&gt;2.  b3      (0:02)     c5      (0:03)&lt;br /&gt;3.  e4      (0:01)     d4      (0:03)&lt;br /&gt;4.  Bc4     (0:10)     Nc6     (0:03)&lt;br /&gt;5.  a3      (0:09)     e5      (0:02)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/SWVzf8NbnRI/AAAAAAAAAis/Xl2S4v18PRE/s1600-h/img01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 319px;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/SWVzf8NbnRI/AAAAAAAAAis/Xl2S4v18PRE/s320/img01.jpg" alt="" id="BLOGGER_PHOTO_ID_5288760329992117522" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is probably a line, but I don't know it.  It looks strange to me.&lt;br /&gt;I am just trying to play sound center developing moves.&lt;br /&gt;&lt;br /&gt;6.  Qe2     (0:11)     Be7     (0:13)&lt;br /&gt;7.  O-O     (0:10)     Nf6     (0:03)&lt;br /&gt;8.  Ng5     (0:04)     O-O     (0:04)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SWVzf6xoiGI/AAAAAAAAAi0/FUgfSufr1s8/s1600-h/img02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SWVzf6xoiGI/AAAAAAAAAi0/FUgfSufr1s8/s320/img02.jpg" alt="" id="BLOGGER_PHOTO_ID_5288760329607088226" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Go ahead and trade two pieces for a rook!&lt;br /&gt;&lt;br /&gt;9.  f4      (0:01)     exf4    (0:06)&lt;br /&gt;&lt;br /&gt;Probably a mistake on my part.  Should have made him take and I retake with&lt;br /&gt;a well placed night.&lt;br /&gt;&lt;br /&gt;10.  Rxf4    (0:03)     Ne5     (0:03)&lt;br /&gt;11.  Rxf6    (0:31)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SWVzfx_x9JI/AAAAAAAAAi8/cKHBAUt9VW4/s1600-h/img03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 319px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SWVzfx_x9JI/AAAAAAAAAi8/cKHBAUt9VW4/s320/img03.jpg" alt="" id="BLOGGER_PHOTO_ID_5288760327250506898" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Wow, that has to be unsound!&lt;br /&gt;&lt;br /&gt;11. ...                 Bxf6    (0:06)&lt;br /&gt;12.  Nxf7    (0:28)&lt;br /&gt;&lt;br /&gt;Throwing good money after bad.  Or, in for a penny, in for a pound.&lt;br /&gt;&lt;br /&gt;12.                     ...  Nxf7    (0:06)&lt;br /&gt;13.  d3      (0:06)&lt;br /&gt;&lt;br /&gt;Pushing e5 would be better.  But even so, I can give back some of&lt;br /&gt;my profit.&lt;br /&gt;&lt;br /&gt;13.                     ...  Kh8     (0:08)&lt;br /&gt;&lt;br /&gt;I have broke the pin.&lt;br /&gt;14.  Qh5     (0:06)     Ne5     (0:14)&lt;br /&gt;&lt;br /&gt;He puts a double hit on my knight and I just move it out.&lt;br /&gt;&lt;br /&gt;15.  Bd5     (0:07) &lt;br /&gt;&lt;br /&gt;At this point I realize his Queen is looking awfully helpless.&lt;br /&gt;&lt;br /&gt;15.                     Bg4     (0:17)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SWVzgIUfA5I/AAAAAAAAAjE/TseaWbTvkeU/s1600-h/img04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 320px;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SWVzgIUfA5I/AAAAAAAAAjE/TseaWbTvkeU/s320/img04.jpg" alt="" id="BLOGGER_PHOTO_ID_5288760333242925970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And White resigns, because his Queen is trapped.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5799389153316813020?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5799389153316813020/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5799389153316813020' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5799389153316813020'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5799389153316813020'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2009/01/quickie.html' title='A Quickie'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_sGaKnNqvb60/SWVzf8NbnRI/AAAAAAAAAis/Xl2S4v18PRE/s72-c/img01.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5350264645716374591</id><published>2009-01-06T22:08:00.011-06:00</published><updated>2009-01-06T22:42:50.044-06:00</updated><title type='text'>Ice Jam</title><content type='html'>For the last few months I have been walking in Browns Woods, West Des Moines IA. for my lunch break.  Well about two weeks ago the top layer of snow melted off leaving a thick layer of ice on the trail.  I decided not to try walking on that since the risks exceeded the benifits.  So, I tryed going back to Great Western Trail, which leads into Des Moines Water Works Park.  When I went down there though, I saw the access was closed.  The sign said water over the road.&lt;br /&gt;&lt;br /&gt;We had had a couple of really warm days which allowed the Raccoon River to partially melt causing a ice jam to occur.  So for the last couple of weeks I haven't been able to walk on my lunch break (bummer!)  Well yesterday they opened the trail access to the Great Western Trail back up and I went down to look, unfortunatly I forgot my camera.  Well today I brought it.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/SWQrDvBZePI/AAAAAAAAAhc/3Zv7UIGmvM8/s1600-h/100_0770.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/SWQrDvBZePI/AAAAAAAAAhc/3Zv7UIGmvM8/s320/100_0770.jpg" alt="" id="BLOGGER_PHOTO_ID_5288399205601736946" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This was my first image overlooking the Raccoon River.  According to my best estimate, the river is between 75 - 100 yards wide.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SWQsBAXtuYI/AAAAAAAAAhk/Tb8DiWEvmbE/s1600-h/100_0774.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SWQsBAXtuYI/AAAAAAAAAhk/Tb8DiWEvmbE/s320/100_0774.jpg" alt="" id="BLOGGER_PHOTO_ID_5288400258230761858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;These are the blocks of ice strewn along the road.  I assume the City had to use heavy equipment to clear the road of these blocks of ice.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQswclhurI/AAAAAAAAAhs/Y-pBnpy_w48/s1600-h/100_0776.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQswclhurI/AAAAAAAAAhs/Y-pBnpy_w48/s320/100_0776.jpg" alt="" id="BLOGGER_PHOTO_ID_5288401073258740402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;That is my shoe up against a block of ice to show how thick they are.  My shoe measures 12.5 inches long.&lt;br /&gt;&lt;br /&gt;More images just showing how much ice is really here.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQtz317H7I/AAAAAAAAAh8/q8ZQiFGK3Zo/s1600-h/100_0779.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQtz317H7I/AAAAAAAAAh8/q8ZQiFGK3Zo/s320/100_0779.jpg" alt="" id="BLOGGER_PHOTO_ID_5288402231626506162" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQtzUNNV4I/AAAAAAAAAh0/LM4EGPIS6ks/s1600-h/100_0778.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQtzUNNV4I/AAAAAAAAAh0/LM4EGPIS6ks/s320/100_0778.jpg" alt="" id="BLOGGER_PHOTO_ID_5288402222060492674" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQu5Lr2nQI/AAAAAAAAAiE/ISUMGkPcXuI/s1600-h/100_0780.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQu5Lr2nQI/AAAAAAAAAiE/ISUMGkPcXuI/s320/100_0780.jpg" alt="" id="BLOGGER_PHOTO_ID_5288403422363950338" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SWQu5k3foKI/AAAAAAAAAiM/hNHvSx_SHIo/s1600-h/100_0781.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SWQu5k3foKI/AAAAAAAAAiM/hNHvSx_SHIo/s320/100_0781.jpg" alt="" id="BLOGGER_PHOTO_ID_5288403429123661986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Images using a nearby car to show the physical size of it all.&lt;br /&gt;&lt;br /&gt;The following two images showing broken trees in the river.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SWQw7BK58jI/AAAAAAAAAiU/j9pzi2RpkLI/s1600-h/100_0782.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SWQw7BK58jI/AAAAAAAAAiU/j9pzi2RpkLI/s320/100_0782.jpg" alt="" id="BLOGGER_PHOTO_ID_5288405652924396082" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SWQw79NdQrI/AAAAAAAAAic/5qJafzOWlic/s1600-h/100_0786.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SWQw79NdQrI/AAAAAAAAAic/5qJafzOWlic/s320/100_0786.jpg" alt="" id="BLOGGER_PHOTO_ID_5288405669041226418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I really liked the broken tree trunk pointing straight up.&lt;br /&gt;&lt;br /&gt;And finally a shot taken from a bridge crossing the river.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQw8mmAzuI/AAAAAAAAAik/uB0xcwqZDxc/s1600-h/100_0787.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SWQw8mmAzuI/AAAAAAAAAik/uB0xcwqZDxc/s320/100_0787.jpg" alt="" id="BLOGGER_PHOTO_ID_5288405680150073058" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5350264645716374591?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5350264645716374591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5350264645716374591' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5350264645716374591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5350264645716374591'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2009/01/ice-jam.html' title='Ice Jam'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_sGaKnNqvb60/SWQrDvBZePI/AAAAAAAAAhc/3Zv7UIGmvM8/s72-c/100_0770.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-4316795768012249915</id><published>2008-04-11T21:32:00.009-05:00</published><updated>2008-12-09T01:27:22.720-06:00</updated><title type='text'>Checkmate with a Pawn!!!</title><content type='html'>&lt;span style="font-family: courier new;"&gt;  1.  d4      (0:00)   &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Ok&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;agianst&lt;/span&gt; d4 I usually play the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;Tarrasch&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;               &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;                         d5      (0:00)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  2.  e3      (0:01)     e6      (0:01)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  3.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;Bd&lt;/span&gt;3     (0:01)     c5      (0:02)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  4.  c3      (0:01)     c4      (0:02)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  5.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;Bc&lt;/span&gt;2     (0:01)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;Nc&lt;/span&gt;6     (0:04)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  6.  a3      (0:01)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SAAgDuqjE3I/AAAAAAAAAWQ/ZCgxxGm9YLE/s1600-h/Pos01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SAAgDuqjE3I/AAAAAAAAAWQ/ZCgxxGm9YLE/s320/Pos01.jpg" alt="" id="BLOGGER_PHOTO_ID_5188182019168998258" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: courier new;"&gt;                         &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;Nf&lt;/span&gt;6     (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  7.  f4      (0:02)   &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;f4 just leaves an ugly pawn formation.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;                         Be7     (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  8.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;Nf&lt;/span&gt;3     (0:01)     O-O     (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;  9.  O-O     (0:01)     Nd7     (0:24)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Clearing the way to push pawns and destroy his center.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/SAAf7uqjE2I/AAAAAAAAAWI/fGPCJ85IrXY/s1600-h/Pos02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/SAAf7uqjE2I/AAAAAAAAAWI/fGPCJ85IrXY/s320/Pos02.jpg" alt="" id="BLOGGER_PHOTO_ID_5188181881730044770" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: courier new;"&gt;&lt;br /&gt; 10.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;Qe&lt;/span&gt;2     (0:01)     f6      (0:02)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 11.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;Nbd&lt;/span&gt;2    (0:01)     e5      (0:05)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 12.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;fxe&lt;/span&gt;5    (0:14)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;fxe&lt;/span&gt;5    (0:02)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 13.  e4      (0:03)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;dxe&lt;/span&gt;4    (0:05)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 14.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;Qxe&lt;/span&gt;4    (0:05)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;Nf&lt;/span&gt;6     (0:11)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 15.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;Qe&lt;/span&gt;2     (0:15)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;exd&lt;/span&gt;4    (0:04)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 16.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;Qxc&lt;/span&gt;4+   (0:05) &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Oops, forgot about that.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/SAAf1-qjE1I/AAAAAAAAAWA/VwzTTwmWx2k/s1600-h/Pos03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/SAAf1-qjE1I/AAAAAAAAAWA/VwzTTwmWx2k/s320/Pos03.jpg" alt="" id="BLOGGER_PHOTO_ID_5188181782945796946" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: courier new;"&gt; 17.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;Nxd&lt;/span&gt;4    (0:01)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;Nxd&lt;/span&gt;4    (0:11)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;18.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;cxd&lt;/span&gt;4    (0:02)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;Qd&lt;/span&gt;5     (0:39)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;I am not so bad, He's a pawn up but it is an &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;isolani&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;and my pieces are better developed.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 19.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;Qxd&lt;/span&gt;5    (0:06)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;Nxd&lt;/span&gt;5    (0:02)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 20.  Nb3     (0:01)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;Bd&lt;/span&gt;7     (0:20)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 21.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;Bd&lt;/span&gt;2     (0:02)     b6      (0:08)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 22.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;Bd&lt;/span&gt;3     (0:13)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;Bd&lt;/span&gt;6     (0:13)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 23.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_29"&gt;Rxf&lt;/span&gt;8+   (0:04)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;Rxf&lt;/span&gt;8    (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 24.  Rf1     (0:03)     Be6     (0:11)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 25.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;Rxf&lt;/span&gt;8+   (0:03)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;Bxf&lt;/span&gt;8    (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 26.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;Bc&lt;/span&gt;4     (0:13)     Be7     (0:18)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 27.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_34"&gt;Bxd&lt;/span&gt;5    (0:02)&lt;br /&gt;&lt;br /&gt;He's trading a good B for a N, He will pay&lt;br /&gt;for that&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SAAfveqjE0I/AAAAAAAAAV4/RsN9B99Mhaw/s1600-h/Pos04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SAAfveqjE0I/AAAAAAAAAV4/RsN9B99Mhaw/s320/Pos04.jpg" alt="" id="BLOGGER_PHOTO_ID_5188181671276647234" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: courier new;"&gt;                         &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_35"&gt;Bxd&lt;/span&gt;5    (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 28.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_36"&gt;Nc&lt;/span&gt;1     (0:08)     Bf6     (0:04)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 29.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_37"&gt;Bc&lt;/span&gt;3     (0:01)     a5      (0:21)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 30.  Nd3     (0:03)     b5      (0:04)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 31.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_38"&gt;Nf&lt;/span&gt;4     (0:07)     b4      (0:13)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 32.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_39"&gt;axb&lt;/span&gt;4    (0:02)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_40"&gt;axb&lt;/span&gt;4    (0:05)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 33.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_41"&gt;Bxb&lt;/span&gt;4    (0:04) &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Well there goes his &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_42"&gt;Isolani&lt;/span&gt; and it creates another,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_43"&gt;ok&lt;/span&gt; technically its a passed pawn.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/SAAfpOqjEzI/AAAAAAAAAVw/NB4uSlKw5Pk/s1600-h/Pos05.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/SAAfpOqjEzI/AAAAAAAAAVw/NB4uSlKw5Pk/s320/Pos05.jpg" alt="" id="BLOGGER_PHOTO_ID_5188181563902464818" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: courier new;"&gt;                 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_44"&gt;Bxd&lt;/span&gt;4+   (0:02)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 34.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_45"&gt;Kh&lt;/span&gt;1     (0:01)     Bf7     (0:08)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 35.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_46"&gt;Bc&lt;/span&gt;3     (0:02)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_47"&gt;Bb&lt;/span&gt;6     (0:04)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Notice how much area my bishops are covering.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 36.  Nd3     (0:03)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_48"&gt;Bc&lt;/span&gt;4     (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 37.  Nb4     (0:04)     h5      (0:05)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 38.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_49"&gt;Nc&lt;/span&gt;2     (0:09)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_50"&gt;Kh&lt;/span&gt;7     (0:04)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 39.  Ne1     (0:02)     g5      (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 40.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_51"&gt;Nf&lt;/span&gt;3     (0:01)     g4      (0:11)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 41.  Ne5     (0:05)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_52"&gt;Bb&lt;/span&gt;3     (0:05)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 42.  Nd7     (0:05)     Bf2     (0:09)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 43.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_53"&gt;Nf&lt;/span&gt;6+    (0:05)     Kg6     (0:03)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 44.  Ne4     (0:08)     Be3     (0:05)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 45.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_54"&gt;Ng&lt;/span&gt;3     (0:09)     h4      (0:21)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Notice that by moving his knight around attacking &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_55"&gt;&lt;/span&gt;willy-nilly,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;I am advancing my pawns.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/SAAfjOqjEyI/AAAAAAAAAVo/-FzCKzkTo9s/s1600-h/Pos06.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/SAAfjOqjEyI/AAAAAAAAAVo/-FzCKzkTo9s/s320/Pos06.jpg" alt="" id="BLOGGER_PHOTO_ID_5188181460823249698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 46.  Ne2     (0:03)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_56"&gt;Kf&lt;/span&gt;5     (0:16)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 47.  g3      (0:01)     h3      (0:13)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;I totally missed that Be5 is check mate!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 48.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_57"&gt;Nf&lt;/span&gt;4     (0:08)    &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_58"&gt;Unfortunately&lt;/span&gt; now I see it, but now to get it I am going to &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;have to &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_59"&gt;maneuver&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;                       Ba4     (0:12)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 49.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_60"&gt;Ng&lt;/span&gt;2     (0:51)     &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;He wants me to take his knight with my pawn, which would&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;allow his K to get out of that corner.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;             &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_61"&gt;Bc&lt;/span&gt;6     (0:06)  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;This pins the knight allowing me to take it at my leisure&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; 50.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_62"&gt;Bd&lt;/span&gt;2     (0:15)     &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_63"&gt;hxg&lt;/span&gt;2#   (0:10)  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;     &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;Checkmate with a pawn!!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/SAAfeeqjExI/AAAAAAAAAVg/6plnumdpAKU/s1600-h/Pos07.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/SAAfeeqjExI/AAAAAAAAAVg/6plnumdpAKU/s320/Pos07.jpg" alt="" id="BLOGGER_PHOTO_ID_5188181379218871058" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-4316795768012249915?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/4316795768012249915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=4316795768012249915' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/4316795768012249915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/4316795768012249915'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2008/04/checkmate-with-pawn.html' title='Checkmate with a Pawn!!!'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/SAAgDuqjE3I/AAAAAAAAAWQ/ZCgxxGm9YLE/s72-c/Pos01.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-1905397445546284133</id><published>2008-04-11T14:06:00.028-05:00</published><updated>2008-12-09T01:27:26.989-06:00</updated><title type='text'>Mostly March &amp; Early April</title><content type='html'>2008.03.06&lt;br /&gt;&lt;br /&gt;15.01 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;Temperature&lt;/span&gt; 30 degrees and clear, walking on the Pioneer Walkway.&lt;br /&gt;15.04 Creek is free of ice.  It is very brown and dirty looking.&lt;br /&gt;15.15 Image taken of a large chunk of ice in the river.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R__DieqjEwI/AAAAAAAAAVY/oLc7hvmALF8/s1600-h/100_0250.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R__DieqjEwI/AAAAAAAAAVY/oLc7hvmALF8/s320/100_0250.jpg" alt="" id="BLOGGER_PHOTO_ID_5188080292868592386" border="0" /&gt;&lt;/a&gt;2008.03.09&lt;br /&gt;&lt;br /&gt;13.49 Seeing geese in creek a hundred yards off or so.&lt;br /&gt;13.52 Now that I am closer I can see about 20 geese, have taken an image.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R__DN-qjEtI/AAAAAAAAAVA/jwCdqLVRaGc/s1600-h/100_0254.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R__DN-qjEtI/AAAAAAAAAVA/jwCdqLVRaGc/s320/100_0254.jpg" alt="" id="BLOGGER_PHOTO_ID_5188079940681274066" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R__DOeqjEuI/AAAAAAAAAVI/xCr5xeDA6sM/s1600-h/100_0256.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R__DOeqjEuI/AAAAAAAAAVI/xCr5xeDA6sM/s320/100_0256.jpg" alt="" id="BLOGGER_PHOTO_ID_5188079949271208674" border="0" /&gt;&lt;/a&gt;13.58 Have gotten some images of ducks on the creek also.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R__DO-qjEvI/AAAAAAAAAVQ/jVoK9wb7d2s/s1600-h/100_0259.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R__DO-qjEvI/AAAAAAAAAVQ/jVoK9wb7d2s/s320/100_0259.jpg" alt="" id="BLOGGER_PHOTO_ID_5188079957861143282" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.03.10&lt;br /&gt;&lt;br /&gt;14.12 35 degrees and sunny.  I am walking on the Des &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Moines&lt;/span&gt; River trail.&lt;br /&gt;14.25 Only seen squirrels.&lt;br /&gt;14.36 Image attempted of eagle overhead in flight (sorry its a little blurry, but it is the best&lt;br /&gt;          one like this I've gotten.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R__CneqjEsI/AAAAAAAAAU4/4jR-cKvr7Ww/s1600-h/100_0263.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R__CneqjEsI/AAAAAAAAAU4/4jR-cKvr7Ww/s320/100_0263.jpg" alt="" id="BLOGGER_PHOTO_ID_5188079279256310466" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.03.13&lt;br /&gt;&lt;br /&gt;13.30 Walking on the Pioneer trail. Partly clear, 58 degrees.&lt;br /&gt;13.32 First robin of the year seen, no image taken.&lt;br /&gt;13.33 Eagle seen in flight, image attempted, but unsuccessful.&lt;br /&gt;13.35 Image taken of a robin bathing in a crick.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R__CcOqjErI/AAAAAAAAAUw/9XrdcUja7K8/s1600-h/100_0267.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R__CcOqjErI/AAAAAAAAAUw/9XrdcUja7K8/s320/100_0267.jpg" alt="" id="BLOGGER_PHOTO_ID_5188079085982782130" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R__CNeqjEqI/AAAAAAAAAUo/hpFs2GaWlPc/s1600-h/100_0268.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R__CNeqjEqI/AAAAAAAAAUo/hpFs2GaWlPc/s320/100_0268.jpg" alt="" id="BLOGGER_PHOTO_ID_5188078832579711650" border="0" /&gt;&lt;/a&gt;13.39 Image taken of a sparrow sized bird.  It is probably a warbler or some sort of fly catcher.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R__B4uqjEpI/AAAAAAAAAUg/ah6AkDMkYuM/s1600-h/100_269.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R__B4uqjEpI/AAAAAAAAAUg/ah6AkDMkYuM/s320/100_269.jpg" alt="" id="BLOGGER_PHOTO_ID_5188078476097426066" border="0" /&gt;&lt;/a&gt;13.43 The ground surrounding the trail is very &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;soggy&lt;/span&gt;, water standing in many places, but hasn't &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_3"&gt;breached&lt;/span&gt; the trail.  I suspect it is a near flooding situation.&lt;br /&gt;13.45 Robins are all over the place now.  They must have arrived in force in the last few days.&lt;br /&gt;13.47 Image of what I suspect is a nuthatch. (Sorry the Nut-Hatch is slightly out of focus.)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R__BnOqjEoI/AAAAAAAAAUY/ZLEpj5xWaGI/s1600-h/100_270.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R__BnOqjEoI/AAAAAAAAAUY/ZLEpj5xWaGI/s320/100_270.jpg" alt="" id="BLOGGER_PHOTO_ID_5188078175449715330" border="0" /&gt;&lt;/a&gt;14.01 Large chunks of ice on the other bank seen, images taken.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R__BPuqjEnI/AAAAAAAAAUQ/AOWf0Oq1d5E/s1600-h/100_0273.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R__BPuqjEnI/AAAAAAAAAUQ/AOWf0Oq1d5E/s320/100_0273.jpg" alt="" id="BLOGGER_PHOTO_ID_5188077771722789490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.18 Image taken of a smallish woodpecker.&lt;br /&gt;&lt;br /&gt;2008.03.14&lt;br /&gt;&lt;br /&gt;13.41 Mid fifties today with a light breeze.&lt;br /&gt;13.59 Seeing lots of robins and not much else.&lt;br /&gt;14.01 Image of Hairy Woodpecker.  After inspecting the images, the bottom one has two&lt;br /&gt;          woodpeckers in it.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R__A7uqjEmI/AAAAAAAAAUI/T4-3NOq8yH8/s1600-h/100_277.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R__A7uqjEmI/AAAAAAAAAUI/T4-3NOq8yH8/s320/100_277.jpg" alt="" id="BLOGGER_PHOTO_ID_5188077428125405794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R__AYOqjElI/AAAAAAAAAUA/yqzPL-gDoIk/s1600-h/100_0281.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R__AYOqjElI/AAAAAAAAAUA/yqzPL-gDoIk/s320/100_0281.jpg" alt="" id="BLOGGER_PHOTO_ID_5188076818240049746" border="0" /&gt;&lt;/a&gt;2008.03.15&lt;br /&gt;&lt;br /&gt;13.43 Cloudy in the mid 30's.  Its drying out a little, but rain is forecast over the next few days.&lt;br /&gt;13.54 Image taken of what are probably Hairy Woodpeckers.&lt;br /&gt;15.58 The trail near the creek, is mostly passable.  Yesterday I had to inch my way on the ice bridge&lt;br /&gt;on the edge of the trail but now it is mostly clear.  The ice bridge was created when they plowed and then&lt;br /&gt;the snow pack turned to ice.&lt;br /&gt;14.00 Got an image of a male duck. I don't see the female though, but she has to be near by. Inspection of&lt;br /&gt;the images revealed that the female was there, her &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_4"&gt;camouflage&lt;/span&gt; was &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_5"&gt;elegant&lt;/span&gt;.  Look for orange, left of center and you will find a duck attached to it.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R__AE-qjEkI/AAAAAAAAAT4/rkOJB_vlWr8/s1600-h/100_0285.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R__AE-qjEkI/AAAAAAAAAT4/rkOJB_vlWr8/s320/100_0285.jpg" alt="" id="BLOGGER_PHOTO_ID_5188076487527567938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.17 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_6"&gt;Tried&lt;/span&gt; to get an image of a small woodpecker, but I don't think I got it.&lt;br /&gt;14.22 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_7"&gt;Tried&lt;/span&gt; to get an image of a pair of Rose Breasted Grosbeak.&lt;br /&gt;&lt;br /&gt;2008.03.18&lt;br /&gt;&lt;br /&gt;15.00 Walking on the River Trail I had a mink sighting and got several images of a cardinal.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R_-_teqjEjI/AAAAAAAAATw/wKnxunHP2so/s1600-h/100_292.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R_-_teqjEjI/AAAAAAAAATw/wKnxunHP2so/s320/100_292.jpg" alt="" id="BLOGGER_PHOTO_ID_5188076083800642098" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.03.20&lt;br /&gt;&lt;br /&gt;13.45 Walking on the Pioneer trail.  Its clear and about 55 degrees.&lt;br /&gt;14.02 Several images of a Rose Breasted Grosbeak.&lt;br /&gt;14.07 I see the ducks that I last saw on the creek in a flooded area just to the east of the trail.  Image not possible.&lt;br /&gt;14.25 Several images taken of a ducks in the creek.  I think they are Mallards.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-_QOqjEiI/AAAAAAAAATo/4GzRcZQxPCY/s1600-h/100_299.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-_QOqjEiI/AAAAAAAAATo/4GzRcZQxPCY/s320/100_299.jpg" alt="" id="BLOGGER_PHOTO_ID_5188075581289468450" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.03.21&lt;br /&gt;&lt;br /&gt;13.40 Its mostly clear today and about 45 degrees with a brisk wind of about 25 mph.&lt;br /&gt;13.42 Image taken of a small sparrow sized bird (They turned out to be Goldfinches and blurry.)&lt;br /&gt;          Goldfinches are the State Bird of Iowa.&lt;br /&gt;13.49 Image taken of what may be a meadowlark. (I &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_8"&gt;believe&lt;/span&gt; they were Meadowlarks, but the images were             poor.)&lt;br /&gt;14.04 Image taken of a sparrow sized bird.  I think it is a American Tree Sparrow.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R_--xOqjEhI/AAAAAAAAATg/9rq9J4lUKgY/s1600-h/100_302.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R_--xOqjEhI/AAAAAAAAATg/9rq9J4lUKgY/s320/100_302.jpg" alt="" id="BLOGGER_PHOTO_ID_5188075048713523730" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.09 More images of a sparrow sized bird.  Why because I could.  I am not sure what it is.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-9iOqjEfI/AAAAAAAAATQ/8dee2WWbQoI/s1600-h/100_304.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-9iOqjEfI/AAAAAAAAATQ/8dee2WWbQoI/s320/100_304.jpg" alt="" id="BLOGGER_PHOTO_ID_5188073691503858162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.19 Saw a Rose Breasted Grosbeak, but unable to get image.&lt;br /&gt;14.28 Saw a pair of eagles roosting on downed log, but they flew off before I could get the camera booted up.&lt;br /&gt;&lt;br /&gt;2008.03.25&lt;br /&gt;&lt;br /&gt;13.42 Its clear and about 55, but windy.&lt;br /&gt;13.54 Image taken of a possible field hawk.  Probable Red Tailed Hawk.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R_--Q-qjEgI/AAAAAAAAATY/hIBGXX-uCqI/s1600-h/100_306.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R_--Q-qjEgI/AAAAAAAAATY/hIBGXX-uCqI/s320/100_306.jpg" alt="" id="BLOGGER_PHOTO_ID_5188074494662742530" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;13.59 Eagle spotted in flight, no image attempted.&lt;br /&gt;14.27 Images attempted of small &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_9"&gt;sparrow&lt;/span&gt; sized birds, they are very very active.&lt;br /&gt;          I have not identified it.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R_-8tuqjEeI/AAAAAAAAATI/32tWILOfjDg/s1600-h/100_311.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R_-8tuqjEeI/AAAAAAAAATI/32tWILOfjDg/s320/100_311.jpg" alt="" id="BLOGGER_PHOTO_ID_5188072789560725986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.03.26&lt;br /&gt;&lt;br /&gt;13.37 Several images taken of what may be a meadowlark.&lt;br /&gt;13.56 Image taken of a cardinal.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-75OqjEdI/AAAAAAAAATA/PcGPANmkHiQ/s1600-h/100_315.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-75OqjEdI/AAAAAAAAATA/PcGPANmkHiQ/s320/100_315.jpg" alt="" id="BLOGGER_PHOTO_ID_5188071887617593810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.00 Several images taken of goose on a sandbar in the creek.&lt;br /&gt;14.09 Noticing trees are starting to bud out.  Image taken of a tree bud.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R_-5UuqjEcI/AAAAAAAAAS4/n71XQGt0apM/s1600-h/100_0319.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R_-5UuqjEcI/AAAAAAAAAS4/n71XQGt0apM/s320/100_0319.jpg" alt="" id="BLOGGER_PHOTO_ID_5188069061529113026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.00 Several images taken of goose on a sandbar in the creek.&lt;br /&gt;14.09 Noticing trees are starting to bud out.  Image taken of a tree bud.&lt;br /&gt;&lt;br /&gt;2008.04.01&lt;br /&gt;&lt;br /&gt;13.42 Upper 40's today and mostly cloudy.&lt;br /&gt;14.08 Several images attempted of a probable Hairy Woodpecker.&lt;br /&gt;14.10 Image taken of unidentified bird.&lt;br /&gt;14.14 Image taken of a Rose Breasted Grosbeak.&lt;br /&gt;14.40 Several images of some sort of hawk, estimated distance 100 meters.&lt;br /&gt;&lt;br /&gt;2008.04.02&lt;br /&gt;&lt;br /&gt;13.25 Sunny upper 50's.&lt;br /&gt;13.44 Took an image of a robin, because I haven't seen anything else.&lt;br /&gt;13.50 Several images of a deer taken.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R_-5F-qjEbI/AAAAAAAAASw/Xv2K3ZQCaaE/s1600-h/100_0333.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R_-5F-qjEbI/AAAAAAAAASw/Xv2K3ZQCaaE/s320/100_0333.jpg" alt="" id="BLOGGER_PHOTO_ID_5188068808126042546" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;13.58 Several images of an unidentified bird.&lt;br /&gt;14.11 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_10"&gt;Blue jays&lt;/span&gt; spotted, but image unsuccessful.&lt;br /&gt;14.14 Hairy Woodpecker image taken.&lt;br /&gt;14.16 Images taken of deer.&lt;br /&gt;14.27 Images attempted of what appears to be a hawk.&lt;br /&gt;&lt;br /&gt;2008.04.07&lt;br /&gt;&lt;br /&gt;13.35 Image taken of an unidentified bird.&lt;br /&gt;13.45 Peepers(frogs) are loud, but I can't see any.&lt;br /&gt;13.51 Image taken of a peeper(frog.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-4tOqjEaI/AAAAAAAAASo/-axeniEAf8U/s1600-h/100_0348.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-4tOqjEaI/AAAAAAAAASo/-axeniEAf8U/s320/100_0348.jpg" alt="" id="BLOGGER_PHOTO_ID_5188068382924280226" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;13.56 Image taken of unidentified bird.&lt;br /&gt;14.09 Images taken of geese in the creek.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R_-4buqjEZI/AAAAAAAAASg/lEDxW1agnik/s1600-h/100_0354.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R_-4buqjEZI/AAAAAAAAASg/lEDxW1agnik/s320/100_0354.jpg" alt="" id="BLOGGER_PHOTO_ID_5188068082276569490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.04.09&lt;br /&gt;&lt;br /&gt;Walked, but forgot my voice recorder.  Didn't walk on the 8&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;th&lt;/span&gt; due to heavy rain.&lt;br /&gt;&lt;br /&gt;The following image was taken on the 9&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;th&lt;/span&gt;.  I don't know for sure what it is, but I suspect some sort of fly     catcher or a Warbler.  And lastly I got another &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_13"&gt;picture&lt;/span&gt; of a Peeper.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R_-4FeqjEYI/AAAAAAAAASY/AlpYqRlN3QA/s1600-h/100_0360.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R_-4FeqjEYI/AAAAAAAAASY/AlpYqRlN3QA/s320/100_0360.jpg" alt="" id="BLOGGER_PHOTO_ID_5188067700024480130" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-28OqjEXI/AAAAAAAAASQ/xjXRgv9zpHY/s1600-h/100_0363.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R_-28OqjEXI/AAAAAAAAASQ/xjXRgv9zpHY/s320/100_0363.jpg" alt="" id="BLOGGER_PHOTO_ID_5188066441599062386" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-1905397445546284133?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/1905397445546284133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=1905397445546284133' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/1905397445546284133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/1905397445546284133'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2008/04/2008.html' title='Mostly March &amp; Early April'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_sGaKnNqvb60/R__DieqjEwI/AAAAAAAAAVY/oLc7hvmALF8/s72-c/100_0250.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-7246453297005116585</id><published>2008-03-10T11:09:00.027-05:00</published><updated>2008-12-09T01:27:29.935-06:00</updated><title type='text'>Febuary Walks</title><content type='html'>2008.02.05&lt;br /&gt;&lt;br /&gt;13.42    Snowing, about 30 degrees.  Over the next couple of days we are supposed to get about 6 - 9 inches.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R9V2AOs-IbI/AAAAAAAAARY/SYVI9S3khfY/s1600-h/00007.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R9V2AOs-IbI/AAAAAAAAARY/SYVI9S3khfY/s320/00007.jpg" alt="" id="BLOGGER_PHOTO_ID_5176173093051048370" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R9V1h-s-IaI/AAAAAAAAARQ/yMraKaReceo/s1600-h/00009.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R9V1h-s-IaI/AAAAAAAAARQ/yMraKaReceo/s320/00009.jpg" alt="" id="BLOGGER_PHOTO_ID_5176172573360005538" border="0" /&gt;&lt;/a&gt;13.57    Squirrel in a snow storm.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R9WJ7-s-IdI/AAAAAAAAARo/KEx0QsxjONw/s1600-h/00006.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R9WJ7-s-IdI/AAAAAAAAARo/KEx0QsxjONw/s320/00006.jpg" alt="" id="BLOGGER_PHOTO_ID_5176195010269159890" border="0" /&gt;&lt;/a&gt;2008.02.06&lt;br /&gt;&lt;br /&gt;13.43    About 6 inches on the ground and about 30 degrees F. in tempature.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R9V1J-s-IZI/AAAAAAAAARI/IpyFA5bQj1U/s1600-h/00017.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R9V1J-s-IZI/AAAAAAAAARI/IpyFA5bQj1U/s320/00017.jpg" alt="" id="BLOGGER_PHOTO_ID_5176172161043145106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R9V0ves-IYI/AAAAAAAAARA/wLsCDAPIsWU/s1600-h/00018.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R9V0ves-IYI/AAAAAAAAARA/wLsCDAPIsWU/s320/00018.jpg" alt="" id="BLOGGER_PHOTO_ID_5176171705776611714" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R9Vzzes-IVI/AAAAAAAAAQo/5pFiKwGgllk/s1600-h/00020.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R9Vzzes-IVI/AAAAAAAAAQo/5pFiKwGgllk/s320/00020.jpg" alt="" id="BLOGGER_PHOTO_ID_5176170674984460626" border="0" /&gt;&lt;/a&gt;14.07    Downy Woodpecker seen, unable to take image.&lt;br /&gt;&lt;br /&gt;2008.02.08&lt;br /&gt;14.27    About 50 degrees today.  Deer seen at the edge of the woods.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R9VzLOs-IUI/AAAAAAAAAQg/vCMmlczhbq4/s1600-h/00023.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R9VzLOs-IUI/AAAAAAAAAQg/vCMmlczhbq4/s320/00023.jpg" alt="" id="BLOGGER_PHOTO_ID_5176169983494725954" border="0" /&gt;&lt;/a&gt;14.37    Squirrels seen, no image taken.&lt;br /&gt;14.38    Woodpecker seen, probably a male Hairy Woodpecker.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R9WuIus-IfI/AAAAAAAAAR4/ipc2aA2ompU/s1600-h/00027p.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R9WuIus-IfI/AAAAAAAAAR4/ipc2aA2ompU/s320/00027p.jpg" alt="" id="BLOGGER_PHOTO_ID_5176234811731091954" border="0" /&gt;&lt;/a&gt;A bioligist that I know, who is into photography, pointed out that this is a very good photo (below.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R9Wu6Os-IgI/AAAAAAAAASA/KzcvoLC5b_Q/s1600-h/00028p.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R9Wu6Os-IgI/AAAAAAAAASA/KzcvoLC5b_Q/s320/00028p.jpg" alt="" id="BLOGGER_PHOTO_ID_5176235662134616578" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;14.45    More woodpecker images taken, possibly the same species.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R9Wveus-IhI/AAAAAAAAASI/luxuX0gv-J0/s1600-h/00031p.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R9Wveus-IhI/AAAAAAAAASI/luxuX0gv-J0/s320/00031p.jpg" alt="" id="BLOGGER_PHOTO_ID_5176236289199841810" border="0" /&gt;&lt;/a&gt;14.50    Eagle seen in flight, image attempted, but not successful.&lt;br /&gt;2008.02.11&lt;br /&gt;&lt;br /&gt;15.29    Its cold, about 5 degrees.&lt;br /&gt;15.40    Eagles seen in trees.  No image taken, too much brush in the way.&lt;br /&gt;15.51    Another eagle spotted, a couple hundred yards away.  Its flying close to the trees, no image attempted.&lt;br /&gt;&lt;br /&gt;2008.02.12&lt;br /&gt;&lt;br /&gt;14.21     Fifteen degrees and sunny, nothing seen yet.&lt;br /&gt;15.00    Small woodpecker seen, image unsuccessful.&lt;br /&gt;&lt;br /&gt;2008.02.20&lt;br /&gt;&lt;br /&gt;15.25     Walking on the river trail, its about zero today.  Nothing seen yet.&lt;br /&gt;15.52    Geese seen in flight.&lt;br /&gt;&lt;br /&gt;2008.02.22&lt;br /&gt;&lt;br /&gt;14.56    Downy Woodpecker imaged (probably a female.)  Its warm today and the trails are about two-thirds clear.  This is the first time in weeks I've been able to walk down here without boots on.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R9VvRus-IOI/AAAAAAAAAPw/Kyk3-0Gbmno/s1600-h/00069.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R9VvRus-IOI/AAAAAAAAAPw/Kyk3-0Gbmno/s320/00069.jpg" alt="" id="BLOGGER_PHOTO_ID_5176165697117364450" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.57    Large hawk or eagle seen and imaged. It appears to have been in a fight.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R9Ws5us-IeI/AAAAAAAAARw/Y1OVnQdy3sY/s1600-h/00070p.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R9Ws5us-IeI/AAAAAAAAARw/Y1OVnQdy3sY/s320/00070p.jpg" alt="" id="BLOGGER_PHOTO_ID_5176233454521426402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2008.02.29&lt;br /&gt;&lt;br /&gt;14.44    Snow from earlier in the week is almost gone.  Its in the 40's today.&lt;br /&gt;14.57    Hearing birds, but not seeing them.  Ice in the river is melting, but no clear channel yet.&lt;br /&gt;15.22    Image of squirrel taken, because I am not seeing anything else.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R9Vucus-IMI/AAAAAAAAAPg/JzS5ZF29Ph0/s1600-h/00072.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R9Vucus-IMI/AAAAAAAAAPg/JzS5ZF29Ph0/s320/00072.jpg" alt="" id="BLOGGER_PHOTO_ID_5176164786584297666" border="0" /&gt;&lt;/a&gt;2008.03.01&lt;br /&gt;&lt;br /&gt;14.52    About 40 today, lots of melting and I am having to work my way around it, mostly using ice bridges.&lt;br /&gt;15.09    Geese imaged on the creek, the first of the year (there is over 20 of them.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R9VuHus-ILI/AAAAAAAAAPY/UbJsWYbFY3w/s1600-h/00075.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R9VuHus-ILI/AAAAAAAAAPY/UbJsWYbFY3w/s320/00075.jpg" alt="" id="BLOGGER_PHOTO_ID_5176164425807044786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R9Vtpes-IKI/AAAAAAAAAPQ/fcB4IC4lDKw/s1600-h/00080.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R9Vtpes-IKI/AAAAAAAAAPQ/fcB4IC4lDKw/s320/00080.jpg" alt="" id="BLOGGER_PHOTO_ID_5176163906116001954" border="0" /&gt;&lt;/a&gt;2008.03.04&lt;br /&gt;15.46    I am on the river trail today, several images of a cardinal taken.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R9Vs3Os-IJI/AAAAAAAAAPI/Eb0cR_iUoIQ/s1600-h/00084.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R9Vs3Os-IJI/AAAAAAAAAPI/Eb0cR_iUoIQ/s320/00084.jpg" alt="" id="BLOGGER_PHOTO_ID_5176163042827575442" border="0" /&gt;&lt;/a&gt;15.49    Several images of eagles taken, also seeing ducks in the river.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R9VrC-s-IEI/AAAAAAAAAOg/i7i4WPCaeLY/s1600-h/00085.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R9VrC-s-IEI/AAAAAAAAAOg/i7i4WPCaeLY/s320/00085.jpg" alt="" id="BLOGGER_PHOTO_ID_5176161045667782722" border="0" /&gt;&lt;/a&gt;16.08    Image taken of an eagle in a tree.  The tree is about 10 meters from me and the angle is up sharp.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R9VeKes-H_I/AAAAAAAAAN8/_JO-xFAMSa8/s1600-h/00093.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R9VeKes-H_I/AAAAAAAAAN8/_JO-xFAMSa8/s320/00093.jpg" alt="" id="BLOGGER_PHOTO_ID_5176146880865640434" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R9Vdq-s-H-I/AAAAAAAAAN0/gmG09rbvRYk/s1600-h/00095.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R9Vdq-s-H-I/AAAAAAAAAN0/gmG09rbvRYk/s320/00095.jpg" alt="" id="BLOGGER_PHOTO_ID_5176146339699761122" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-7246453297005116585?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/7246453297005116585/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=7246453297005116585' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/7246453297005116585'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/7246453297005116585'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2008/03/febuary-walks.html' title='Febuary Walks'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_sGaKnNqvb60/R9V2AOs-IbI/AAAAAAAAARY/SYVI9S3khfY/s72-c/00007.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-6544120853395897977</id><published>2008-02-01T15:49:00.000-06:00</published><updated>2008-12-09T01:27:31.766-06:00</updated><title type='text'>January</title><content type='html'>January has been a cold snowy month.  Very little astronomy was attempted since it was mostly cloudy.&lt;br /&gt;&lt;br /&gt;2008.01.03&lt;br /&gt;&lt;br /&gt;13.50 Squirrels seen, no image taken.&lt;br /&gt;13.51 Two downy woodpeckers seen, image of one taken (In the snow.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R6OU4RxdnJI/AAAAAAAAAL0/odhi0LmKnG4/s1600-h/100_090.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R6OU4RxdnJI/AAAAAAAAAL0/odhi0LmKnG4/s320/100_090.jpg" alt="" id="BLOGGER_PHOTO_ID_5162133292461169810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;14.00 Soaring eagle seen, no image taken (Its very difficult to get a picture of birds in flight,     due to the slow action on automatic digital cameras.)&lt;br /&gt;14.45  Geese seen flying in the distance.&lt;br /&gt;14.50 Three deer seen, probably all does. Got an image of one (Didn't turn out.)&lt;br /&gt;&lt;br /&gt;2008.01.04&lt;br /&gt;&lt;br /&gt;14.34 Image taken of some small birds, possibly sparrows (Didn't turn out.)&lt;br /&gt;.&lt;br /&gt;&lt;br /&gt;2008.01.10&lt;br /&gt;&lt;br /&gt;14.55 Squirrels seen, no image taken.&lt;br /&gt;&lt;br /&gt;2008.01.11&lt;br /&gt;&lt;br /&gt;14.59 Only seen squirrels up to this point, one image taken.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OVjhxdnKI/AAAAAAAAAL8/yn2oPX64_Ro/s1600-h/100_0100.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OVjhxdnKI/AAAAAAAAAL8/yn2oPX64_Ro/s320/100_0100.jpg" alt="" id="BLOGGER_PHOTO_ID_5162134035490512034" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;15.31 Eagle seen, no image taken.&lt;br /&gt;&lt;br /&gt;2008.01.15&lt;br /&gt;&lt;br /&gt;15.27 Saw two deer, got an image of one.  Then two other deer joined the first and then I got multiple images.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OW9hxdnLI/AAAAAAAAAME/dIuetLhYHXI/s1600-h/100_0101+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OW9hxdnLI/AAAAAAAAAME/dIuetLhYHXI/s320/100_0101+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162135581678738610" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R6OW-RxdnMI/AAAAAAAAAMM/igbi7NmkWSA/s1600-h/100_0102+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R6OW-RxdnMI/AAAAAAAAAMM/igbi7NmkWSA/s320/100_0102+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162135594563640514" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2008.01.16&lt;br /&gt;&lt;br /&gt;13.54 Currently there is light snow, but a larger storm is brewing to the west. (We received about 4 inches of snow durring the night.) Not much moving around, saw a few squirrels.&lt;br /&gt;14.21 Saw geese in flight, no images taken.&lt;br /&gt;&lt;br /&gt;2008.01.17&lt;br /&gt;&lt;br /&gt;15.24 There is fresh snow on the ground and it is cold (around 13 deg. Fareheit.) I have taken an image of a deer.  When the deer fled I could see two white tails.&lt;br /&gt;15.50 Several images taken of the frozen riverbed.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R6OZeBxdnQI/AAAAAAAAAMs/No5MvKpwXU4/s1600-h/100_0108+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R6OZeBxdnQI/AAAAAAAAAMs/No5MvKpwXU4/s320/100_0108+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162138339047742722" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OZaxxdnNI/AAAAAAAAAMU/y7kNdFh-Stw/s1600-h/100_0105+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OZaxxdnNI/AAAAAAAAAMU/y7kNdFh-Stw/s320/100_0105+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162138283213167826" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OZbxxdnOI/AAAAAAAAAMc/bDhNYhe755w/s1600-h/100_0106+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OZbxxdnOI/AAAAAAAAAMc/bDhNYhe755w/s320/100_0106+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162138300393037026" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OZchxdnPI/AAAAAAAAAMk/EPmkbfMWyeo/s1600-h/100_0107+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OZchxdnPI/AAAAAAAAAMk/EPmkbfMWyeo/s320/100_0107+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162138313277938930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2008.01.21&lt;br /&gt;&lt;br /&gt;14.26 Taken an image of a squirrel using its tail to protect itself from the falling snow with its tail.  Saw a downy Woodpecker, but didn't get an image.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OcGhxdnSI/AAAAAAAAAM8/F7UlcGwEg-4/s1600-h/100_0115.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OcGhxdnSI/AAAAAAAAAM8/F7UlcGwEg-4/s320/100_0115.jpg" alt="" id="BLOGGER_PHOTO_ID_5162141233855700258" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;14.54 Now I have taken an image of a downy woodpecker.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R6ObthxdnRI/AAAAAAAAAM0/ZNYklo65Luo/s1600-h/100-0119.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R6ObthxdnRI/AAAAAAAAAM0/ZNYklo65Luo/s320/100-0119.jpg" alt="" id="BLOGGER_PHOTO_ID_5162140804358970642" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;15.10 Saw an eagle in flight, no image taken.&lt;br /&gt;&lt;br /&gt;2008.01.22&lt;br /&gt;&lt;br /&gt;13.37 Three does in the brush, image attempted, but it didn't turn out.&lt;br /&gt;13.43 Seeing a lot of red squirrels, no images attampted.&lt;br /&gt;13.45 Ok, I took a couple images of a squirrel.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R6Oc2xxdnTI/AAAAAAAAANE/qw-q-1RNWlI/s1600-h/100_0124+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R6Oc2xxdnTI/AAAAAAAAANE/qw-q-1RNWlI/s320/100_0124+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162142062784388402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2008.01.23&lt;br /&gt;&lt;br /&gt;13.27 Light snow, no animals seen so far.&lt;br /&gt;13.39 Saw two deer at a distance, no image attempted. They appear to be circling around me.&lt;br /&gt;13.46 Took an image of a squirrel at fairly near range.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OddxxdnUI/AAAAAAAAANM/Unbq-i7VHQw/s1600-h/100_0126+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OddxxdnUI/AAAAAAAAANM/Unbq-i7VHQw/s320/100_0126+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162142732799286594" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2008.01.25&lt;br /&gt;&lt;br /&gt;15.49 Lots of geese on the Des Moines River.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OdexxdnVI/AAAAAAAAANU/mIc7PSG9BP4/s1600-h/100_0127+%28copy%29.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R6OdexxdnVI/AAAAAAAAANU/mIc7PSG9BP4/s320/100_0127+%28copy%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5162142749979155794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Have seen three eagles that have landed in some trees.  One is directly across&lt;br /&gt;the river from me and the others are a few hundred yards up the river.  Tried to take an image but they didn't turn out very good, but am posting the best one.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R6OeaRxdnWI/AAAAAAAAANc/rqo0gi0tMvM/s1600-h/100_0129.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R6OeaRxdnWI/AAAAAAAAANc/rqo0gi0tMvM/s320/100_0129.jpg" alt="" id="BLOGGER_PHOTO_ID_5162143772181372258" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2008.01.28&lt;br /&gt;&lt;br /&gt;14.14 Warm today, low 50's.  The snow is melting and cricks are filling up.&lt;br /&gt;&lt;br /&gt;15.05 Eagle spotted, several images attempted.&lt;br /&gt;&lt;br /&gt;2008.01.30&lt;br /&gt;&lt;br /&gt;14.38 Current tempature 7 degrees Ferinheit, light snow.  Yesterday I skipped walking due to a -14 windchill factor.  Taken image of four deer,&lt;br /&gt;then at least three more join them.  Several images taken.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R6OfDBxdnYI/AAAAAAAAANs/I4A7GmJko5o/s1600-h/100_0144.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R6OfDBxdnYI/AAAAAAAAANs/I4A7GmJko5o/s320/100_0144.jpg" alt="" id="BLOGGER_PHOTO_ID_5162144472261041538" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;15.28 Several images of what I think is an American Kestrel.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OeahxdnXI/AAAAAAAAANk/QQmTs3S9ztY/s1600-h/100_0146.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R6OeahxdnXI/AAAAAAAAANk/QQmTs3S9ztY/s320/100_0146.jpg" alt="" id="BLOGGER_PHOTO_ID_5162143776476339570" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-6544120853395897977?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/6544120853395897977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=6544120853395897977' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/6544120853395897977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/6544120853395897977'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2008/02/january.html' title='January'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/R6OU4RxdnJI/AAAAAAAAAL0/odhi0LmKnG4/s72-c/100_090.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-3072812873564794189</id><published>2008-01-07T10:10:00.001-06:00</published><updated>2008-01-07T20:17:32.514-06:00</updated><title type='text'>The Iowa Caucus</title><content type='html'>I attended my local Republican Iowa Caucus.  Like usual, I left pissed.  First off, let me state for the record that I am a moderate who has only a mild tilt to the right.  And yes I attend church regularly, but I consider my religion to be a thoughtful process and not a knee jerk reaction.&lt;br /&gt;&lt;br /&gt;First off, they had us recite the Pledge of Allegiance.  OK, I could live with that.  Then they passed around a petition to have Judge Robert Hansen impeached due to decision he made to grant a divorce to a gay couple. They called his actions illegal. I found there assertions to be questionable. I also found the display to be hateful to people they don't understand. Maybe my perspective is skewed since I have a close friend that is gay.  I did not sign it.&lt;br /&gt;&lt;br /&gt;Then each candidate's representative was asked to speak on behalf of their candidate.  I gave it a moment, to see if someone would speak.  When none did, I spoke up.&lt;br /&gt;&lt;br /&gt;I said that the last two election have been very divisive, splitting the country right down the middle.   I also stated that I was supporting Giuliani, who I felt would be a healing candidate.  Maybe the right and the left wouldn't be totally happy with him, but he was someone they could accept, while if a right wing candidate was selected we would have a repeat of our current situation.&lt;br /&gt;&lt;br /&gt;Then a Huckabee supporter, stood up and said that the country needs moral leadership.  He mentioned King David as an example and said he was supporting Huckabee.  He tried to quote scripture and couldn't.  He did mention that God often chooses the common men (like a shepherd) to be leaders.&lt;br /&gt;&lt;br /&gt;I could have gone off on the King David comment, but chose not to.  I did make one final statement though.   They had mentioned that workers were needed to get out the final vote, since Democrats out number Republicans in our state.  I added Most Americans are moderates in varying degrees and if we choose a right wing candidate again this time, we are taking a crap shoot and I believe we will lose it this time, while a moderate is a safer bet.&lt;br /&gt;&lt;br /&gt;There were other statements for the other candidates also, but I could feel the force was against me.  In the end I was the only vote for Giuliani, with about 6 votes going for Romney and the vast amount going for Huckabee.&lt;br /&gt;&lt;br /&gt;Final thoughts:&lt;br /&gt;&lt;br /&gt;It seems that the parties haven't learned anything from the previous election cycle and want to fight the same battle over.  But I suspect the real problem is that Iowa holds a caucus, not a primary.  Caucuses, require a commitment of several hours, while a Primary requires only 15 - 30 minutes.  In a Primary, the voter goes and casts their vote and then they can follow up on the rest of their personal responsibilities.  The upshot of all of this is that for a Caucus only the party activists show up and therefore extreme ends of each party are chosen.  The Caucus is a quaint romantic notion of what politics should be like and not representative of our fast paced digital world and most Iowans bypass it.  I had to use two hours of personal time to even attend.  So a state of 3 million (Of which only a small minority vote at the caucus level) gets to skew the presidential election for a nation of 300 million, it just doesn't make a whole lot of sense.&lt;br /&gt;&lt;br /&gt;I would love to actually see, the Right wing nominate their candidate on the Republican side, the left wing nominate theirs on Democratic side and then a moderate run as an Independent and take the Presidency away from both of these two bozo parties.  Within 3 to 4 election cycles after such an event we would see both parties sidelined as minority parties and a new center party would emerge.  Then the two fringe parties would be pumping new ideas into the national debate and the center party could decide what is reasonable and what isn't.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-3072812873564794189?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/3072812873564794189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=3072812873564794189' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3072812873564794189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3072812873564794189'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2008/01/iowa-caucus.html' title='The Iowa Caucus'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-439861149934522021</id><published>2007-12-06T20:00:00.001-06:00</published><updated>2008-12-09T01:27:32.036-06:00</updated><title type='text'>A new Woodpecker</title><content type='html'>&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;/span&gt;I took my usual walk Monday and came upon a woodpecker.  I fired up my new Kodak and tried to take a shot, but it kept flying from tree to tree.  After lighting on about three trees, he lit down on a small shrub.  I quickly fired off two shots at maximum zoom and then he was gone.&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R1ipzpeXlGI/AAAAAAAAALk/JEY3OcKjmPo/s1600-h/00012.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R1ipzpeXlGI/AAAAAAAAALk/JEY3OcKjmPo/s320/00012.jpg" alt="" id="BLOGGER_PHOTO_ID_5141045679415071842" border="0" /&gt;&lt;/a&gt;At first I thought he was just a Downy Woodpecker, but after more careful scruitney of the image we are about 95% sure that this little feller is a male Hairy Woodpecker.  Tell me what you think?&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R1iqrJeXlHI/AAAAAAAAALs/rHKLMJm7dWs/s1600-h/HarrieWP.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R1iqrJeXlHI/AAAAAAAAALs/rHKLMJm7dWs/s320/HarrieWP.jpg" alt="" id="BLOGGER_PHOTO_ID_5141046632897811570" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-439861149934522021?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/439861149934522021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=439861149934522021' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/439861149934522021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/439861149934522021'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/12/new-woodpecker.html' title='A new Woodpecker'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/R1ipzpeXlGI/AAAAAAAAALk/JEY3OcKjmPo/s72-c/00012.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5690531954402745683</id><published>2007-12-01T22:34:00.001-06:00</published><updated>2008-12-09T01:27:32.552-06:00</updated><title type='text'></title><content type='html'>Well, there has been this little red headed woodpecker hanging around where I walk.  He is also a noisy litte feller, which I assume is his strategy to get at the insects.  Well, I tried to get an image of him and tried and tried and tried.  But between battery problems and slow camera boot up and this little feller just playing hard to get, I couldn't get it.&lt;br /&gt;&lt;br /&gt;Well Best Buy had a sale on a new camera (and a lot of other stuff,) but I wasn't going to stand in line at 3 am just to get a chance for something.  So the following day we went out there.  Someone must have missed it, because they had one Kodak Easy Share Z712 camera left.  I had some trouble convincing the clerk that this camera was the one on sale.  Well, I very happily walked out of the store with a 7 megapixel, 12x zoom camera all for under $200.&lt;br /&gt;&lt;br /&gt;Well early this week I got the following image.  I only got one shot at him.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R1I2CZeXlEI/AAAAAAAAALU/-FwbjVRH7kI/s1600-R/00003.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R1I2CZeXlEI/AAAAAAAAALU/-IjPf8Nu6OM/s320/00003.jpg" alt="" id="BLOGGER_PHOTO_ID_5139229539609056322" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Yea, thats him sitting in the middle of the picture on a branch.  He was quite a ways off and this is at maximum zoom.  Not impressed, well look down below at just a small section of this image!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R1I2CZeXlFI/AAAAAAAAALc/q-s5bRrac0g/s1600-R/LittleBird.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R1I2CZeXlFI/AAAAAAAAALc/n7qCtBRILXE/s320/LittleBird.jpg" alt="" id="BLOGGER_PHOTO_ID_5139229539609056338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Its good enough that I can identify him now.  We believe him to be a male Red Bellied Woodpecker.  According to &lt;a href="http://en.wikipedia.org/wiki/Red-bellied_Woodpecker"&gt;Wikopedia&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;Red-bellied woodpeckers are noisy birds, and have many varies &lt;a href="http://en.wikipedia.org/wiki/Bird_song" title="Bird song"&gt;&lt;/a&gt;calls. Calls have been described as sounding like &lt;i&gt;"churr-churr-churr"&lt;/i&gt; or &lt;i&gt;"chuf-chuf-chuf"&lt;/i&gt; with an alternating &lt;i&gt;"br-r-r-r-t"&lt;/i&gt; sound. Males tend to call and drum more frequently than females, but both sexes call.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5690531954402745683?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5690531954402745683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5690531954402745683' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5690531954402745683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5690531954402745683'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/12/well-there-has-been-this-little-red.html' title=''/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_sGaKnNqvb60/R1I2CZeXlEI/AAAAAAAAALU/-IjPf8Nu6OM/s72-c/00003.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-5320919411810503489</id><published>2007-11-26T20:12:00.000-06:00</published><updated>2008-12-09T01:27:33.987-06:00</updated><title type='text'>A Walk in the Virgin Snow</title><content type='html'>November 21st  Des &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Moines&lt;/span&gt; was supposed to just get a dusting of snow.  It turned out to be the first  snow storm of the year giving us about 3 inches.  I was working that day, so about 2:30pm having accumulated all of my break time from a 12 hour shift, I went out for a walk.  My co-workers thought I was nuts, but I went anyway.  All of my break time is  1 hour and 15 minutes, if you are curious.&lt;br /&gt;&lt;br /&gt;The first two images are looking down from my  Employer's Property on to the  valley where I walk, as you can see it is still snowing.  The little circle in the upper center of these images is the result of a smudge on the lens, sorry.&lt;br /&gt;.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R0uBniMHswI/AAAAAAAAAK8/xmUdIH7SEJE/s1600-h/p1010028.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R0uBniMHswI/AAAAAAAAAK8/xmUdIH7SEJE/s320/p1010028.jpg" alt="" id="BLOGGER_PHOTO_ID_5137342316138705666" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/R0uBNyMHsvI/AAAAAAAAAK0/migsF0mrq78/s1600-h/p1010029.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/R0uBNyMHsvI/AAAAAAAAAK0/migsF0mrq78/s320/p1010029.jpg" alt="" id="BLOGGER_PHOTO_ID_5137341873757074162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The following image is half way to the woods, this is &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;prairie&lt;/span&gt; in transition to woods.  These are very young trees and scrub plants.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R0uA5iMHsuI/AAAAAAAAAKs/uYrNmfEVxF4/s1600-h/p1010031.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R0uA5iMHsuI/AAAAAAAAAKs/uYrNmfEVxF4/s320/p1010031.jpg" alt="" id="BLOGGER_PHOTO_ID_5137341525864723170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The following two images is where I am approaching the woods.  It is still snowing pretty good.  This area flooded real bad several times last spring and summer and therefore not much shrubbery is growing here, but there are some trees in the background (The Woods.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R0uAmiMHstI/AAAAAAAAAKk/BPhpJHRUw-s/s1600-h/p1010034.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R0uAmiMHstI/AAAAAAAAAKk/BPhpJHRUw-s/s320/p1010034.jpg" alt="" id="BLOGGER_PHOTO_ID_5137341199447208658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R0t_fCMHssI/AAAAAAAAAKc/84GHzTf8FiM/s1600-h/p1010035.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R0t_fCMHssI/AAAAAAAAAKc/84GHzTf8FiM/s320/p1010035.jpg" alt="" id="BLOGGER_PHOTO_ID_5137339971086561986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The entrance to the Woods.  This  image doesn't relay very well the gloomy foreboding appearance that existed in reality.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/R0t_eiMHsrI/AAAAAAAAAKU/tMddtwrDiFA/s1600-h/p1010037.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/R0t_eiMHsrI/AAAAAAAAAKU/tMddtwrDiFA/s320/p1010037.jpg" alt="" id="BLOGGER_PHOTO_ID_5137339962496627378" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;After the woods, you come to the creek.  I like this area, it is my favorite place on the trail.  There is a bench up along here, and it can be very pleasant to just sit and relax.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/R0t_eCMHsqI/AAAAAAAAAKM/49dBf2saqdM/s1600-h/p1010040.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/R0t_eCMHsqI/AAAAAAAAAKM/49dBf2saqdM/s320/p1010040.jpg" alt="" id="BLOGGER_PHOTO_ID_5137339953906692770" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is &lt;a href="http://www.blogger.com/img/gl.link.gif"&gt;Cheryl's&lt;/a&gt; favorite image, with the entrance to the woods being second.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/R0t-_SMHspI/AAAAAAAAAKE/9gWwNxgommg/s1600-h/p1010041.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/R0t-_SMHspI/AAAAAAAAAKE/9gWwNxgommg/s320/p1010041.jpg" alt="" id="BLOGGER_PHOTO_ID_5137339425625715346" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-5320919411810503489?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/5320919411810503489/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=5320919411810503489' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5320919411810503489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/5320919411810503489'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/11/walk-in-virgin-snow.html' title='A Walk in the Virgin Snow'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_sGaKnNqvb60/R0uBniMHswI/AAAAAAAAAK8/xmUdIH7SEJE/s72-c/p1010028.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-3242944896842600018</id><published>2007-09-22T11:02:00.002-05:00</published><updated>2008-12-09T01:27:36.118-06:00</updated><title type='text'>Iowa Star Party</title><content type='html'>First of all that's my telescope.  It is a 20cm (8 Inch) LX-90 SCT.  It is a f10 instrument with a focal length of 2032mm.  I like &lt;a href="http://en.wikipedia.org/wiki/Schmidt-Cassegrain_telescope"&gt;SCT's&lt;/a&gt; because they are good all around performers.  They don't excel at anything, but they perform well in all categories and they are very transportable.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_asyOq4I/AAAAAAAAAJ8/lWnLV1v7nB8/s1600-h/MyTelescope.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_asyOq4I/AAAAAAAAAJ8/lWnLV1v7nB8/s320/MyTelescope.jpg" alt="" id="BLOGGER_PHOTO_ID_5113062679880051586" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The telescope you see here breaks down into three pieces:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt; The tripod&lt;/li&gt;&lt;li&gt;The wedge&lt;/li&gt;&lt;li&gt;The telescope and its fork mount.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; And if necessary, I can carry this telescope in almost any car.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_RsyOq3I/AAAAAAAAAJ0/GFn0SALDGYE/s1600-h/MyTelBnDn.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_RsyOq3I/AAAAAAAAAJ0/GFn0SALDGYE/s320/MyTelBnDn.jpg" alt="" id="BLOGGER_PHOTO_ID_5113062525261228914" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;That is Kevin Fox on the left and Jim Holloway on the right.  They are members of the &lt;a href="http://www.dmasonline.org/"&gt;Des Moines Astronomical Society&lt;/a&gt; (DMAS which is my club.)  And they built this telescope themselves.  It is a 16 inch F5 Newtonian, they did all of the woodworking and they ground the optics themselves. These are commonly called &lt;a href="http://en.wikipedia.org/wiki/Dobsonian"&gt;DOBs&lt;/a&gt;, since the basic design came from &lt;a href="http://en.wikipedia.org/wiki/John_Dobson_%28astronomer%29"&gt;John Dobson&lt;/a&gt; one of the original side walk astronomers. They will sell it for $2600.00, Jim later told me that he is very proud of the optics on this telescope.  I have two pictures of them with this scope, one didn't have the black cover fully around the scope.  Jim jokingly told me not to use that picture, since they wanted no pornographic telescope pictures published.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_IsyOq2I/AAAAAAAAAJs/6Aih3IWlgtQ/s1600-h/KFox-JHalloway.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_IsyOq2I/AAAAAAAAAJs/6Aih3IWlgtQ/s320/KFox-JHalloway.jpg" alt="" id="BLOGGER_PHOTO_ID_5113062370642406242" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Another member of our club, Tammy Mortenson with her 10 inch LX-200 GPS telescope.  It is a bigger cousin of my telescope.  The Mortenson's bought a party tent from Walmart and set it up without the roof and used it as a wind and light shield.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-_MyOq1I/AAAAAAAAAJk/xdBhS7pS7r4/s1600-h/TMortenson.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-_MyOq1I/AAAAAAAAAJk/xdBhS7pS7r4/s320/TMortenson.jpg" alt="" id="BLOGGER_PHOTO_ID_5113062207433648978" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Bob Price from the Chicago area.  This is also a 16 inch F5 Dob telescope.  Bob ground the optics himself in a telescope making shop and the rest was a kit from Astro Systems.  I quietly looked through both 16 inch F5 telescopes at the same object and thought Jim and Kevin's performed better, but my opinion may be less then fair since they are members of my club.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-3MyOq0I/AAAAAAAAAJc/pdrLeMeQ2i4/s1600-h/BPrice.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-3MyOq0I/AAAAAAAAAJc/pdrLeMeQ2i4/s320/BPrice.jpg" alt="" id="BLOGGER_PHOTO_ID_5113062069994695490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Unfortunately, when I went around to take this gentleman's picture, I didn't get his name.  I do know he is also from the Chicago area and he will talk your arm off.  His first telescope is a 8 inch F6 Newtonian on a El Novac mount.  He said it was refigured around 1990, saying like most commercial mirrors it had only one half the correction it needed.  The second telescope is a 6 inch F5.33 (most amateurs would just say F5.)  He says he has an eye piece that will give him a full 3 degrees field of view (that is very good.)  That night he showed me the North American Nebula through this scope and it was very impressive.  I have trouble seeing it through my scope, since I can only get a field of view around 1.25 degrees.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RvU-vcyOqzI/AAAAAAAAAJU/s4Tf4CNUyFM/s1600-h/UnKnown.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RvU-vcyOqzI/AAAAAAAAAJU/s4Tf4CNUyFM/s320/UnKnown.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061936850709298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Dave Venne from Burnsville, MN and teaches at Augsburg College (Meteorology and Astronomy.)    His telescope is a Teleue 102 mm (4 inch) refractor on a goto mount.  He admitted to finally giving into the goto.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RvU-k8yOqyI/AAAAAAAAAJM/U7ogg7jPUNc/s1600-h/DVenne.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RvU-k8yOqyI/AAAAAAAAAJM/U7ogg7jPUNc/s320/DVenne.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061756462082850" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Al Johnson, President of the &lt;a href="http://www.amesastronomers.org/"&gt;Ames Area Amateur Astronomy Club&lt;/a&gt;.  This is a 24 inch DOB with a 100 inch focal length (F4.)  Al Johnson and Jim Bonzer (see image below) built this for  Ames Area Amateur Astronomy Club.  This is the largest telescope on the observing field.  I have seen larger ones though, Jim Holloway used to own a 32 inch DOB.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-dMyOqxI/AAAAAAAAAJE/lEz4S1WthVI/s1600-h/AJ.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-dMyOqxI/AAAAAAAAAJE/lEz4S1WthVI/s320/AJ.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061623318096658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Jim Bonzer with his telephoto setup that he uses for astro photography.  The lens is a 80mm F8 telephoto lens (Its basically a refractor) and the camera is a Canon 30D digital SLR (Astronomers love this camera.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU-XsyOqwI/AAAAAAAAAI8/flLVPLSoI1g/s1600-h/JBonzer.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU-XsyOqwI/AAAAAAAAAI8/flLVPLSoI1g/s320/JBonzer.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061528828816130" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Ben Sinclair, another member of DMAS and his 12 inch Orion DOB, its a F4.9, which is a fairly fast scope. Little side story here. Ben forgot to see if the telescope would fit in his car when he bought it (It Won't,) so he had to rent a SUV to bring it to the star party.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-PMyOqvI/AAAAAAAAAI0/glN5dEAvkxs/s1600-h/BSinclair.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RvU-PMyOqvI/AAAAAAAAAI0/glN5dEAvkxs/s320/BSinclair.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061382799928050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is Charles Whitford from Arkansas and a member of the Sugar Creek Astronomy Club with his 12 inch Meade Lightbridge telescope. It is a f5 telescope with a focal length of 1524mm. Charles is a retired band instructor who plays a Native American Flute (He played some Dvorak for me.)  The day he arrived was his 85th birthday and the story I heard was that the condominium where he lives was planning on throwing a birthday party for him.  But he bolted and came to our little star party instead.  I picture a lot of very disappointed little old ladies.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU-FsyOquI/AAAAAAAAAIs/KmaqokTYltU/s1600-h/CWhitford.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RvU-FsyOquI/AAAAAAAAAIs/KmaqokTYltU/s320/CWhitford.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061219591170786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The Iowa Star Party is hosted by Ames Area Amateur Astronomy Club and Whiterock Conservancy.  &lt;a href="http://www.whiterockconservancy.org/"&gt;Whiterock Conservancy&lt;/a&gt; is an organization to protect the land that used to belong to Garst Farms.  In the middle of Whiterock Conservancy is a little Bed &amp;amp; Breakfast (&lt;a href="http://www.farmresort.com/"&gt;Whiterock Resort&lt;/a&gt; ) ran by Liz Garst.  The Whiterock Resort provided us with this meal Saturday.  The pork was pretty good and the green beans were fine. The Au Gratin potatoes and the cucumbers were excellent.  Now before I tell you about the tomatoes, let me explain a little classification system I have for tomatoes:&lt;br /&gt;&lt;br /&gt;1.Communist tomatoes, these are the tomatoes served in fast food restaurant.  They are usually pink and sometimes even have green in them.  These are terrible tomatoes and only the most common of appetites would enjoy these tomatoes.&lt;br /&gt;2.A step up from Communist tomatoes, is Capitalist tomatoes.  These are the ones grown in greenhouses and you will often find these tomatoes in sit down type restaurants.  The color of these tomatoes is usually red and they taste ok, but are usually not wonderful.&lt;br /&gt;3.Bourgeois tomatoes are usually home grown or at least hand cared for in a garden and not in a green house.  These tomatoes are usually the best and taste at their peak around July.&lt;br /&gt;&lt;br /&gt;4The tomatoes we were served were not only bourgeois, but the best of the class.  Not only that, they had the aroma of tomatoes and any tomato connoisseur would have enjoyed.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RvU978yOqtI/AAAAAAAAAIk/F0ZPhfyz1gk/s1600-h/Food.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RvU978yOqtI/AAAAAAAAAIk/F0ZPhfyz1gk/s320/Food.jpg" alt="" id="BLOGGER_PHOTO_ID_5113061052087446226" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And finally, on the day we were breaking camp and everyone else had left.  I got a picture of this fawn on the edge of the observing field.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RvU9E8yOqrI/AAAAAAAAAIU/eTdZvUY5dRM/s1600-h/Fawn.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RvU9E8yOqrI/AAAAAAAAAIU/eTdZvUY5dRM/s320/Fawn.jpg" alt="" id="BLOGGER_PHOTO_ID_5113060107194641074" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-3242944896842600018?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/3242944896842600018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=3242944896842600018' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3242944896842600018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3242944896842600018'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/09/iowa-star-party.html' title='Iowa Star Party'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/RvU_asyOq4I/AAAAAAAAAJ8/lWnLV1v7nB8/s72-c/MyTelescope.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-9159212246729985500</id><published>2007-07-06T14:30:00.000-05:00</published><updated>2008-12-09T01:27:36.475-06:00</updated><title type='text'>Venus and Saturn</title><content type='html'>Venus and Saturn from my Driveway Sunday, July 1st 09:30pm.&lt;br /&gt;They were within one field of view with my lowest power eye piece.  Unfortunatly I wasn't able to imige that.  From our vantage point, the two planets were only 0.8 degrees apart.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_sGaKnNqvb60/Ro6Yp3YcqyI/AAAAAAAAAIM/qGTBkoSlHBY/s1600-h/p7010078.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5084168874356419362" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_sGaKnNqvb60/Ro6Yp3YcqyI/AAAAAAAAAIM/qGTBkoSlHBY/s320/p7010078.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-9159212246729985500?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/9159212246729985500/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=9159212246729985500' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/9159212246729985500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/9159212246729985500'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/07/venus-and-saturn.html' title='Venus and Saturn'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/Ro6Yp3YcqyI/AAAAAAAAAIM/qGTBkoSlHBY/s72-c/p7010078.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-8424394697128877536</id><published>2007-05-11T21:43:00.000-05:00</published><updated>2008-12-09T01:27:37.972-06:00</updated><title type='text'>Images This Week</title><content type='html'>&lt;div&gt;Monday 5/7 I took this image of a Goldfinch, I swear the bird was only two inches in length. My books say they should be 5.&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_sGaKnNqvb60/RkUsT0LNhSI/AAAAAAAAAH8/ZDt_bbWYuDE/s1600-h/Untitled.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5063502074982794530" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RkUsT0LNhSI/AAAAAAAAAH8/ZDt_bbWYuDE/s320/Untitled.jpg" border="0" /&gt;&lt;/a&gt; Also Monday, up in Terra Park, there is a flood control pond with a bunch of reeds growing. It is a favorite hangout for ducks and geese. I got this picture of a duck.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUr-ULNhRI/AAAAAAAAAH0/4gsYALAadgU/s1600-h/p5070039.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5063501705615607058" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUr-ULNhRI/AAAAAAAAAH0/4gsYALAadgU/s320/p5070039.jpg" border="0" /&gt;&lt;/a&gt; And then I got lucky and caught these ducks while taking off, you can decide if it is a good image or not.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;img id="BLOGGER_PHOTO_ID_5063500885276853490" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RkUrOkLNhPI/AAAAAAAAAHk/6RugHhRK-Qc/s320/p5070041.jpg" border="0" /&gt;Tuesday, I walked down to the creek to see if the flooding had subsided. It hadn't, but while down there I spied this Meadowlark. I am not quite sure if it is the Easttern or Western variety, maybe someone out there can tell me. &lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;img id="BLOGGER_PHOTO_ID_5063513400811554098" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RkU2nELNhTI/AAAAAAAAAIE/Hiu3ioumYAc/s320/Meadowlark.jpg" border="0" /&gt;I then saw some geese on the greens surrounding Terra Park Pond. It sort of a dike built around the pond. I usually circle the pond once and then walk back to work.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUrNULNhNI/AAAAAAAAAHU/ZCOGVS6kxoE/s1600-h/p5080054.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5063500863802016978" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUrNULNhNI/AAAAAAAAAHU/ZCOGVS6kxoE/s320/p5080054.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Wendesday, I walked down toward the creek to see if it had improved. It hadn't.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://1.bp.blogspot.com/_sGaKnNqvb60/RkUqtELNhMI/AAAAAAAAAHM/BtfUFH6e6Dg/s1600-h/p5090060.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5063500309751235778" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RkUqtELNhMI/AAAAAAAAAHM/BtfUFH6e6Dg/s320/p5090060.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And then to add insult to injury, I spied this duck swimming over what should be the trail.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUqfULNhLI/AAAAAAAAAHE/4CSzLexUp00/s1600-h/p5090059.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5063500073528034482" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUqfULNhLI/AAAAAAAAAHE/4CSzLexUp00/s320/p5090059.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;So I then walked back to Terra Park and spotted this deer.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;img id="BLOGGER_PHOTO_ID_5063499781470258338" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RkUqOULNhKI/AAAAAAAAAG8/eCkJtjNe9bo/s320/p5090064.jpg" border="0" /&gt;&lt;br /&gt;I apparently spooked him and he took off. I got lucky and got him in motion. Lucky because, the action on the camera is so slow any action images are pure luck.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_sGaKnNqvb60/RkUqN0LNhJI/AAAAAAAAAG0/1_XmkpROhBA/s1600-h/p5090066.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5063499772880323730" style="DISPLAY: block; MARGIN: 0px auto 10px; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RkUqN0LNhJI/AAAAAAAAAG0/1_XmkpROhBA/s320/p5090066.jpg" border="0" /&gt;&lt;/a&gt;And this in my opion is the best image of the week.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-8424394697128877536?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/8424394697128877536/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=8424394697128877536' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/8424394697128877536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/8424394697128877536'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/05/images-this-week.html' title='Images This Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sGaKnNqvb60/RkUsT0LNhSI/AAAAAAAAAH8/ZDt_bbWYuDE/s72-c/Untitled.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-4730046100452229451</id><published>2007-05-05T12:02:00.000-05:00</published><updated>2008-12-09T01:27:39.569-06:00</updated><title type='text'>Late April</title><content type='html'>April 24th - 25th it rained in the Des Moines (and all of central Iowa) area. According to Iowa State University we got 2.7 inches over the two days. This of course had a negative effect on my excercise program since it flooded my walking trail. I work in a Johnston (A suburb of Des Moines, IA) and right behind my employer is a very nice bike and walking trail.&lt;br /&gt;&lt;br /&gt;These images were taken on April 26th.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/Rjy6ukLNg-I/AAAAAAAAAFc/W07HkFfrlx4/s1600-h/p4270005.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/Rjy6ukLNg-I/AAAAAAAAAFc/W07HkFfrlx4/s320/p4270005.jpg" alt="" id="BLOGGER_PHOTO_ID_5061125390405043170" border="0" /&gt;&lt;/a&gt;If you look at just below the trees, there is a thin strip of water. This is the creek that has overflowed. This is looking down from my employers property toward the North East, which is considerbly higher then the walking trail.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/Rjy6vELNg_I/AAAAAAAAAFk/D0SmtntbQJc/s1600-h/p4270006.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/Rjy6vELNg_I/AAAAAAAAAFk/D0SmtntbQJc/s320/p4270006.jpg" alt="" id="BLOGGER_PHOTO_ID_5061125398994977778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy6vULNhAI/AAAAAAAAAFs/VoKch8q7kZM/s1600-h/p4270007.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy6vULNhAI/AAAAAAAAAFs/VoKch8q7kZM/s320/p4270007.jpg" alt="" id="BLOGGER_PHOTO_ID_5061125403289945090" border="0" /&gt;&lt;/a&gt;These two pictures are looking to the south east of my employers property, the flooding is much more prominent here.&lt;br /&gt;&lt;br /&gt;Since I wasn't going to be able to walk on my favorite trails, I decided to walk over to Terra Park, which is about one half mile from where I work. I found the two signs in the following pictures kind of amusing. The following three images all were on the south edge of the park.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/Rjy6RkLNg7I/AAAAAAAAAFE/V9hc84Bg6P4/s1600-h/p4270009.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_sGaKnNqvb60/Rjy6RkLNg7I/AAAAAAAAAFE/V9hc84Bg6P4/s320/p4270009.jpg" alt="" id="BLOGGER_PHOTO_ID_5061124892188836786" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy6R0LNg8I/AAAAAAAAAFM/aGRlEhJ64Pw/s1600-h/p4270010.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy6R0LNg8I/AAAAAAAAAFM/aGRlEhJ64Pw/s320/p4270010.jpg" alt="" id="BLOGGER_PHOTO_ID_5061124896483804098" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy6SULNg9I/AAAAAAAAAFU/ezqi5rAvu98/s1600-h/p4270012.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy6SULNg9I/AAAAAAAAAFU/ezqi5rAvu98/s320/p4270012.jpg" alt="" id="BLOGGER_PHOTO_ID_5061124905073738706" border="0" /&gt;&lt;/a&gt;Thursday May 3rd, I was able to get down to the creek and take a few pictures.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy5y0LNg6I/AAAAAAAAAE8/PxcMuym9uIQ/s1600-h/p5020022.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy5y0LNg6I/AAAAAAAAAE8/PxcMuym9uIQ/s320/p5020022.jpg" alt="" id="BLOGGER_PHOTO_ID_5061124363907859362" border="0" /&gt;&lt;/a&gt;This tree was aparently ripped out by the root and is now in the middle of the creek.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy5j0LNg4I/AAAAAAAAAEs/azh2J_Bn2eI/s1600-h/p5020023.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy5j0LNg4I/AAAAAAAAAEs/azh2J_Bn2eI/s320/p5020023.jpg" alt="" id="BLOGGER_PHOTO_ID_5061124106209821570" border="0" /&gt;&lt;/a&gt;Sand has been deposited from the creek up onto the trail.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sGaKnNqvb60/Rjy5kELNg5I/AAAAAAAAAE0/UN29Z_P8YEU/s1600-h/p5020024.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_sGaKnNqvb60/Rjy5kELNg5I/AAAAAAAAAE0/UN29Z_P8YEU/s320/p5020024.jpg" alt="" id="BLOGGER_PHOTO_ID_5061124110504788882" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy5HULNg1I/AAAAAAAAAEU/H9dvA9TpbGg/s1600-h/p5020025.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy5HULNg1I/AAAAAAAAAEU/H9dvA9TpbGg/s320/p5020025.jpg" alt="" id="BLOGGER_PHOTO_ID_5061123616583549778" border="0" /&gt;&lt;/a&gt;This had been dry woodlands, now it is a wet mess.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy5H0LNg2I/AAAAAAAAAEc/zYO5hpFg8aU/s1600-h/p5020029.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_sGaKnNqvb60/Rjy5H0LNg2I/AAAAAAAAAEc/zYO5hpFg8aU/s320/p5020029.jpg" alt="" id="BLOGGER_PHOTO_ID_5061123625173484386" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy5IULNg3I/AAAAAAAAAEk/IVQCfjB-qAU/s1600-h/p5020030.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_sGaKnNqvb60/Rjy5IULNg3I/AAAAAAAAAEk/IVQCfjB-qAU/s320/p5020030.jpg" alt="" id="BLOGGER_PHOTO_ID_5061123633763418994" border="0" /&gt;&lt;/a&gt;Theese two images show the prarie just to the west of the creek. Notice how the grass has been ripped up and deposited around the tree trunks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-4730046100452229451?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/4730046100452229451/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=4730046100452229451' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/4730046100452229451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/4730046100452229451'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/05/late-april.html' title='Late April'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_sGaKnNqvb60/Rjy6ukLNg-I/AAAAAAAAAFc/W07HkFfrlx4/s72-c/p4270005.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-3810879116802391613</id><published>2007-03-11T21:27:00.000-05:00</published><updated>2008-12-09T01:27:40.736-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Local Characters'/><title type='text'>Animals</title><content type='html'>I haven't been posting lately due to the fact that Iowa can be boring during the winter. Now that spring is starting to peek through, I am starting to see animals again.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RfS7HPIu0zI/AAAAAAAAAC8/8jtp7-QBa1I/s1600-h/DownyWP.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040859615931061042" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfS7HPIu0zI/AAAAAAAAAC8/8jtp7-QBa1I/s320/DownyWP.jpg" border="0" /&gt;&lt;/a&gt;This little feller is a Downy Woodpecker and this image was taken sometime last month.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RfS7HfIu00I/AAAAAAAAADE/amFnRrkBE9c/s1600-h/p1010008.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040859620226028354" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RfS7HfIu00I/AAAAAAAAADE/amFnRrkBE9c/s320/p1010008.jpg" border="0" /&gt;&lt;/a&gt;Late last month, I saw a city of Geese hanging out at The Des &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Moines&lt;/span&gt;&lt;/span&gt; River, just north of the City.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RfS7HvIu01I/AAAAAAAAADM/weusWhGUDnM/s1600-h/p1010009.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040859624520995666" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfS7HvIu01I/AAAAAAAAADM/weusWhGUDnM/s320/p1010009.jpg" border="0" /&gt;&lt;/a&gt;Here is a closeup of some of the Geese.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RfS7IPIu02I/AAAAAAAAADU/Ke4lnPhuUv0/s1600-h/p1010043.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040859633110930274" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfS7IPIu02I/AAAAAAAAADU/Ke4lnPhuUv0/s320/p1010043.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I took this image last Friday. This character is a Cedar Waxwing, viewing him at 100% shows a lot of detail.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RfS7IfIu03I/AAAAAAAAADc/l-1MrqgMPus/s1600-h/p1010047.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040859637405897586" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RfS7IfIu03I/AAAAAAAAADc/l-1MrqgMPus/s320/p1010047.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And the same day I took this image, he is a Mink.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5040864460654171010" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfS_hPIu04I/AAAAAAAAADk/Nx8-T2k8HFo/s320/p3110010.jpg" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;Today after church Cheryl and I decided to go for a walk. These Eagles were hanging out on the other side of the river and I took a few shots.&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5040864469244105618" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfS_hvIu05I/AAAAAAAAADs/y5vcwtpKEWY/s320/p3110011.jpg" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;I saw this cardinal too.  Well to be truthful, I heard him first and then had a little trouble seeing him.  But I got an image.&lt;br /&gt;&lt;br /&gt;And the best image is of .......................&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The Cedar Waxwing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-3810879116802391613?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/3810879116802391613/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=3810879116802391613' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3810879116802391613'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/3810879116802391613'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/03/animals.html' title='Animals'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_sGaKnNqvb60/RfS7HPIu0zI/AAAAAAAAAC8/8jtp7-QBa1I/s72-c/DownyWP.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-1545606436648147472</id><published>2007-03-11T19:02:00.000-05:00</published><updated>2008-12-09T01:27:42.177-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Iowa Snow Storm'/><title type='text'>Snow Storm</title><content type='html'>In very early March, a bad snowstorm moved through Iowa. A few days later, I started taking my walks again and got the following images. Note it was cold and I was wearing boots and a big fur hat and one of my coworkers (A Canadian) started &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;referring&lt;/span&gt; to me as "&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Nanoo&lt;/span&gt;k of the North."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSfVvIu0wI/AAAAAAAAACk/wWCRWl2z8mI/s1600-h/p1010017.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040829078713586434" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSfVvIu0wI/AAAAAAAAACk/wWCRWl2z8mI/s320/p1010017.jpg" border="0" /&gt;&lt;/a&gt;The above image is a personal favorite of my &lt;a href="http://getagriponit.blogspot.com/"&gt;wife&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSfJvIu0vI/AAAAAAAAACc/1em660lhh-I/s1600-h/p1010019.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040828872555156210" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSfJvIu0vI/AAAAAAAAACc/1em660lhh-I/s320/p1010019.jpg" border="0" /&gt;&lt;/a&gt;This is a stream bed that is usually dry. This was a very wet snow and water was draining out of it.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSe9PIu0uI/AAAAAAAAACU/r5LUxfFayIg/s1600-h/p1010020.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040828657806791394" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSe9PIu0uI/AAAAAAAAACU/r5LUxfFayIg/s320/p1010020.jpg" border="0" /&gt;&lt;/a&gt;I liked this image.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSeuPIu0tI/AAAAAAAAACM/1ccBZmi4HxQ/s1600-h/p1010024.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040828400108753618" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSeuPIu0tI/AAAAAAAAACM/1ccBZmi4HxQ/s320/p1010024.jpg" border="0" /&gt;&lt;/a&gt;This storm started with rain and within one hour we got rain, sleet, hail and then snow. Ice stuck to the trees and some trees were brought down. In rural Iowa miles of utility poles were brought down leaving many Iowans without power for 3 or more days.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSedPIu0sI/AAAAAAAAACE/svH75xfFSTk/s1600-h/p1010025.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040828108050977474" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSedPIu0sI/AAAAAAAAACE/svH75xfFSTk/s320/p1010025.jpg" border="0" /&gt;&lt;/a&gt;Another picture showing some damage.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_sGaKnNqvb60/RfSeQfIu0rI/AAAAAAAAAB8/4yHwqkrXEs8/s1600-h/p1010026.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040827889007645362" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://2.bp.blogspot.com/_sGaKnNqvb60/RfSeQfIu0rI/AAAAAAAAAB8/4yHwqkrXEs8/s320/p1010026.jpg" border="0" /&gt;&lt;/a&gt;When I took this image I kind of felt like I was in "Dr. Zhivago." The &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;crystalline&lt;/span&gt; character didn't come across in the picture, but it is interesting in its own right. This image will probably get uploaded to "The Pikers Press" according to my Wife.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSeAvIu0qI/AAAAAAAAAB0/t6xpDxFvF20/s1600-h/p1010028.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040827618424705698" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSeAvIu0qI/AAAAAAAAAB0/t6xpDxFvF20/s320/p1010028.jpg" border="0" /&gt;&lt;/a&gt;More Damage.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSduvIu0pI/AAAAAAAAABs/G89_QFwNnFg/s1600-h/p1010030.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040827309187060370" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSduvIu0pI/AAAAAAAAABs/G89_QFwNnFg/s320/p1010030.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This was a very pretty picture I took from a bridge.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSdfvIu0oI/AAAAAAAAABk/9JntOjyf5Is/s1600-h/p1010034.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040827051489022594" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://3.bp.blogspot.com/_sGaKnNqvb60/RfSdfvIu0oI/AAAAAAAAABk/9JntOjyf5Is/s320/p1010034.jpg" border="0" /&gt;&lt;/a&gt;More damage.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSdNPIu0nI/AAAAAAAAABc/vAtCwotNHgo/s1600-h/p1010036.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5040826733661442674" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://1.bp.blogspot.com/_sGaKnNqvb60/RfSdNPIu0nI/AAAAAAAAABc/vAtCwotNHgo/s320/p1010036.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And yet more, two weeks later the branch was still sitting on top of the ice. In the last few days it has warmed up into the 50's and the ice probably has melted and the branch taken downstream.&lt;br /&gt;&lt;br /&gt;And the best picture for this post is ...&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;img id="BLOGGER_PHOTO_ID_5040835731617927970" style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://4.bp.blogspot.com/_sGaKnNqvb60/RfSlY_Iu0yI/AAAAAAAAAC0/boF3UB_M3NA/s320/p1010030.jpg" border="0" /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-1545606436648147472?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/1545606436648147472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=1545606436648147472' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/1545606436648147472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/1545606436648147472'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/03/snow-storm.html' title='Snow Storm'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_sGaKnNqvb60/RfSfVvIu0wI/AAAAAAAAACk/wWCRWl2z8mI/s72-c/p1010017.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-116907854168882831</id><published>2007-01-17T17:59:00.000-06:00</published><updated>2007-01-17T18:02:21.703-06:00</updated><title type='text'>I got my picture published!</title><content type='html'>Well published on the internet at least.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.pikerpress.com/article.cfm?form.id=2761"&gt;Piker's Press&lt;/a&gt; has published my "Mink" picture as the Peek of the Week!&lt;br /&gt;&lt;br /&gt;Ok, so I know the publishers.&lt;br /&gt;&lt;br /&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-116907854168882831?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/116907854168882831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=116907854168882831' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116907854168882831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116907854168882831'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/01/i-got-my-picture-published.html' title='I got my picture published!'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-116883306636855493</id><published>2007-01-14T21:23:00.000-06:00</published><updated>2007-01-14T21:51:06.403-06:00</updated><title type='text'>Game of the Week (or Storming the Gate)</title><content type='html'>Game was played Monday January 8th on &lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt;. our ratings were almost identical.  I am white.&lt;br /&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;1.d4 d5 &lt;br /&gt;2.c4 dxc4&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/347752/Image001.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/626976/Image001.jpg" alt="" border="0" /&gt;&lt;/a&gt;If any of you have been following my Blog (or are chess players,) you would know this is a "Queens Gambit Accepted."  And you may also recall me saying "I have a lot of fun with these games."  That especially holds true for this game.  If anyone is curious, Gambit means to offer  something to your opponent hoping to get an advantage, usually in time or position.  In the QGA, white offers a pawn to get control of the center.&lt;br /&gt;&lt;br /&gt;3.e4 c6&lt;br /&gt;4.Bxc4&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/387283/Image002.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/851927/Image002.jpg" alt="" border="0" /&gt;&lt;/a&gt;Black usually can't hold onto the gambited pawn and usually gives it back hoping to get some counter play against a pinned knight on c3.  Those games that black actually tries to hold onto the extra pawn usually forces black into some very ugly pawn structures.&lt;br /&gt;&lt;br /&gt;4.  ...   e6&lt;br /&gt;5.Nf3 Nf6&lt;br /&gt;6.Nc3 Bb4&lt;br /&gt;7.e5 Nd5&lt;br /&gt;8.Qd3&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/906556/Image003.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/344234/Image003.jpg" alt="" border="0" /&gt;&lt;/a&gt;As I mentioned above, black has my knight on c3 pinned and attacked by 2 pieces, but it is also defended by 2 pieces.  I am not afraid of the exchange.&lt;br /&gt;8. ...    Bxc3+&lt;br /&gt;&lt;br /&gt;Usually black would exchange knights here and hold onto his dark bishop if he has the choice.  A bishop is technically worth 3.25 points vs 3.0 for the knight, I am happy with this exchange.  Also, a dark colored bishop is needed by black to defend his king if he castles king side (which he does.)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/567287/Image004.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/833409/Image004.jpg" alt="" border="0" /&gt;&lt;/a&gt;9.bxc3 0-0&lt;br /&gt;&lt;br /&gt;Well, my opponent only has one piece developed versus 3 for me.  My pawn structure is still ok and I have double bishops with a moderatly open position.  Otherwise he is already in trouble.&lt;br /&gt;&lt;br /&gt;10.0-0 b5&lt;br /&gt;&lt;br /&gt;My opponent is helping me do what I already want to do, get my light squared bishop to c2 and attack his king.  The great American Chess Master and probable World Champion gave us the Chess Axiom "Point your pieces at the enemy king."&lt;br /&gt;&lt;br /&gt;11.Bb3 Nb6&lt;br /&gt;12.Bc2 g6&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/703836/Image005.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/146428/Image005.jpg" alt="" border="0" /&gt;&lt;/a&gt;He has no real choice but this move, but it does weaken the king side!&lt;br /&gt;&lt;br /&gt;13.Bh6&lt;br /&gt;&lt;br /&gt;That is where my dark squared bishop wants to go!  Notice he still only has one piece developed.&lt;br /&gt;&lt;br /&gt;13. ...    Re8&lt;br /&gt;14.Ng5&lt;br /&gt;&lt;br /&gt;I am sending my knight on a little bit of a road trip to get it to a better square.&lt;br /&gt;&lt;br /&gt;14. ...    Nd5&lt;br /&gt;15.Qf3 Qe7&lt;br /&gt;16.Ne4 Nd7&lt;br /&gt;17.Nd6 Rd8&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/588260/Image006.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/68344/Image006.jpg" alt="" border="0" /&gt;&lt;/a&gt;My knight is now worth a rook, it is in a very destructive position for black.&lt;br /&gt;&lt;br /&gt;18.Qg3 f6&lt;br /&gt;&lt;br /&gt;Black wants to trade off those pawns and hopefully drive my knight out of there.  But in truth that was a terrible move.  I contemplated my next move for only 9 seconds and then sacked my bishop.  Before that move he was terribly constricted, but I had no obvious attack against his king.  But now the game is virtually over!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/37546/Image007.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/715884/Image007.jpg" alt="" border="0" /&gt;&lt;/a&gt;19.Bxg6 hxg6&lt;br /&gt;&lt;br /&gt;Probably a mistake, knight to f8 is better.&lt;br /&gt;20.Qxg6+ Qg7  and then black resigned before I could move.&lt;br /&gt;&lt;br /&gt;No matter what, his queen is gone at this point. But King to h8 is better, followed by:&lt;br /&gt;&lt;br /&gt;Nf7+ Qxf7&lt;br /&gt;Qxf7  Rg8&lt;br /&gt;&lt;br /&gt;and now I have no easy checkmates and must ware him down.  I can try for a cheap shot of&lt;br /&gt;&lt;br /&gt;Qh5 and hope that he doesn't see the discovered checkmate of Bf8+ and if he does force trade the bishop for one of his knights.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/631761/Image008.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/514884/Image008.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-116883306636855493?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/116883306636855493/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=116883306636855493' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116883306636855493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116883306636855493'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/01/game-of-week-or-storming-gate.html' title='Game of the Week (or Storming the Gate)'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-116777685274812917</id><published>2007-01-02T16:10:00.000-06:00</published><updated>2007-01-02T16:37:04.836-06:00</updated><title type='text'>Game of the Week</title><content type='html'>Played on &lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt; 01/01/2007, I out ranked my opponent by about 100 points.  But one should never underestimate your opponent.&lt;br /&gt;&lt;br /&gt;1.e4&lt;br /&gt;&lt;br /&gt;This is a tactical game.  I try to steer all of my e4 opponents into the dragon, which I know moderately deep.&lt;br /&gt;&lt;br /&gt;1.  ...    c5&lt;br /&gt;2.  Nf3 Nc6&lt;br /&gt;3.  c3&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/287386/Image001.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/657034/Image001.jpg" alt="" border="0" /&gt;&lt;/a&gt;This is a some what odd line. My books have it listed under Hyper Accelerated Dragon. I really don't like playing against it, but to date my results have been pretty good. I think I am winning about 3 out of four games. Usually they try to build a massive center and I try to destroy it.&lt;br /&gt;&lt;br /&gt;3.  ... e6&lt;br /&gt;4.  d4 d5&lt;br /&gt;5.  e5&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/292700/Image002.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/324659/Image002.jpg" alt="" border="0" /&gt;&lt;/a&gt;He has built his center, now I am going to try to destroy it.&lt;br /&gt;&lt;br /&gt;5.  ... Nge7&lt;br /&gt;6.  Bg5 Qb6&lt;br /&gt;7.  Qc2 Nf5&lt;br /&gt;8.  b3&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/811677/Image003.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/751856/Image003.jpg" alt="" border="0" /&gt;&lt;/a&gt;I beleive that was a wasted move. Whatever, I have more then enough on the weak d4 pawn to attack his center. He should really have his Queen on the d file and he should really be attacking one of my knights. He is not showing any ingenuity here.&lt;br /&gt;&lt;br /&gt;8.  ...   cxd4&lt;br /&gt;9.  cxd4 Nfxd4&lt;br /&gt;10. Nxd4 Qxd4&lt;br /&gt;11. Bb5 Qxe5+&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/891214/Image004.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/668622/Image004.jpg" alt="" border="0" /&gt;&lt;/a&gt;One destroyed center.  Now he begins his counter attack.&lt;br /&gt;12. Be3 Bd7&lt;br /&gt;&lt;br /&gt;The Bd7 prevents Bxc6 bxc Qxc forking the King and rook.&lt;br /&gt;&lt;br /&gt;13. Bxc6 Bxc6&lt;br /&gt;14. Qc3&lt;br /&gt;&lt;br /&gt;He wants to exchange Queens, why I don't know. I have the better center so trading is ok, but I wasn't in the mood for it. Even better yet, I can exchange my dark Bishop for his rook (Bb4, QxB QxR) but I didn't see it.&lt;br /&gt;&lt;br /&gt;14. ...  Qe4&lt;br /&gt;15. 0-0 Bb4&lt;br /&gt;16. Qxg7&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/568263/Image005.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/357098/Image005.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;16. ... 0-0-0&lt;br /&gt;17. Qd4&lt;br /&gt;&lt;br /&gt;Ok, he has forced the Queen exchange.&lt;br /&gt;&lt;br /&gt;17. ...  Qxd4&lt;br /&gt;18. Bxd4 Rhg8&lt;br /&gt;19. f4&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/124365/Image006.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/203901/Image006.jpg" alt="" border="0" /&gt;&lt;/a&gt;At this point, I get a very nasty idea. I have got double Bishops and his King is looking awfully weak. The problem is his Bishop is sitting right where my pawn needs to go. With his f4 move, I can't even push e5 allowing to take a free pawn. But I can push my f6 pawn allow him to take that pawn and then allow him to take my Rook. Costly yes, but in exchange I get a &lt;a href="http://chess.about.com/od/beginners/ss/ble25tac_4.htm"&gt;WINDMILL&lt;/a&gt;. And I believe I will get &lt;span style="font-weight: bold; font-style: italic;"&gt;everything back!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;I am going to GAMBIT a rook!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;19. ... f6&lt;br /&gt;20. a3 Bd6&lt;br /&gt;21. Bxf6 d4&lt;br /&gt;22. Bxd8&lt;br /&gt;&lt;br /&gt;He bought it hook, line and sinker.&lt;br /&gt;&lt;br /&gt;22. ... Rxg2+&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/671356/Image007.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/838603/Image007.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Now the Windmill structure is set. Every time the rook moves into position it is check and then when the rook moves out of position it is check. The rook can eat anything and everything in its path.&lt;br /&gt;&lt;br /&gt;23. Kh1 Ra2+&lt;br /&gt;24. Kg1 Rxa1&lt;br /&gt;&lt;br /&gt;My opponent tries to save his Bishop instead of trying to get the king out of the Windmill.&lt;br /&gt;&lt;br /&gt;25. Bf6 Ra2&lt;br /&gt;&lt;br /&gt;I have the windmill structure again.&lt;br /&gt;&lt;br /&gt;26. Bxd4&lt;br /&gt;&lt;br /&gt;My opponent eats a pawn and the windmill strikes again.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/820273/Image008.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/910167/Image008.jpg" alt="" border="0" /&gt;&lt;/a&gt;26. ... Rg2+&lt;br /&gt;27. Kh1 Rd2+&lt;br /&gt;28. Kg1 Rxd4&lt;br /&gt;29. Nc3 Bc5&lt;br /&gt;&lt;br /&gt;Positioning my Bishop for the kill.&lt;br /&gt;30. b4&lt;br /&gt;He doesn't like my bishop there and trys to kick it, but has forgotten about discovered checks&lt;br /&gt;30. ... Rxb4+&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/697881/Image009.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/43172/Image009.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Black only has one legal move, to block with a rook.  His position is hopeless and he resigns.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/697881/Image009.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-116777685274812917?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/116777685274812917/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=116777685274812917' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116777685274812917'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116777685274812917'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2007/01/game-of-week_02.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-116719123427965614</id><published>2006-12-26T21:13:00.000-06:00</published><updated>2006-12-26T21:49:53.273-06:00</updated><title type='text'>Game of the Week</title><content type='html'>Game played on &lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt; 12.26.2006.&lt;br /&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;This game is technically a miniature, lasting only 20 moves. This game also demonstrates why you should know a little opening theory. I have White.&lt;br /&gt;&lt;br /&gt;1.d4 Nf6&lt;br /&gt;2.c4 e6&lt;br /&gt;3.a3&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/171928/Image001.jpg"&gt;&lt;br /&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/120491/Image001.jpg" alt="" border="0" /&gt;&lt;/a&gt;He or She is trying to play the Nimzo Indian and I wasn't really in the mood for having my knight pinned and just pushed a3 instead. This move is ok, but it gives up some time. I have taken this game out of book and he apparently doesn't know how to handle it.&lt;br /&gt;3. ... c5&lt;br /&gt;&lt;br /&gt;He is trying to challenge me for the center.&lt;br /&gt;&lt;br /&gt;4.d5&lt;br /&gt;&lt;br /&gt;My intention is to hold a pawn in the center.&lt;br /&gt;&lt;br /&gt;4. ... exd5&lt;br /&gt;5.cxd5 b6&lt;br /&gt;&lt;br /&gt;He wants to develop his bishop to attack my pawn, I believe, I can protect this pawn with developing moves.&lt;br /&gt;6.Nc3 Bb7&lt;br /&gt;7.e4 Be7&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/914586/Image002.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/703484/Image002.jpg" alt="" border="0" /&gt;&lt;/a&gt;I have a key position now. My pawns are safe. Whats more, now that I have 2 pieces protecting my d5 pawn (Queen and Knight,) I can safely push my e4 pawn that was protecting my d5 pawn and attack his knight. His knight only choice is to retreat back to its home position. He wanted to castle and now I have forced him to undevelop.  Instead of Be7, he should have moved d6 preventing my over running him.&lt;br /&gt;8.e5 Ng8&lt;br /&gt;9.d6&lt;br /&gt;&lt;br /&gt;Another sharp move, attacking his bishop.&lt;br /&gt;9. ... Bf8&lt;br /&gt;&lt;br /&gt;Another undeveloping move, Bishop to g5 was better.  He is now very constricted.&lt;br /&gt;10.Nf3 Nc6&lt;br /&gt;11.Bf4 f6&lt;br /&gt;&lt;br /&gt;He wants to trade and possible break up my repressive center. As long as I can maintain my center I can keep him from castling. I just have a temporary advantage. By moving his f7 pawn he is taking a huge risk, since f2/f7 is a key protection for the king cage (if he can ever get castled.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/230280/Image003.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/515607/Image003.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I almost panicked with this move. I was so focused on attack, I wasn't paying attention to defense. But in truth I am perfectly fine. My Bd5 is ok, but I should really have considered Qe2.&lt;br /&gt;(15. Qe2 threating a very ugly Bf6+ which looses the black queen and 1 minor piece to my ugly d6 pawn.)&lt;br /&gt;&lt;br /&gt;15.Bd5 Bxd5&lt;br /&gt;16.Qxd5 Rd8&lt;br /&gt;17.0-0&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/285938/Image004.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/595644/Image004.jpg" alt="" border="0" /&gt;&lt;/a&gt;Note castling is both a defensive and an offensive move. I want to put a rook on e1 to finish my oppoent off and the quickest way was to castle, and its such an unoffensive looking move.&lt;br /&gt;&lt;br /&gt;17. ... Nf6&lt;br /&gt;&lt;br /&gt;A final feeble attempt to get back in the game.&lt;br /&gt;18.Bxf6 Qxf6&lt;br /&gt;19.Rfe1+ Be7&lt;br /&gt;&lt;br /&gt;Be7 is forced in order get out of check.&lt;br /&gt;20.Rxe7+ Black resigns&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/686021/Image005.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/153298/Image005.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-116719123427965614?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/116719123427965614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=116719123427965614' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116719123427965614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116719123427965614'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/12/game-of-week_26.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-116650772260654336</id><published>2006-12-18T23:31:00.000-06:00</published><updated>2006-12-19T07:12:38.346-06:00</updated><title type='text'>Game of the Week</title><content type='html'>or &lt;strong&gt;&lt;em&gt;&lt;span style="font-size:180%;"&gt;Know Thy Opening&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Game was played on &lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt; 12.18.2006.  My opponent had a rating of 1401, and as usual I fear such a rating.  So I went in somewhat anxious.&lt;br /&gt;&lt;br /&gt;1.e4&lt;br /&gt;&lt;br /&gt;Ok, this  will be a tatical game.  Against e4, I try to go into the dragon.&lt;br /&gt;&lt;br /&gt;1. ... c5&lt;br /&gt;2.Nf3 Nc6&lt;br /&gt;3.d4 cxd4&lt;br /&gt;4.Nxd4 g6&lt;br /&gt;5.Be3 Bg7&lt;br /&gt;6.Nc3 Nf6&lt;br /&gt;&lt;br /&gt;Everything is book so far or main line.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/x/blogger/604/2971/1600/456072/Image001.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/x/blogger/604/2971/320/11201/Image001.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;7. f3&lt;br /&gt;Ok, this is what is refered to as the Weekend variation.  I don't believe it is that good.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/x/blogger/604/2971/1600/106163/Image002.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/x/blogger/604/2971/320/749913/Image002.jpg" border="0" /&gt;&lt;/a&gt; 7. ...  0-0 8.Qd2 &lt;/p&gt;&lt;p&gt;He is playing the sub variation where he connects his Queen to his dark bishop and then tries to exchange the dark bishops. Good for him if I allow it. The book response is d5.&lt;/p&gt;&lt;p&gt;8. ... d5&lt;/p&gt;&lt;p&gt;That is as far as I remember book in this line, so the rest I have to play using my own tactical and strategic skills. I do recall that White needs to exchange the Knight on d4 for mine on c6 or bad things start to happen.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;9.exd5 Nxd5&lt;br /&gt;10.Nxd5 Qxd5&lt;br /&gt;11.c3 Nxd4&lt;br /&gt;12.Bxd4 Rd8&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/x/blogger/604/2971/1600/5225/Image003.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/x/blogger/604/2971/320/36037/Image003.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Increases the pressure on the center making whites position somewhat uncomfortable.Notice if he exchanges dark squared Bishops now, I mate him. &lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/x/blogger/604/2971/1600/5560/Image004.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/x/blogger/604/2971/320/303008/Image004.jpg" border="0" /&gt;&lt;/a&gt; 13.0-0-0 Qxa2 &lt;/p&gt;&lt;p&gt;Not a paticularly good move on his part, since it drops the a2 pawn. Now his King is looking helpless and my pieces are looking strong.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;14.Qe3 Bf5&lt;br /&gt;15.Bd3 Bxd3&lt;br /&gt;16.Bxg7&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/x/blogger/604/2971/1600/484855/Image005.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/x/blogger/604/2971/320/388173/Image005.jpg" border="0" /&gt;&lt;/a&gt; &lt;strong&gt;&lt;em&gt;He can't do that!&lt;/em&gt;&lt;/strong&gt;  At least he can't do that and live to tell about it.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;16.  ...  Qb1+ &lt;/p&gt;&lt;p&gt;&lt;br /&gt;The queen is protected by the light squared bishop which he didn't retake after I took his. Now his King has to flee into a discovered check.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;17.Kd2 Bc2+&lt;br /&gt;A discovered check with 3 pieces hitting his poor helpless rook (My Queen, Bishop and Rook!)&lt;/p&gt;&lt;p&gt;18.Ke2&lt;br /&gt;&lt;/p&gt;&lt;a href="http://photos1.blogger.com/x/blogger/604/2971/1600/723499/Image006.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/x/blogger/604/2971/320/232727/Image006.jpg" border="0" /&gt;&lt;/a&gt; After move 18 he saw his position as hopeless. I am going to win the Rook and then recapture his dark squared Bishop. He will be down a Rook, Bishop and several pawns when I am done.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-116650772260654336?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/116650772260654336/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=116650772260654336' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116650772260654336'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116650772260654336'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/12/game-of-week.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-116579806206247876</id><published>2006-12-10T18:36:00.000-06:00</published><updated>2006-12-10T19:52:16.616-06:00</updated><title type='text'>Image of the week</title><content type='html'>OK, for several months - since I haven't been posting.&lt;br /&gt;&lt;br /&gt;We are in the dead of winter here in Iowa (and we don't even have any snow to show for it) and the scenes is all very dreary. Most of the pretty birds have gone elsewhere for the winter and the landscape is all very brown. I was out for one of my walks when I heard rustling in the bushes. Well I could see the tail of what looked like a ferret. I have been trying to get a picture of one of these guys for quite a while now. So I fired my camera up and got several pictures of this very industrious little feller.  Further research indicates this little guy is a "Mink!"  I think his coat looks better on him then it could ever look on a human.&lt;br /&gt;&lt;br /&gt;Terry&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger/604/2971/1600/73946/p1010013.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/x/blogger/604/2971/320/793936/p1010013.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-116579806206247876?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/116579806206247876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=116579806206247876' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116579806206247876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/116579806206247876'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/12/image-of-week.html' title='Image of the week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115784774853614092</id><published>2006-09-09T19:11:00.000-05:00</published><updated>2006-09-09T19:23:47.463-05:00</updated><title type='text'>The Electric Car, Why it makes sense.</title><content type='html'>Currently We are burning 150 Billion gallons of gasoline* per year in the United States. We are noticing a significant changes in our weather patterns, which most reputable scientists think is being caused by greenhouse gases (Carbon-Dioxide.)&lt;br /&gt;&lt;br /&gt;In California and Europe, individuals and several small companies have been experimenting with electric cars for commuting. Some of the high end vehicles rival sports cars in performance and still have a range of 150 miles. Mostly these vehicles though have ranges of 40 – 65 miles with a top speed somewhere in the area of 50 – 65mph. The ones I have read about the most are former gas powered vehicles that have been converted to electric. Apparently the favorite vehicle to convert is the Ford Ranger Pickup (plenty of room for batteries and a heavy duty suspension system to take the weight of the batteries.)&lt;br /&gt;&lt;br /&gt;Currently, most driving involves short drives to and from work, mostly under 50 miles per day. According to a recent Internet Story (Seen on MSN News, Yahoo News and CNN) the average commute in this country is 16 miles, unfortunately they didn’t provide a standard deviation which would have made the information more valuable.&lt;br /&gt;&lt;br /&gt;Therefore, I suggest that the following strategy should be followed:&lt;br /&gt;&lt;br /&gt;1. Pressure GM &amp; Ford to manufacture a commuting vehicle powered by electricity. They should go for a design that would minimize it original cost, while maximizing the range and shoot for cruising speed somewhere in the range of 50 – 65 mph.&lt;br /&gt;2. Upgrade the electric grid, so that it can handle the extra stress of recharging all of these cars on a nightly basis.&lt;br /&gt;3. Start a long term project to downsize the current coal and oil generation of electricity and replace it with a combination of renewable and nuclear generating plants. It will do very little good to replace gasoline in our cars with coal or oil in our energy plants. Be aware that we will need considerably more electricity under these situations then we are using now.&lt;br /&gt;&lt;br /&gt;Long Term benefits:&lt;br /&gt;&lt;br /&gt;1. The Environment, even though it will probably take a long time to repair the current damage.&lt;br /&gt;2. The trade deficit would be wiped clean and we would probably have a trade surplus.&lt;br /&gt;3. The oil that we need for other uses will probably drop in price.&lt;br /&gt;4. Al Qaida funding will drop. Most of their income is coming out of the oil we are buying from the Middle East and this could very likely put them out of business. It would also shut up both Iran and Venezuela, which are both causing us all kinds of foreign policy problems. I might add the recent war between Israel and Hezbollah was funded by Iran, which got all of those Petro Dollars from us the Industrialized World.&lt;br /&gt;&lt;br /&gt;Negatives:&lt;br /&gt;&lt;br /&gt;1. Convenience. Right now we can jump in our cars and drive anywhere we want within reason. I believe most consumers would settle on owning an Electric for most of their personal needs and then rent a gas powered vehicle for longer trips.&lt;br /&gt;2. For certain consumers, the Electric will never be an economically feasible vehicle. Take for example the agriculture industry, who have a constant need to haul heavy loads. Also salesman, who are on the road for several hundred miles every work day.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;*** Warning, Warning ***  You are now entering the Rant Zone! &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Probability of this happening:    Nil!&lt;br /&gt;&lt;br /&gt;Unfortunately, the Republican Party is in bed with the Oil Companies (Who will fight this Foot, tooth and nail,) and the Democrats are in bed with the Environmentalists. The Environmentalists will fight using Nuclear Energy Foot, tooth and nail. To the Environmentalists, let me point out a simple fact. If we keep going as we are today, our environment will implode. 100% guarantee! The risks of using nuclear energy are far less (10% at the worst.) And the American Public will not accept going back to 19th century as a life style.&lt;br /&gt;&lt;br /&gt;Our current politicians are doing what is best for their party over what is best for the country (and YES, I mean BOTH parties.) We desperately need a third party, a pragmatic and centrist party with limited ties to big business, to make these tough decisions.&lt;br /&gt;&lt;br /&gt;* Scientific American, 9/2006, page 60.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115784774853614092?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115784774853614092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115784774853614092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115784774853614092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115784774853614092'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/09/electric-car-why-it-makes-sense.html' title='The Electric Car, Why it makes sense.'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115712461422561373</id><published>2006-09-01T10:12:00.000-05:00</published><updated>2006-09-01T10:43:17.370-05:00</updated><title type='text'>The Check is in the Mail</title><content type='html'>&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;span style="font-size:180%;"&gt;Or the Power of the Discovered Check&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Played on &lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt; August 26th, I was white.&lt;br /&gt;&lt;br /&gt;1.d4 e6 &lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;2.c4 d5&lt;br /&gt;3.Nc3 dxc4&lt;br /&gt;4.e4&lt;br /&gt;&lt;br /&gt;Queens Gambit Accepted.  I have a lot of fun with this line.&lt;br /&gt;&lt;br /&gt;4. ... Bb4&lt;br /&gt;5.Bxc4 Bxc3+&lt;br /&gt;6.bxc3 Bd7&lt;br /&gt;7.Nf3 Bc6&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image01.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image01.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;I decided to trade off pawns in the center. I felt I would still control the center and my opponent would have to do something with his Bishop. Otherwise I would gain at least a tempo.&lt;br /&gt;8.d5 exd5&lt;br /&gt;9.exd5 Bd7&lt;br /&gt;10.0-0 Ne7 &lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image02.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image02.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;11.Re1&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;There are several reasons for this move:&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;1. Rooks want to control open files.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;2. It is a central file and it really strengthens my center.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;3. It is a pin.  Pins are usually only temporary advantages, but ...&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;11. ... 0-0&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;He or she castles out of check, breaking the pin.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;I have decided to re-pin and I have 2 good choices:&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt; 1. Ba3 pin the Night against his Rook.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt; 2. Bg5, pinning the Night against his queen.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;I chose option 2, because it sets up either a very nice attack or a sneaky discovered check.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;12.Bg5 f6&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image03.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image03.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;This was the move I had hoped for. It sets up a discovered check on his King and an attack on Knight simultaneously and it ends up winning a Knight and a rook for the price of a pawn. For black, Re8 would have been a much better move.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;13.d6+ Kh8&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;14.dxe7 Qe8&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;15.exf8Q+ Qxf8&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;Black should have resigned at this point. He is down almost a whole Queen, but he played on for a while. The game after this point is uninteresting, but I am posting it anyway for your viewing pleasure.&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;16.Be3 Bc6&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;17.Nd4 a6&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;18.Nxc6 Nxc6&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;19.Be2 Rc8&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;20.Bg4 Rd8&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;21.Qb3 b5&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;22.Rad1 Rxd1&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;23.Rxd1 Ne5&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;24.Be6 c5&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;25.Bf4 c4&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;26.Qb4 Nd3&lt;/span&gt;&lt;span style="font-family: arial;font-size:100%;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: arial;font-family:times new roman;font-size:100%;"  &gt;27.Qxf8# 1-0&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115712461422561373?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115712461422561373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115712461422561373' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115712461422561373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115712461422561373'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/09/check-is-in-mail.html' title='The Check is in the Mail'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115582422529729712</id><published>2006-08-17T08:56:00.000-05:00</published><updated>2006-08-17T09:18:55.896-05:00</updated><title type='text'>Green Backed Heron (Juvenile)</title><content type='html'>I took this image on or about August 10th, 2006. It was in an area I normally check for wildlife. At first I missed seeing it, since it was standing perfectly still. But the scene looked odd to me, so I double checked it and thats when I saw it. I took two shots with my camera (one turned out blurry.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I had no idea what this species was. I have a Birds of Iowa field guide, but the Green Backed Heron isn't in there. They apparently breed in Iowa, but are not year long residents. I am probably going to have to find a better bird book, I used to have a copy Roger Tory Petersons Guide to Eastern United States. That book was great and I may have to purchase another copy. Thanks to Dennis Hill for knowing who to ask in making the id.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/GreenHeron.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/GreenHeron.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115582422529729712?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115582422529729712/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115582422529729712' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115582422529729712'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115582422529729712'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/08/green-backed-heron-juvenile.html' title='Green Backed Heron (Juvenile)'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115569663387314990</id><published>2006-08-15T21:30:00.000-05:00</published><updated>2006-08-15T21:50:33.910-05:00</updated><title type='text'>Blue Herons</title><content type='html'>I had mentioned in a previous post that Blue Heron's are somewhat shy creatures and that last year it took me weeks to get an acceptable picture of one.  Well in the last couple of weeks I have gotten numerous images of them.   These are the best, some of the others are so so, and others are down right blurry.&lt;br /&gt;&lt;br /&gt;The first image was on August 4th and it is on "Squirrel Island" which I now sneak up on with my camera armed and ready.  These were all taken along the bike path behind my employer in Johnston, Iowa.  All but the first image was taken last week, unfortunatly I don't have the exact times or dates since I forgot to set the time and date on my camera when I changed batteries.&lt;br /&gt;&lt;br /&gt;Enjoy,    Terry&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue02.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue03.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue04.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue05.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue05.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue06.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue06.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Blue07.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Blue07.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115569663387314990?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115569663387314990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115569663387314990' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115569663387314990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115569663387314990'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/08/blue-herons.html' title='Blue Herons'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115403875409467214</id><published>2006-07-27T17:10:00.000-05:00</published><updated>2006-07-28T11:26:54.266-05:00</updated><title type='text'>Observing</title><content type='html'>Tuesday Night was very clear which is what I came here for. I had picked up at the sign in a "Nebraska Star Party Planetary Challenge Sheet" and started to work on it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family: courier new;"&gt;Object      ra            dec       Time         Date                  Desc&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ic4593    16.11.45     12.04.17     23:40     2006/07/25     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ic4599    16.19.23     42.15.36-    23:00     2006/07/27     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6153      16.31.30        40.15.13-&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6210   16.44.30     23.48.00     23:54     2006/07/25     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6302   17.13.44     37.06.14-    00:00     2006/07/26     Mid sized Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6337   17.22.15     38.29.01-    23:40     2006/07/27     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6309   17.14.04     12.54.38-    00:12     2006/07/26     Small, very near Moderatly bright star.&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6369   17.29.21     23.45.35-    02:40     2006/07/26     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6445   17.49.15     20.00.34-    02:42     2006/07/26     Mid sized,dim planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6543   17.58.33     66.37.59     02:48     2006/07/26     Bright blue Planetary, "The Cats Eye."&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6563   18.12.03     33.52.06-    23:30     2006/07/25     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6572   18.12.06     06.51.13     00:20     2006/07/26     Midsized Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6567   18.13.45     19.04.34- &lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ic1297    19.17.23     39.36.47-  &lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6781   19.18.28     06.32.23     01:55     2006/07/26     Nice largePlanetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6804   19.31.36     09.13.30     02:05     2006/07/26     Midsized Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6818   19.43.58     14.09.11-    02:10     2006/07/26     Small Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6826   19.44.48     50.31.30     02:14     2006/07/26     Small Bright Planetary&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6853   19.59.36     22.43.16     02:16     2006/07/26     Big &amp; Bright (also known as M27, The Dumbbell)&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6891   20.15.09     12.42.15     02:25     2006/07/26     Smallish Planetary, 2 in same field of view.&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family: courier new;"&gt;ngc6894   20.16.24     30.33.55     02:30     2006/07/26     Midsized Planetary&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I used 2 32mm eye pieces, one with a O3 Filter (good for detecting Planeary nebulas,) and one without. I would switch the eye pieces back and forth trying to detect the planetarys.  This works because of what planetaries are, which is old dieing stars.  They have burn't all of their hydrogen in their cores and have then started burning the helium into heavier elements. One of the heavier atoms is oxygen and the O3 filter can detect excited oxygen.&lt;br /&gt;With a O3 filter in, stars should be diminished in brightness and planetarys should remain as bright. For higher magnifications I switched to a 15mm. 32 mm eye pieces should give 63x, while the 15mm should give 135x.&lt;br /&gt;&lt;br /&gt;Terry&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115403875409467214?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115403875409467214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115403875409467214' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115403875409467214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115403875409467214'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/07/observing.html' title='Observing'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115403793236780254</id><published>2006-07-27T16:46:00.000-05:00</published><updated>2006-08-17T09:21:53.983-05:00</updated><title type='text'>Sight Seeing</title><content type='html'>Allen Beers and I did some sight seeing on Tuesday (7/25.)&lt;br /&gt;&lt;div align="justify"&gt;&lt;br /&gt;Valentine had a grass fire recently, burning in excess of 3000 acres. It apparently started up near the towns communication equipment and was caused by an electrical short. The fire took out some of the communications equipment making the response to the fire slow. A number of homes were lost and unfortunatly it appeared to effect mostly the less well to do neiborhoods.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/604/2971/1600/Burn.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/blogger/604/2971/320/Burn.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Allen and I then went on and did a hike at Smith State Park to the North East of Valentine. Smith Falls in Smith State Park has Nebraska's highest falls(about 65 feet, or just shy of 20 meters.)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/604/2971/1600/SmithFalls.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/blogger/604/2971/320/SmithFalls.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/604/2971/1600/LessFalls.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/blogger/604/2971/320/LessFalls.1.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We were then ready for lunch, Allen wanted to go to McDonnalds. But I talked him into going to a "Local" Resturant. Cheryl and I hae previously checked out most of them and I talked Allen into "The Bunk House" a local "Diner" type resturant. The food and service are pretty good and the price is reasonable. I had chicken fried steak.&lt;br /&gt;&lt;br /&gt;Terry&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115403793236780254?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115403793236780254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115403793236780254' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115403793236780254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115403793236780254'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/07/sight-seeing.html' title='Sight Seeing'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115377878705665200</id><published>2006-07-24T16:31:00.000-05:00</published><updated>2006-07-24T17:06:27.766-05:00</updated><title type='text'>Nebraska Star Party Time</title><content type='html'>I like the Nebraska Star Party, very clear dark skies.  It is advertised as having the darkest skies in all of Continental USA, and I believe it.  The party is held 30 miles outh of Valentine, NE at Merritt Resovoir.&lt;br /&gt;&lt;br /&gt;I had planned to leave town as early as possible Sunday 7/23.  I actually cleared Des Moines at 9:00 am after having breakfast with Cheryl at our local Perkins (she didn't want to come on this trip.)&lt;br /&gt;&lt;br /&gt;I am pulling a camper behind my little Ranger Pickup and I am not supposed to use overdrive while towing, so that imits me to about 65mph.  Therefore, my inentions are to take the secondary highways and avoid the interstate where possible.&lt;br /&gt;&lt;br /&gt;So the route I selected was,&lt;br /&gt;&lt;br /&gt;I-80 West from Des Moines to I-680&lt;br /&gt;I-680 (North around Omaha) to I-29&lt;br /&gt;I-29 North to Hwy 30&lt;br /&gt;Hwy 30 West to  Hwy 77&lt;br /&gt;Hwy 77 North Hwy 275&lt;br /&gt;Hwy 275 North to Hwy 20&lt;br /&gt;Hwy 20 West to Valentine&lt;br /&gt;And then its just a short 30 mile jaunt south to Merritt Resovoir.&lt;br /&gt;&lt;br /&gt;It actually was a rather pleasant drive, no problems, but it took about 10 hours.  Total distance driven, about 430 miles.&lt;br /&gt;&lt;br /&gt;I crossed into Nebraska at about 11:30 and stopped in Blair, NE at 12:05 and had lunch in a &lt;a href="http://www.runza.com/"&gt;Runza&lt;/a&gt; resturant.  I had what they call a Swiss Cheese Runza:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Runza.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Runza.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Well it was a cheap meal, costing only about $5.00.  I understand Runza is a chain that is in Nebraska only.  The only other thing worth mentioning is that I passed through Norfolk, NE the home town of Johnny Carson (for those of you old enough to remember him.)&lt;br /&gt;&lt;br /&gt;I set up camp at about 19:00 visited a little with some of the other &lt;a href="www.dmasonline.org"&gt;DMAS&lt;/a&gt; members and then made a couple of hamburgers.  Ate both of them and had a can of pears.&lt;br /&gt;&lt;br /&gt;Went out to the observing site and set up.  The sky was excellent, giving twice the contrast that I normally see at &lt;a href="www.dmasonline.org"&gt;DMAS&lt;/a&gt;, but there was a pesky wind of around 20 mph making observing difficult. I was tired anyway,  so around midnight I gave up and went back to the campground.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115377878705665200?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115377878705665200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115377878705665200' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115377878705665200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115377878705665200'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/07/nebraska-star-party-time.html' title='Nebraska Star Party Time'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115275494594287008</id><published>2006-07-12T20:11:00.000-05:00</published><updated>2006-07-12T20:42:26.110-05:00</updated><title type='text'>Game of the Week</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0101jpg.jpg"&gt;&lt;/a&gt;These were both Queens Gambit Accepted and I had white in both games.&lt;br /&gt;&lt;br /&gt;Game 1:&lt;br /&gt;&lt;br /&gt;1.d4 d5&lt;br /&gt;2.c4 dxc4&lt;br /&gt;3.e4&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0101jpg.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0101jpg.jpg" alt="" border="0" /&gt;&lt;/a&gt;3. ...   e5&lt;br /&gt;&lt;br /&gt;He would like me to take his pawn, which would allow him to exchange Queens and remove my castling capabilities.&lt;br /&gt;4.Nf3 exd4&lt;br /&gt;5.Bxc4 a6&lt;br /&gt;6.Qb3&lt;br /&gt;Not exactly the line I know, but it creates a nice attack on his King side.&lt;br /&gt;&lt;br /&gt;6. ...  Qe7&lt;br /&gt;7.0-0 Nc6&lt;br /&gt;8.Bg5&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0102.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0102.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;That's it with the QGA, white gets very fast development and black can become very constricted.  Note black can not take e4, since Rook to e1 pins the Queen to her King.&lt;br /&gt;&lt;br /&gt;8. ... f6&lt;br /&gt;9.Bxg8 fxg5&lt;br /&gt;&lt;br /&gt;I decide to exchange my bishop for his knight, wrecking his king side pawn structure.  Its always nice when your opponent helps you with your plans.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0103.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0103.jpg" alt="" border="0" /&gt;&lt;/a&gt;10.Bd5 Qd7&lt;br /&gt;&lt;br /&gt;I threaten to exchange my Bishop or his knight, messing up his queen side pawns.  He defends the knight with his Queen, leaving his g5 pawn undefended.  After my knight takes his g5 pawn, there is a very nice 3 piece attack on his f7 square.&lt;br /&gt;&lt;br /&gt;11.Nxg5 Na5&lt;br /&gt;12.Bf7+ Ke7&lt;br /&gt;13.Qb4+&lt;br /&gt;&lt;br /&gt;Wins the knight because his King must retreat.&lt;br /&gt;&lt;br /&gt;13. ...      Kd8&lt;br /&gt;14.Qxa5 h6&lt;br /&gt;15.Be6 Qe7&lt;br /&gt;&lt;br /&gt;Black realizes his position is hopeless and resigns.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Game 2&lt;br /&gt;&lt;br /&gt;1.d4 d5&lt;br /&gt;2.c4 dxc4&lt;br /&gt;3.e4 c5&lt;br /&gt;&lt;br /&gt;My opponent plays the c pawn up instead of the e pawn.  Same idea though, if I take he exchanges queens and removes my castling capabilities.&lt;br /&gt;&lt;br /&gt;4.Nf3 b5&lt;br /&gt;5.a4 cxd4&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0201.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0201.jpg" alt="" border="0" /&gt;&lt;/a&gt;6.axb5 d3&lt;br /&gt;&lt;br /&gt;As in the image above, it looks like my position is very constricted.  But I don't believe he can hold onto his central pawns.  They are over extended and therefore my strategy is to colapse his center.&lt;br /&gt;&lt;br /&gt;7.Qa4 Qc7!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0202.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0202.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;A good move, which allows him to hold onto those central pawns (at least temporarily.)&lt;br /&gt;&lt;br /&gt;8.b6+ Qc6&lt;br /&gt;9.Qxc6+&lt;br /&gt;&lt;br /&gt;I didn't want to exchange queens, but it looked like my best alternative.  It leaves my nasty pawn on b6 and he can't take it with his pawn, because my rook would then capture his.&lt;br /&gt;&lt;br /&gt;9. ...      Nxc6&lt;br /&gt;10.Nc3 Bg4&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0203.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0203.jpg" alt="" border="0" /&gt;&lt;/a&gt;11.Nd5&lt;br /&gt;&lt;br /&gt;Threatening Nc7+, forking the King and Rook.&lt;br /&gt;11. ... Kd7&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0204.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0204.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;At this point I came up with a plan.  Move the Knight e5 and allow his knight to capture (as if he has any choice since its check,) then Rook takes a7+ and after his rook recaptures the pawn goes in unhindered.  And thats how it worked! &lt;span style="font-weight: bold; font-style: italic;"&gt; I love it when a plan comes together.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;12.Ne5+!  Nxe5&lt;br /&gt;13.Rxa7+ Rxa7&lt;br /&gt;14.bxa7 e6!&lt;br /&gt;&lt;br /&gt;Another cute move, trying to get as much of my material as possible.  But after looking it over, I decided to let him take it.  Since my queen will take back and be on a good central square and recapture his knight (or Bishop depending on how he plays it.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Game0205.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Game0205.jpg" alt="" border="0" /&gt;&lt;/a&gt;15.a8Q Bc5&lt;br /&gt;16.Ne3 Bxe3&lt;br /&gt;17.Bxe3 Ne7&lt;br /&gt;&lt;br /&gt;I probably should have taken the Rook and been done with it.  But I wanted to attack the King, not go on a piece eating lark and the game was in the center.&lt;br /&gt;&lt;br /&gt;18.Qa7+ Kc6&lt;br /&gt;19.Qc5+ Kd7&lt;br /&gt;20.Qxe5 Ra8&lt;br /&gt;21.Qb5+ Kd8&lt;br /&gt;22.Bb6+ Kc8&lt;br /&gt;23.Qxc4+ Kd7&lt;br /&gt;&lt;br /&gt;Black Resigns!!!&lt;br /&gt;&lt;br /&gt;What should be learned from these games.&lt;br /&gt;&lt;br /&gt;1.  I personally don't recomend playing the QGA as black, but our local master says it is very sound. As black only play the Queens Gambit Accepted with caution (and book knowlege.)  White in my opinion has a decided advantage and for black to win against a prepared player takes some depth of knowlege. To know how to play this with white, I recomend reading "Attacking with 1.d4, by Dunnington." Both of my opponents here were moderately strong, the first had a 1448 &lt;a href="http://freechess.org"&gt;FICS&lt;/a&gt; rating and second had a 1417, while mine was 1379  (it goes up and down.)  I think they pick up a lot of games from players who don't know how to defend in the QGA.&lt;br /&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;The game of the week was number 2, he was a little more booked up and therefore was more challenging.   And its always more fun when you can force a pawn promotion!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Terry&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115275494594287008?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115275494594287008/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115275494594287008' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115275494594287008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115275494594287008'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/07/game-of-week.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115250019979034703</id><published>2006-07-09T21:42:00.000-05:00</published><updated>2006-07-09T21:56:39.800-05:00</updated><title type='text'>Image of the week</title><content type='html'>The contenders are:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A Lesser Yellowlegs, taken from a fairly inconspicous position.  I got off several shots without him or her noticing me.   I am above the creek by about 8 feet and about 20 feet horizontally away.  I am behind some trees "a sort of natural blind."&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/YellowLegs.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/YellowLegs.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This deer is a considerble distance away, maybe 100 feet or so.   I got lucky and saw her out in the clear.  The creek is in a gully and she is down in it, probably getting some water.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/deer.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/deer.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;And in my humble opinion the deer picture is much better.  It gives a glimpse of the beauty of this park.&lt;br /&gt;Now the bad news from this week.  I saw a pair of Blue Herons this week, but the camera action was to slow to get them.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Terry&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115250019979034703?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115250019979034703/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115250019979034703' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115250019979034703'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115250019979034703'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/07/image-of-week_09.html' title='Image of the week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115189400789026387</id><published>2006-07-02T21:04:00.000-05:00</published><updated>2006-07-02T21:33:53.230-05:00</updated><title type='text'>Image of the week</title><content type='html'>&lt;a style="font-weight: bold;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/CatBird.jpg"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;/a&gt;The contenders:&lt;br /&gt;&lt;br /&gt;1. Image was taken last Wednesday. He or she was one very agitated Catbird. I don't think I was causing her to be upset, since I could hear her before I got there and well after I left. Anyway, when I usually walk by them, they totally ignore me.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/CatBird.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/CatBird.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2. A female Cardinal, taken Saturday. Not the best photo in the world, but the best I could get, She kept moving around making taking the photo difficult. This photo looks a little grainy, but most were just a blur.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/MrsCardinal.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/MrsCardinal.jpg" alt="" border="0" /&gt;&lt;/a&gt;3. A young rabbit, taken Saturday.  She was just sitting by the trail, munching on some grass.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/BRabbit.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/BRabbit.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;And the winner is:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;font-size:180%;" &gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The scwewy wittle wabbit!!!&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115189400789026387?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115189400789026387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115189400789026387' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115189400789026387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115189400789026387'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/07/image-of-week.html' title='Image of the week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115128726414018085</id><published>2006-06-25T20:39:00.000-05:00</published><updated>2006-06-25T21:22:47.076-05:00</updated><title type='text'>Game of the Week</title><content type='html'>Game was played on &lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt; at 18:06 Saturday Jun 24th.  I have black.&lt;br /&gt;&lt;br /&gt;1.d4 d5&lt;br /&gt;2.c4 e6&lt;br /&gt;3.cxd5 exd5&lt;br /&gt;4.Nc3 c5&lt;br /&gt;5.dxc5 d4 &lt;span class="" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos01.jpg" alt="" border="0" /&gt;&lt;/a&gt;In the Tarrasch, by black pushing to d4 gives him all the attacking possibilities. I must add though, that Tim our local master roasts me with this line every time.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6.Ne4 Bf5&lt;br /&gt;7.Ng3 Bg6&lt;br /&gt;8.b4 Nc6&lt;br /&gt;9.Nf3 Nxb4&lt;br /&gt;10.Nxd4&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos02.jpg" alt="" border="0" /&gt;&lt;/a&gt;I don't know about you, but I love a good Queen Sack, especially when it is sound. Here my opponent has given me a perfect opportunity. Apparently, I saw it nearly immediatly. Since according to my game report from FICS, I only thought about the move for 4 seconds. It must have surprised my opponent, because he thought about his next move for 54 seconds (a long time in speed chess.)&lt;br /&gt;&lt;br /&gt;10. ...  Qxd4&lt;br /&gt;11.Qxd4 Nc2+&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos03.jpg" alt="" border="0" /&gt;&lt;/a&gt;Now I have won the Queen back and profited a whole Knight.  I also have removed his castling privileges.&lt;br /&gt;&lt;br /&gt;12.Kd1 Nxd4&lt;br /&gt;13.e3&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos04.jpg" alt="" border="0" /&gt;&lt;/a&gt;I totally missed the move here.  Fritz pointed out that&lt;br /&gt;13. ...  Nc2&lt;br /&gt;14. Rb1 Nxe3+&lt;br /&gt;exchanges a knight for a rook and a pawn.  That would probably have ended the game right there.&lt;br /&gt;&lt;br /&gt;13. ...   Nc6&lt;br /&gt;14.Bb5 0-0-0+&lt;br /&gt;15.Ke2 Bxc5&lt;br /&gt;16.Bxc6 bxc6&lt;br /&gt;17.Bb2 Bd3+&lt;br /&gt;18.Kf3 Ne7&lt;br /&gt;19.Rhd1 Bb5&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos05.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos05.jpg" alt="" border="0" /&gt;&lt;/a&gt;Bb3 was better, but at least I am still winning.&lt;br /&gt;&lt;br /&gt;20.Rdc1 Bb4&lt;br /&gt;21.a3 Bd2&lt;br /&gt;22.Rc2 Ba4&lt;br /&gt;23.Rc4 Bb5&lt;br /&gt;24.Rc2 Ba5&lt;br /&gt;25.Bxg7 Rhg8&lt;br /&gt;26.Bf6 Rd7&lt;br /&gt;27.Ne4 Ng6&lt;br /&gt;28.g3 Re8&lt;br /&gt;29.Nc5 Rd6&lt;br /&gt;30.Bd4 Ne5+&lt;br /&gt;31.Bxe5 Rxe5&lt;br /&gt;32.Ne4&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos06.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos06.jpg" alt="" border="0" /&gt;&lt;/a&gt;I now have a plan as to how to finish my opponent off. I am going to move the Rook to h6, so that he will think that I am attacking his h2 pawn. Then after he defends that pawn, my bishop will drop to d3 forking his Rook and knight. Of course Fritz pointed out that all I had to do was:&lt;br /&gt;32. ...       Rxe4&lt;br /&gt;33. Kxe4 Bd3+&lt;br /&gt;Winning another knight.&lt;br /&gt;&lt;br /&gt;32. ... Rh6&lt;br /&gt;33.h4 Bd3&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Pos07.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Pos07.jpg" alt="" border="0" /&gt;&lt;/a&gt;34.Rc5?&lt;br /&gt;&lt;br /&gt;He thought he could save himself by exchanging the rooks. But the problem was when my bishop takes the knight, white is put in check while un-defending his rook at the same time. White loses a whole rook!&lt;br /&gt;&lt;br /&gt;34. ...  Bxe4+&lt;br /&gt;White Resigns.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115128726414018085?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115128726414018085/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115128726414018085' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115128726414018085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115128726414018085'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/06/game-of-week_25.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115110683357355665</id><published>2006-06-23T18:45:00.000-05:00</published><updated>2006-06-23T18:53:53.583-05:00</updated><title type='text'>Image of the week</title><content type='html'>Its a tie. &lt;br /&gt;&lt;br /&gt;What can I say, both images are good.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Squirrel.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Squirrel.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer01.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer01.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115110683357355665?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115110683357355665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115110683357355665' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115110683357355665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115110683357355665'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/06/image-of-week_23.html' title='Image of the week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-115102503417605427</id><published>2006-06-22T17:59:00.000-05:00</published><updated>2006-06-22T20:20:30.136-05:00</updated><title type='text'>An Embarrassment of Riches</title><content type='html'>I am sorry I haven't gotten much posted for the last couple of weeks. There has been an illmess in the family and priorities had to be shifted.&lt;br /&gt;&lt;br /&gt;So lets start with last week, I noticed this little flower growing in the prarie part of my walk. I don't know what it is, but I thought it was pretty.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/flower.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/flower.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;The same walk, I noticed this duck, don't be fooled at how small it appears here. He was a good 50 meters away when I took this image. I would say that he was the size of a goose, they can get large. Unfortunatly I have lost contact with the mating pair of ducks I saw this spring.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Duck.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Duck.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Last week I was noticing a lot of these little dragon flies all along the bike trail (especially near the creek.)&lt;br /&gt;I assume they are feeding on something that is on the trail.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/LittleDragonFly.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/LittleDragonFly.jpg" alt="" border="0" /&gt;&lt;/a&gt;A few minutes after the above image was taken, I noticed this baby. He is a considerbly larger species. Take note, his wings are barely noticable.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/LargeDragonFly.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/LargeDragonFly.jpg" alt="" border="0" /&gt;&lt;/a&gt;This little feller isn't much to look at, but he sure sings a pretty song. That is all he seems to do. He is a very small little bird, maybe 5 cm long (2 inches.)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/LittleBird.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/LittleBird.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;This is a Redwinged Blackbird doing what they like to do. Which is clinging to tiny branches. The branch was blowing quite a bit in the wind and I was afraid they would all turn out blurry.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/BlackBird.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/BlackBird.jpg" alt="" border="0" /&gt;&lt;/a&gt;And this cute little guy is a Killdeer, I found him at the end of my walk in my employer's front lawn.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Killdeer.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Killdeer.jpg" alt="" border="0" /&gt;&lt;/a&gt;I found this big old frog in a muddy rise in the creek. Yes I am shooting straight down at him. I am on a bridge about 20 feet above him.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Frog.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Frog.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And all around him were these tiny little fish.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Fish.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Fish.jpg" alt="" border="0" /&gt;&lt;/a&gt;Thats it for last week, now for this week.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Monday, I saw this cute little squirrel poking his head around the tree at me. Now there are squirrels all over the bike trail and I usually don't mess with them, but in this guy was cute.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Squirrel.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Squirrel.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Shortly thereafter I started seeing deer. Now I haven't seen deer on the trail in weeks, occasionally I hear them though. And when I do see them it is often very hard to get a clear sharp picture because they are in the trees and the camera focuses on the trees. The manual overide usually takes too long and then the deer are gone. The following four pictures were all taken Tuesday (in about a 5 minute time frame.)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer02.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer03.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer04.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is the last image from Tuesday, it just a cardinal.  But I usually will take what I can get.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Cardinal.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Cardinal.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Wednesday I saw more deer, the images arn't quite as nice. But I enjoyed taking them. They were from a diffrent section of the park. And to finish everything off, I saw a Great Blue Heron. Unfortunatly, He saw me before I saw him and he was gone. Last year it took me weeks to get a picture of one, they are shy.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer05.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer05.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer06.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer06.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Deer07.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Deer07.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-115102503417605427?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/115102503417605427/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=115102503417605427' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115102503417605427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/115102503417605427'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/06/embarrassment-of-riches.html' title='An Embarrassment of Riches'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114998428544189754</id><published>2006-06-10T18:57:00.000-05:00</published><updated>2006-06-10T21:12:07.010-05:00</updated><title type='text'>Image of the week</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/EKingBird.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/EKingBird.jpg" alt="" border="0" /&gt;&lt;/a&gt;Monday, I went out for my usual walk. There hadn't been many birds to take a picture of, but on my last leg of my walk, I spotted this beauty. He was maybe 50 yards off into the prairie, but I snapped a few pictures. &lt;span style="font-weight: bold; font-style: italic;"&gt;Then he took off and landed closer&lt;/span&gt;, allowing me to get this shot.&lt;br /&gt;&lt;br /&gt;I have identified him as a Eastern Kingbird (Tyrannus tyrannus.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114998428544189754?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114998428544189754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114998428544189754' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114998428544189754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114998428544189754'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/06/image-of-week.html' title='Image of the week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114935437772406961</id><published>2006-06-03T11:55:00.000-05:00</published><updated>2006-06-04T11:17:34.233-05:00</updated><title type='text'>Game of the Week</title><content type='html'>Played Fri May 26, 21:14 PDT 2006 on &lt;a href="www.freechess.org"&gt;&lt;/a&gt;&lt;a href="http://www.freechess.org"&gt;FICS&lt;/a&gt;&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I have black again. I have also noticed my opponent has a 1400 rating, I was thinking to myself this could be a tough game, I hadn't been playing that hot lately.&lt;br /&gt;&lt;br /&gt;1.Nf3&lt;br /&gt;&lt;br /&gt;Looks like a Kings Indian defense. I don't know it very well, I usually try to develop and play to the best of my ability and see what happens.&lt;br /&gt;&lt;br /&gt;1. ...  d5  Yes, I am going to play the Tarrasch.&lt;br /&gt;2.c4  e6&lt;br /&gt;&lt;br /&gt;No I am not afraid of the pawn exchange, its not that bad for me. Because after the exchange it releases my light square bishop.&lt;br /&gt;&lt;br /&gt;3.b3 c5&lt;br /&gt;&lt;br /&gt;I think b3 is questionable, he is wanting to fianchetto his dark square Bishop.&lt;br /&gt;4.Bb2 d4&lt;br /&gt;&lt;br /&gt;I push d4 limiting the usefulness of the dark square Bishop and creating the powerful Tarrasch d pawn.&lt;br /&gt;&lt;br /&gt;5.d3 Nc6&lt;br /&gt;6.g3 e5&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;e5 not only supports my strong d4 pawn, but releases my light square Bishop. My d pawn is now firmly entrenched into his territory, it should be a feature for most of the game now. Notice how he is becoming constricted.&lt;br /&gt;&lt;br /&gt;7.Bg2   Nf6&lt;br /&gt;8.Nbd2 Be7&lt;br /&gt;9.0-0     0-0&lt;br /&gt;10.Re1  Bg4&lt;br /&gt;11.e3&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image02.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;He wants to get rid of my d4 pawn real bad. So bad that he has pinned his Knight against his Queen. But if he exchanges pawns, I will just retake with my e pawn and still won't be rid of it.&lt;br /&gt;&lt;br /&gt;11. ...     Qc8&lt;br /&gt;12.exd4 exd4&lt;br /&gt;13.a3&lt;br /&gt;&lt;br /&gt;I suspect a totally wasted move.&lt;br /&gt;&lt;br /&gt;13. ...    Re8&lt;br /&gt;14.Qe2 Bd6&lt;br /&gt;15.Qf1&lt;br /&gt;&lt;br /&gt;A cute series of moves to get his Queen over to defend the King side and unpins the Knight.&lt;br /&gt;&lt;br /&gt;15. ...     Qf5&lt;br /&gt;16.Nh4  Qd7&lt;br /&gt;17.Nhf3 Ne5&lt;br /&gt;18.Nxe5 Bxe5&lt;br /&gt;19.Nf3   Bd6&lt;br /&gt;20.Nd2  Rab8&lt;br /&gt;21.h3&lt;br /&gt;&lt;br /&gt;He finally kicks my Bishop. With his Queen down there I can't take the pawn.&lt;br /&gt;&lt;br /&gt;21. ...  Be6&lt;br /&gt;22.Nf3 Nh5&lt;br /&gt;&lt;br /&gt;I want him to kick my knight (pawn to g4), then I can place it on f4.&lt;br /&gt;23.Re2 ???&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image03.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Oh he tempts me. A rook is worth 5 points, but a Bishop and Knight are worth 6.5 points. But I am going to win at 2 pawns. The idea is B x g3 followed by fg. Then the Knight retakes the pawn forking the Queen and Rook. But wait, after the Queen retakes the Knight, she un-defends the h3 pawn. I will win a total of 3 pawns, ripping apart his King Cage!&lt;br /&gt;&lt;br /&gt;23, ...    Bxg3&lt;br /&gt;24.fxg3 Nxg3&lt;br /&gt;25.Qf2 Nxe2+&lt;br /&gt;26.Qxe2 Bxh3&lt;br /&gt;27.Ne5 ???&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Image04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Image04.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;A really questionable move, purpousely pinning his Knight against his Queen; just to get an attack on my Queen which can just move away. He is just digging a deeper hole for himself.&lt;br /&gt;&lt;br /&gt;27. ...      Qe6&lt;br /&gt;28.Bxh3 Qxh3&lt;br /&gt;29.Re1   Qg3+&lt;br /&gt;30.Kf1    f6&lt;br /&gt;31.Qh5   Rxe5&lt;br /&gt;32.Rxe5  fxe5&lt;br /&gt;33.Bc1    Rf8+&lt;br /&gt;34.Ke2    Qg1&lt;br /&gt;35.Qxe5  Rf2&lt;br /&gt;&lt;br /&gt;Check mate!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114935437772406961?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114935437772406961/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114935437772406961' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114935437772406961'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114935437772406961'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/06/game-of-week.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114879964090640661</id><published>2006-05-28T01:56:00.000-05:00</published><updated>2006-05-28T02:00:40.916-05:00</updated><title type='text'>Chuckie is a girl!!!</title><content type='html'>For several years we have had a wood chuck living under our shed in the backyard.  Cheryl had named him "Chuckie." &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/ChuckySr.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/ChuckySr.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;But a couple days ago I had noticed there was a "Chuckie Jr." along with Chuck Sr., so I can say that Chucky is definitly a female.  We haven't  come up with a more appropriate name yet for Chuckie.  Send us a comment with any suggestions.  Today, I went and planted myself in the camper and just waited.  I caught Chucky Jr (from hence known as "Woody" per Cheryl) peeking out from under the shed.  Update, there appear to be two offspring, not just one.  So if anyone has a good second name for the second, just let us know.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Woody.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Woody.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114879964090640661?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114879964090640661/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114879964090640661' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114879964090640661'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114879964090640661'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/chuckie-is-girl.html' title='Chuckie is a girl!!!'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114867679121742407</id><published>2006-05-26T15:43:00.000-05:00</published><updated>2006-05-26T19:25:31.986-05:00</updated><title type='text'>Game of the Week</title><content type='html'>Played on&lt;a href="http://freechess.org"&gt; &lt;/a&gt;&lt;a href="http://freechess.org"&gt;FICS&lt;/a&gt; Friday May 26th.&lt;br /&gt;&lt;br /&gt;1.g3&lt;br /&gt;&lt;br /&gt;A pretty passive opening move!&lt;br /&gt;&lt;br /&gt;1.  ...   d5&lt;br /&gt;2.Bg2 e6&lt;br /&gt;3.d3  c5&lt;br /&gt;4.Nc3 Nc6&lt;br /&gt;5.Nf3 d4&lt;br /&gt;&lt;br /&gt;His whole opening has been very passive and has basically surrendered the center to me. My d pawn has been pushed up to d4, it has become a thorn in his side and should cost him a hole piece to get rid of it. This game is a good example why all of the opening book say you should fight for the center.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/move05.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/move05.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;6.Nb5&lt;br /&gt;&lt;br /&gt;A huge error, allowing Qa5+, which forks the King and Knight.  The Knight is undefended.&lt;br /&gt;&lt;br /&gt;6. ... Qa5+&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/move06.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/move06.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;7.Bd2&lt;br /&gt;&lt;br /&gt;Nc3 would probably be better, getting rid of my nasty d4 pawn.&lt;br /&gt;&lt;br /&gt;7. ...   Qxb5&lt;br /&gt;8.b3     Nf6&lt;br /&gt;9.0-0    Be7&lt;br /&gt;10. a4   Qb6&lt;br /&gt;11. c3   0-0&lt;br /&gt;12. a5   Qd8&lt;br /&gt;13. cxd4 cxd4&lt;br /&gt;14. h4&lt;br /&gt;&lt;br /&gt;This move is questionable, weakening his King cage.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/move14.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/move14.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;14. ...  e5&lt;br /&gt;&lt;br /&gt;Reinforces my d pawn and allows my light squared Bishop to be developed.&lt;br /&gt;&lt;br /&gt;15. e3 Bg4&lt;br /&gt;&lt;br /&gt;Pins his Knight.&lt;br /&gt;&lt;br /&gt;16. Qc2&lt;br /&gt;&lt;br /&gt;He unpins his knight.&lt;br /&gt;&lt;br /&gt;16. ... Rc8&lt;br /&gt;&lt;br /&gt;Threatens a discovered attack on the Queen.&lt;br /&gt;Notice how I have developed two pieces by forcing him to move his queen multiple times. The queen must always retreat because she is the most valuable, improving my position while weakening his.&lt;br /&gt;&lt;br /&gt;17. Qb1 Nd7&lt;br /&gt;18. Nh2 Bf5&lt;br /&gt;19. g4&lt;br /&gt;&lt;br /&gt;He is weakening his king side badly, just to get rid of a bishop.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/move19.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/move19.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;19. ...  Be6&lt;br /&gt;20. h5 Bg5&lt;br /&gt;21. Bh3 Nf6&lt;br /&gt;22. Nf3 Nxg4&lt;br /&gt;&lt;br /&gt;I am ahead in material, trading is not a problem for me.  Especially when I win a pawn in the deal!&lt;br /&gt;&lt;br /&gt;23. Nxg5 Qxg5&lt;br /&gt;&lt;br /&gt;I am now threatening a discovered attack on the king!&lt;br /&gt;&lt;br /&gt;24. Kh1 Qh4&lt;br /&gt;&lt;br /&gt;Pins the Bishop&lt;br /&gt;25. Kg2 Nxe3+ !&lt;br /&gt;&lt;br /&gt;Wins a pawn and exchanges a night for a bishop. Yes there are now 2 hitters on his Bishop. It also sets up the mating sequence.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/move25.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/move25.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;26.  fxe3 Bxh3+&lt;br /&gt;27. Kg1 Qg3+&lt;br /&gt;28. Kh1 Qg2#&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114867679121742407?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114867679121742407/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114867679121742407' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114867679121742407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114867679121742407'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/game-of-week_114867679121742407.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114824419584319839</id><published>2006-05-21T15:20:00.000-05:00</published><updated>2006-05-21T15:54:05.116-05:00</updated><title type='text'>Oh My ..., What a GALAXY!!!</title><content type='html'>I really didn't have a plan for Saturday night (05.20.2006,) but the sky was remaining clear. This year has been mostly cloudy and on the days that weren't cloudy, I usually had to work the next day. Since I have to be to work at 6:15am and work a 12 hour shift, I usually can't observe on a "School Night." So I packed my gear, because Saturday was NOT a school night:&lt;br /&gt;&lt;br /&gt;Telescope case, which includes the LX-90 telescope.&lt;br /&gt;The wedge&lt;br /&gt;My eye piece cases&lt;br /&gt;Observing chair&lt;br /&gt;a laptop pc&lt;br /&gt;&lt;br /&gt;I left my tripod at home, since there are piers at Ashton Observatory (My dark sky site.)&lt;br /&gt;&lt;br /&gt;I am currently working on my Herschel 400 list.  I have written an &lt;a href="http://www.haimannonline.com/Messier/"&gt;app&lt;/a&gt; that keeps track of what objects I have found (and haven't) and then sorts them by how many hours they will be up when the sun isn't . I printed off the first three pages of the "Not Found Herschel 400 List" and added it to my gear.&lt;br /&gt;&lt;br /&gt;After arriving at &lt;a href="http://www.dmasonline.org"&gt;Ashton Observatory&lt;/a&gt;, I set my Wedge up on one of the piers which was badly out of alignment. It took me a half hour to get that corrected and to finish setting my telescope up. Then I went in and listened to the evening's scheduled program.&lt;br /&gt;&lt;br /&gt;After the program, I came out but it was still dusk. But as soon as I could see Polaris, I did a quick polar alignment. The LX-90 (20cm) is a goto telescope, which means you also need to do a two-star alignment. I could now see Arcturus so I went for it.&lt;br /&gt;&lt;br /&gt;I then looked at Jupiter, while waiting for it to get dark enough to start my list.  Jupiter is always fun to look at.&lt;br /&gt;&lt;br /&gt;22:10 ngc 5466, saw a soft glow.  Checked it off.&lt;br /&gt;22:10 ngc 5248, could easily see a galaxy.  Nothing special, checked it off.&lt;br /&gt;22:12 ngc 4203, a tight little galaxy, checked it off.&lt;br /&gt;22:14 ngc 4565.  &lt;span style="font-weight: bold; font-style: italic;"&gt;OH MY ..., what a GALAXY!!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;What I was looking at was a thin sliver of light running almost the entire diameter of my eye piece. I had in my usual 32mm, giving me 64x magnification and about .6 degrees field of view. The galaxy was definitly an edge on galaxy and what a beauty at that.&lt;br /&gt;&lt;br /&gt;I now know that I was looking at the "Needle Galaxy," NGC 4565 or Caldwell 38. According to Stephen O'Meara in "The Caldwell Objects," "It Is the largest and most famous edge on galaxy in the night sky." And I might add, it is one of the few galaxies that look similar through the eye piece as in the famous images. When I changed eye pieces to the 15 mm (mid powered eye piece - 135x) I could even make out the core.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/ngc4565_mclaughlin.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/ngc4565_mclaughlin.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;NGC 4565: Needle Galaxy&lt;br /&gt;Credit and Copyright: William McLaughlin (ARGO Cooperative Observatory)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114824419584319839?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114824419584319839/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114824419584319839' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114824419584319839'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114824419584319839'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/oh-my-what-galaxy.html' title='Oh My ..., What a GALAXY!!!'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114805289956517169</id><published>2006-05-19T10:20:00.000-05:00</published><updated>2006-05-19T10:34:59.596-05:00</updated><title type='text'>Image of the week</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Grosbeak.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Grosbeak.jpg" alt="" border="0" /&gt;&lt;/a&gt;We beleive this is a Rose-Breasted Grosbeak.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/p5110026.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/p5110026.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;King (or maybe Queen, I can't tell) of Squirrel Island.  This is one of the sand bars in Beaver Creek, it is usually only inhabitted by squirrels.  When the creek is at its normal level it is about twice the size seen here, there are several downed trees (presently submerged) which gives the squirrels easy access.&lt;br /&gt;I&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114805289956517169?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114805289956517169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114805289956517169' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114805289956517169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114805289956517169'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/image-of-week.html' title='Image of the week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114805080823285321</id><published>2006-05-19T09:16:00.000-05:00</published><updated>2006-05-19T10:02:36.336-05:00</updated><title type='text'>Chess and Poetry Garden</title><content type='html'>Des Moines has a new park. "The Chess and Poetry garden" was dedicated Tuesday May 16th. It is part of the new Central Library Complex, which itself was just opened back in April 06, 2006. Through out the summer, the Des Moines Chess Club will be playing here Tuesday nights at 6pm.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://desmoinesregister.com/apps/pbcs.dll/article?AID=/20060516/ENT01/605160357/1046/ENT"&gt;Des Moines Register Article&lt;/a&gt;&lt;br /&gt;&lt;a href="http://desmoinesregister.com/apps/pbcs.dll/article?AID=/20060518/ENT01/605180341/1046/ENT"&gt;Des Moines Register Article&lt;/a&gt;&lt;br /&gt;&lt;a href="http://desmoinesregister.com/apps/pbcs.dll/article?AID=/20060519/LIFE/605190354/1046/ENT"&gt;Des Moines Register Article &lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/HaimannGotchall.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/HaimannGotchall.jpg" alt="" border="0" /&gt;&lt;/a&gt;Roger Gotschall of Ames and I played a couple of games (I am on the left.)  I won both games.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Roth.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Roth.jpg" alt="" border="0" /&gt;&lt;/a&gt;John Roth (right), one of our club's stronger players is involved in a game of his own.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Tim.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Tim.jpg" alt="" border="0" /&gt;&lt;/a&gt;Tim McEntee, State Co-champion is playing another strong player from Ames.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Assorted pictures from the new park.  All images for this article were taken by &lt;a href="http://getagriponit.blogspot.com/"&gt;Cheryl Haimann&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Park01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Park01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Park02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Park02.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Park03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Park03.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Park04.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Park04.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Park05.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Park05.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114805080823285321?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114805080823285321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114805080823285321' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114805080823285321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114805080823285321'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/chess-and-poetry-garden.html' title='Chess and Poetry Garden'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114792007357123859</id><published>2006-05-17T21:32:00.000-05:00</published><updated>2006-05-17T21:41:13.573-05:00</updated><title type='text'>Game of the Week</title><content type='html'>Played Sunday 2006.05.14 on Free Internet Chess Server&lt;br /&gt;&lt;br /&gt;When I saw my opponents rating (1398,)  I thought  “Well I am going to lose this game.” Because his rating was about 50 points higher then my current rating.  Generally speaking though, I have a tendency to win those games where I don't think I have chance because I am not overly confident.&lt;br /&gt;&lt;br /&gt; 1.d4&lt;br /&gt;&lt;br /&gt;This is my usual opening for white, it is more strategic in focus, while e4 is more tactical.&lt;br /&gt;&lt;br /&gt;...      Nf6&lt;br /&gt;&lt;br /&gt;This is the King's Indian line&lt;br /&gt; 2.c4 e6&lt;br /&gt;&lt;br /&gt;He's no longer in book, I am basically on my own.&lt;br /&gt;&lt;br /&gt; 3.Nc3 Bb4&lt;br /&gt;&lt;br /&gt;He is pinning my knight, hoping by exchanging a bishop for a knight so that he can damage my pawn structure enough to win the end game.  I am going to let him.  A bishop has a true value of 3.5 points, while a knight is worth only 3.  Bishops usually dominate over knight, especially in an open position.&lt;br /&gt; 4.a3&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Week01200601.2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Week01200601.2.jpg" alt="" border="0" /&gt;&lt;/a&gt;I force him to make his mind up, exchange the Bishop or retreat.&lt;br /&gt;...          Bxc3+&lt;br /&gt; 5.bxc3 c5&lt;br /&gt;&lt;br /&gt;He would like me to take his pawn on c5, giving me tripled pawns which are very weak.  I would prefer that he takes, which after I retake will repair my pawn structure.&lt;br /&gt; 6.Qc2&lt;br /&gt;&lt;br /&gt;This defends against him planting his Knight on e4, followed by a queen to a5 would put a double hit on my helpless c3 pawn.  Now it will take him longer.&lt;br /&gt;...         Qa5&lt;br /&gt;&lt;br /&gt;As I expected, he pins my c3 pawn with his Queen.&lt;br /&gt;&lt;br /&gt;7.Bd2&lt;br /&gt;&lt;br /&gt;This unpins the pawn.  Now cxd no longer wins the d pawn&lt;br /&gt;&lt;br /&gt;....     Nc6&lt;br /&gt; 8.e3 0-0&lt;br /&gt; 9.Nf3&lt;br /&gt;&lt;br /&gt;Developing moves.&lt;br /&gt;...          d5&lt;br /&gt;&lt;br /&gt;Now the fight for the center.&lt;br /&gt;&lt;br /&gt;10.Bd3&lt;br /&gt;&lt;br /&gt;His biggest threat right now is cxd, making me waste a tempo on Bxd, while I have lined up my Bishop and Queen on his h7 pawn which would damage his King cage.&lt;br /&gt;&lt;br /&gt;I would also like to move my c3 pawn to make a discovered attack on his Queen.&lt;br /&gt;...        Re8&lt;br /&gt;&lt;br /&gt;He is hoping to create a ugly pin on my e3 pawn (after some pawn trades.)  I decide to castle and end the tactical threat.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Week01200602.3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Week01200602.3.jpg" alt="" border="0" /&gt;&lt;/a&gt;11.0-0 h6&lt;br /&gt;&lt;br /&gt;h6 is probably a waste of a good tempo.   Notice the potential for a discovered attack on the black queen.&lt;br /&gt;&lt;br /&gt;12.cxd5 exd5&lt;br /&gt;13.c4 Qc7&lt;br /&gt;&lt;br /&gt;With the discovered attack on the Queen, I win a pawn.  Not a game winning move, but a slight advantage.&lt;br /&gt;&lt;br /&gt;14.dxc5 dxc4&lt;br /&gt;15.Bxc4&lt;br /&gt;&lt;br /&gt;We now have an open position, my Bishops should dominate.&lt;br /&gt;&lt;br /&gt;...          Bg4&lt;br /&gt;&lt;br /&gt;He is hoping to damage my king cage after 16. ...  Bxf3 17. gxf&lt;br /&gt;So I just move the Night out, where it actually is more powerful.&lt;br /&gt;   &lt;br /&gt;16.Nd4 Rad8&lt;br /&gt;&lt;br /&gt;He probably should have exchanged Nights.  Now my Knight is free to look for a stronger square.  Nb5 attacks the Queen and then lets my Knight plant itself on d6, where it will become a thorn in his side.  A Knight on the rim is dim, but a well placed Night can be worth a rook!&lt;br /&gt;&lt;br /&gt;17.Nb5 Qe5&lt;br /&gt;18.Nd6 Re7&lt;br /&gt;&lt;br /&gt;He is now threating my c5 pawn with his Queen, which will undermine the defense of my Knight, but I can defend the whole mess by Bc3.  Bc3 threatens to exchange my Bishop for his Knight and then if he retakes his King cage is damaged.  If he doesn't retake I will win the exchange of BxR.&lt;br /&gt;19.Bc3 Qxc5&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/Week01200603.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/Week01200603.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It's not good, but he did it.  I actually under analyzed the whole mess (this was speed chess afterall) and didn't realize how good the move was.  Because after Bxf6  gxf, Bxf7 leaving a discovered attack on his Queen.&lt;br /&gt;&lt;br /&gt;20.Bxf6 gxf6&lt;br /&gt;21.Bxf7+ Rxf7&lt;br /&gt;22.Qxc5&lt;br /&gt;&lt;br /&gt;His position is now a mess and he misses obvious threats.  The game is now basically over.  I have won a Queen and a pawn for the price of a Bishop and Bishop for Knight exchange.  A gain of 6.5 points for those of you who are counting.  Whats more his pawn structure on the King side is a total mess, he has just two isolated pawns.&lt;br /&gt;&lt;br /&gt;Rfd7&lt;br /&gt;23.Qc4+ Kg7&lt;br /&gt;24.Qxg4+&lt;br /&gt;&lt;br /&gt;I am now up a whole Queen plus a pawn, his position is hopeless and therefore he resigns.&lt;br /&gt;In the FICS rating system, I go up 9 points for my effort.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114792007357123859?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114792007357123859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114792007357123859' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114792007357123859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114792007357123859'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/game-of-week_17.html' title='Game of the Week'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114764955975093791</id><published>2006-05-14T18:26:00.000-05:00</published><updated>2006-05-15T06:56:03.406-05:00</updated><title type='text'>Walking</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/604/2971/1600/BlueHeron.2.jpg"&gt;&lt;img style="margin: 0px 0px 10px 10px; float: right;" alt="" src="http://photos1.blogger.com/blogger/604/2971/200/BlueHeron.0.jpg" border="0" /&gt;&lt;/a&gt;Due to middle aged heath problems, I now am supposed to walk 2.5 hours per week. What I usually do is on the days I work (I work 12 hour shifts) is use one 15 minute break for my lunch (a Weight Watchers tv dinner) and combine all of the remaining lunch and break time into a one hour break. This I use to take a walk on the bicycle trail behind where I work.&lt;br /&gt;The trail (Greenbelt Park, Johnston Iowa) is a combination of prairie and woods with Beaver Creek running through the middle of it. Well, within a month or so of starting these walks, I wanted a camera. So I purchased a cheap 3x optical Fuji camera, but after using that camera for six months or so it broke. So I &lt;span style="font-weight: bold; font-style: italic;"&gt;LET&lt;/span&gt; Cheryl (&lt;a href="www.getagriponit.blogspot.com"&gt;www.getagriponit.blogspot.com&lt;/a&gt;) upgrade her Olympus 3.4 MP 10x camera to a 10x 5mp Kodak and I got the Olympus.&lt;br /&gt;&lt;br /&gt;The best picture that I got with the Fuji was of a Great Blue Heron last October. I had been noticing it in flight, for several weeks. Well I noticed it appear to land in the creek and tried to get close enough to take a picture, but it saw me and took off and flew a ways down the creek. It was late in my walk and I didn't have much time, but I tried to follow it and got lucky and found it fishing in the creek and got the picture above.&lt;br /&gt;&lt;br /&gt;Well this spring I have been watching a pair of mallard ducks and geese (they are everywhere.) I am pretty sure that the mallards had a nest and had laid some eggs. But about two weeks ago we had a big rain storm and the creek had risen several feet and I am afraid the mallard's have lost their clutch.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center;" alt="" src="http://photos1.blogger.com/blogger/604/2971/400/p1010013.1.jpg" border="0" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114764955975093791?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114764955975093791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114764955975093791' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114764955975093791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114764955975093791'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/walking_14.html' title='Walking'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-28097572.post-114763784219827378</id><published>2006-05-14T15:13:00.000-05:00</published><updated>2006-05-14T16:08:21.693-05:00</updated><title type='text'>The Cat's Eye</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;My name is Terry.&lt;br /&gt;&lt;br /&gt;Early this year I upgraded Telescopes to a Meade 8" LX-90 from a non goto LX-10. Now if you compared telescopes to cars, the LX-10 would be a Yugo, it has marginal optics and its tracking was never that good and of course the object had to be located first. While the LX-90 is a Chevy Impala, not top of the line but very capable. It has fairly good optics, goto and relatively good tracking.&lt;br /&gt;&lt;br /&gt;At about the same time I purchased a Meade DSI imager. Now the weather this year has been mostly cloudy and I have only gotten my scope out a few times. There has also been a learning curve with the new telescope and the DSI imager. I am afraid I am also suffering from Murphy's Law of telescopes (When a new telescope is purchased, cloudy weather will prevail.)&lt;br /&gt;&lt;br /&gt;Well the following is the first relatively good image obtained with the LX-90/DSI combo.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/604/2971/1600/CatsEye.1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/604/2971/320/CatsEye.1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The Cats Eye is what is known as a "Planetary Nebula." The name is historical and has nothing to do with planets, earlier astronomers thought they looked like planets forming in deep space. It is now known that they are dying stars, that have exhausted their main source of energy (hydrogen) and are now losing their outer shells of gas to deep space. You can read all about Planetary Nebula's at: &lt;a href="http://www.astro.washington.edu/balick/WFPC2/"&gt;http://www.astro.washington.edu/balick/WFPC2/&lt;/a&gt; I read somewhere that a Planetary Nebula is a wreath laid down for a dead star. Now this image is only a few minutes in length and therefore I didn't get a lot of detail. &lt;div style="display: block;" class="vertbar"&gt;&lt;span style="display: block;" class="g"&gt; &lt;/span&gt;&lt;span style="display: block;" class="w"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/28097572-114763784219827378?l=knightstar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://knightstar.blogspot.com/feeds/114763784219827378/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=28097572&amp;postID=114763784219827378' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114763784219827378'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/28097572/posts/default/114763784219827378'/><link rel='alternate' type='text/html' href='http://knightstar.blogspot.com/2006/05/cats-eye.html' title='The Cat&apos;s Eye'/><author><name>THaimann</name><uri>http://www.blogger.com/profile/07545701940703060281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
