<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Goodoldaddy's Blog</title>
	<atom:link href="http://goodoldaddy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://goodoldaddy.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 19 Feb 2011 22:10:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='goodoldaddy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Goodoldaddy's Blog</title>
		<link>http://goodoldaddy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://goodoldaddy.wordpress.com/osd.xml" title="Goodoldaddy&#039;s Blog" />
	<atom:link rel='hub' href='http://goodoldaddy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to manage SQL Server transction logs growing beyond available drive space?</title>
		<link>http://goodoldaddy.wordpress.com/2009/11/16/how-to-manage-transction-logs-growing-beyond-available-drive-space/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/11/16/how-to-manage-transction-logs-growing-beyond-available-drive-space/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 05:26:55 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backup log]]></category>
		<category><![CDATA[full recovery]]></category>
		<category><![CDATA[growing]]></category>
		<category><![CDATA[LSN]]></category>
		<category><![CDATA[shrinkfile]]></category>
		<category><![CDATA[simple recovery]]></category>
		<category><![CDATA[sql 2005]]></category>
		<category><![CDATA[sql 2008]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[t-sql]]></category>
		<category><![CDATA[transaction logs]]></category>
		<category><![CDATA[truncateonly]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=72</guid>
		<description><![CDATA[This is a common problem that we encounter with SQL Server databases in full recovery model.   Normally, the data and transaction log files are located on different physical drives to improve performance.   Very often, the drive designated for transaction logs is not large enough to handle rapid transaction log growth due to various reasons.   If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=72&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a common problem that we encounter with SQL Server databases in<strong><span style="text-decoration:underline;"> </span></strong><span style="text-decoration:underline;">full recovery</span> model.   Normally, the data and transaction log files are located on different physical drives to improve performance.   Very often, the drive designated for transaction logs is not large enough to handle rapid transaction log growth due to various reasons.   If unchecked, the transaction logs can grow to a point where the drive runs out of space resulting in a database becoming unavailable.   Unless the transaction logs are not unmanageably large (orders of magnitude larger than the data file), this problem can be solved by the following simple steps.  It is likely that  sufficient drive space is not recovered in the first attempt.  In this case, repeat steps 1 and 2 few iterations to reclaim the drive space.</p>
<p>In the following example, we are trying to reclaim the drive space for a user database called ClientActivityLog</p>
<p>(1) Backup the transaction logs to a suitable backup location.   This step will make most 				of the active virtual log files inactive.  The drive space from these inactive virtual log files can then be reclaimed in the next step</p>
<p><span style="color:#003366;"><strong>USE  MASTER<br /> </strong></span></p>
<p><span style="color:#003366;"><strong>BACKUP LOG ClientActivityLog TO  DISK=&#8217;L:\DBBackup\ClientActivityLog.trn&#8217;  WITH INIT, STATS=10</strong></span></p>
<p>(2) Shrink the transaction logs to reclaim the inactive virtual log files:</p>
<p><strong><span style="color:#003366;">USE ClientActivityLog</span></strong></p>
<p><strong><span style="color:#003366;">DBCC SHRINKFILE(N&#8217;ClientActivityLog&#8217;, TRUNCATEONLY)</span></strong></p>
<p>Very often, we see the transaction log reaching a size that will either take unacceptably long time to backup transaction logs or there is not enough temporary space for the database for attempting the log backups.  In this case,  we can use the following steps: (1) Truncate the log by changing the database recovery model to SIMPLE<span style="color:#000000;">, (2) </span>Shrink the truncated log file, and (3) Reset the database recovery model<span style="text-decoration:underline;">.</span> One thing to keep in mind with this approach is that once we change the recovery model to simple recovery, we lose the ability to restore the database to a point-in-time or to a  specific Log Sequence Number (LSN).</p>
<p>For example, we are trying to recover a user database called ClientActivityLog</p>
<p id="ctl00_MTCS_main_ctl45_ctl00_ctl01_code"><span style="color:#003366;"><strong>USE ClientActivityLog<br /> GO</strong></span></p>
<p><span style="color:#003366;"><strong>ALTER DATABASE ClientActivityLog  SET RECOVERY SIMPLE<br /> GO</strong></span></p>
<p><span style="color:#003366;"><strong>DBCC SHRINKFILE (ClientActivityLog_log, TRUNCATEONLY)<br /> GO</strong></span></p>
<p><span style="color:#003366;"><strong>ALTER DATABASE ClientActivityLog  SET RECOVERY FULL<br /> GO</strong></span></p>
<p>I just found a  good KB article directly related to this topic.</p>
<p><strong><span style="color:#008000;">http://support.microsoft.com/kb/907511</span></strong></p>
<p>Please feel free to comment and let me know if there is a better way to manage this problem or if there are some inaccuracies in this post.</p>
<p>&#8211; GoodOlDaddy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=72&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/11/16/how-to-manage-transction-logs-growing-beyond-available-drive-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple t-sql script for checking integrity and full backups of SQL Server user databases</title>
		<link>http://goodoldaddy.wordpress.com/2009/11/16/simple-t-sql-script-for-checking-integrity-and-full-backups-of-user-databases/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/11/16/simple-t-sql-script-for-checking-integrity-and-full-backups-of-user-databases/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 03:27:24 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[database integrity]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[db maintenance]]></category>
		<category><![CDATA[sp_MSforeachdb]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[SQL2005]]></category>
		<category><![CDATA[SQL2008]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=67</guid>
		<description><![CDATA[I have decided to post some useful t-sql scripts for SQL Server databases as a part of my blog.   Here is a start.   A part of my present full-time job  is to proactively manage about 50 SQL Server databases in failover clustering environment.   I am relatively new to database administration.  But I am developing lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=67&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have decided to post some useful t-sql scripts for SQL Server databases as a part of my blog.   Here is a start.   A part of my present full-time job  is to proactively manage about 50 SQL Server databases in failover clustering environment.   I am relatively new to database administration.  But I am developing lot of interest in database automation.   I would like to invite any of my blog readers to participate actively through exchange of  SQL Server database scripts that might be of some use to any one interested.</p>
<p>Here is a simple script to check the database integrity and then execute full backups of all user databases.   I fully agree with you that this task can always be achieved using a specific Maintenance Plan with these two steps.   Usually, our full maintenance plans include rebuilding indexes in addition to the above steps and it usually takes lot longer to complete.  Also I like simple scripts to just do what you like.   Here is my script which just includes the user databases (db_id &gt; 4) to a backup location (our full and translog backups are normally located in L:\DBBackup folder).   I am using the undocumented system stored procedure sp_MSforeachdb.  Let me know if you find this useful.   Really appreciate your comments and ideas&#8230;</p>
<p>Thanks,</p>
<p>GoodOlDaddy</p>
<p><span style="font-family:Arial;font-size:x-small;"><br /> </span></p>
<blockquote><div>
<div><span style="color:#003366;">/* PR &#8212; Check DB consistency and then execute a  full backup for all user databases */<br /> USE master<br /> GO</span></div>
<div><span style="color:#003366;"> </span></div>
<div><span style="color:#008000;"><span style="color:#003366;">DECLARE @RETURN_VALUE int<br /> DECLARE @command1  NVARCHAR(2000)<br /> DECLARE @command2 NVARCHAR(2000)<br /> DECLARE @tNowStr  VARCHAR(64)<br /> SET @tNowStr = REPLACE(CAST(GETDATE() AS VARCHAR(64)),&#8217;  &#8216;,&#8217;_')<br /> SET @tNowStr = REPLACE(@tNowStr,&#8217;:',&#8217;_')<br /> SET @command1 =<br /> &#8216;DECLARE @dbid int USE # SET @dbid = DB_ID(&#8221;#&#8221;) IF @dbid &gt; 4 DBCC  CHECKDB (@dbid) WITH NO_INFOMSGS&#8217;<br /> SET @command2 =<br /> &#8216;DECLARE @dbid int USE # SET @dbid = DB_ID(&#8221;#&#8221;) IF @dbid &gt; 4 BACKUP DATABASE # TO DISK=&#8221;L:DBBackup\&#8217; + &#8216;#&#8217; + &#8216;_&#8217; + @tNowStr + &#8216;.BAK&#8221;&#8217;+ &#8216; WITH INIT, STATS=10&#8242;<br /> EXEC @RETURN_VALUE = sp_MSforeachdb @command1 = @command1, @replacechar=&#8217;#',  @command2 = @command2</span><br /> </span></div>
</div>
</blockquote>
<p><strong><br /> </strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=67&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/11/16/simple-t-sql-script-for-checking-integrity-and-full-backups-of-user-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Some interesting stats on California state government budget</title>
		<link>http://goodoldaddy.wordpress.com/2009/06/03/some-interesting-stats-on-california-state-government-budget/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/06/03/some-interesting-stats-on-california-state-government-budget/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 03:30:30 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Dads]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[California]]></category>
		<category><![CDATA[California budget stats]]></category>
		<category><![CDATA[comparison with other states]]></category>
		<category><![CDATA[GDP]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[health care]]></category>
		<category><![CDATA[health care spending]]></category>
		<category><![CDATA[percent of GDP]]></category>
		<category><![CDATA[private sector]]></category>
		<category><![CDATA[public sector]]></category>
		<category><![CDATA[social assisstance]]></category>
		<category><![CDATA[tax burden]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=62</guid>
		<description><![CDATA[California state government spending, health care and social assistance as a percentage of state GDP is not as high as people think.  California apparently has the 6th highest tax burden of the fifty states when measured as a percentage of GDP in 2008.  These facts come as surprise to me.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=62&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I googled and pulled these stats from two or three sources.  It looks like California State budge is about 135 Billion dollars for 2009.  This compares to California state GDP of 1.73 Trillions from 2007 statistics.  So as a percentage, the government budget is less than 10% of the total GDP for the state. The state GDP apportionment amongst major sectors, California spends 10% for government, and 6% for health care and social assistance.  This compares very favorably with states.  For example, Kansas spends 14.3% for government, and 7% for health care and social assistance.  Take a look at the second table for details.  I am quite surprised to see that the red states like West Virginia, Mississippi, Alabama, Arkansas, Kentucky, South Carolina, Virginia, and Tennessee have relatively much higher averages for government spending as percentage of GDP compared to California state.</p>
<p>As for the tax burden comparison with other states, California apparently has the 6th highest tax burden of the fifty states when measured as a percentage of <a title="GDP" href="http://en.wikipedia.org/wiki/GDP">GDP</a> in 2008.  This is another surprise considering the general belief that California has the heaviest tax burden.</p>
<p>Here are some details:</p>
<p><strong>California</strong><strong> Proposed Budget Detail</strong></p>
<p>The following table presents budget year positions and expenditures for each agency area. These totals are comprised of State funds which include General Fund, special funds, and selected bond funds. These totals do not include federal funds, other non-governmental cost funds, or reimbursements.</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td rowspan="2">
<p align="center"><strong>State Agencies</strong></p>
</td>
<td colspan="6">
<p align="center"><strong>2009-10</strong></p>
</td>
</tr>
<tr>
<td width="12%">
<p align="center"><strong>Positions</strong></p>
</td>
<td width="12%">
<p align="center"><strong>General<br />
Fund*</strong></td>
<td width="12%">
<p align="center"><strong>Special <br />
Funds*</strong></td>
<td width="11%">
<p align="center"><strong>Bond <br />
Funds*</strong></td>
<td width="13%">
<p align="center"><strong>Total</strong><strong><br />
</strong><strong>State</strong><strong> Funds*</strong></td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/6010/agency.html"><strong>K   thru 12 Education</strong></a></td>
<td>
<p align="right">2,876.1</p>
</td>
<td>
<p align="right">$39,720,811</p>
</td>
<td>
<p align="right">$510,212</p>
</td>
<td>
<p align="right">$505,423</p>
</td>
<td>
<p align="right">$40,736,446</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/6013/agency.html"><strong>Higher   Education</strong></a></td>
<td>
<p align="right">132,384.5</p>
</td>
<td>
<p align="right">12,389,105</p>
</td>
<td>
<p align="right">46,672</p>
</td>
<td>
<p align="right">652,341</p>
</td>
<td>
<p align="right">13,088,118</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/4000/agency.html"><strong>Health   and Human Services</strong></a></td>
<td>
<p align="right">33,319.8</p>
</td>
<td>
<p align="right">29,995,962</p>
</td>
<td>
<p align="right">7,926,050</p>
</td>
<td>
<p align="right">63,491</p>
</td>
<td>
<p align="right">37,985,503</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/5210/agency.html"><strong>Corrections   and Rehabilitation</strong></a></td>
<td>
<p align="right">62,706.3</p>
</td>
<td>
<p align="right">9,615,169</p>
</td>
<td>
<p align="right">241,620</p>
</td>
<td>
<p align="right">1,646</p>
</td>
<td>
<p align="right">9,858,435</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/2000/agency.html"><strong>Business,   Transportation &amp; Housing</strong></a></td>
<td>
<p align="right">44,541.9</p>
</td>
<td>
<p align="right">2,335,467</p>
</td>
<td>
<p align="right">5,695,212</p>
</td>
<td>
<p align="right">3,932,604</p>
</td>
<td>
<p align="right">11,963,283</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/3000/agency.html"><strong>Resources</strong></a></td>
<td>
<p align="right">17,621.1</p>
</td>
<td>
<p align="right">1,921,585</p>
</td>
<td>
<p align="right">2,154,903</p>
</td>
<td>
<p align="right">1,539,890</p>
</td>
<td>
<p align="right">5,616,378</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/3890/agency.html"><strong>Environmental   Protection</strong></a></td>
<td>
<p align="right">4,955</p>
</td>
<td>
<p align="right">79,266</p>
</td>
<td>
<p align="right">1,188,096</p>
</td>
<td>
<p align="right">263,988</p>
</td>
<td>
<p align="right">1,531,350</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/1000/agency.html"><strong>State   and Consumer Services</strong></a></td>
<td>
<p align="right">16,835.9</p>
</td>
<td>
<p align="right">576,755</p>
</td>
<td>
<p align="right">829,998</p>
</td>
<td>
<p align="right">19,183</p>
</td>
<td>
<p align="right">1,425,936</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/7000/agency.html"><strong>Labor   and Workforce Development</strong></a></td>
<td>
<p align="right">12,113.8</p>
</td>
<td>
<p align="right">104,383</p>
</td>
<td>
<p align="right">347,609</p>
</td>
<td>
<p align="right">-</p>
</td>
<td>
<p align="right">451,992</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/8000/agency.html"><strong>General   Government</strong></a></td>
<td>
<p align="right">14,340.2</p>
</td>
<td>
<p align="right">-4,987,191</p>
</td>
<td>
<p align="right">10,823,990</p>
</td>
<td>
<p align="right">2,056</p>
</td>
<td>
<p align="right">5,838,855</p>
</td>
<td> </td>
</tr>
<tr>
<td width="35%"><a href="http://www.ebudget.ca.gov/StateAgencyBudgets/0010/agency.html"><strong>Legislative,   Judicial, and Executive</strong></a></td>
<td>
<p align="right">16,988.4</p>
</td>
<td>
<p align="right">3,772,252</p>
</td>
<td>
<p align="right">2,252,787</p>
</td>
<td>
<p align="right">242,743</p>
</td>
<td>
<p align="right">6,267,782</p>
</td>
<td> </td>
</tr>
<tr>
<td><strong>TOTALS</strong></td>
<td>
<p align="right"><strong>358,683</strong></p>
</td>
<td>
<p align="right"><strong>$95,523,564</strong></p>
</td>
<td>
<p align="right"><strong>$32,017,149</strong></p>
</td>
<td>
<p align="right"><strong>$7,223,365</strong></p>
</td>
<td>
<p align="right"><strong>$134,764,078</strong><strong> </strong></p>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p><strong>* Dollars in thousands</strong></p>
<p> </p>
<p> </p>
<h2>Gross domestic product (GDP)</h2>
<p>California is responsible for 13% of the United   States&#8217; <a title="Gross domestic product" href="http://en.wikipedia.org/wiki/Gross_domestic_product">gross domestic product</a> (GDP). The state&#8217;s GDP is at about $1.7 trillion (as of 2006).</p>
<p>The GDP increased at an annual rate of 3.1% in the first quarter of 2005.<sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-GDP-12">[13]</a></sup></p>
<h3>California&#8217;s gross state product</h3>
<p>According to the <a title="California Department of Finance" href="http://en.wikipedia.org/wiki/California_Department_of_Finance">California Department of Finance</a>, California&#8217;s <a title="Gross state product" href="http://en.wikipedia.org/wiki/Gross_state_product">gross state product</a> is $1.543 trillion.*<sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-cdf-13">[14]</a></sup></p>
<p>According to the Bureau of Economic Analysis, California&#8217;s gross state product is $1.727 trillion (2006 data, last updated Thursday, June 7, 2007).<sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-bea-14">[15]</a></sup></p>
<p>According to the California Legislative Analyst&#8217;s Office, &#8220;California&#8217;s gross state product is nearly $1.5 trillion&#8230;&#8221; (&#8220;Gross product in 2003&#8243;, released in 2004).<sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-econ-15">[</a><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-econ-15">16</a><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-econ-15">]</a></sup></p>
<p> </p>
<h2>Tax burden</h2>
<p>Starting in April 2009 there will be a new tax increase that is set to increase sales tax from 8.25% to 9%+.</p>
<p>In 2006 California&#8217;s overall tax burden of $10.66 per $100 of personal income was slightly above the $10.43 average for the United States.<sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-CalFactsSLF-21">[22]</a></sup> In 2008, when measured as a percentage of <a title="GDP" href="http://en.wikipedia.org/wiki/GDP">GDP</a>, California had the 6th highest tax burden of the fifty states. <sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-22">[</a><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-22">23</a><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-22">]</a></sup></p>
<p> </p>
<table border="0" cellspacing="0" cellpadding="0" width="678">
<tbody>
<tr>
<td width="67%" valign="top"><strong>Gross Domestic Product by </strong><strong><br />
Sectors as a Percent of State GDP Total: 2007</strong></td>
<td width="33%" valign="top">
<p align="right"><a href="http://www.nemw.org/gdp.htm">Total GDP</a><br />
<a href="http://www.nemw.org/gdp1.htm">  GDP by Sector</a><strong>       </strong></td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="127">
<pre><strong>State</strong></pre>
</td>
<td width="102">
<pre><strong>Real Estate and Rental</strong></pre>
</td>
<td width="96">
<pre><strong>Government</strong></pre>
</td>
<td width="108">
<pre><strong>Manufacture</strong></pre>
</td>
<td width="90">
<pre><strong>Insurance and Banking</strong></pre>
</td>
<td width="84">
<pre><strong>Professional Services</strong></pre>
</td>
<td width="84">
<pre><strong>Health Care and Social Assistance</strong></pre>
</td>
</tr>
</tbody>
</table>
<pre> 
<strong>West</strong>
  Alaska              7.3       17.5        2.2         2.8        3.5        5.2
  Arizona            15.3       12.1        7.9         8.4        6.2        7.2
  California         16.6       11.3        9.9         6.6        8.8        6.0
  Colorado           12.8       11.9        6.4         5.9        9.5        5.8
  Hawaii             17.7       22.9        1.8         4.0        4.6        6.6
  Idaho              12.5       13.5       10.3         4.7        7.5        7.1
  Kansas              8.6       14.3       15.1         5.6        5.3        7.0
  Missouri           10.0       12.1       13.3         5.9        6.5        7.8
  Montana            10.7       15.6        4.4         4.9        5.0        8.9
  Nebraska            8.7       13.7       11.3         8.4        4.6        7.2
  Nevada             15.3       10.1        4.4         7.3        5.1        4.9
  New Mexico         10.4       17.0        7.3         3.2        8.2        6.6
  North Dakota        8.1       15.0        9.5         5.7        3.3        8.6
  Oregon             13.0       12.2       19.1         5.2        5.0        7.6
  South Dakota        6.9       12.3        9.8        19.6        2.7        8.7
  Utah               11.3       13.1       11.3         9.4        6.2        5.5
  Washington         14.1       13.7       10.0         5.4        6.7        6.6
  Wyoming             7.5       13.3        3.3         2.4        2.9        4.0
Total                14.4       12.3        9.8         6.5        7.5        6.4
<strong>South</strong>
  Alabama             9.2       15.5       17.3         5.4        5.9        7.1
  Arkansas            8.9       13.5       17.8         4.0        3.8        7.7
  Dist. of Columbia  10.4       32.5        0.2         5.0       20.6        4.4
  Florida            17.1       11.6        5.0         7.1        6.6        7.4
  Georgia            11.8       13.1       11.0         6.5        6.7        6.0
  Kentucky            8.7       15.1       18.9         4.7        4.0        8.0
  Louisiana           7.4       10.3       23.0         3.1        3.9        5.4
  Mississippi         8.5       17.2       15.6         4.2        3.5        7.2
  North Carolina      9.4       12.9       18.6        12.7        4.9        6.2
  Oklahoma            8.5       15.7       11.1         4.2        4.2        6.7
  South Carolina     10.9       16.6       16.0         5.0        5.0        6.0
  Tennessee           9.7       11.0       16.1         5.8        5.6        8.9
  Texas               9.0       10.7       13.4         5.7        6.6        5.7
  Virginia           13.1       18.0        8.8         6.5       12.0        5.4
  West Virginia       9.0       17.6       11.1         4.0        3.9        9.5
Total                11.0       13.3       12.7         6.4        6.6    6.5
<strong>New England</strong>
  Connecticut        13.4        9.0       12.7        16.5        7.4        7.4
  Maine              13.3       14.3       11.0         6.6        4.8       11.0
  Massachusetts      13.9        8.8        9.9        10.6       11.3        9.2
  New Hampshire      13.7        9.4       11.1         8.1        7.0        9.0
  Rhode Island       15.1       12.4        9.6        12.1        5.3        9.3
  Vermont            12.3       13.7       11.5         5.9        5.9       10.0
Total                13.7        9.7       10.9        11.8        8.8        8.8
 
<strong>Mid-Atlantic</strong>
  Delaware           12.2        8.8        7.3        32.5        6.3        5.6
  Maryland           16.8       17.4        5.4         5.7       10.4        7.4
  New Jersey         16.6       10.3        8.8         8.3        9.0        7.2
  New York           14.3       10.0        6.0        17.9        8.4        7.2
  Pennsylvania       11.2        9.8       14.2         7.5        7.6        9.6
Total                14.3       10.8        8.3        12.8        8.5        7.7
 
<strong>Midwest</strong>
  Illinois           12.5        9.6       12.6         9.5        8.7        6.7
  Indiana             9.7        9.9       25.4         5.4        4.2        7.6
  Iowa                8.3       11.6       20.2        10.7        3.2        6.7
  Michigan           11.7       11.3       16.9         6.1        8.1        8.1
  Minnesota          12.0       10.3       13.3         9.4        6.3        8.4
  Ohio               10.6       11.1       18.2         8.1        5.8        8.2
  Wisconsin          11.8       10.9       20.6         6.9        4.5        8.5
Total                11.3       10.5       17.1         8.0        6.6        7.7
 </pre>
<p><strong>The World Factbook</strong></p>
<p>According to <a title="The World Factbook" href="http://en.wikipedia.org/wiki/The_World_Factbook">The World Factbook</a> published by the<a title="CIA" href="http://en.wikipedia.org/wiki/CIA">CIA</a>, if California were an independent state, it would have had the <strong>tenth largest economy in the world</strong>in 2007.<sup><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-17">[</a><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-17">18</a><a href="http://en.wikipedia.org/wiki/Economy_of_California#cite_note-17">]</a></sup></p>
<p>The rankings are:</p>
<h4>1.     <a title="Economy of the United States" href="http://en.wikipedia.org/wiki/Economy_of_the_United_States">United States</a></h4>
<h4>2.     <a title="Economy of the People's Republic of China" href="http://en.wikipedia.org/wiki/Economy_of_the_People%27s_Republic_of_China">China</a></h4>
<h4>3.     <a title="Economy of Japan" href="http://en.wikipedia.org/wiki/Economy_of_Japan">Japan</a></h4>
<h4>4.     <a title="Economy of India" href="http://en.wikipedia.org/wiki/Economy_of_India">India</a></h4>
<h4>5.     <a title="Economy of Germany" href="http://en.wikipedia.org/wiki/Economy_of_Germany">Germany</a></h4>
<h4>6.     <a title="Economy of the United Kingdom" href="http://en.wikipedia.org/wiki/Economy_of_the_United_Kingdom">United Kingdom</a></h4>
<h4>7.     <a title="Economy of Russia" href="http://en.wikipedia.org/wiki/Economy_of_Russia">Russia</a></h4>
<h4>8.     <a title="Economy of France" href="http://en.wikipedia.org/wiki/Economy_of_France">France</a></h4>
<h4>9.     <a title="Economy of Brazil" href="http://en.wikipedia.org/wiki/Economy_of_Brazil">Brazil</a></h4>
<h4>10.  <a title="Economy of Italy" href="http://en.wikipedia.org/wiki/Economy_of_Italy">Italy</a></h4>
<h4>11.  <a title="Economy of Spain" href="http://en.wikipedia.org/wiki/Economy_of_Spain">Spain</a></h4>
<h4>12.  <a title="Economy of Mexico" href="http://en.wikipedia.org/wiki/Economy_of_Mexico">Mexico</a></h4>
<h4>13.  <a title="Economy of Canada" href="http://en.wikipedia.org/wiki/Economy_of_Canada">Canada</a></h4>
<h4>14.  <a title="Economy of South Korea" href="http://en.wikipedia.org/wiki/Economy_of_South_Korea">South Korea</a></h4>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=62&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/06/03/some-interesting-stats-on-california-state-government-budget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Frustration about Treasury indecision</title>
		<link>http://goodoldaddy.wordpress.com/2009/03/08/frustration-about-treasury-indecision/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/03/08/frustration-about-treasury-indecision/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 18:34:21 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Dads]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[401K funds]]></category>
		<category><![CDATA[disarray]]></category>
		<category><![CDATA[financial crisis]]></category>
		<category><![CDATA[Geithner]]></category>
		<category><![CDATA[Larry Summer]]></category>
		<category><![CDATA[market collapse]]></category>
		<category><![CDATA[retirement]]></category>
		<category><![CDATA[Treasury]]></category>
		<category><![CDATA[unemployment]]></category>
		<category><![CDATA[white house]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=49</guid>
		<description><![CDATA[I realize how worried people have been about Tim Geithner&#8217;s indecision and confidence.   My retirement savings have been evaporating before my own eyes.  My google search is coming up with irate opinions from both left and right.  I am not exactly sure the reason for righteous anger from right after endorsing the financial collapse [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=49&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I realize how worried people have been about Tim Geithner&#8217;s indecision and confidence.   My retirement savings have been evaporating before my own eyes.  My google search is coming up with irate opinions from both left and right.  I am not exactly sure the reason for righteous anger from right after endorsing the financial collapse over the last 10 years or so.   And I don&#8217;t care much for the opinions from the right.  But I am trying to follow the  folks on the left showing frustration and anger.   </p>
<p>Do we have an unravelling financial disaster without passionate intervention?  Is Obama getting insulated in a bubble of his own and just does not read the pulse of the people?   But I realize he has been in power for only 6 weeks &#8230; But he ought to quickly realize his current economic team is not up to the task.    </p>
<p>So I googled: Should Obama fire Tim Geithner and his other economic team?  Here is some frustration from the the left.</p>
<p><strong></strong></p>
<p><a href="http://georgewashington2.blogspot.com/2009/03/obama-must-fire-geithner-and-summers.html"><span>Obama Must Fire Geithner and Summers</span></a></p>
<p><a title="Permanent Link to Larry Summers: Fox Guarding The Henhouse" rel="bookmark" href="http://www.prisonplanet.com/larry-summers-fox-guarding-the-henhouse.html">Larry Summers: Fox Guarding The Henhouse</a></p>
<p>Not sure where we are heading with this indecisive team handling this huge financial fiasco.</p>
<p>Feel free to channel your concerns.  I wish Obama was listening to some of this frustration.</p>
<p>Goodoldaddy</p>
<p>P.S:  May be I am getting too pessimistic too quickly.  I just found this Time article very hopeful.  This outlook should temper the anxiety of all of us.  May be we are hyperventillating.  Read this article.</p>
<p class="MsoNormal"><span><span><a href="http://www.time.com/time/specials/packages/article/0,28804,1883384_1883403,00.html"><span>Call Me Mr. Sunshine</span></a></span></span></p>
<p class="MsoNormal"><span><span><span><br />
</span></span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=49&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/03/08/frustration-about-treasury-indecision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama&#8217;s presidency: Stimulus and Bailout</title>
		<link>http://goodoldaddy.wordpress.com/2009/02/11/obamas-presidency-stimulus-and-bailout/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/02/11/obamas-presidency-stimulus-and-bailout/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 07:05:27 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Alive Rivlin]]></category>
		<category><![CDATA[bail out]]></category>
		<category><![CDATA[bipartisanship]]></category>
		<category><![CDATA[Gary Kamiya]]></category>
		<category><![CDATA[Geithener]]></category>
		<category><![CDATA[Krugman]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[white house]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=38</guid>
		<description><![CDATA[This is from my email to my good friend: Tuesday 02/10/2009 I read this Salon.com article by Gary Kamiya titled Obama&#8217;s Reagan Problem http://www.salon.com/opinion/kamiya/2009/02/10/obama_reagan/index.html This is a really good expose on Obama&#8217;s fascination with centrism.  This may very well be his Achilles heel unless he learns quickly &#8230; Kamiya brings up Obama&#8217;s campign theme: there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=38&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>This is from my email to my good friend: Tuesday 02/10/2009</em></p>
<p>I read this Salon.com article by Gary Kamiya titled <em>Obama&#8217;s Reagan Problem</em></p>
<p><a href="http://www.salon.com/opinion/kamiya/2009/02/10/obama_reagan/index.html">http://www.salon.com/opinion/kamiya/2009/02/10/obama_reagan/index.html</a></p>
<p>This is a really good expose on Obama&#8217;s fascination with centrism.  This may very well be his Achilles heel unless he learns quickly &#8230; Kamiya brings up Obama&#8217;s campign theme: there is not a red america, there is not a blue america, there is a &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..</p>
<p>Some of Obama&#8217;s confidants should arrange for tutorials by folks like Paul Krugman, Gary Kamia at the White House. Obama should get the right perspective.</p>
<p>At least for today, Geithener with all his market pleasing talk could not comfort the free market forces.  It is just like Obama was trying to please the GOP gang and drawing a blank with them.  I am even hearing that Geithener displeased lot of Obama folks with his go-easy policy in dealing with financial executives and nationalization proposals.  One article in Salon even mentioned that Geithener has displeased lot of  Obama folks and that Geithener may not survive for too long in the cabinet &#8230; which is actually better news than the all the bad news I heard today.  The market really went down today.  Let us see how many more favors will ever please the market.  This is the problem with trying to please the wrong crowd.  Now every one is pissed.  Jim Lehrer news hour had brought in Alice Rivlin, Paul Krugman and two other economists.  Only Alice Rivlin thought that Geithener&#8217;s proposals were comprehensive.  Paul Krugman did not seem to be pleased at all.  He said the proposals were  vague and confusing.  Got to see but Geithener seems to be unravelling.</p>
<p>I am trying to coin an alias for free market &#8230; free-falling market :&#8211;)</p>
<p><em><span style="font-style:normal;">Kamiya is converging on many of the themes that we were talking during our walks.   You are so right.  I am not sure why nobody in Obama&#8217;s confidants ever thought of Paul Krugman&#8217;s name for Treasury or Council of economic advisors, or Council of economic recovery, or myriad other advisory boards that Obama has appointed.  This is after Krugman won the nobel prize.  Just cannot understand.  They have managed to get all the ivy leaguers from Harvard and Columbia.  It is not like he knows nobody from Princeton.  He has several Princeton connections including Michelle Obama herself.   I will try again to send my question to whitehouse.gov: Why not Paul Krugman? Why Why &#8230;.?  Who knows I just  might get lucky.  I am not asking for much.<br />
</span> <em><br />
<em>Goodoldaddy</em> </em></em></p>
<p><em> </em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=38&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/02/11/obamas-presidency-stimulus-and-bailout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama&#8217;s fledgling presidency: Stimulus and Bailout</title>
		<link>http://goodoldaddy.wordpress.com/2009/02/08/what-is-the-right-thinking/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/02/08/what-is-the-right-thinking/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 02:36:08 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bail out]]></category>
		<category><![CDATA[bipartisanship]]></category>
		<category><![CDATA[budget shortfall]]></category>
		<category><![CDATA[defense cut]]></category>
		<category><![CDATA[executive pay limit]]></category>
		<category><![CDATA[fledgling presidency]]></category>
		<category><![CDATA[frank rich]]></category>
		<category><![CDATA[GDP shortfall]]></category>
		<category><![CDATA[Glenn Greenwald]]></category>
		<category><![CDATA[GOP]]></category>
		<category><![CDATA[Judd Gregg]]></category>
		<category><![CDATA[Krugman]]></category>
		<category><![CDATA[Maureen Dowd]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[spending]]></category>
		<category><![CDATA[stimulus bill]]></category>
		<category><![CDATA[white house]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=27</guid>
		<description><![CDATA[The following article is pretty interesting.  Several GOP senators still think that Uncle Sam should  give away the hard-earned tax payer&#8217;s money to bailout the fat cats with no strings attached.  What a sweet deal!  These preeminent GOP senators are obviously agonizing over these pay limits on their wealthy patrons.  Read these articles and spread [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=27&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following article is pretty interesting.  Several GOP senators still think that Uncle Sam should  give away the hard-earned tax payer&#8217;s money to bailout the fat cats with no strings attached.  What a sweet deal!  These preeminent GOP senators are obviously agonizing over these pay limits on their wealthy patrons.  Read these articles and spread the word around if you like. </p>
<p><a id="title_permalink" href="http://www.huffingtonpost.com/2009/02/06/gop-opposes-pay-limits-on_n_164544.html">GOP Opposes Pay Limits On Bailed-Out Bankers</a> </p>
<p><a href="http://www.salon.com/politics/war_room/2009/02/06/gop_caps/index.html">GOP quietly opposing executive pay limits</a></p>
<p>It is interesting to note that the so many in GOP, after eight years of profligacy and insane budget deficits, are suddenly worried about budget deficits.  Here come our new deficit hawks out of the blue.  Where were these guys?  What were they doing for eight long years?   They have a new battle cry: crusade against pork and wasteful spending.  It all sounds so cliche.  As per AP wire article, <a href="http://www.salon.com/wires/ap/2009/02/08/D967G6QG6_mccain_economy/index.html">McCain: Democrats no more bipartisan than GOP</a>,  John McCain is said to be &#8220;<em>critical of Democrats for building up a national debt that is going to hamper the economy in the future and require the next generation to pay it down&#8221;</em>.   Hypocrisy, thy name is &#8230;..!</p>
<p>My other favorite articles for this week:</p>
<p>(1) As always, Frank Rich has an excellent article talking about double standards sparing neither democrats nor what he calls the neo-Hoover Republicans:</p>
<p><a href="http://www.nytimes.com/2009/02/08/opinion/08rich.html?_r=2"></a><a href="http://www.nytimes.com/2009/02/08/opinion/08rich.html?_r=2">Slumdogs Unite!</a></p>
<p>(2)  Maureen Dowd&#8217;s NYTimes article <a href="http://www.nytimes.com/2009/02/08/opinion/08dowd.html">Potomac’s Postpartisan Depression</a></p>
<p>What struck me in this article was that Obama team couldn’t even get its pick for commerce secretary, the Republican Senator Judd Gregg, to vote for the stimulus bill.  Apparently, Mr. Judd Gregg would rather abstain.  I cannot understand why a conservative idealog like Judd Gregg is the choice for this position in the first place.   This sounds like irrational bipartisanship.</p>
<p>(3) If you get a chance, do read this detailed essay from Glenn Greenwald to dispel Robert Kagan&#8217;s misrepresentation of Obama&#8217;s defense budget projections.</p>
<p class="MsoNormal"><span><span><a href="http://www.salon.com/opinion/greenwald/2009/02/03/kagan/index.html">The &#8220;defense cut&#8221; falsehood from The Washington Post and Robert Kagan</a></span></span></p>
<p class="MsoNormal">(4) Paul Krugman&#8217;s  02/07/2009 blog:  <a title="Permanent Link to What the centrists have wrought" rel="bookmark" href="http://krugman.blogs.nytimes.com/2009/02/07/what-the-centrists-have-wrought/">What the centrists have wrought</a></p>
<p class="MsoNormal">Krugman is reasoning that the Senate stimulus version (~$820 billion) is way smaller relative to the projected GDP shortfall of $2 trillion over the next two years and that the spending trimmed in this version is really essential for job creation. Unfortunately, our Senators do not listen to reason even when it comes from a Nobel Laureate. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=27&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/02/08/what-is-the-right-thinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Dad&#8217;s Journal for the week (02/02/2009)</title>
		<link>http://goodoldaddy.wordpress.com/2009/02/02/dads-journal-for-the-week-02022009/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/02/02/dads-journal-for-the-week-02022009/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 03:28:52 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Dads]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[Brooklyn]]></category>
		<category><![CDATA[coop]]></category>
		<category><![CDATA[job market]]></category>
		<category><![CDATA[mortgage payments]]></category>
		<category><![CDATA[nyc real estate]]></category>
		<category><![CDATA[online community]]></category>
		<category><![CDATA[Queens]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[studio]]></category>
		<category><![CDATA[visual design]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=23</guid>
		<description><![CDATA[I am so proud that my older daughter is doing some long term thinking at such a young age (23).   My baby is growing up.  She  is tired of losing money on renting.  She wants to  buy a small studio in either Brooklyn or Queens with reasonable commute time to Wall Street.  I have some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=23&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am so proud that my older daughter is doing some long term thinking at such a young age (23).   My baby is growing up.  She  is tired of losing money on renting.  She wants to  buy a small studio in either Brooklyn or Queens with reasonable commute time to Wall Street.  I have some general questions for my audience.  She has saved up $25K for down payment.  She does not want to share here studio.   Is this an opportune time to buy an affordable studio where she lives?  She is looking to find a small studio.  Living in Dallas, obviously I don&#8217;t know much about NYC real estate.   Some obvious things she is looking for: (i) being close to subway station,  (ii) she can only afford monthly payments &lt; $2000,  (iii) 30 year fixed rate,  (iv) safe neighborhood.  Any ideas and suggestions on timing, long term prospects for equity buildup in Queens or Brooklyn.  She currently pays about $1400 for a studio in Upper east.  She loves the neighborhood but she wants her own place and does not want to keep renting.  Sincerely appreciate if you could post any suggestions, general thoughts, cautions considering the current  economic conditions.    I am on a steep learning curve on NYC real estate.  I want to give her good advice on this matter.</p>
<p>About my younger daughter.  My younger daughter is a tech writer  and works for a small telecom company in Dallas.  She also works part-time for a web startup doing visual design, UI mockups,  and layouts.   She is looking to get a full-time job in  visual design and writing for  on-line community and social networking sites.   She is willing to relocate.  Appreciate some thoughts and suggestions on how the job market is for visual design and on-line community and social networking in the current slumping job market.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=23&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/02/02/dads-journal-for-the-week-02022009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Obama&#8217;s fledgling presidency</title>
		<link>http://goodoldaddy.wordpress.com/2009/02/01/obama-fledgling-presidency/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/02/01/obama-fledgling-presidency/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 22:05:26 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Dads]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bill signing]]></category>
		<category><![CDATA[Daschle]]></category>
		<category><![CDATA[equal pay legislation]]></category>
		<category><![CDATA[frank rich]]></category>
		<category><![CDATA[Glenn Greenwald]]></category>
		<category><![CDATA[Lilly Ledbetter]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[white house]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=17</guid>
		<description><![CDATA[This is my weekly blog#2 (Week of 2009/02/01) to keep track of the fledgling Obama presidency.   Considering what an enthusiastic supporter I have been of Obama,  I am disappointed that the new administration is sticking by Daschle.   I used to think highly of Tom Daschle until recently.  I have been following a number of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=17&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my weekly blog#2 (Week of 2009/02/01) to keep track of the fledgling Obama presidency.  </p>
<p>Considering what an enthusiastic supporter I have been of Obama,  I am disappointed that the new administration is sticking by Daschle.   I used to think highly of Tom Daschle until recently.  I have been following a number of on-line articles in WaPo, Salon.com, etc.   I am beginning to admire Glenn Greenwald for his passionate views.  I hope lot of folks write to the white house  (change.gov or whitehouse.gov) showing strong disapproval on this matter.  I strongly feel Obama should dump Daschle right away.   I know it is an embarassment to acknowledge this faux pas for Obama to drop Daschle but who cares.    Over this week, I have seen some really positive signs but I am also seeing signs of how the White house and Washington establishment can cloud the judgement of even the most well minded leaders.   </p>
<p class="MsoNormal"><span><span><a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/01/31/AR2009013102021.html?wpisrc=newsletter">Daschle Delayed Revealing Tax Glitch (Ceci Connolly, et al)</a></span></span></p>
<p class="MsoNormal"><span><span><a href="http://www.salon.com/opinion/greenwald/index.html">The Daschles: feeding at the Beltway trough (Glenn Greenwald)</a></span></span></p>
<p>I reluctantly accepted the tax arrears of Geithener since the mistakes did not look too egregious.  But I  am not  at all happy with the exception they are seeking to the newly constituted ethics guidelines to get William Lynn into the deputy secretary of defense.   I think they  should dump William Lynn as well to give a consistent message.  It is hard to build ones credibility but it is so easy  to lose all of it with mistakes like this.<br />
<a href="http://www.salon.com/opinion/greenwald/index.html"></a></p>
<p><a id="title_permalink" href="http://www.huffingtonpost.com/2009/01/23/william-lynn-obamas-first_n_160512.html">William Lynn, Obama&#8217;s First Ethics Exception, Causing Massive Headaches</a></p>
<p>Hope Obama does not get sucked into the establishment &#8220;bubble&#8221;</p>
<p>But this does not take away any thing from some of the great policy moves that he is making that makes me so happy that I voted for him.  If you ask me,  Obama is showing great strength when he is true to his liberal policy positions and not very  effective when he seems to make moves to please the right.   Look what happened to the stimulus bill in the house.  He tried his charm offense only to draw a blank from the republicans.</p>
<p><a id="title_permalink" href="http://www.huffingtonpost.com/2009/01/26/obama-al-arabiya-intervie_n_161127.html">OBAMA AL-ARABIYA INTERVIEW: FULL TEXT</a> :  This is such a refreshing change from the Bush world view.  This was really  long overdue.  Also see a nice Glenn Greenwald&#8217;s article: <a href="http://www.salon.com/opinion/greenwald/2009/01/30/israel/index.html">Increasing even-handedness in the Middle East</a></p>
<p class="MsoNormal"><span><span><a href="http://www.nytimes.com/2009/01/30/us/politics/30ledbetter-web.html?scp=3&amp;sq=lily%20ledbetter&amp;st=cse">Obama Signs Equal-Pay Legislation</a>  This nytimes article talks about Lilly Ledbetter Fair Play act.  It is such great symbolism.  Being a good old daddy of two career-oriented, ambitious daughters, this is great stuff.</span></span></p>
<p class="MsoNormal">The politics of the right is baffling me.  Not a single republican voted for the stimulus bill in the house.   Is not the right burying their head in the proverbial sand at this crucial juncture?  How can the right be oblivious to the fact that the same policies that they are proposing now (more business tax cuts and  deregulation) were implemented for eight long years and have resulted in the current collapse.   It is political amnesia.    The right should be responsible and own up to the mess they have created.  You can see this great article (as always) from Frank Rich: <a href="http://www.nytimes.com/2009/02/01/opinion/01rich.html?em">Herbert Hoover Lives</a> which captures this picture really well.</p>
<p class="MsoNormal">Hope to hear from you whether you agree with me or disagree with me.  See you next week.</p>
<p class="MsoNormal">GoodOldaddy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=17&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/02/01/obama-fledgling-presidency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
		<item>
		<title>My very first blog</title>
		<link>http://goodoldaddy.wordpress.com/2009/01/24/my-very-first-blog/</link>
		<comments>http://goodoldaddy.wordpress.com/2009/01/24/my-very-first-blog/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 21:12:25 +0000</pubDate>
		<dc:creator>goodoldaddy</dc:creator>
				<category><![CDATA[Dads]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[parenting]]></category>

		<guid isPermaLink="false">http://goodoldaddy.wordpress.com/?p=3</guid>
		<description><![CDATA[This is my very first blog.  So you got to be patient with me.  My younger daughter has started blogging with wordpress.  It is her encouragement that got me into blogging.  Where do I start?   I am so happy when I get a call from my daughter who lives in Manhattan.  She loves running. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=3&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my very first blog.  So you got to be patient with me.  My younger daughter has started blogging with wordpress.  It is her encouragement that got me into blogging.  Where do I start?  </p>
<p>I am so happy when I get a call from my daughter who lives in Manhattan.  She loves running.  She has not been able to run for the last 2 weeks due to knee pain.  The problem is she is not used to warm ups before her runs.  I am advising her that warm-ups will make a huge difference.   I am also asking her  to change her running shoes more frequently (every 4 months)  as she runs quite a lot.  I have been an avid jogger for over 25 years but stopped running recently because my knees stopped  cooperating with me.  I really miss my running  but cannot do much.  I would like my daughters to enjoy the fruits of  running  lot longer than I.</p>
<p>My older daughter is a software analyst and loves her life in NYC.  But it seems living alone in Manhattan can be daunting.  It is not easy for young people to make friends outside their work place.   Rest of this topic in a subsequent blog.</p>
<p>Now for political events unfolding &#8230;</p>
<p>I am really impressed about the personality of our new president.  I was reading this nice AP article today:  Obama breaks from Bush, avoids divisive stands by Liz Sidoti, AP.  This is a good read.</p>
<p><a href="http://www.salon.com/wires/ap/2009/01/24/D95TJ9KO0_obama_first_week/index.html">http://www.salon.com/wires/ap/2009/01/24/D95TJ9KO0_obama_first_week/index.html</a></p>
<p>Here is a small segment of the article that caught my attention.</p>
<p><span><span><em>&#8220;In one Oval Office ceremony, Obama went through each executive order as he signed them, reading parts of each and methodically explaining them. He even halted a few times to ask for clarifying details from his White House counsel. That sort of deferral to someone else in a public setting and admission of a less-than-perfect command of the facts was never Bush&#8217;s style&#8221;</em></span></span></p>
<div>Considering how new he is to his job, this is  incredible.   I cannot recall another president explaining executive orders as he signs them.  I know it is a long hard road ahead but he is so reassuring with his calm attitude.   I want to follow closely how he handles the crises as he grows into the job.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goodoldaddy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goodoldaddy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goodoldaddy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goodoldaddy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goodoldaddy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goodoldaddy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goodoldaddy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goodoldaddy.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goodoldaddy.wordpress.com&amp;blog=6112970&amp;post=3&amp;subd=goodoldaddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goodoldaddy.wordpress.com/2009/01/24/my-very-first-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/81c7f255d697761619eb21cb83a203b0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">goodoldaddy</media:title>
		</media:content>
	</item>
	</channel>
</rss>
