<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>C L Snyder &#187; Finance</title>
	<atom:link href="http://www.clsnyder.com/WordPress/category/finance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clsnyder.com/WordPress</link>
	<description>Kaizen with Sprezzatura</description>
	<lastBuildDate>Mon, 06 Feb 2012 22:52:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Python Google Stock Quotes</title>
		<link>http://www.clsnyder.com/WordPress/2008/06/06/python-google-stock-quotes/</link>
		<comments>http://www.clsnyder.com/WordPress/2008/06/06/python-google-stock-quotes/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 22:38:25 +0000</pubDate>
		<dc:creator>clsnyder</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.clsnyder.com/WordPress/?p=215</guid>
		<description><![CDATA[import urllib import re def get_quote(symbol): base_url = 'http://finance.google.com/finance?q=' content = urllib.urlopen(base_url + symbol).read() m = re.search('class="pr".*?>(.*?)]]></description>
			<content:encoded><![CDATA[<pre class="prettyprint">
import urllib
import re

def get_quote(symbol):
    base_url = 'http://finance.google.com/finance?q='
    content = urllib.urlopen(base_url + symbol).read()
    m = re.search('class="pr".*?>(.*?)<', content)
    if m:
        quote = m.group(1)
        print symbol + "   " + quote
    else:
        quote = 'no quote available for: ' + symbol
    return quote

items = ["AAPL","GOOG","ININ","EWH","IAU"]
for n in items:
    get_quote(n)
raw_input( )
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.clsnyder.com/WordPress/2008/06/06/python-google-stock-quotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warren Buffet on Charlie Rose</title>
		<link>http://www.clsnyder.com/WordPress/2006/07/22/warren-buffet-on-charlie-rose/</link>
		<comments>http://www.clsnyder.com/WordPress/2006/07/22/warren-buffet-on-charlie-rose/#comments</comments>
		<pubDate>Sat, 22 Jul 2006 17:46:14 +0000</pubDate>
		<dc:creator>clsnyder</dc:creator>
				<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://www.clsnyder.com/WordPress/?p=22</guid>
		<description><![CDATA[Interview with Warren Buffet on CR: Decide what you want from life and do it. What are your principal interests? Find something you have a passion for. Daily schedule &#8211; what do you want to do everyday? If you are &#8230; <a href="http://www.clsnyder.com/WordPress/2006/07/22/warren-buffet-on-charlie-rose/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Interview with Warren Buffet on CR:</p>
<p>Decide what you want from life and do it. What are your principal interests? Find something you have a passion for. Daily schedule &#8211; what do you want to do everyday? If you are going to spend your life doing something, it might as well be something with real value. Reverse engineer your life.<br />
Giving talks &#8211; he only talks to young people. It may change their life. Older audiences just want to be entertained.<br />
Inner scorecard &#8211; don&#8217;t worry about what others want / think.<br />
You can afford to lose money but not reputation. Newspaper test &#8211; would you still do something if it would be published in the newspaper the next day.</p>
<p>Success &#8211; definition: Who would hide you &#8211; this relates to the experience of a refugee in Nazi Germany &#8211; a true friend was someone who would hide you (risk their life). As you grow older, the number of people who would agree to hide you is a referendum for you success in life.</p>
<p>Great story by former neighbor in Omaha &#8211; (former CEO Coca Cola) &#8211; Warren Buffet was friendly with this guys kids &#8211; suggested he put 10,000 in Warren Buffet&#8217;s fund for the kids college. Guy declined because Warren Buffet didn&#8217;t even seem get up regularly to go to work. The 10K would now be worth about 400 million now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.clsnyder.com/WordPress/2006/07/22/warren-buffet-on-charlie-rose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

