<?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-16429946</id><updated>2012-01-24T20:46:58.116-08:00</updated><title type='text'>Yin Yang of RCPETERS</title><subtitle type='html'>Enjoy the Ping Pong of my thoughts</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>rcpeters</name><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>78</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-16429946.post-3323337472336000644</id><published>2012-01-24T11:01:00.000-08:00</published><updated>2012-01-24T20:46:58.192-08:00</updated><title type='text'>Using Python to add a phone number to LinkedIn PDF</title><content type='html'>LinkedIn is the cat's meow and is a great resource for managing my professional network and resume. They even have an awesome looking PDF. However, it wasn't including my phone number, which was a little embarrassing. Even had a friend tease me about it. &lt;br /&gt;&lt;br /&gt;So I contacted LinkedIn customer support thinking maybe, just maybe, I had missed some kind of check box/setting....well, no dice. They offer a "convenient" LinkedIn hyperlink which goes to my LinkedIn profile, and is also a nice viral opportunity for LinkedIn. However not having a phone number definitely  hurts my chances of getting a phone call. Not cool.&lt;br /&gt;&lt;br /&gt;Having exhausted official channels and not wanting to maintain a separate Word document it was time to take matters into my own hands. Time to fire up the Python.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-JBEjIgdNGfA/Tx9BaF-XJcI/AAAAAAAAADY/i5qVy13J6UU/s1600/without.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 74px;" src="http://1.bp.blogspot.com/-JBEjIgdNGfA/Tx9BaF-XJcI/AAAAAAAAADY/i5qVy13J6UU/s320/without.png" alt="" id="BLOGGER_PHOTO_ID_5701347569810482626" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(153, 0, 0);"&gt;hum....where is that number&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-QkwBhZZeWIo/Tx9COg6eGmI/AAAAAAAAADw/FW5qsBNrHlQ/s1600/With_number.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 71px;" src="http://2.bp.blogspot.com/-QkwBhZZeWIo/Tx9COg6eGmI/AAAAAAAAADw/FW5qsBNrHlQ/s320/With_number.png" alt="" id="BLOGGER_PHOTO_ID_5701348470395116130" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(0, 51, 0);"&gt;Oh there it is!&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Below is the code I used to composite a phone number and address over the first page. If there is overwhelming demand, maybe I'll create a web service to do this.&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #EDF1F3; border-style: solid; border-width: 1px; border-color: #9AAAB4; padding: 4pt; text-align: left; margin-left: 10px; margin-right: 6px;  overflow: auto;"&gt;&lt;pre style="width: 1000px; height: 1000px"&gt;&lt;code&gt;&lt;br /&gt;from reportlab.pdfgen import canvas&lt;br /&gt;from reportlab.lib.units import inch&lt;br /&gt;from reportlab.lib.pagesizes import letter, A4&lt;br /&gt;from pyPdf import PdfFileWriter, PdfFileReader&lt;br /&gt;import cStringIO, sys&lt;br /&gt;&lt;br /&gt;if (not len(sys.argv) == 5):&lt;br /&gt;  print "Usage: [file name] [phone number] [Address 1] [Address 2]"&lt;br /&gt;  sys.exit()&lt;br /&gt;  &lt;br /&gt;file_name = sys.argv[1]&lt;br /&gt;phone = sys.argv[2]&lt;br /&gt;addr1 = sys.argv[3]&lt;br /&gt;addr2 = sys.argv[4]&lt;br /&gt;&lt;br /&gt;x = 4&lt;br /&gt;xSpc = 0.725&lt;br /&gt;y = 11 - 2.28 # xy is in the bottom left corner&lt;br /&gt;ySpc = .30&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;def create_addr_in_pdf():&lt;br /&gt;  c = canvas.Canvas("addr.pdf", pagesize=letter)&lt;br /&gt;  c.translate(inch,inch)&lt;br /&gt;  # define a large font&lt;br /&gt;  c.setFont("Helvetica", 12)&lt;br /&gt;  c.drawString(x * inch, (y + ySpc * 2) * inch, "Phone:")&lt;br /&gt;  c.drawString((x + xSpc) * inch, (y + ySpc * 2) * inch, phone)&lt;br /&gt;  c.drawString(x * inch, (y + ySpc) * inch, "Address:")&lt;br /&gt;  c.drawString((x + xSpc) * inch, (y + ySpc) * inch, addr1)&lt;br /&gt;  c.drawString((x + xSpc) * inch, y * inch, addr2)&lt;br /&gt;  addrIo = cStringIO.StringIO()&lt;br /&gt;  addrIo.write(c.getpdfdata())   &lt;br /&gt;  return PdfFileReader(addrIo) &lt;br /&gt;&lt;br /&gt;#  Plan of attack:&lt;br /&gt;#  create an address pdf&lt;br /&gt;#  merge the address and first page &lt;br /&gt;#  output to a new _mod.pdf file&lt;br /&gt;&lt;br /&gt;addrPyPdf = create_addr_in_pdf()&lt;br /&gt;&lt;br /&gt;outPDF = PdfFileWriter()&lt;br /&gt;input1 = PdfFileReader(file(file_name, "rb"))&lt;br /&gt;&lt;br /&gt;for i in range(0,input1.getNumPages()-1):&lt;br /&gt;  page = input1.getPage(i)&lt;br /&gt;  if i == 0:&lt;br /&gt; page.mergePage(addrPyPdf.getPage(0))&lt;br /&gt;  outPDF.addPage(page)&lt;br /&gt;&lt;br /&gt;outputStream = file(file_name[:-4]+'_mod'+file_name[-4:], "wb")&lt;br /&gt;outPDF.write(outputStream)&lt;br /&gt;outputStream.close()&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-3323337472336000644?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/3323337472336000644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=3323337472336000644&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/3323337472336000644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/3323337472336000644'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2012/01/using-python-to-modify-linkedin-pdf.html' title='Using Python to add a phone number to LinkedIn PDF'/><author><name>rcpeters</name><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/-JBEjIgdNGfA/Tx9BaF-XJcI/AAAAAAAAADY/i5qVy13J6UU/s72-c/without.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-7624431017250679350</id><published>2011-04-09T16:30:00.000-07:00</published><updated>2011-04-13T21:44:06.710-07:00</updated><title type='text'>Python command line script to get merge sets by author/authors</title><content type='html'>Here is a little Python script I wrote to get SVN merge sets by author. I decided it would be a good idea to learn Python instead of using Bash and the script below is my first crack at the new language.&lt;br /&gt;&lt;div style="background-color: #EDF1F3; border-style: solid; border-width: 1px; border-color: #9AAAB4; padding: 4pt; text-align: left; margin-left: 10px; margin-right: 6px;  overflow: auto;"&gt;&lt;pre style="width: 1000px; height: 400px"&gt;&lt;code&gt;#! /usr/bin/env python&lt;br /&gt;# Get all outstanding svn mergeinfo and print version sets with comments.&lt;br /&gt;# Optionally you can also filter by authors. P.S. this is my first python &lt;br /&gt;# script any suggestions are welcome.&lt;br /&gt;# info@rcpeters.com&lt;br /&gt;import commands&lt;br /&gt;import re&lt;br /&gt;from xml.dom.minidom import parse, parseString&lt;br /&gt;from optparse import OptionParser&lt;br /&gt;&lt;br /&gt;parser = OptionParser()&lt;br /&gt;parser.add_option("-a", "--author", dest="author", default='.*',&lt;br /&gt;                  help="Source svn directory.")&lt;br /&gt;parser.add_option("-s", "--source", dest='source', default='https://svn.enloop.com/repos/enloop/trunk/workspace',&lt;br /&gt;                  help="Take .")&lt;br /&gt;parser.add_option("-t", "--target", dest="target", default='/root/workspace',&lt;br /&gt;                  help="Target svn directory.")&lt;br /&gt;(options, args) = parser.parse_args()&lt;br /&gt;&lt;br /&gt;re = re.compile(options.author.replace(',','$|')+'$')&lt;br /&gt;src=options.source&lt;br /&gt;trg=options.target&lt;br /&gt;&lt;br /&gt;mergeinfo = commands.getoutput('svn mergeinfo --show-revs eligible '+src+' '+trg)&lt;br /&gt;&lt;br /&gt;if len(mergeinfo)!=0:&lt;br /&gt;    revs =[]&lt;br /&gt;    for i in mergeinfo.split('\n'):&lt;br /&gt;        revXmlStr = commands.getoutput('svn log --xml -'+i+' '+src);&lt;br /&gt;        #print revXmlStr&lt;br /&gt;        xmlDoc = parseString(revXmlStr)&lt;br /&gt;        for logXml in xmlDoc.childNodes:&lt;br /&gt;            authStr = logXml.getElementsByTagName('author')[0].childNodes[0].data&lt;br /&gt;            if re.match(authStr) != None:&lt;br /&gt;                if len(logXml.getElementsByTagName('msg')[0].childNodes) &gt; 0:&lt;br /&gt;                    msgStr = logXml.getElementsByTagName('msg')[0].childNodes[0].data&lt;br /&gt;                rev = int(i.replace('r',''))&lt;br /&gt;                revs.append(rev)&lt;br /&gt;                print  '-r'+str(rev-1)+':'+str(rev)+' '+authStr&lt;br /&gt;                for j in msgStr.split('\n'):&lt;br /&gt;          if len(revs) &gt; 0:&lt;br /&gt;        revStr=''&lt;br /&gt;        curSeqStart=int(revs[0])-1&lt;br /&gt;        for i in range(len(revs)):&lt;br /&gt;            if i !=0:&lt;br /&gt;                if revs[i-1]+1!=revs[i]:&lt;br /&gt;                    revStr += '-r'+str(curSeqStart)+':'+str(revs[i-1])+' '&lt;br /&gt;                    curSeqStart=int(revs[i])-1&lt;br /&gt;            if i == len(revs)-1:&lt;br /&gt;                revStr +='-r'+str(curSeqStart)+':'+str(revs[i])+' '&lt;br /&gt;        print 'svn merge '+revStr+'--dry-run '+src+' '+trg&lt;br /&gt;else:&lt;br /&gt;    print 'No merges available'&lt;br /&gt;              print '\t'+j&lt;br /&gt;                    print&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-7624431017250679350?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/7624431017250679350/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=7624431017250679350&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/7624431017250679350'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/7624431017250679350'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2011/04/python-command-line-script-to-get-merge.html' title='Python command line script to get merge sets by author/authors'/><author><name>rcpeters</name><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-16429946.post-6633481931361622720</id><published>2009-09-05T21:42:00.000-07:00</published><updated>2012-01-24T17:19:33.504-08:00</updated><title type='text'>iPhone Password Security Issue</title><content type='html'>While playing with my iPhone I uncovered a security hole which allows unmasking any password which is persisted and can be edited.&lt;br /&gt;&lt;br /&gt;This hack is verified to work on software version 3.0 and 3.0.1. The example below explains how to unmask an email password one character at a time.&lt;br /&gt;&lt;br /&gt;   1. Navigate to the password field in the email settings.&lt;br /&gt;   2. Delete the last masked character&lt;br /&gt;   3. Shake the phone for the undo function and select undo&lt;br /&gt;   4. Write down the unmasked character iPhone shows when the delete is undone&lt;br /&gt;   5. Delete the character again (password is 1 shorter then before)&lt;br /&gt;   6. Hit the home button&lt;br /&gt;   7. Goto step 1 and repeat until all characters are unmasked&lt;br /&gt;&lt;br /&gt;After unmasking all of the password, place it back in so the owner is none the wiser.&lt;br /&gt;&lt;br /&gt;Given the above, I would suggest always using the Passcode Lock feature to prevent a 3rd party from unmasking your passwords. Also it would be nice if Apple fixes this in the next software release. (note: they did fix the issue!)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-6633481931361622720?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/6633481931361622720/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=6633481931361622720&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/6633481931361622720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/6633481931361622720'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2009/09/iphone-password-security-issue.html' title='iPhone Password Security Issue'/><author><name>rcpeters</name><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-16429946.post-4329198688962771411</id><published>2009-06-19T19:34:00.000-07:00</published><updated>2009-06-19T19:37:45.564-07:00</updated><title type='text'>Struts2 and Tomcat security on Ubuntu 9.04.</title><content type='html'>Errors using Struts2 and Tomcat Security on Ubuntu 9.04.&lt;br /&gt;&lt;br /&gt;Here is a sample error:&lt;br /&gt;java.security.AccessControlException: access denied (java.io.FilePermission /var/lib/tomcat6/webapps/struts2-mailreader-2.1.6/WEB-INF/database.xml.new write)&lt;br /&gt;       at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)&lt;br /&gt;&lt;br /&gt;Easy Answer:&lt;br /&gt;Turn off Tomcats security manger. Change TOMCAT6_SECURITY=yes to TOMCAT6_SECURITY=no in /etc/init.d/tomcat6&lt;br /&gt;&lt;br /&gt;Long Answer:&lt;br /&gt;&lt;a href="http://tomcat.apache.org/tomcat-6.0-doc/securityanager-howto.html"&gt;http://tomcat.apache.org/tomcat-6.0-doc/securityanager-howto.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-4329198688962771411?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/4329198688962771411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=4329198688962771411&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/4329198688962771411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/4329198688962771411'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2009/06/struts2-and-tomcat-security-on-ubuntu.html' title='Struts2 and Tomcat security on Ubuntu 9.04.'/><author><name>rcpeters</name><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-16429946.post-618180184205773179</id><published>2009-05-12T19:25:00.000-07:00</published><updated>2009-05-13T09:54:07.162-07:00</updated><title type='text'>Installing Apache2 and Tomcat6 on Ubuntu 9.04</title><content type='html'>I've had quite a few issues getting Apache to Tomcat to work together on Ubuntu.  Finally I've figured out the little differences you need to know when using ubuntu apache and tomcat packages.  &lt;br /&gt;1) &lt;span style="font-weight:bold;"&gt;sudo apt-get install apache2 tomcat6 libapache2-mod-jk&lt;/span&gt;&lt;br /&gt;2) &lt;span style="font-weight:bold;"&gt;sudo vim /etc/apache2/workers.properties&lt;/span&gt;&lt;br /&gt;  and type/past in:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;  # Define 1 real worker using ajp13&lt;br /&gt;  worker.list=worker1&lt;br /&gt;  # Set properties for worker1 (ajp13)&lt;br /&gt;  worker.worker1.type=ajp13&lt;br /&gt;  worker.worker1.host=localhost&lt;br /&gt;  worker.worker1.port=8009&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;3) &lt;span style="font-weight:bold;"&gt;sudo vim /etc/apache2/apache2.conf&lt;/span&gt;&lt;br /&gt;  and type/past in:    &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;  # Load mod_jk module&lt;br /&gt;  # Update this path to match your modules location&lt;br /&gt;  LoadModule    jk_module  /usr/lib/apache2/modules/mod_jk.so&lt;br /&gt;  # Declare the module for &lt;IfModule directive&gt; (remove this line on Apache 2.x)&lt;br /&gt;  #AddModule     mod_jk.c&lt;br /&gt;  # Where to find workers.properties&lt;br /&gt;  # Update this path to match your conf directory location (put workers.properties next to httpd.conf)&lt;br /&gt;  JkWorkersFile /etc/apache2/workers.properties&lt;br /&gt;  # Where to put jk shared memory&lt;br /&gt;  # Update this path to match your local state directory or logs directory&lt;br /&gt;  JkShmFile     /var/log/apache2/mod_jk.shm&lt;br /&gt;  # Where to put jk logs&lt;br /&gt;  # Update this path to match your logs directory location (put mod_jk.log next to access_log)&lt;br /&gt;  JkLogFile     /var/log/apache2/mod_jk.log&lt;br /&gt;  # Set the jk log level [debug/error/info]&lt;br /&gt;  JkLogLevel    info&lt;br /&gt;  # Select the timestamp log format&lt;br /&gt;  JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;6)  &lt;span style="font-weight:bold;"&gt;sudo vim /etc/apache2/sites-enabled/000-default&lt;/span&gt;&lt;br /&gt; Delete "DocumentRoot /var/www" &lt;br /&gt; And type in &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;        JkMount / worker1&lt;br /&gt;        JkMount /* worker1&lt;/span&gt;&lt;br /&gt;   note,  you can use JkUnMount to define directories you want apache to serve &lt;br /&gt; &lt;br /&gt;7) Enable port 8009 on tomcat&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;sudo vim /etc/tomcat6/server.xml&lt;/span&gt;&lt;br /&gt;remove the "&amp;lt;!--" that is a line above and the "--&amp;gt;" that is a line below&lt;br /&gt;&amp;lt;Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /&amp;gt;&lt;br /&gt;&lt;br /&gt;8) restart tomcat &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;sudo /etc/init.d/tomcat6 restart&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;9) restart apache&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;sudo /etc/init.d/apache2 restart&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;10) &lt;span style="font-weight:bold;"&gt;wget localhost&lt;/span&gt;&lt;br /&gt;You should see the default tomcat page&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-618180184205773179?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/618180184205773179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=618180184205773179&amp;isPopup=true' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/618180184205773179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/618180184205773179'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2009/05/installing-apache2-and-tomcat6-on.html' title='Installing Apache2 and Tomcat6 on Ubuntu 9.04'/><author><name>rcpeters</name><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>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-657170829680904559</id><published>2009-05-12T18:56:00.000-07:00</published><updated>2009-05-12T18:59:44.374-07:00</updated><title type='text'>back but mostly for me</title><content type='html'>So I'm going to start posting again, however most is likely to be computer stuff for work/fun.  I just want to document issues/solution I've had, so others can avoid spending to much time on them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-657170829680904559?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/657170829680904559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=657170829680904559&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/657170829680904559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/657170829680904559'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2009/05/back-but-mostly-for-me.html' title='back but mostly for me'/><author><name>rcpeters</name><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-16429946.post-2625570446124969452</id><published>2007-04-13T14:51:00.000-07:00</published><updated>2007-04-13T14:56:00.302-07:00</updated><title type='text'>Sail, peddle and Kayaking.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.hobiecat.com/kayaking/images/accessories/sail/Titlepicture.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px;" src="http://www.hobiecat.com/kayaking/images/accessories/sail/Titlepicture.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Time for more crazy Rob ideas.  I really want to purchase a Hobie sailing, peddle kayak.  Guess I can't wait to get out on the water this summer and have some fun.&lt;br /&gt;&lt;a href="http://www.smallsailboats.co.uk/canoe/hobie.htm"&gt;Here is a good review&lt;/a&gt;. I only need to solve a few problems:&lt;br /&gt;1) affording the whole kit&lt;br /&gt;2) transporting by miata or finding affordable storage&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-2625570446124969452?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/2625570446124969452/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=2625570446124969452&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/2625570446124969452'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/2625570446124969452'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2007/04/sail-peddle-and-kayaking.html' title='Sail, peddle and Kayaking.'/><author><name>rcpeters</name><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-16429946.post-8324616145134881619</id><published>2007-02-02T09:10:00.000-08:00</published><updated>2007-02-02T09:35:30.679-08:00</updated><title type='text'>TO DIE GAME</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_aBOEaTsaEL0/RcNxD9UNa4I/AAAAAAAAAAY/kPtO9bvhWOA/s1600-h/todiefor.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_aBOEaTsaEL0/RcNxD9UNa4I/AAAAAAAAAAY/kPtO9bvhWOA/s400/todiefor.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5026985921888480130" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;With my upcome trip to &lt;a href="http://emilystyle.blogspot.com/2007/01/im-going-to-shore.html" target="_blank"&gt;North Carolina&lt;/a&gt; I decided find a book about some of it's local history on Amazon.  I couldn't be more delighted by digging up &lt;a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FDie-Game-Guerrillas-Reconstruction-Neighbors%2Fdp%2F0815603592%2Fsr%3D8-1%2Fqid%3D1170435926%3Fie%3DUTF8%26s%3Dbooks&amp;tag=rcpeterscom-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" target="_blank"&gt;To Die Game: The Story of the Lowry Band, Indian Guerrillas of Reconstruction&lt;/a&gt;.  What a cover, which by you would never guess it's professional work by a Cal Poly Pomona professor and published by Syracuse University Press.  You can't roll your eyes at this one ladies, it's a product of serious academic research :-) &lt;br /&gt; &lt;img src="http://www.assoc-amazon.com/e/ir?t=rcpeterscom-20&amp;amp;l=ur2&amp;amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-8324616145134881619?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/8324616145134881619/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=8324616145134881619&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8324616145134881619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8324616145134881619'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2007/02/to-die-game.html' title='TO DIE GAME'/><author><name>rcpeters</name><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://bp1.blogger.com/_aBOEaTsaEL0/RcNxD9UNa4I/AAAAAAAAAAY/kPtO9bvhWOA/s72-c/todiefor.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-1216890389022391119</id><published>2007-01-25T10:51:00.000-08:00</published><updated>2007-01-25T10:55:24.046-08:00</updated><title type='text'>Tagged</title><content type='html'>&lt;tt&gt;&lt;span style="color:#cc0000;"&gt;&lt;span style="color: rgb(0, 0, 0);" &gt;I thought this IM converstaion was quite cute:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/tt&gt;&lt;br /&gt; &lt;tt&gt;&lt;span style="color:#cc0000;"&gt;(10:25:52 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; tagged you to come up with five random things on your blog&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:25:56 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; you have to do it&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:25:58 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; :)&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:26:04 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; humm&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:26:21 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; 1. I blog sporadically&lt;/tt&gt;&lt;br /&gt; &lt;tt&gt;&lt;span style="color:#204a87;"&gt;(10:26:56 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; 2. I'm a #######, who's primary ########### is a ##### &lt;/tt&gt;&lt;br /&gt; &lt;tt&gt;&lt;span style="color:#204a87;"&gt;(10:28:56 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; 3 Not only did I lived out of a ### ### ######, but I had a "####" #####&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:30:12 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; 4 ####### ### ## #######, but currently make more ##### than any of my ####### #####, in their ######&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:30:27 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; “#####” ###### (OJ Simpson)&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:30:55 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; 5 I own the address &lt;a href="mailto:Shitbag@shitbag.com"&gt;##########@##########.###&lt;/a&gt;&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:31:00 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; Ummmm....how about five things that don't make you sound like a whacko :)&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:31:09 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; humm.....now do you really want me to blog?&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:31:14 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; booo&lt;br /&gt;&lt;span style="color:#204a87;"&gt;(10:31:26 AM) &lt;b&gt;R######:&lt;/b&gt;&lt;/span&gt; sorry&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:31:56 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; here are five nice things you could say:&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:32:14 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; 1. Worked on a ranch breaking race horses in my youth&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:32:28 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; 2. Was once a full time rock-climber in the sierras&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:32:39 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; 3. I have a birthmark on my chin&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:33:38 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; 4. I enjoy medium format photography&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:33:51 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; 5. I don't like to eat leftovers&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;(10:33:59 AM) &lt;b&gt;e#######:&lt;/b&gt;&lt;/span&gt; ta daaa!&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt; &lt;tt style="color: rgb(0, 0, 0);"&gt;It's quite nice have Emily remind me I'm not a complete wacko :-)&lt;/tt&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-1216890389022391119?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/1216890389022391119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=1216890389022391119&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/1216890389022391119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/1216890389022391119'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2007/01/tagged.html' title='Tagged'/><author><name>rcpeters</name><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-16429946.post-2137413947014254214</id><published>2006-12-05T09:59:00.000-08:00</published><updated>2006-12-05T10:15:38.564-08:00</updated><title type='text'>Rainbow Six Vegas</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_aBOEaTsaEL0/RXWzhGAtgoI/AAAAAAAAAAM/B9ZYEt-UpB8/s1600-h/tom-clancys-rainbow-six-vegas-20061128075825145.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_aBOEaTsaEL0/RXWzhGAtgoI/AAAAAAAAAAM/B9ZYEt-UpB8/s400/tom-clancys-rainbow-six-vegas-20061128075825145.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5005103942022824578" /&gt;&lt;/a&gt;&lt;br /&gt;I've enjoyed the tactical first person video games in the past and the thought of taking down terrorist in Vegas was just to much to resist. Last night I broke down and bought a xbox 360 :-)  &lt;br /&gt;&lt;br /&gt;I suspect women everywhere might be happier if Tom Clancey wasn't so good at marketing war based books and video games.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-2137413947014254214?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/2137413947014254214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=2137413947014254214&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/2137413947014254214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/2137413947014254214'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/12/rainbow-six-vegas.html' title='Rainbow Six Vegas'/><author><name>rcpeters</name><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://bp0.blogger.com/_aBOEaTsaEL0/RXWzhGAtgoI/AAAAAAAAAAM/B9ZYEt-UpB8/s72-c/tom-clancys-rainbow-six-vegas-20061128075825145.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-8814611511586854052</id><published>2006-11-26T22:08:00.000-08:00</published><updated>2006-11-27T09:04:44.975-08:00</updated><title type='text'>Advent Pro</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/x/blogger2/4986/2005/1600/712338/adventpro.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/x/blogger2/4986/2005/400/152921/adventpro.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Picked up this 2450 cubic inch pack for some ultra lightweight backpacking that’s been on closeout at several places including &lt;a href="http://mgear.com"&gt;mgear.com&lt;/a&gt;.   Being an adventure race pack it’s designed to quick packing and lashing, which really means too many zippers, bungee and mesh pockets to be a true ultra lightweight backpack.  Despite all the extras Gregory was able to keep the weight down to 2lb 8 oz using a super lightweight pack material.  After loading up the pack with 2 sleeping bags and two gallons of water, a stove and a few extra clothes pieces of clothing I pretty sure I could make it work for up to a week.  Lack of an easy to reach water bottle pocket is the only real annoyance I’ve had so far.  So I’m forced to use a hydration system. The newer version of this pack does away with the sleeping bag zipper and is 1 oz heavier, so pick up the closeout model if you think you might want one for backpacking.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-8814611511586854052?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/8814611511586854052/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=8814611511586854052&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8814611511586854052'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8814611511586854052'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/11/advent-pro.html' title='Advent Pro'/><author><name>rcpeters</name><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>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-2526923837951702426</id><published>2006-11-21T22:44:00.000-08:00</published><updated>2006-11-21T22:52:34.121-08:00</updated><title type='text'>LEKI Ultralite Ti Ergometric</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/lek.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/lek.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;AT 13.6 oz hiking poles are getting pretty light.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-2526923837951702426?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/2526923837951702426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=2526923837951702426&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/2526923837951702426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/2526923837951702426'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/11/leki-ultralite-ti-ergometric.html' title='LEKI Ultralite Ti Ergometric'/><author><name>rcpeters</name><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-16429946.post-222283931108445723</id><published>2006-11-13T09:15:00.000-08:00</published><updated>2006-11-13T09:22:22.387-08:00</updated><title type='text'>Evernew Titanium Teapot</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/titaniumPot.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/titaniumPot.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Decided It was time I owned a titanium pot for backpacking.  Ended up getting a Teapot, that would double as a bowl.  Now I have to figure our what kind of fleece would make a good cozy?  Any suggestions?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-222283931108445723?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/222283931108445723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=222283931108445723&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/222283931108445723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/222283931108445723'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/11/evernew-titanium-teapot.html' title='Evernew Titanium Teapot'/><author><name>rcpeters</name><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-16429946.post-4602574059595969837</id><published>2006-11-08T12:41:00.000-08:00</published><updated>2006-11-08T12:45:36.399-08:00</updated><title type='text'>Crabby Critic</title><content type='html'>Last night &lt;a href="http://emilystyle.blogspot.com/2006/11/to-do-barber-of-seville.html" target=""&gt;Emily&lt;/a&gt; was kind enough to take me to The Barber of Seville.  I enjoyed the set and the modernization of the characters.  I got a kick out of this &lt;a href="http://daily.stanford.edu/article/2003/10/24/theBarberOfSevilleRefusesToCutItOut" target="_blank"&gt;review&lt;/a&gt; which totally pans the show.  Guess I have yet to achieve crabby  critic status  for Operas.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-4602574059595969837?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/4602574059595969837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=4602574059595969837&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/4602574059595969837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/4602574059595969837'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/11/crabby-critic.html' title='Crabby Critic'/><author><name>rcpeters</name><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-16429946.post-9104873339967111396</id><published>2006-11-07T12:00:00.000-08:00</published><updated>2006-11-07T10:48:27.420-08:00</updated><title type='text'>VX-7R</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/VX-7RB.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/VX-7RB.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So what was it that motivated me to get my Amateur  Radio license?  After dragging out my cheap  shortwave radio and not able being able to tune even local FM stations well,  I started looking at a few high end shortwave radios.  Seeing how much they could run I decided that for a little more money I could get a radio that could also work as a Ham radio and if I threw in just a little more I could also have a hand held marine radio.  Well if I'm going to spend all that money I might as will get a license to use it ;-)&lt;br /&gt;&lt;br /&gt;For the supper teck geeks I'll post some of the selling points of my new radio:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;The VX-7r features a rugged magnesium case with rubber bumpers and gaskets. It clearly sets the standard in ruggedness, versatility and water resistance. It is &lt;span style="font-weight:bold;"&gt;actually submersible (3 feet for 30 minutes)&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Utilizing a reliable FET power amplifier circuit, the VX-7R provides a full &lt;span style="font-weight:bold;"&gt;5 Watts of power&lt;/span&gt; output on the 50, 144, and 430 MHz Amateur bands, with bonus coverage of the 222 MHz band at 300 mW (USA version Only) of power output. And for 6-meter. AM enthusiasts, you also get 1 Watt of carrier power on the 50 MHz band! Four power levels may be selected, for optimum battery life.&lt;br /&gt;&lt;br /&gt;The VX-7R is capable of four modes of &lt;span style="font-weight:bold;"&gt;Dual Receive&lt;/span&gt;, including simultaneous reception on (1) two VHF frequencies; (2) two UHF frequencies; (3) one VHF and one UHF frequency; or (4) one General Coverage frequency and one Ham frequency. And when a call is received on the Main band, you can set up the VX7R to reduce the audio level on the Sub band, if you like!&lt;br /&gt;&lt;br /&gt;With continuous AM/FM reception coverage of 500 kHz to 999 MHz (cellular frequencies are blocked and non-restorable), the VX-7R is ideal for monitoring HF shortwave broadcasts, the &lt;span style="font-weight:bold;"&gt;AM &lt;/span&gt;and &lt;span style="font-weight:bold;"&gt;FM&lt;/span&gt; Broadcast bands, plus a wide variety of &lt;span style="font-weight:bold;"&gt;Marine&lt;/span&gt;, &lt;span style="font-weight:bold;"&gt;Public Safety&lt;/span&gt;, and &lt;span style="font-weight:bold;"&gt;Government bands&lt;/span&gt;. And special memory banks for the &lt;span style="font-weight:bold;"&gt;Weather&lt;/span&gt;, &lt;span style="font-weight:bold;"&gt;Marine&lt;/span&gt;, and Shortwave bands make station selection effortless!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;-- Whew that was a lot tech speak!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-9104873339967111396?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/9104873339967111396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=9104873339967111396&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/9104873339967111396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/9104873339967111396'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/11/vx-7r.html' title='VX-7R'/><author><name>rcpeters</name><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-16429946.post-1581086075510755620</id><published>2006-11-06T13:19:00.000-08:00</published><updated>2006-11-06T13:30:14.475-08:00</updated><title type='text'>KI6GFR</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/ham-operator.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/ham-operator.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Two weeks ago I decided to earn my amateur radio license.  Last night Rich Greenwood was driving out of San Francisco and decided to see if I could actually put my license to work.  Well after about a minute of fiddling with my little 5 watt radio and trying different repeaters I managed to make contact with his mobile rigg about 10 miles away.  Thanks for helping Rich!  Tomorrow I'll blog about my radio and also explain why I decided to geek out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-1581086075510755620?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/1581086075510755620/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=1581086075510755620&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/1581086075510755620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/1581086075510755620'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/11/ki6gfr.html' title='KI6GFR'/><author><name>rcpeters</name><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-16429946.post-497342184118628457</id><published>2006-10-18T13:38:00.000-07:00</published><updated>2006-10-18T13:58:38.657-07:00</updated><title type='text'>AlertSF</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/AlertSF.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/AlertSF.gif" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://AlertSF.com" target="_blank"&gt;AlertSF&lt;/a&gt; will send tsunami alerts, severe weather/flooding notifications and post-disaster information to your registered wireless devices and email accounts.    &lt;a href="http://AlertSF.com" target="_blank"&gt;AlertSF&lt;/a&gt; lets one register work email, home email and cell phones.   Also allowing you to choose multiple zip codes for to receive alerts for places you work, live and commonly play hang out.   &lt;br /&gt;&lt;br /&gt;If you live in SF it would be silly not to sign up.  For those outside of SF you should suggest your local municipals look to &lt;a href="http://AlertSF.com" target="_blank"&gt;AlertSF&lt;/a&gt; and &lt;a href="http://72hours.org/"&gt;72hours.org&lt;/a&gt; as models for community emergency preparedness.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-497342184118628457?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/497342184118628457/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=497342184118628457&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/497342184118628457'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/497342184118628457'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/alertsf.html' title='AlertSF'/><author><name>rcpeters</name><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-16429946.post-9013797350723997699</id><published>2006-10-12T08:55:00.000-07:00</published><updated>2006-10-12T09:00:09.654-07:00</updated><title type='text'>Pump-Kin!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/pumpkin1.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/pumpkin1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I thought a few of the ladies might enjoy reading about &lt;a href="http://buzz.yahoo.com/buzzlog/43189/30-ways-to-eat-a-pumpkin" target="_blank"&gt;30 ways to eat a pumpkin&lt;/a&gt;.  Note to the boys #30 is pumpkin beer :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-9013797350723997699?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/9013797350723997699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=9013797350723997699&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/9013797350723997699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/9013797350723997699'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/pump-kin.html' title='Pump-Kin!'/><author><name>rcpeters</name><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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-1321600262398525412</id><published>2006-10-10T10:21:00.000-07:00</published><updated>2006-10-10T10:25:55.657-07:00</updated><title type='text'>Dreaming of dream homes</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.treehugger.com/files/th_images/earth_shelter.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px;" src="http://www.treehugger.com/files/th_images/earth_shelter.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I'm feeling sick today and rather be hanging out at home instead of working.  However work pays the bills and might let me afford a place like this someday:&lt;br /&gt;&lt;a href="http://www.treehugger.com/files/2006/10/optimal_green_m_2.php" target="_blank"&gt;http://www.treehugger.com/files/2006/10/optimal_green_m_2.php&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-1321600262398525412?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/1321600262398525412/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=1321600262398525412&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/1321600262398525412'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/1321600262398525412'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/dreaming-of-dream-homes.html' title='Dreaming of dream homes'/><author><name>rcpeters</name><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-16429946.post-7521874674019751296</id><published>2006-10-05T18:29:00.000-07:00</published><updated>2006-10-05T18:33:57.792-07:00</updated><title type='text'>Generation Adventure</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/trentWet.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/trentWet.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Trent has reanimated his blog Generation Adventure:&lt;br /&gt;&lt;a href="http://generation-adventure.blogspot.com/" target="_blank"&gt;http://generation-adventure.blogspot.com/&lt;/a&gt;.  Take a chance and check it out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-7521874674019751296?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/7521874674019751296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=7521874674019751296&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/7521874674019751296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/7521874674019751296'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/generation-adventure.html' title='Generation Adventure'/><author><name>rcpeters</name><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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-8221633487135712669</id><published>2006-10-04T22:07:00.000-07:00</published><updated>2006-10-04T22:09:57.549-07:00</updated><title type='text'>Lost</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/lost.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/lost.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Many reviewers have been wondering if Lost would have the staying power for a third season.  After seeing the third season opener I’m hooked, fish line and sinker.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-8221633487135712669?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/8221633487135712669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=8221633487135712669&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8221633487135712669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8221633487135712669'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/lost.html' title='Lost'/><author><name>rcpeters</name><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-16429946.post-6704787454836650695</id><published>2006-10-03T08:27:00.000-07:00</published><updated>2006-10-03T08:34:34.247-07:00</updated><title type='text'>Moots goes crazy for adventure specialist Mike Curiak</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/moots.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/moots.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Trent was kind enough to send along this &lt;a href="http://www.velonews.com/tech/report/articles/10939.0.html" target="_blank"&gt;link&lt;/a&gt;.  Half&lt;br /&gt;way down the page is a bike with a integrated 1.5 liter fuel bottle top tube.  Not a shabby idea for&lt;br /&gt;500 mile solo Alaskan ride.  For the rest of us, I wouldn’t mind seeing a top tube that held compressed air for refilling tires.  Sure would make getting home on my epic 25 mile bike rides easier :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-6704787454836650695?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/6704787454836650695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=6704787454836650695&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/6704787454836650695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/6704787454836650695'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/moots-goes-crazy-for-adventure.html' title='Moots goes crazy for adventure specialist Mike Curiak'/><author><name>rcpeters</name><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-16429946.post-8196751782568026184</id><published>2006-10-02T09:28:00.000-07:00</published><updated>2006-10-02T09:35:29.783-07:00</updated><title type='text'>Is that a machete holster?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4081/1898/1600/back.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px;" src="http://photos1.blogger.com/blogger2/4081/1898/1600/back.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Emily has been kind enough to blog about my whole weekend.  Take a &lt;a href="http://emilystyle.blogspot.com/2006/10/weekend-round-up-new-adventures.html" target="blank"&gt;read&lt;/a&gt; and add in buying some duct tape off of Amazon and a little climbing with Matty and Amber on Sunday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-8196751782568026184?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/8196751782568026184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=8196751782568026184&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8196751782568026184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/8196751782568026184'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/10/is-that-machete-holster.html' title='Is that a machete holster?'/><author><name>rcpeters</name><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-16429946.post-9219912430185206204</id><published>2006-09-28T18:48:00.001-07:00</published><updated>2006-09-28T18:48:28.258-07:00</updated><title type='text'>Leatherman bits</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/leatherman.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/leatherman.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Just received my Leatherman &lt;a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FLeatherman-934870-Kit-Nylon-Sheath%2Fdp%2FB0002H49D0%2Fsr%3D8-1%2Fqid%3D1159494190%2Fref%3Dpd%5Fbbs%5F1%3Fie%3DUTF8%26s%3Dhi&amp;tag=rcpeterscom-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325" target="_blank"&gt;Leatherman bits&lt;/a&gt;&lt;br /&gt;in the mail.  Apparently I left them at Bill’s place in Truckee.  I pretty happey to have these little handy suckers back.  Pitcher of PBR for Bill.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-9219912430185206204?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/9219912430185206204/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=9219912430185206204&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/9219912430185206204'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/9219912430185206204'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/just-received-my-leatherman-leatherman.html' title='Leatherman bits'/><author><name>rcpeters</name><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-16429946.post-7711988586521395561</id><published>2006-09-26T19:25:00.000-07:00</published><updated>2006-09-26T19:32:14.846-07:00</updated><title type='text'>Fatwa for Steve Emerson</title><content type='html'>&lt;img src="http://upload.wikimedia.org/wikipedia/en/d/d3/Emerson_Steve.jpg"/&gt;&lt;br /&gt;&lt;br /&gt;This last Monday Emily and I decided to check out &lt;a href="http://en.wikipedia.org/wiki/Steven_Emerson" target="blank"&gt;Steve Emerson&lt;/a&gt; California Common Wealth Club forum.  Steve was full of gloom and doom for any relations between democratic nations and  Islamic nations.  Of course Steve has earned the privilege of death sentence &lt;a href="http://en.wikipedia.org/wiki/Fatwa" target="_blank"&gt;fatwa&lt;/a&gt;.  He had some relevant points such as picking a few fights around religious freedom, freedom of speech and how Islamic groups manage to silence the American media through PC correctness and even worse threats of violence.  However he also supported many of the covert actions by the American government preventing those freedoms.  Perhaps he’s too deep to give an impartial analysis, but even with his bent view there he has some very important insights into what is going on.&lt;br /&gt;&lt;br /&gt;Be sure to check these wikipedia entries:&lt;br /&gt;- &lt;a href="http://en.wikipedia.org/wiki/Steven_Emerson" target="blank"&gt;Steve Emerson&lt;/a&gt;&lt;br /&gt;- &lt;a href="http://en.wikipedia.org/wiki/Fatwa" target="_blank"&gt;fatwa&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-7711988586521395561?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/7711988586521395561/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=7711988586521395561&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/7711988586521395561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/7711988586521395561'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/fatwa-for-steve-emerson.html' title='Fatwa for Steve Emerson'/><author><name>rcpeters</name><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-16429946.post-4578727349898438352</id><published>2006-09-26T12:09:00.000-07:00</published><updated>2006-09-26T10:15:12.810-07:00</updated><title type='text'>Diesel Ranch Scooter</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/encono.0.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/encono.0.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I love this beyond dorky ranch motorcycle.  It's like a pug dog, so ugly you just have to love it.  Of course there isn't much ranch work to be done around my apartment, but I can dream right?  Pitcher of PBR to &lt;a href="http://www.ecorider.us/"&gt;ecorider&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-4578727349898438352?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/4578727349898438352/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=4578727349898438352&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/4578727349898438352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/4578727349898438352'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/diesel-ranch-scooter.html' title='Diesel Ranch Scooter'/><author><name>rcpeters</name><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-16429946.post-5336999438680037076</id><published>2006-09-21T20:38:00.000-07:00</published><updated>2006-09-21T20:40:24.123-07:00</updated><title type='text'>Spinach Mayhem</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger2/4986/2005/1600/spinach.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger2/4986/2005/400/spinach.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Just in case you haven’t had enough spinach mayhem, you should check one of my favorite slate columns the explainer: &lt;a href="http://www.slate.com/id/2149983" target="_blank"&gt;Victual Ablutions&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-5336999438680037076?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/5336999438680037076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=5336999438680037076&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/5336999438680037076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/5336999438680037076'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/spinach-mayhem.html' title='Spinach Mayhem'/><author><name>rcpeters</name><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-16429946.post-115886377065558637</id><published>2006-09-21T11:32:00.000-07:00</published><updated>2006-09-21T11:37:35.796-07:00</updated><title type='text'>360 Plug</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/plug.jpg"&gt;&lt;img style="margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/plug.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Someday I would like to build/refurbish a house and these would have to be the outlets I would want: &lt;a href="http://www.360electrical.com/" target="_blank"&gt;http://www.360electrical.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115886377065558637?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115886377065558637/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115886377065558637&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115886377065558637'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115886377065558637'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/360-plug.html' title='360 Plug'/><author><name>rcpeters</name><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-16429946.post-115803828493081449</id><published>2006-09-20T13:17:00.000-07:00</published><updated>2006-09-20T11:15:46.086-07:00</updated><title type='text'>Things to Do with Beer Bottles</title><content type='html'>&lt;a href="http://www.amazon.com/Stolen-Snapshots-Presents-Things-Bottles/dp/0972411151/sr=8-1/qid=1158037632/ref=sr_1_1/104-9388884-4800733?ie=UTF8&amp;s=books"&gt; &lt;img src="http://ec1.images-amazon.com/images/P/0972411151.01._BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_AA240_SH20_SCLZZZZZZZ_.jpg" border="0" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;"/&gt;&lt;/a&gt;&lt;br /&gt;This book looks to be lame enough to be transcend to being cool:&lt;br /&gt;&lt;a href="http://www.amazon.com/Stolen-Snapshots-Presents-Things-Bottles/dp/0972411151/sr=8-1/qid=1158037632/ref=sr_1_1/104-9388884-4800733?ie=UTF8&amp;s=books"&gt;Stolen Snapshots Presents: Things to Do with Beer Bottles&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115803828493081449?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115803828493081449/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115803828493081449&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115803828493081449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115803828493081449'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/things-to-do-with-beer-bottles.html' title='Things to Do with Beer Bottles'/><author><name>rcpeters</name><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-16429946.post-115868305565133600</id><published>2006-09-19T09:18:00.000-07:00</published><updated>2006-09-19T09:57:58.556-07:00</updated><title type='text'>T.M.X. Elmo</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i.cnn.net/money/2006/09/19/news/companies/elmo_tmx/elmo_tmx_01.03.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://i.cnn.net/money/2006/09/19/news/companies/elmo_tmx/elmo_tmx_01.03.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;I've always liked tickle me Elmo and now the special 10 year version is even more fun:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://money.cnn.com/2006/09/19/news/companies/elmo_tmx/index.htm?cnn=yes" target="_blank"&gt; cnn covers more&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115868305565133600?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115868305565133600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115868305565133600&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115868305565133600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115868305565133600'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/tmx-elmo.html' title='T.M.X. Elmo'/><author><name>rcpeters</name><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-16429946.post-115864484464780150</id><published>2006-09-18T22:43:00.000-07:00</published><updated>2006-09-18T22:47:24.656-07:00</updated><title type='text'>Penny Alcohol Backpacking Stove</title><content type='html'>&lt;img src="http://www.csun.edu/~mjurey/jpgs/simmerburn.jpg" target="_blank" /&gt;&lt;br /&gt;&lt;br /&gt;I finally got around to building this beer can stove tonight.  While it was fun, I doubt I would actually use it for backpacking.  A &lt;a href="http://www.amazon.com/gp/search?ie=UTF8&amp;amp;amp;keywords=white%20gas%20stoves%20backpacking&amp;amp;amp;tag=rcpeterscom-20&amp;amp;amp;index=blended&amp;amp;amp;linkCode=ur2&amp;amp;amp;camp=1789&amp;amp;amp;creative=9325" target="_blank"&gt;white gas stove&lt;/a&gt; is worth all the extra weight and &lt;a href="http://www.amazon.com/gp/search?ie=UTF8&amp;amp;amp;keywords=esbit&amp;amp;amp;tag=rcpeterscom-20&amp;amp;amp;index=blended&amp;amp;amp;linkCode=ur2&amp;amp;amp;camp=1789&amp;amp;amp;creative=9325" target="_blank"&gt;Esbit&lt;/a&gt; is lighter.  However it’s not often you get to justify playing with fire and suggest &lt;a href="http://www.csun.edu/~mjurey/penny.html"&gt;building &lt;/a&gt;one for the fun of it anyway.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-rob&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115864484464780150?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115864484464780150/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115864484464780150&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115864484464780150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115864484464780150'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/penny-alcohol-backpacking-stove.html' title='Penny Alcohol Backpacking Stove'/><author><name>rcpeters</name><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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-115862412193199613</id><published>2006-09-18T16:58:00.000-07:00</published><updated>2006-09-18T17:03:50.570-07:00</updated><title type='text'>Crazy Iceberg</title><content type='html'>&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://www.crazyshark.com/images/product_images/popup_images/11_0.jpg" border="0" alt="" /&gt;&lt;br /&gt;&lt;br /&gt;Emily just sent me this link: &lt;a href="http://www.crazyshark.com/product_info.php?products_id=11&amp;cPath=2" target="_blank"&gt;http://www.crazyshark.com/product_info.php?products_id=11&amp;cPath=2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Anyone with a pool big enough please step forward :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115862412193199613?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115862412193199613/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115862412193199613&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115862412193199613'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115862412193199613'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/crazy-iceberg.html' title='Crazy Iceberg'/><author><name>rcpeters</name><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-16429946.post-115829674807846017</id><published>2006-09-14T22:03:00.000-07:00</published><updated>2006-09-14T22:05:48.090-07:00</updated><title type='text'>Three runs</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/kickballcard019.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/kickballcard019.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I ran in three of our teams winning runs.  It was a pretty sweet.  A pitcher of PBR for me :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115829674807846017?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115829674807846017/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115829674807846017&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115829674807846017'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115829674807846017'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/three-runs.html' title='Three runs'/><author><name>rcpeters</name><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-16429946.post-115821094604157360</id><published>2006-09-13T22:05:00.000-07:00</published><updated>2006-09-14T09:51:52.273-07:00</updated><title type='text'>Photographers Projecting Presumptions</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://img.slate.com/media/1/123125/122966/2145295/060911_Magnum-THoepker.jpg"&gt;&lt;img style="margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px;" src="http://img.slate.com/media/1/123125/122966/2145295/060911_Magnum-THoepker.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Being a photographer I found this interesting &lt;a href="http://www.slate.com/id/2149578/?nav=tap3" target="_blank"&gt;article&lt;/a&gt; about a photographer callously misslabling labeling the action in the picture.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115821094604157360?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115821094604157360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115821094604157360&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115821094604157360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115821094604157360'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/photographers-projecting-presumptions.html' title='Photographers Projecting Presumptions'/><author><name>rcpeters</name><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-16429946.post-115810628458691791</id><published>2006-09-12T16:53:00.000-07:00</published><updated>2006-09-12T17:18:03.130-07:00</updated><title type='text'>Good!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/bright_orange_1.jpg"&gt;&lt;img style=" margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/bright_orange_1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;A new upstart magazine called &lt;a href="http://www.goodmagazine.com/" target="_blank"&gt;Good&lt;/a&gt; looks to be quite interesting.  They currently have the following mission statement on listed on the GoodMagazine home page: "Our mission is to simulate a culture of good by creating dialog around thing that matter."  I find the website quite entrapping. Good currently has an &lt;a href="http://www.goodmagazine.com/issue001/Bright_Orange" target="_blank"&gt;article&lt;/a&gt; about folks painting abandoned homes in bright orange, incidentally before they get demolished.  A grand idea by the mysterious vandals.  Almost everyone involved with the magazine has earned a pitcher of PBR.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115810628458691791?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115810628458691791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115810628458691791&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115810628458691791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115810628458691791'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/good.html' title='Good!'/><author><name>rcpeters</name><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-16429946.post-115803854944424155</id><published>2006-09-11T22:21:00.000-07:00</published><updated>2006-09-13T17:07:48.840-07:00</updated><title type='text'>Pabst Blue Ribbon Beer Can Diversion Safe</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/pbrsafe.0.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/pbrsafe.0.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If I had jewels and cash to hide - this would have to be the way:&lt;br /&gt;&lt;a href="http://www.amazon.com/gp/redirect.html?link_code=ur2&amp;tag=rcpeterscom-20&amp;camp=1789&amp;creative=9325&amp;location=%2FPabst-Blue-Ribbon-Beer-Diversion%2Fdp%2FB0009Z9JQC%2Fsr%3D8-3%2Fqid%3D1158037985%2Fref%3Dsr_1_3%3Fie%3DUTF8%26s%3Dhome-garden" target="_blank"&gt;PBR Safe&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115803854944424155?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115803854944424155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115803854944424155&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115803854944424155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115803854944424155'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/pabst-blue-ribbon-beer-can-diversion.html' title='Pabst Blue Ribbon Beer Can Diversion Safe'/><author><name>rcpeters</name><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-16429946.post-115803823754133201</id><published>2006-09-11T22:15:00.000-07:00</published><updated>2006-09-12T10:29:37.623-07:00</updated><title type='text'>Hanns.b7G-HW-191D</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/Hanns.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/Hanns.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Nineteen inch wide screen LCDs have started popping up for under $200.  I picked up &lt;a href="http://www.amazon.com/gp/redirect.html?link_code=ur2&amp;tag=rcpeterscom-20&amp;camp=1789&amp;creative=9325&amp;location=%2FHanns%2525b7G-HW191D-5ms-700-Widescreen%2Fdp%2FB000FS070U%2Fsr%3D1-2%2Fqid%3D1158037071%2Fref%3Dsr_1_2%3Fie%3DUTF8%26s%3Delectronics"&gt; this one &lt;/a&gt; for $179.99.  For the price I’m quite impressed, the LCD isn’t quite as good as my &lt;a href="http://www.amazon.com/gp/redirect.html?link_code=ur2&amp;tag=rcpeterscom-20&amp;camp=1789&amp;creative=9325&amp;location=%2FNEC-MultiSync-FE992-Monitor-Black%2Fdp%2FB00081AL32%2Fsr%3D1-3%2Fqid%3D1158037259%2Fref%3Dpd_bbs_3%3Fie%3DUTF8%26s%3Delectronics"&gt;CRT&lt;/a&gt;, but the space savings improves the room and saves a little energy. I measured 62 watts vs. 31, not to shabby.   I’d offer the engineers behind the hanns.g generic monitors a pitcher of PBR for bringing in a price performer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115803823754133201?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115803823754133201/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115803823754133201&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115803823754133201'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115803823754133201'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/hannsb7g-hw-191d.html' title='Hanns.b7G-HW-191D'/><author><name>rcpeters</name><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-16429946.post-115799001620278291</id><published>2006-09-11T08:52:00.000-07:00</published><updated>2006-09-11T21:41:27.336-07:00</updated><title type='text'>Legos + rubber bands + bored young man = Chaingun</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/lego.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/lego.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Mildly entertaining video at &lt;a href="http://www.youtube.com/watch?v=qgiUSEpg8Xc"&gt;youtube&lt;/a&gt;, just don't put out an eye.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115799001620278291?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115799001620278291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115799001620278291&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115799001620278291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115799001620278291'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/legos-rubber-bands-bored-young-man.html' title='Legos + rubber bands + bored young man = Chaingun'/><author><name>rcpeters</name><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-16429946.post-115793627858957555</id><published>2006-09-10T17:43:00.000-07:00</published><updated>2006-09-10T17:57:58.620-07:00</updated><title type='text'>Old Crow Medicine Show</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/oldcrow.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/oldcrow.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Last Friday I got see &lt;a href="http://www.amazon.com/gp/redirect.html?link_code=ur2&amp;tag=rcpeterscom-20&amp;camp=1789&amp;creative=9325&amp;location=%2FIron-World-Crow-Medicine-Show%2Fdp%2FB000FNO1DE%2Fsr%3D8-1%2Fqid%3D1157934912%2Fref%3Dpd_bbs_1%3Fie%3DUTF8%26s%3Dmusic" target="_blank"&gt;Old Crow Medicine Show&lt;/a&gt; live at Slims-sf. It was a good show, I would buy them a round of PBR, given the chance.  Matty and Amber also made the show fun with some beer induced humor.  Emily is also sure to blog about Crepe shack across the street, be sure to check it out: &lt;a href="http://EmilyStyle.com" target="_blank"&gt;EmilyStyle.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115793627858957555?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115793627858957555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115793627858957555&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115793627858957555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115793627858957555'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/old-crow-medicine-show.html' title='Old Crow Medicine Show'/><author><name>rcpeters</name><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-16429946.post-115786829529824788</id><published>2006-09-09T22:52:00.000-07:00</published><updated>2006-09-09T23:12:38.386-07:00</updated><title type='text'>Quake Alarm</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/Pakistan_Earthquake_Impact.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/Pakistan_Earthquake_Impact.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;At first I thought this was quite silly, since it only gives you a few seconds warning.  However what made sense was the alarms ability to tell alert you if an earthquake is actually going on.  So instead of wondering is this a start of a earthquake or the couples up stairs are just being rowdy, you know to take cover or just turn up the radio before things get vocal. &lt;a href="http://www.quakealarm.com/" target="_blank"&gt;http://www.quakealarm.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-115786829529824788?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.quakealarm.com/' title='Quake Alarm'/><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/115786829529824788/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=115786829529824788&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115786829529824788'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/115786829529824788'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/09/quake-alarm.html' title='Quake Alarm'/><author><name>rcpeters</name><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-16429946.post-113694592249049683</id><published>2006-01-10T18:13:00.000-08:00</published><updated>2006-01-10T18:28:46.453-08:00</updated><title type='text'>Digg.com vs Slashdot.com</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/digg_com.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/digg_com.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;It's supper geek tech time! Today Justin my coworker procliamed &lt;a href="http://slashdot.org" target="_blank"&gt;slashdot.org&lt;/a&gt; dead and declared &lt;a href="http://Digg.com" target="_blank"&gt;Digg.com&lt;/a&gt; the top spot for geek news.  Now I've never heard of &lt;a href="http://Digg.com" target="_blank"&gt;Digg.com&lt;/a&gt;, guess I'm only 1/2 geek, which led to checking it out.    Based on a one day comparison I have to agree with Justin.  Digg was far more interesting today.  At &lt;a href="http://slashdot.org" target="_blank"&gt;slashdot.org&lt;/a&gt; all stories submited go through an moderator.  At &lt;a href="http://Digg.com" target="_blank"&gt;Digg.com&lt;/a&gt; the everyone in the community votes on the news that gets featured on the home page.  What's more interesting is you don't have to even log in to vote for a story.  I really have to wonder if it might be possible for for &lt;a href="http://slashdot.org" target="_blank"&gt;slashdot.org&lt;/a&gt; to be displaced by a democratized tech website.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113694592249049683?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113694592249049683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113694592249049683&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113694592249049683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113694592249049683'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/01/diggcom-vs-slashdotcom.html' title='Digg.com vs Slashdot.com'/><author><name>rcpeters</name><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-16429946.post-113687440655398748</id><published>2006-01-10T17:21:00.000-08:00</published><updated>2006-01-10T13:08:09.536-08:00</updated><title type='text'>Bachelor Party Planning,</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/photo.0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/3216/1559/320/photo.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Beside getting into climbing shape, my other big project for the coming month is a planning bachelor party for Rich. It's quite a honor and I'll be dammed if I don't pull off weekend that is noteworthy (hopefully plenty of good silly stories). Anyhow here is the flier which was a fun time photo shopping. One notable benefit of planning a bachelor party is you get to look at stripper pictures without getting in trouble :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113687440655398748?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113687440655398748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113687440655398748&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113687440655398748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113687440655398748'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/01/bachelor-party-planning.html' title='Bachelor Party Planning,'/><author><name>rcpeters</name><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-16429946.post-113687631922797523</id><published>2006-01-09T22:27:00.000-08:00</published><updated>2006-01-09T22:58:39.276-08:00</updated><title type='text'>Country Boys</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/chrisip.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/chrisip.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Frontline's new documentary &lt;i&gt;Country Boys&lt;/i&gt; is impressive in it's scope. Three years is spent trailing two Appalachian teens through the transition from from boys to men.  Many of the issues are typical to many boys in America.  However there are glimpses on how that life for these boy's can be harder.  Some notable scenes from the first episode include wrestling a pig out from your new trailer home while missing school, Heavy Metal Christian rock, teacher's harping making progress, a drunken dad that barely functions, girls, and bumming smokes off of your mom. &lt;br /&gt;&lt;br /&gt;I'll definitely will be watching the next two parts.  PBS has also been kind enough to post the documentary &lt;a href="http://www.pbs.org/wgbh/pages/frontline/countryboys/" target="_blank"&gt;online&lt;/a&gt; for those who miss the show's TV premier.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113687631922797523?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113687631922797523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113687631922797523&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113687631922797523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113687631922797523'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/01/country-boys.html' title='Country Boys'/><author><name>rcpeters</name><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-16429946.post-113647945295747718</id><published>2006-01-05T08:41:00.000-08:00</published><updated>2006-01-05T08:44:12.980-08:00</updated><title type='text'>What the hell happened to Robs blog!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/Josh.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/Josh.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;What the hell happened to Robs blog!  Well it was the holiday season, plus I got to go on a Vegas/RedRock and Joshua tree trip.  It was pretty fun, I didn't get climb as much as I wanted but did manage to take Trent up Prince of Darkness and got a few classic 5.9 trad leads in.  Pretty good for old man Peters.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113647945295747718?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113647945295747718/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113647945295747718&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113647945295747718'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113647945295747718'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2006/01/what-hell-happened-to-robs-blog.html' title='What the hell happened to Robs blog!'/><author><name>rcpeters</name><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-16429946.post-113155354619077290</id><published>2005-11-09T08:16:00.000-08:00</published><updated>2005-11-09T08:25:46.203-08:00</updated><title type='text'>Free the Books!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/story.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/story.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Sorry that I've been to dam busy right now.  During the last few days I've done a couple of nights of rock climbing, going out with old TransUnion Friends, another common wealth club event. Etc. So here is a &lt;a href="http://www.salon.com/tech/feature/2005/11/09/google/" target="_blank"&gt;article from salon&lt;/a&gt; (will have to watch an add to see it), that presents what I think is a fresh view on copyright law.  Copyright copyright laws are holding our society back as the cost of distribution approaches zero.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113155354619077290?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113155354619077290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113155354619077290&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113155354619077290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113155354619077290'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/11/free-books.html' title='Free the Books!'/><author><name>rcpeters</name><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-16429946.post-113108413236845170</id><published>2005-11-03T21:48:00.000-08:00</published><updated>2005-11-03T22:13:07.040-08:00</updated><title type='text'>Richard Clarke</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/clark.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/clark.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;It’s always interesting hearing people speak in person.  Richard Clarke comes off far more personal than I though he would.  Of course he managed to scare many in the audience with disaster and terrorist scenarios.  I though a few of his arguments where a little overblown, but the core of his message was right.  We definitely need to change the character of foreign relations to be more diplomatic and secure likely domestic terrorist threats.  After hear him speak I promptly bought his new fiction book, "&lt;a href="http://www.amazon.com/gp/product/0399152946/102-2539805-7780961?v=glance&amp;n=283155&amp;s=books&amp;v=glance" target="_blank"&gt;The Scorpions Gate&lt;/a&gt;".  I also got the chance to have him sign it “To a fellow citizen”, which he seemed to enjoy as opposed to the usual requested personalization.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113108413236845170?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113108413236845170/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113108413236845170&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113108413236845170'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113108413236845170'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/11/richard-clarke.html' title='Richard Clarke'/><author><name>rcpeters</name><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-16429946.post-113104139702136749</id><published>2005-11-03T08:05:00.000-08:00</published><updated>2005-11-03T10:09:57.036-08:00</updated><title type='text'>New Mapoooooo!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/yahooMaps.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/yahooMaps.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Yahoo has just released a beta of a new &lt;a href="http://maps.yahoo.com/beta/" target="_blank"&gt;mapping tool&lt;/a&gt;.  Boy did they come out throwing dogs back at google maps.  The new maps are flashed based and have a very kind interface. Looks like the map wars are far from over.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113104139702136749?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113104139702136749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113104139702136749&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113104139702136749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113104139702136749'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/11/new-mapoooooo.html' title='New Mapoooooo!'/><author><name>rcpeters</name><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-16429946.post-113080357794801566</id><published>2005-11-02T17:30:00.000-08:00</published><updated>2005-11-02T09:52:46.046-08:00</updated><title type='text'>Toys for Boys!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/legendC.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/legendC.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Just recently I bought a GSP.  I decided that the &lt;a href="http://www.garmin.com/products/etrexLegendc/" target="_blank"&gt;Garmin eTrex Legend C&lt;/a&gt; had enough features at a low enough price.  It's already been a lot of fun and I haven't even had a reason to use it outside of plain silliness.  The only real disappointment is having to go out and buy separate software for anything past the general map.  I imagine in a few years GPSs with every map known to man preloaded will be the same price, but I just couldn't wait!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113080357794801566?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113080357794801566/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113080357794801566&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113080357794801566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113080357794801566'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/11/toys-for-boys.html' title='Toys for Boys!'/><author><name>rcpeters</name><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-16429946.post-113080585504838269</id><published>2005-11-01T08:20:00.000-08:00</published><updated>2005-11-01T08:24:23.376-08:00</updated><title type='text'>Illegal Soapbox Derby - 2005</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/58143085_062f3eecb1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/58143085_062f3eecb1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Something special happens when a bunch of rednecks decide to build contraptions for rolling down hills.  After &lt;a href="http://www.flickr.com/photos/telstar/sets/1258403/" target="_blank"&gt;viewing this slide&lt;/a&gt; show I decided, I'll have to try to see it in person next year.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113080585504838269?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113080585504838269/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113080585504838269&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113080585504838269'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113080585504838269'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/11/illegal-soapbox-derby-2005.html' title='Illegal Soapbox Derby - 2005'/><author><name>rcpeters</name><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-16429946.post-113080470783104947</id><published>2005-10-31T18:21:00.000-08:00</published><updated>2005-10-31T16:25:07.846-08:00</updated><title type='text'>Emily top ropes a 10a on-sight!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/shoes.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/shoes.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;This last Sunday Emily on-sighted a 10a top rope climb at the gym. I better start training harder before she starts showing me how it's done.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113080470783104947?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113080470783104947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113080470783104947&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113080470783104947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113080470783104947'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/emily-top-ropes-10a-on-sight.html' title='Emily top ropes a 10a on-sight!'/><author><name>rcpeters</name><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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-113079876110917144</id><published>2005-10-31T17:34:00.000-08:00</published><updated>2005-10-31T14:50:03.010-08:00</updated><title type='text'>Beach Blanket Babylon</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/Beach_blanket_babylon_hat.0.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/Beach_blanket_babylon_hat.0.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Recipe for a live 30 years running show, add as many big hats, jokes, celebrity impersonations and a dash of current events. Last Friday night I got to go as part of Emily's birthday celebration. &lt;a href="http://www.beachblanketbabylon.com/" target="_blank"&gt;See it&lt;/a&gt;, it's fun.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113079876110917144?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113079876110917144/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113079876110917144&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113079876110917144'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113079876110917144'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/beach-blanket-babylon.html' title='Beach Blanket Babylon'/><author><name>rcpeters</name><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-16429946.post-113053922357610721</id><published>2005-10-28T17:34:00.000-07:00</published><updated>2005-10-28T15:40:40.480-07:00</updated><title type='text'>Halloween in the Castro</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/hc30.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/hc30.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;It's that time of year, just a few blocks from my house hoards of people will ge going crazy.  Lets hope Emily and I survive.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113053922357610721?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113053922357610721/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113053922357610721&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113053922357610721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113053922357610721'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/halloween-in-castro.html' title='Halloween in the Castro'/><author><name>rcpeters</name><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-16429946.post-113043390478493220</id><published>2005-10-27T17:30:00.000-07:00</published><updated>2005-10-27T10:25:04.806-07:00</updated><title type='text'>iPod that can be your buddy too</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/skate.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/skate.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;If you missed the cool boat by not buying an iPod before your grandma, it's not to late. Here is a truly indie Pez MP3 player at &lt;a href="www.pezmp3.com" target="_blank"&gt;http://www.pezmp3.com/&lt;/a&gt;.  Take that Mr. Steve Jobs!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113043390478493220?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113043390478493220/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113043390478493220&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113043390478493220'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113043390478493220'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/ipod-that-can-be-your-buddy-too.html' title='iPod that can be your buddy too'/><author><name>rcpeters</name><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-16429946.post-113034653308760767</id><published>2005-10-26T17:55:00.000-07:00</published><updated>2005-10-26T10:08:53.096-07:00</updated><title type='text'>2000 fallen</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/kelleycourtney.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/kelleycourtney.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;NPR has this &lt;a href="http://www.npr.org/templates/story/story.php?storyId=4975138" target="_blank"&gt;segment&lt;/a&gt; that includes a mothers experience of losing a son to war.  Whether or not one is of the opinion of the validity of the Iraq war, everyone can agree individual losses are are tragic.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113034653308760767?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113034653308760767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113034653308760767&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113034653308760767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113034653308760767'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/2000-fallen.html' title='2000 fallen'/><author><name>rcpeters</name><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-16429946.post-113034502107796947</id><published>2005-10-26T17:38:00.000-07:00</published><updated>2005-10-26T09:43:41.086-07:00</updated><title type='text'>CBO at the Veloswap &amp; Sports Expo</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/CBOLetter.jpeg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/CBOLetter.jpeg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;My favorite bike shop Cambria Bicycle Outfitter will be at the VeloSwap &amp; SportsExpo from 9-5 this Saturday the 29. If you have some money burning a hole in your pocket the Veloswap sounds like the place to be.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113034502107796947?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113034502107796947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113034502107796947&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113034502107796947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113034502107796947'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/cbo-at-veloswap-sports-expo.html' title='CBO at the Veloswap &amp; Sports Expo'/><author><name>rcpeters</name><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-16429946.post-113019794251069260</id><published>2005-10-25T17:51:00.000-07:00</published><updated>2005-10-25T16:43:42.986-07:00</updated><title type='text'>J-E-L-L-O .....A-R-T!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/02alamo.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/02alamo.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.lizhickok.com/portfolio2.html" target="_blank"&gt;Liz Hickok&lt;/a&gt; has gone off  into the ether of creativity in her creation of Jello landscapes.  I've never been so impressed and hungry at the same time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113019794251069260?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113019794251069260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113019794251069260&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113019794251069260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113019794251069260'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/j-e-l-l-o-r-t.html' title='J-E-L-L-O .....A-R-T!'/><author><name>rcpeters</name><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-16429946.post-113021083131161616</id><published>2005-10-24T20:26:00.000-07:00</published><updated>2005-10-25T08:52:01.853-07:00</updated><title type='text'>GEO Dome</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/GOEDOME.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/GOEDOME.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;This  last weekend in Yosemite was great, in part due to my purchasing a REI 4 season &lt;a href="http://www.rei.com/product/47744026.htm?" target="_blank"&gt;GEO Dome tent&lt;/a&gt;.  Being half the price of the name brand tents, I was a little worried.  But as it turns out the tent was quite study, roomy and pleasant.  It also happens that for car camping it fits a queen size inflatable bed.&lt;br /&gt;&lt;br /&gt;P.S.If your in the market for an inflatable bed the &lt;a href="http://www.sportsmansguide.com/cb/cb.asp?p=WX2&amp;i=93073" target="_blank"&gt;Wenzel battery powered bed&lt;/a&gt; is the way to go.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-113021083131161616?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/113021083131161616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=113021083131161616&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113021083131161616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/113021083131161616'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/geo-dome.html' title='GEO Dome'/><author><name>rcpeters</name><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-16429946.post-112978749866218109</id><published>2005-10-20T20:15:00.000-07:00</published><updated>2005-10-20T10:53:50.740-07:00</updated><title type='text'>Equity Stakes</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/ph3.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/ph3.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;So last night I was pitched an equity stake in a new software startup.  Actually, I normally wouldn’t have even opted to hear the pitch, but the person doing the pitch is someone I see getting a company going ground up.  Everything I heard during the pitch was reasonable, but unfortunately the software product just didn’t light my fire. So even though I have confidence in the soon to be CEO, I just don't see my self being any were close to as excited as the products I currently am getting to develop. It's good sign I'm happy where I am, but I hate disappointing people.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112978749866218109?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112978749866218109/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112978749866218109&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112978749866218109'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112978749866218109'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/equity-stakes.html' title='Equity Stakes'/><author><name>rcpeters</name><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-16429946.post-112969506844116706</id><published>2005-10-19T07:30:00.000-07:00</published><updated>2005-10-18T21:11:08.446-07:00</updated><title type='text'>Climb time }:-&gt;</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/tu_matt_falk.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/tu_matt_falk.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Yosemite climbing will be going down this weekend.  You can track some of the old salty  climbers from SLO at sites 134, 136, 145 and 148 in Upper Pines (just ask for Ken the shitbag).  It’s been a while since I’ve climbed but with any luck, I’ll mange to top out on a few classics&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112969506844116706?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112969506844116706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112969506844116706&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112969506844116706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112969506844116706'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/climb-time.html' title='Climb time }:-&gt;'/><author><name>rcpeters</name><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-16429946.post-112961270813899496</id><published>2005-10-18T12:55:00.000-07:00</published><updated>2005-10-18T15:08:45.423-07:00</updated><title type='text'>Craigslist Treasure, mate!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/nixon.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/nixon.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Found 1968 Nixon Campaign Poster on Craigslist.org. Really one couldn’t go wrong this little cynical tidbit of history.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112961270813899496?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112961270813899496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112961270813899496&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112961270813899496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112961270813899496'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/craigslist-treasure-mate_18.html' title='Craigslist Treasure, mate!'/><author><name>rcpeters</name><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-16429946.post-112965076605737556</id><published>2005-10-18T08:16:00.000-07:00</published><updated>2005-10-18T08:54:24.390-07:00</updated><title type='text'>Broadband: pillaging America</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/bb.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/bb.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Salon.com has this &lt;a href="http://www.salon.com/tech/feature/2005/10/18/broadband/index.html" target="_blank"&gt;article&lt;/a&gt; on how America is falling behind due to anti completive broadband practices.  I take banking, emailing, blogging, researching and even shopping on the Internet for granted, and can't believe we are pricing so many hard working Americans out of the same opportunities.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112965076605737556?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112965076605737556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112965076605737556&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112965076605737556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112965076605737556'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/broadband-pillaging-america.html' title='Broadband: pillaging America'/><author><name>rcpeters</name><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-16429946.post-112961155099640668</id><published>2005-10-17T21:52:00.000-07:00</published><updated>2005-10-17T21:59:11.003-07:00</updated><title type='text'>Keep sucking, until you succeed</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/baby.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/baby.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Tonight’s Spike Lee &lt;a href="http://rcpeters.blogspot.com/2005/10/bold-and-unrelenting-spike-lee.html"&gt;commonwealth club appearance&lt;/a&gt; was ok, not great.  I actually like that Mr. Lee was a little short with lame questions.  Emily wasn’t pleased with his disposition.  Unfortunately most of the questions ask where wholly uninteresting.  For example one of the open floor question contained the phrase “My grandmother always says, ‘Keep sucking, until you succeed’.”   After which a desperate gentleman proceeded to beg Spike to take a look at his script, even after Mr. Lee explained that he only looks at materials through documented agents to avoid lawsuits. From the rather mediocre questions I was able to see that Spike was willing to question our society without questioning every single slight he or others might have experienced. Although I don’t feel like I got my $15 worth, I did discover a deeper respect for Mr. Spike Lee.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112961155099640668?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112961155099640668/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112961155099640668&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112961155099640668'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112961155099640668'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/keep-sucking-until-you-succeed.html' title='Keep sucking, until you succeed'/><author><name>rcpeters</name><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-16429946.post-112958566827011953</id><published>2005-10-17T18:14:00.000-07:00</published><updated>2005-10-17T15:01:13.940-07:00</updated><title type='text'>Pistol packing preacher</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/bmg.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/bmg.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Today I found &lt;a href="http://www.blackmanwithagun.com/"&gt;blackmanwithagun.com&lt;/a&gt; today and couldn't resist exploring it.  There are a few curiosities such as his own action figure (click cool stuff) or a CD he has produced , “Pistol packing preacher.” Although I might agree and disagree with different viewpoint presented at &lt;a href="http://www.blackmanwithagun.com/"&gt;blackmanwithagun.com&lt;/a&gt; I do find the approach quite funny.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112958566827011953?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112958566827011953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112958566827011953&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112958566827011953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112958566827011953'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/pistol-packing-preacher.html' title='Pistol packing preacher'/><author><name>rcpeters</name><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-16429946.post-112941525261065112</id><published>2005-10-15T15:22:00.000-07:00</published><updated>2005-10-15T15:27:32.620-07:00</updated><title type='text'>Science is great ;-)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/PICT1205.jpg" target="_blank"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/PICT1205.jpg" border="0" alt=""  /&gt;&lt;/a&gt;&lt;br /&gt;Note: this post will receive no explanation&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112941525261065112?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112941525261065112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112941525261065112&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112941525261065112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112941525261065112'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/science-is-great.html' title='Science is great ;-)'/><author><name>rcpeters</name><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-16429946.post-112931606198467279</id><published>2005-10-14T11:22:00.000-07:00</published><updated>2005-10-18T17:06:30.113-07:00</updated><title type='text'>Young again</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/DeYoung05.jpg" targert="_blank"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/DeYoung05.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;M.H. de Young Museum in Golden Gate Park be will be &lt;a href="http://www.deyoungmuseum.org/deyoung/visiting/subpage.asp?subpagekey=885" target="_blank"&gt;free to the general public this re-opening weekend&lt;/a&gt;. Trent and Jean have already talked Emily and I into going.&lt;br /&gt;&lt;br /&gt;I've been up the tower, which is an exceptional space with a view and look forward to see the rest of the shack ;-)  For the local architecturally conservative nitwits I say boo!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112931606198467279?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112931606198467279/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112931606198467279&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112931606198467279'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112931606198467279'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/young-again.html' title='Young again'/><author><name>rcpeters</name><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-16429946.post-112924859476935640</id><published>2005-10-13T21:39:00.000-07:00</published><updated>2005-10-13T17:09:54.803-07:00</updated><title type='text'>Worm in your Apple :-(</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/vipod.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/vipod.jpg" border="0" alt="" target="_blank" /&gt;&lt;/a&gt;&lt;br /&gt;I for one am unimpressed with Apples new V-iPod.  Who is going to watch movies on such a little screen.  Slate happens to agree with this &lt;a href="http://www.slate.com/id/2127924/" target="_blank"&gt;article&lt;/a&gt;.  What if Apple instead did something truly revolutionary like allow people to buy and install OSX on any PC.  But I imagine Apple just isn't willing to play on a level field with Windows XP and will never ship its operating system to work without it's own branded hardware:-P&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112924859476935640?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112924859476935640/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112924859476935640&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112924859476935640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112924859476935640'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/worm-in-your-apple.html' title='Worm in your Apple :-('/><author><name>rcpeters</name><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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-112915484437973319</id><published>2005-10-13T18:04:00.000-07:00</published><updated>2005-10-12T18:46:08.676-07:00</updated><title type='text'>World Kick Ball Association</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/bowTie3.jpg" target="_blank"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/bowTie.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Last Saturdays the Kickball prom was held to commemorate the closing of the season. Emily managed to create corsages and bow ties out of kickballs. In fact they worked so well most people at the prom had to be told they were kickball material. At which point they would flip out about how cool they are. For any who would even think of joining a the &lt;a href="http://worldkickball.com/" target="_blank"&gt;World Kick Ball Association&lt;/a&gt; I would suggest you do so this coming spring, it's a blast!!!&lt;br /&gt;&lt;br /&gt;P.S. &lt;a href="http://emilystyle.com" target="_blank"&gt;Emily&lt;/a&gt; might be looking to potential investors for fund her indie corsage design company.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112915484437973319?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112915484437973319/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112915484437973319&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112915484437973319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112915484437973319'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/world-kick-ball-association.html' title='World Kick Ball Association'/><author><name>rcpeters</name><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-16429946.post-112917262070728974</id><published>2005-10-13T07:58:00.000-07:00</published><updated>2005-10-12T20:11:31.343-07:00</updated><title type='text'>Craigslist Treasure Mate!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/bmx1.jpg" target="_blank"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/bmx1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Posted earlier this week is this dope Vintage Graco 1970's at &lt;a href="http://www.craigslist.org" target="_blank"&gt;craigslist.org&lt;/a&gt;.  If I had all the storage room in the world this puppy would so be mine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112917262070728974?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112917262070728974/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112917262070728974&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112917262070728974'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112917262070728974'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/craigslist-treasure-mate.html' title='Craigslist Treasure Mate!'/><author><name>rcpeters</name><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-16429946.post-112914993776165719</id><published>2005-10-12T18:52:00.000-07:00</published><updated>2005-10-12T18:41:44.213-07:00</updated><title type='text'>The bold and unrelenting Spike Lee</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/Spike_Lee.jpg" target="_blank"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/Spike_Lee.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Spike Lee will be speaking for the &lt;a href="http://www.commonwealthclub.org/" target="_blank"&gt;commonweathclub&lt;/a&gt; this coming Monday.  Seeing that Spike Lee is a somewhat a bold and unrelenting director, I'm expecting it to be interesting.   Make if you can.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112914993776165719?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112914993776165719/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112914993776165719&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112914993776165719'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112914993776165719'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/bold-and-unrelenting-spike-lee.html' title='The bold and unrelenting Spike Lee'/><author><name>rcpeters</name><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-16429946.post-112914512132112410</id><published>2005-10-12T18:23:00.000-07:00</published><updated>2005-10-12T13:24:40.833-07:00</updated><title type='text'>Redbull sponsers wings</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/ARSanFrancisco.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/ARSanFrancisco.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;I often hate it when people blog about events that happened past tense.  But in the case of the &lt;a href="http://www.redbullairrace.com/" target="_blank"&gt;Red Bull Air Race&lt;/a&gt; you can catch it next year.  Last weekend the race during &lt;a href="http://www.news.navy.mil/search/display.asp?story_id=10004" target="_blank"&gt;Fleet Week&lt;/a&gt; was loads more fun than watching the idealized Blue angles.  Instead of top guns doing precision drills you get a bunch of old crockety top guns letting all lose.  Numerous loops, spins, flat spins and timed laps all packaged up into one event.  Add in one Jumbo-Tron that gives close ups of the planes and cockpit views and you got one entertaining event.  So be sure to check next years schedule when it gets &lt;a href="http://www.redbullairrace.com/news.php?id=118&amp;lang=english" target="_blank"&gt;posted&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112914512132112410?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112914512132112410/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112914512132112410&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112914512132112410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112914512132112410'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/redbull-sponsers-wings.html' title='Redbull sponsers wings'/><author><name>rcpeters</name><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-16429946.post-112904612472556704</id><published>2005-10-11T18:00:00.000-07:00</published><updated>2005-10-11T11:52:26.546-07:00</updated><title type='text'>It's never to late for another toy</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/skateBoardMap.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/skateBoardMap.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;So as many of you know I've picked up another hobby, skateboarding!  Skateboarding never made much sense.  However after moving to San Francisco where the urban jungle presents much more skateboarding opportunity and  that's before you account for the ability of skateboards to fit on public transit. Plus Trent had me skate laundry up and down the street. Notably superior than carrying your laundry.&lt;br /&gt;  &lt;br /&gt;Which predictably leads to me buying a huge &lt;a href="http://www.gravityboard.com/pages/gstore/boards/hc2.html" target="_blank"&gt;board &lt;/a&gt; that is easy to ride in a strait line, but not so easy to turn.  After spending a lovely Sunday in the park with Emily taking turns riding and riding together, yes Emily is learning how to ride too, and yes my board is big enough that both of us can squeeze on it.  In fact when both of us are on it we start giving other people epileptic cases of “that's so cute”.&lt;br /&gt;&lt;br /&gt;However the true test is if I could skateboard to work faster than riding the bus. And guess what I can!   Just for documentation I've include a map of my momentous day ;-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112904612472556704?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112904612472556704/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112904612472556704&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112904612472556704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112904612472556704'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/its-never-to-late-for-another-toy.html' title='It&apos;s never to late for another toy'/><author><name>rcpeters</name><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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-112872435918939545</id><published>2005-10-07T21:22:00.000-07:00</published><updated>2005-10-07T15:38:20.290-07:00</updated><title type='text'>Doctor Atomic</title><content type='html'>So a few weeks ago &lt;a href="http://emilystyle.blogspot.com/" target="_blank"&gt;Emily&lt;/a&gt;, &lt;a href="http://jeaniebeaniesf.blogspot.com/" target="_blank"&gt;Jean&lt;/a&gt; and I spent a day at Opera in the Park (Golden Gate).  Of course Emily couldn't leave without buying some tickets and as it happens we got tickets to Doctor Atomic.  We bought the tickets on name alone but now that NPR has a &lt;a href="http://www.npr.org/templates/story/story.php?storyId=4948871" target="_blank"&gt;segment about Doctor Atomic&lt;/a&gt; I'm sure we made a dandy choice.  Also here is a link to the official site of &lt;a href="http://doctor-atomic.com/" target="_blank"&gt;Doctor Atomic&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112872435918939545?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112872435918939545/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112872435918939545&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112872435918939545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112872435918939545'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/doctor-atomic.html' title='Doctor Atomic'/><author><name>rcpeters</name><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-16429946.post-112871760780814237</id><published>2005-10-07T20:37:00.000-07:00</published><updated>2005-10-07T14:25:55.700-07:00</updated><title type='text'>CSS Hacking, because I can.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/barNoBar2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/barNoBar2.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So a few weeks ago I put my coding powers to work removing the blogger dashboard/toolbar. It was just to dominating.  If you're willing to take the risk  bitting the had that feeds you free blogging, just past the following into your template right before the &amp;lt;/body&amp;gt; tag.&lt;br /&gt;&lt;br /&gt;&amp;lt;script&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;var m1 = document.getElementById("b-navbar");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1.style.display="none";&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1.style.visibility='hidden';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1 = document.getElementById("space-for-ie");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1.style.display="none";&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1.style.visibility='hidden';&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1 = document.getElementById("header");&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;m1.style.margin="15px auto 0px";       &lt;br /&gt;&amp;lt;/script&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112871760780814237?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112871760780814237/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112871760780814237&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112871760780814237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112871760780814237'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/css-hacking-because-i-can.html' title='CSS Hacking, because I can.'/><author><name>rcpeters</name><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-16429946.post-112870609908325668</id><published>2005-10-07T18:14:00.000-07:00</published><updated>2005-10-07T10:58:41.096-07:00</updated><title type='text'>SFL on iTunes</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/SFLiTunes.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/320/SFLiTunes.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.scissorsforlefty.com/" target="_blank"&gt;Scissors For Lefty&lt;/a&gt; has been &lt;b&gt;featured as a staff pick&lt;/b&gt; on iTunes.  Yet another sign that Bryan might be bedding laddies down on a national level.  I also have it on good athority that the show at &lt;a href="http://www.bottomofthehill.com/" target="_blank"&gt;Bottom of the Hill&lt;/a&gt; coming the 12th will be a good one.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112870609908325668?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112870609908325668/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112870609908325668&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112870609908325668'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112870609908325668'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/10/sfl-on-itunes.html' title='SFL on iTunes'/><author><name>rcpeters</name><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>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16429946.post-112786595972171200</id><published>2005-09-27T19:04:00.000-07:00</published><updated>2005-09-27T17:05:59.726-07:00</updated><title type='text'>Happy Hard Core</title><content type='html'>One of my coworkers is a high energy geek type.  I pretty sure I've seen him drink 8 rock stars in a day.  Anyhow to complement his possibly overactive brain he listens to “&lt;span style="font-weight:bold;"&gt;happy hard core&lt;/span&gt;”  Which is basically hard core rave music.  Even though I'm not partial to high energy of the music you should &lt;a href="http://music.download.com/2001-8366_32-0.html?tag=FA_sm_dir" target="_blank"&gt;&lt;span style="font-weight:bold;"&gt;sample&lt;/span&gt;&lt;/a&gt; it any way.  Besides it gives you acute insight into one of my coworkers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112786595972171200?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112786595972171200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112786595972171200&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112786595972171200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112786595972171200'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/09/happy-hard-core.html' title='Happy Hard Core'/><author><name>rcpeters</name><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-16429946.post-112682048166199769</id><published>2005-09-15T18:39:00.000-07:00</published><updated>2005-09-16T08:18:00.106-07:00</updated><title type='text'>Last Picture of San Luis Obispo</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/3216/1559/1600/landScapeNW.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/3216/1559/400/landScapeNW.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Right before I moved away from San Luis Obispo(SLO) I managed to find this dandy picture.  Of course this picture examines how humans frame, change and affect the landscape we live in.&lt;br /&gt; &lt;br /&gt;However looking back on the picture is has even greater personal meaning.  In the same way the SLO landscape was drastically changing, my life was in for the big move to SF.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112682048166199769?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112682048166199769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112682048166199769&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112682048166199769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112682048166199769'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/09/last-picture-of-san-luis-obispo.html' title='Last Picture of San Luis Obispo'/><author><name>rcpeters</name><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-16429946.post-112672474659647955</id><published>2005-09-14T17:49:00.000-07:00</published><updated>2005-09-14T12:54:35.033-07:00</updated><title type='text'>Disaster, ready steady go</title><content type='html'>Many of you know I'm big on being prepared for disaster, invasion or even an invasion of little green bureaucrats. For those that live in SF, I suggest checking out &lt;a href="http://72hours.org/" target="_blank"&gt;72hours.org&lt;/a&gt;.  Also zombie movies are aways good training videos, since they are usually some kind of social commentary.&lt;br /&gt;&lt;br /&gt;Here is a shot list of variations from &lt;a href="http://72hours.org/" target="_blank"&gt;72hours.org&lt;/a&gt; list.&lt;br /&gt;&lt;br /&gt;Things not in my kit:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;toilet paper, really in the event of the big-one I've already shat my self, besides I sure you can find something to use&lt;/li&gt;&lt;li&gt;radio (maybe I should)&lt;/li&gt;&lt;/ul&gt;Things in my kit:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;worlds biggest can of &lt;a href="http://froogle.google.com/froogle?q=16+oz+pepper+spray&amp;hl=en&amp;amp;hs=r1v&amp;lr=&amp;amp;client=firefox&amp;rls=org.mozilla:en-US:unofficial&amp;amp;sa=N&amp;tab=ff&amp;amp;oi=froogler" target="_blank"&gt;pepper spray&lt;/a&gt; I wouldn't expect everybody play nice&lt;/li&gt;&lt;li&gt;laptop,  &lt;a href="http://www.google.com/search?q=katrina+free+wifi&amp;sourceid=mozilla-search&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox&amp;rls=org.mozilla:en-US:unofficial" target="_blank"&gt;free WiFi&lt;/a&gt; has proved more robust than other communication technologies.  If you have one grab it on your way out the door&lt;/li&gt;&lt;li&gt;bottles of booze you have at your house.  They keep well and could be traded for other goods&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112672474659647955?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112672474659647955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112672474659647955&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112672474659647955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112672474659647955'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/09/disaster-ready-steady-go.html' title='Disaster, ready steady go'/><author><name>rcpeters</name><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-16429946.post-112603271962331162</id><published>2005-09-06T11:50:00.000-07:00</published><updated>2005-09-06T11:51:59.626-07:00</updated><title type='text'>Obligatory meaningless first post</title><content type='html'>Howdy folks,&lt;br /&gt;&lt;br /&gt;Usually most bloggers are articulate.  My self I'm only articulate the half of the time, as my brain chooses to function.  However if you can bear through the functioning and malfunctioning of the gray matter between my ears,   You're bound to find a least a minutia of entertainment.&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;Rob&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16429946-112603271962331162?l=rcpeters.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rcpeters.blogspot.com/feeds/112603271962331162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16429946&amp;postID=112603271962331162&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112603271962331162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16429946/posts/default/112603271962331162'/><link rel='alternate' type='text/html' href='http://rcpeters.blogspot.com/2005/09/obligatory-meaningless-first-post.html' title='Obligatory meaningless first post'/><author><name>rcpeters</name><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>
