<?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.loghound.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3253106971805508455</id><updated>2012-05-21T01:21:37.698-05:00</updated><category term='Soccer'/><category term='TV'/><category term='ScienceTech'/><category term='Video Games'/><category term='Awards'/><category term='Music'/><category term='Food'/><category term='Work'/><category term='Home'/><category term='Site News'/><category term='Movies'/><category term='News'/><category term='Ads'/><category term='Politics'/><title type='text'>Jeff's Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.loghound.com/g/2005#feed' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.phpfeeds/posts/default'/><link rel='self' type='application/atom+xml' href='http:///jeffrey.cowgill.name/files/jeffRSS.php'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php'/><link rel='hub' href='http://jeffrey.cowgill.name/index.php'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/3253106971805508455/posts/default?start-index=26&amp;max-results=25&amp;orderby=published'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>100</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-5283363134342356270</id><published>2011-11-22T14:35:00.001-05:00</published><updated>2011-11-22T17:41:20.404-05:00</updated><title type='text'>Controlling your TV with a computer via IR</title><content type='html'>As part of a project to setup a digital sign for my department on the cheap I purchased a LG TV and a Lenovo Atom powered computer.  The TV was supposed to have a on/off scheduler that would allow us to automatically turn off the TV at the end of the day and turn it back on in the morning before our offices opened.  It didn't work.  It would turn off on schedule then in the morning it would turn on for a few minutes then turn off because it did not get any remote interactions.  It was useless.&lt;br /&gt;&lt;br /&gt;So I had to find a solution that would allow us to turn on and off the TV on our schedule and be fairly inexpensive.  My solution was to use a USB IR dongle and some basic software that came with it to send a power button command recorded from the TV's remote.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The Hardware:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://iguanaworks.net/product1.psp"&gt;Iguanaworks&lt;/a&gt; USB IR Transceiver with 1 LED + 1 Plug&lt;br /&gt;Smarthome Wired IR Emitter&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The Software:&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;Windows 7 Home&lt;br /&gt;&lt;a href="http://iguanaworks.net/downloads.php?distro=win"&gt;IguanaIR software&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;First thing I had to do was install the IguanaIR software and then plug in the usb transceiver.  Then to get it to work because the software uses a daemon, I had to reboot Windows with the transceiver plugged in.&amp;nbsp;   &lt;br /&gt;&lt;br /&gt;To test everything was working I would run this command from the command prompt:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;c:\Program Files (x86)\iguanaIR\igclient --get-version&amp;nbsp;&lt;/blockquote&gt;&lt;br /&gt;It should print out the hardware version.  After getting the software installed and working I next had to figure out how to get the power button IR code for my remote in a format that the igclient software uses.&lt;br /&gt;&lt;blockquote&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;/blockquote&gt;I finally figured out that if I used the command:&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;c:\Program Files (x86)\iguanaIR\igclient --receiver-on --sleep=10 &amp;gt; remote.txt&amp;nbsp;&lt;/blockquote&gt;&lt;br /&gt;I would be able to record  the input to a text file and see the pulses and spaces.  This worked but the file was not in the format that I needed, but close.  I removed the extra characters and spaces and got it into the correct format, but it did not work.  I finally figured out that the IR remote was using pulse width modulation at 38k frequency and the messages needed a header and a tail wrapping the command.  I found the LG remote codes in HEX at the &lt;a href="http://lirc.sourceforge.net/remotes/lg/AKB72915207"&gt;LIRC software page&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Using a HEX to binary converter I was able to get the binary sequence for the command for the power button.  I also could get the header info.  The HEX code for the entire command was 20df10ef.  This converted to 00100000110111110001000011101111.  So I just needed to find the value in pulse/space format for 1s and 0s.  Looking at what I recorded using the actual remote and igclient software I saw that the zero was pulse 556 and space 512, and the one was pulse 556 and space 1612.  So I just created a new file with the binary sequence encoded with pulses and spaces, then added a header and tail pulse and space that I figured out from the recording again.  Here is the final file.&lt;br /&gt;&lt;blockquote&gt;pulse 8960&lt;br /&gt;space 4394&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 512&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 1621&lt;br /&gt;pulse 556&lt;br /&gt;space 21845&lt;/blockquote&gt;&lt;br /&gt;To send this to the Tv, I mounted the SmartHome wired IR Emitter to the Tv over its receiver. &amp;nbsp;It is hard to find under the plastic but using a flashlight and paper to cover it up and test with the remote worked best to isolate the exact location. &amp;nbsp;Plugged in the emitter to the USB transceiver and ran the following command:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;c:\Program Files (x86)\iguanaIR\igclient --send=lgpoweron.txt&lt;/blockquote&gt;Tv went off and running it again turned it back on. &amp;nbsp;I created a batch file with this command in it that I can schedule to run when ever I want and job done.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-5283363134342356270?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5283363134342356270' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=5283363134342356270' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5283363134342356270'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5283363134342356270'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=5283363134342356270' title='Controlling your TV with a computer via IR'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-7674485902483087543</id><published>2011-11-06T10:28:00.000-05:00</published><updated>2011-11-06T10:31:38.677-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Awards'/><category scheme='http://www.blogger.com/atom/ns#' term='Work'/><title type='text'>2011 Wright State University President's Award for Excellence</title><content type='html'>&lt;iframe width="420" height="315" src="http://www.youtube.com/embed/4ZPqldArlD8" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-7674485902483087543?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=7674485902483087543' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=7674485902483087543' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=7674485902483087543'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=7674485902483087543'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=7674485902483087543' title='2011 Wright State University President&amp;#39;s Award for Excellence'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://img.youtube.com/vi/4ZPqldArlD8/default.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-6264487473359016871</id><published>2011-03-12T19:31:00.000-05:00</published><updated>2011-03-12T20:07:24.909-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='News'/><title type='text'>New site design</title><content type='html'>After updating to Rapidweaver 5, I decided to update the design of my site.  Something a little different.  I also had to update the &lt;a href="maps/maps/page3.html" rel="self" title="Dundjinni Objects"&gt;Dundjinni page&lt;/a&gt; with PNG files that could be downloaded and used directly in Dundjinni.  &lt;br /&gt;&lt;br /&gt;Also, if you need a good Dice application for your Mac check out my &lt;a href="diceapp/index.html" rel="self" title="Dice App"&gt;Dice App&lt;/a&gt; on the Mac App Store.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-6264487473359016871?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6264487473359016871' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=6264487473359016871' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6264487473359016871'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6264487473359016871'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=6264487473359016871' title='New site design'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-682887901635647039</id><published>2011-01-08T17:59:00.000-05:00</published><updated>2011-02-11T23:25:27.239-05:00</updated><title type='text'>Dice App now available</title><content type='html'>&lt;img src="http://jeffrey.cowgill.name/resources/Home/new_dice.png" alt="Dice App Logo" height=50 width=55&gt;My dice rolling Mac applications is now available via the &lt;a href="http://itunes.apple.com/us/app/dice-app/id402601919?mt=12" rel="external"&gt;Mac App Store&lt;/a&gt;.  If you need to roll virtual dice on your Mac, this is the app for you.  Please check it out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-682887901635647039?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=682887901635647039' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=682887901635647039' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=682887901635647039'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=682887901635647039'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=682887901635647039' title='Dice App now available'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-844755725055032686</id><published>2010-11-04T20:50:00.000-05:00</published><updated>2010-11-04T20:51:42.567-05:00</updated><title type='text'>Working on new Mac App</title><content type='html'>I am working on a new application to be sold through the Apple Mac App Store that will be opening soon.  I will post updates here.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-844755725055032686?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=844755725055032686' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=844755725055032686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=844755725055032686'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=844755725055032686'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=844755725055032686' title='Working on new Mac App'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-8053933433704704850</id><published>2010-04-01T22:09:00.000-05:00</published><updated>2010-04-01T22:13:01.805-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Ads'/><title type='text'>Xbox Games on Sale at Microsoft Store</title><content type='html'>Take 40% off select Xbox Games from the Microsoft Store with promo code: CLR-MSFT-Games-40% Offer valid while supplies last!&lt;br /&gt;&lt;br /&gt;Click here to access:&lt;br /&gt;&lt;center&gt;&lt;br /&gt;&lt;span style="font:11px &amp;#39;Lucida Grande&amp;#39;, LucidaGrande, Verdana, sans-serif; "&gt;&lt;a href="http://click.linksynergy.com/fs-bin/click?id=tFwst1qbrwA&amp;offerid=197763.10000224&amp;subid=0&amp;type=4"&gt;&lt;IMG border="0"   alt="Microsoft Store" src="http://ad.linksynergy.com/fs-bin/show?id=tFwst1qbrwA&amp;bids=197763.10000224&amp;subid=0&amp;type=4&amp;gridnum=13"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/center&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-8053933433704704850?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=8053933433704704850' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=8053933433704704850' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=8053933433704704850'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=8053933433704704850'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=8053933433704704850' title='Xbox Games on Sale at Microsoft Store'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-4207713637529608788</id><published>2009-12-17T12:40:00.001-05:00</published><updated>2009-12-17T12:40:42.397-05:00</updated><title type='text'>I want this</title><content type='html'>&lt;object width="400" height="225"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8211657&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=8211657&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;p&gt;&lt;a href="http://vimeo.com/8211657"&gt;SurfaceScapes Gameplay Session&lt;/a&gt; from &lt;a href="http://vimeo.com/surfacescapes"&gt;Surfacescapes&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-4207713637529608788?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4207713637529608788' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=4207713637529608788' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4207713637529608788'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4207713637529608788'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=4207713637529608788' title='I want this'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-1320167902854744593</id><published>2009-08-07T11:28:00.000-05:00</published><updated>2009-08-07T11:30:16.011-05:00</updated><title type='text'>Touchable Holography</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Y-P1zZAcPuw&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Y-P1zZAcPuw&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-1320167902854744593?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1320167902854744593' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=1320167902854744593' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1320167902854744593'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1320167902854744593'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=1320167902854744593' title='Touchable Holography'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-5434115545948409542</id><published>2009-07-28T10:22:00.001-05:00</published><updated>2009-07-28T10:24:00.551-05:00</updated><title type='text'>My contribution to the theater renovation</title><content type='html'>I recently donated old blueprints I had saved from the trash to the group working to renovate the Fairborn Theater.  He is the article about it.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.fairborndailyherald.com/main.asp?Search=1&amp;ArticleID=164927&amp;SectionID=2&amp;SubSectionID=4&amp;S=1"&gt;"Theater renovation project receives unexpected boost "&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-5434115545948409542?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5434115545948409542' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=5434115545948409542' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5434115545948409542'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5434115545948409542'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=5434115545948409542' title='My contribution to the theater renovation'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-2457817228021633976</id><published>2009-05-14T13:16:00.000-05:00</published><updated>2009-05-14T13:17:25.162-05:00</updated><title type='text'>Bioshock 2 preview</title><content type='html'>&lt;embed src='http://videomedia.ign.com/ev/ev.swf' flashvars='object_ID=14240341&amp;downloadURL=http://xbox360movies.ign.com/xbox360/video/article/982/982366/bioshock2_trl_walk051209c_flvlowwide.flv&amp;allownetworking="all"' type='application/x-shockwave-flash' width='433' height='360' &gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-2457817228021633976?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=2457817228021633976' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=2457817228021633976' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=2457817228021633976'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=2457817228021633976'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=2457817228021633976' title='Bioshock 2 preview'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-1265546701037199920</id><published>2009-04-22T10:21:00.003-05:00</published><updated>2009-04-22T10:25:57.047-05:00</updated><title type='text'>Ever wonder who is on your side?</title><content type='html'>When it comes to DC and politics.  Who ever is getting the money isn't going to be on the peoples side.&lt;br /&gt;&lt;br /&gt;When it comes to mortgage and credit card relief for millions of Americans there are clear sides being taken and the congressional republicans are not on your side.&lt;br /&gt;&lt;br /&gt;"The banking industry has also succeeded in working closely with Republicans to water down and then block a measure that would give bankruptcy judges greater authority to modify mortgages, including reducing principal payments. Senate Republican leaders say they have the support of all 41 of their members — enough to kill the provision by making it impossible to get the 60 votes necessary to cut off debate."&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.cnbc.com/id/30345999"&gt;Banks Hinder Efforts to Offer Mortgage, Credit-Card Relief&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The only way to fight this is to let your representatives know that supporting the banks that already got billions of our money and not the people will get them voted out of office.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-1265546701037199920?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1265546701037199920' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=1265546701037199920' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1265546701037199920'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1265546701037199920'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=1265546701037199920' title='Ever wonder who is on your side?'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-6230854101684372334</id><published>2009-04-08T16:06:00.002-05:00</published><updated>2009-04-08T16:27:09.532-05:00</updated><title type='text'>How greed will kill innovation on the internet.</title><content type='html'>If you have an internet connection, you probably download lots of stuff.  Maybe watch a Netflix movie, or play games online.  Well you might not be able to afford all of that in the near future. &lt;br /&gt;&lt;br /&gt;Read about bandwidth caps here:&lt;br /&gt;&lt;a href="http://www.gamerswithjobs.com/node/44497"&gt;http://www.gamerswithjobs.com/node/44497&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-6230854101684372334?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6230854101684372334' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=6230854101684372334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6230854101684372334'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6230854101684372334'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=6230854101684372334' title='How greed will kill innovation on the internet.'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-2624647939809004681</id><published>2008-12-03T11:20:00.002-05:00</published><updated>2008-12-03T11:28:28.459-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Food'/><title type='text'>Best site ever.</title><content type='html'>Having seen so many scary ads on the side of Facebook pages, as I play Scrabble or read about a friend making a sandwich, I was surprised to find a link to a website I actually will use.  Being a lover of all things cheese I was temped to click on the ad to &lt;a href="http://www.cheesecupid.com/"&gt;http://www.cheesecupid.com/&lt;/a&gt;, a website created by the Wisconsin cheese farmers to get Americans to eat more cheese.  Doesn't take much for me.  Now I have a website that helps me pair the best cheese to alcohol, what else could I need?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-2624647939809004681?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=2624647939809004681' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=2624647939809004681' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=2624647939809004681'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=2624647939809004681'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=2624647939809004681' title='Best site ever.'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-6667232177874172991</id><published>2008-10-20T16:47:00.001-05:00</published><updated>2008-10-20T16:49:17.349-05:00</updated><title type='text'>A campaign of fear, Powell tired of negative campaign</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i2.cdn.turner.com/cnn/2008/POLITICS/10/20/campaign.wrap/art.obama.gi.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px;" src="http://i2.cdn.turner.com/cnn/2008/POLITICS/10/20/campaign.wrap/art.obama.gi.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Powell said he had grown tired of McCain's negative campaigning and that the American people would prefer to focus on issues like education, infrastructure and the economy. He specifically slammed Palin's allegation that Obama's tax plan is socialist, calling it misleading. iReport.com: What do you think about Powell's endorsement?&lt;br /&gt;&lt;br /&gt;"Taxes are always a redistribution of money. Most of the taxes that are redistributed go back to those who pay them -- in roads and airports and hospitals and schools," President Bush's former secretary of state said. "And taxes are necessary for the common good, and there's nothing wrong with examining what our tax structure is or who should be paying more, who should be paying less.&lt;br /&gt;&lt;br /&gt;"For us to say that makes you a socialist, I think, is an unfortunate characterization that isn't accurate."&lt;br /&gt;&lt;br /&gt;While not endorsing either candidate, political analyst Larry Sabato pointed to what he said was a flaw in the Palin assertion: the recent approval of a $700 billion bailout which, in part, will pump billions of dollars into failing banks.&lt;br /&gt;&lt;br /&gt;"The fly in the ointment for this socialism argument is the recent bank bailout. That's probably the most egregious example of socialism in American history," said Sabato, who heads the University of Virginia's nonpartisan Center for Politics.&lt;br /&gt;&lt;br /&gt;In a Fox News interview Sunday, however, Palin said the bailout was not socialist.&lt;br /&gt;&lt;br /&gt;"I believe that there are those measures that had to be taken by Congress to shore up not only the housing market but the credit markets -- also to make sure that that's not frozen -- so that our small businesses have opportunities to borrow. And that was the purpose, of course, and that part of the bailout and the shoring of the banks," Palin said.&lt;br /&gt;&lt;br /&gt;(Source:  http://www.cnn.com/2008/POLITICS/10/20/campaign.wrap/index.html)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-6667232177874172991?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6667232177874172991' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=6667232177874172991' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6667232177874172991'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=6667232177874172991'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=6667232177874172991' title='A campaign of fear, Powell tired of negative campaign'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-1999886117313399298</id><published>2008-09-11T12:45:00.000-05:00</published><updated>2008-09-11T12:46:27.682-05:00</updated><title type='text'>9/11</title><content type='html'>Let us never forget.  &lt;br /&gt;&lt;br /&gt;-Jeff&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-1999886117313399298?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1999886117313399298' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=1999886117313399298' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1999886117313399298'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1999886117313399298'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=1999886117313399298' title='9/11'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-4409022127613855222</id><published>2008-09-07T18:20:00.000-05:00</published><updated>2008-09-07T18:21:26.320-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Soccer'/><title type='text'>Fall soccer schedule posted</title><content type='html'>I have the fall soccer schedule for Greene FC posted in the &lt;a href="soccer/soccer.html" rel="self" title="Soccer"&gt;soccer section&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-4409022127613855222?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4409022127613855222' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=4409022127613855222' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4409022127613855222'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4409022127613855222'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=4409022127613855222' title='Fall soccer schedule posted'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-1865610678722713788</id><published>2008-09-02T23:23:00.006-05:00</published><updated>2008-09-02T23:30:28.035-05:00</updated><title type='text'>Wedding pictures posted</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OfFUZGM6PUk/SL4Sl_KTgRI/AAAAAAAAABk/U-nzHjv7ltE/s1600-h/CIMG1731.JPG"&gt;&lt;img style="float:center; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_OfFUZGM6PUk/SL4Sl_KTgRI/AAAAAAAAABk/U-nzHjv7ltE/s320/CIMG1731.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5241647460124950802" /&gt;&lt;/a&gt;&lt;br /&gt;I went to the wonderful wedding of my great friend Steve over the weekend.  The pictures are up in the my photos section.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-1865610678722713788?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1865610678722713788' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=1865610678722713788' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1865610678722713788'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1865610678722713788'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=1865610678722713788' title='Wedding pictures posted'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OfFUZGM6PUk/SL4Sl_KTgRI/AAAAAAAAABk/U-nzHjv7ltE/s72-c/CIMG1731.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-7928383887269898577</id><published>2008-09-02T21:43:00.003-05:00</published><updated>2008-09-03T10:33:28.844-05:00</updated><title type='text'>Lies at the RNC</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OfFUZGM6PUk/SL37N8DYDFI/AAAAAAAAABc/f7TEvadmVfc/s1600-h/mccain_salute.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_OfFUZGM6PUk/SL37N8DYDFI/AAAAAAAAABc/f7TEvadmVfc/s320/mccain_salute.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5241621758206282834" /&gt;&lt;/a&gt;&lt;br /&gt;I just heard Mr. Fred Thompson say that McCain can't salute the flag because of his POW injuries.  I thought I remembered him being able to lift his hand to his head, so I did a quick google images search and on the second page I found the picture the proves that Thompson is just making shit up.  People stand up and demand straight talk from the straight talk express.&lt;br /&gt;&lt;br /&gt;I will try to post a link the speech transcript as soon as it gets online.&lt;br /&gt;&lt;br /&gt;EDIT:  Link to transcript.  &lt;a href="http://www.cnn.com/2008/POLITICS/09/02/thompson.transcript/index.html"&gt;http://www.cnn.com/2008/POLITICS/09/02/thompson.transcript/index.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-7928383887269898577?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=7928383887269898577' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=7928383887269898577' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=7928383887269898577'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=7928383887269898577'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=7928383887269898577' title='Lies at the RNC'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OfFUZGM6PUk/SL37N8DYDFI/AAAAAAAAABc/f7TEvadmVfc/s72-c/mccain_salute.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-1706132958854755469</id><published>2008-09-02T11:46:00.001-05:00</published><updated>2008-09-02T21:51:49.789-05:00</updated><title type='text'>What is Palin's experience?</title><content type='html'>I guess no one knows.&lt;br /&gt;&lt;br /&gt;&lt;iframe src="http://www.cnn.com/video/savp/evp/?loc=dom&amp;vid=/video/politics/2008/09/01/brown.tucker.bounds.interview.cnn" height="393" width="406" allowtransparency="true" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-1706132958854755469?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1706132958854755469' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=1706132958854755469' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1706132958854755469'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=1706132958854755469'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=1706132958854755469' title='What is Palin&apos;s experience?'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-4687915577988100345</id><published>2008-08-22T11:10:00.002-05:00</published><updated>2008-08-22T11:11:07.090-05:00</updated><title type='text'>Pictures from Gen Con</title><content type='html'>Went to Gen Con last week.  Wanted to try out the new flickr slideshow with the pics.&lt;br /&gt;&lt;br /&gt;&lt;object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/slideshow/show.swf?v=58979" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"&gt; &lt;param name="flashvars" value="&amp;offsite=true&amp;intl_lang=en-us&amp;page_show_url=%2Fphotos%2Fbonest%2Fsets%2F72157606732213074%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fbonest%2Fsets%2F72157606732213074%2F&amp;set_id=72157606732213074&amp;jump_to="&gt;&lt;/param&gt; &lt;param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=58979"&gt;&lt;/param&gt; &lt;param name="bgcolor" value="#000000"&gt;&lt;/param&gt; &lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=58979" bgcolor="#000000" allowFullScreen="true" flashvars="&amp;offsite=true&amp;intl_lang=en-us&amp;page_show_url=%2Fphotos%2Fbonest%2Fsets%2F72157606732213074%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fbonest%2Fsets%2F72157606732213074%2F&amp;set_id=72157606732213074&amp;jump_to=" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-4687915577988100345?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4687915577988100345' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=4687915577988100345' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4687915577988100345'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=4687915577988100345'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=4687915577988100345' title='Pictures from Gen Con'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-5446572429454230359</id><published>2008-08-21T23:23:00.000-05:00</published><updated>2008-08-21T23:26:16.865-05:00</updated><title type='text'>A must read article before the election</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Why I Will Not Vote for John McCain&lt;/span&gt;&lt;br /&gt;Phillip Butler | March 27, 2008&lt;br /&gt;&lt;br /&gt;As some of you might know, John McCain is a long-time acquaintance of mine that goes way back to our time together at the U.S. Naval Academy and as Prisoners of War in Vietnam. He is a man I respect and admire in some ways. But there are a number of reasons why I will not vote for him for President of the United States.&lt;br /&gt;&lt;br /&gt;read the rest here:  &lt;a href="http://www.military.com/opinion/0,15202,164859_1,00.html"&gt;military.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-5446572429454230359?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5446572429454230359' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=5446572429454230359' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5446572429454230359'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5446572429454230359'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=5446572429454230359' title='A must read article before the election'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-5013460935565527926</id><published>2008-08-19T10:58:00.004-05:00</published><updated>2008-08-21T23:27:31.884-05:00</updated><title type='text'>I guess McCain doesn't like gaming nerds.</title><content type='html'>&lt;a href="http://www.johnmccain.com/McCainReport/Read.aspx?guid=181471d0-5456-4434-9f78-2f30ffc39459&amp;rating=1"&gt;http://www.johnmccain.com/McCainReport/Read.aspx?guid=181471d0-5456-4434-9f78-2f30ffc39459&amp;rating=1&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And I don't even have a computer in my basement.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-5013460935565527926?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5013460935565527926' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=5013460935565527926' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5013460935565527926'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=5013460935565527926'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=5013460935565527926' title='I guess McCain doesn&apos;t like gaming nerds.'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-3177156586728549447</id><published>2008-08-18T14:54:00.000-05:00</published><updated>2008-08-18T15:00:09.430-05:00</updated><title type='text'>Do I trust McCain's Judgement on Iraq</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/9c6kzCR07PQ&amp;color1=11645361&amp;color2=13619151&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/9c6kzCR07PQ&amp;color1=11645361&amp;color2=13619151&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;No.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-3177156586728549447?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=3177156586728549447' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=3177156586728549447' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=3177156586728549447'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=3177156586728549447'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=3177156586728549447' title='Do I trust McCain&apos;s Judgement on Iraq'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-8971955755514522867</id><published>2008-08-18T14:28:00.001-05:00</published><updated>2008-08-18T14:34:05.051-05:00</updated><title type='text'>McCain runs on being a hero and POW, see what other POWS think</title><content type='html'>&lt;a href="&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/vFM1xqqTX_g&amp;color1=11645361&amp;color2=13619151&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/vFM1xqqTX_g&amp;color1=11645361&amp;color2=13619151&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-8971955755514522867?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=8971955755514522867' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=8971955755514522867' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=8971955755514522867'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=8971955755514522867'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=8971955755514522867' title='McCain runs on being a hero and POW, see what other POWS think'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3253106971805508455.post-803083250030283783</id><published>2008-08-12T10:21:00.004-05:00</published><updated>2008-08-12T10:35:34.793-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Politics'/><title type='text'>Why do we need to lower corporate taxes?</title><content type='html'>From the article "&lt;a href="http://news.yahoo.com/s/ap/20080812/ap_on_bi_ge/corporations_income_tax"&gt;Most companies in US avoid federal income taxes&lt;/a&gt;" by JENNIFER C. KERR, Associated Press Writer&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;WASHINGTON - Two-thirds of U.S. corporations paid no federal income taxes between 1998 and 2005, according to a new report from Congress.&lt;br /&gt; &lt;br /&gt;The study by the Government Accountability Office, expected to be released Tuesday, said about 68 percent of foreign companies doing business in the U.S. avoided corporate taxes over the same period.&lt;br /&gt;&lt;br /&gt;Collectively, the companies reported trillions of dollars in sales, according to GAO's estimate.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So while two-thirds of U.S. corporations pay no income tax, Sen. McCain wants to cut their taxes. [&lt;a href="http://www.johnmccain.com/Issues/JobsforAmerica/taxes.htm"&gt;1&lt;/a&gt;]  That just does not make any sense to me.  The only thing I can figure is that would help the rich people who run the corporations divert more profits into their bank accounts instead of fees and write downs to avoid taxes.  What ever the reason, the argument that what our economy needs is lower corporate taxes is just false.  However, there is no reason to raise rates either, and there is some proof that lowering rates could actually increase the tax revenue.  [&lt;a href="http://www.taxfoundation.org/blog/show/1331.html"&gt;2&lt;/a&gt;]  What the country needs now is closing the loop wholes that allow companies to avoid paying taxes and then looking at finding a tax rate that will encourage investment while keeping tax revenues high.  This is a complicated issue and simply lowering taxes, when most companies don't pay them is just not a well thought out response and will not help the average american.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3253106971805508455-803083250030283783?l=bonest.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=803083250030283783' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3253106971805508455&amp;postID=803083250030283783' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=803083250030283783'/><link rel='self' type='application/atom+xml' href='http://jeffrey.cowgill.name/index.php?id=803083250030283783'/><link rel='alternate' type='text/html' href='http://jeffrey.cowgill.name/index.php?id=803083250030283783' title='Why do we need to lower corporate taxes?'/><author><name>Jeffrey Cowgill</name><uri>https://profiles.google.com/111390093333350040164</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.loghound.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-3glfSiLmSro/AAAAAAAAAAI/AAAAAAAABs0/R609wmpNey0/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry></feed>
