<?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>Shay Phillips&#039; Site</title>
	<atom:link href="http://www2.palomar.edu/pages/sphillips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www2.palomar.edu/pages/sphillips</link>
	<description>... where some things just happen ...</description>
	<lastBuildDate>Fri, 19 Oct 2012 21:28:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>California Proposistion 30</title>
		<link>http://www2.palomar.edu/pages/sphillips/california-proposistion-30/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/california-proposistion-30/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 18:49:03 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=71</guid>
		<description><![CDATA[Even though it would be temporarily beneficial to me I am not supporting Proposition 30. The following comes from the Christian Citizenship Council of San Diego (http://christiancitizenshipcouncil.blogspot.com/) &#8220;Concerns: Raises ~ $40B over 4 years (sales tax increase) and 7 years (income tax increase). California has highest sales tax in nation; second in income tax (highest if passed). [...]]]></description>
				<content:encoded><![CDATA[<p>Even though it would be temporarily beneficial to me I am not supporting Proposition 30. The following comes from the Christian Citizenship Council of San Diego (<a href="http://christiancitizenshipcouncil.blogspot.com/">http://christiancitizenshipcouncil.blogspot.com/</a>)</p>
<blockquote><p>&#8220;Concerns: Raises ~ $40B over 4 years (sales tax increase) and 7 years (income tax increase). California has highest sales tax in nation; second in income tax (highest if passed). Businesses pay large portion of sales taxes and will pass onto consumer. How much is enough for schools (open-ended)?</p>
<p>Consider: Constitutional balanced budget requirement ignored for years (Eccl 5:4-7), should further fiscal irresponsibility be encouraged by a regressive sales tax and punishing wealth generators? Revenue designated for schools subject to Prop 98 requirements, with excess used elsewhere (bait and switch; Proverbs 20:14). Temporary nature of tax creates dependence and harder problems later (Prov 22:3). There are consequences to accumulated debt (Proverbs 22:7; Psalm 37:21). If legislature incapable of balancing budget now, how will more tax revenue make the process any better (1 Tim 6:10a)? Prior temporary sales tax didn’t “solve” budget problem, why would this (Prov 26:11)?&#8221;</p></blockquote>
<div class='kindleWidget kindleLight' ><img class="colorbox-71"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/california-proposistion-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP with IIS 7 Rewrite Rules in a Sub Folder</title>
		<link>http://www2.palomar.edu/pages/sphillips/cakephp-with-iis-7-rewrite-rules-in-a-sub-folder/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/cakephp-with-iis-7-rewrite-rules-in-a-sub-folder/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 16:53:16 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=30</guid>
		<description><![CDATA[My co-worker pointed me to a new PHP Database MVC resource called CakePHP but I couldn&#8217;t get the URL Rewrite rules to work on IIS 7. After much trouble shooting I finally tweaked the web.config file to work with CakePHP installed in a sub folder. Here is the web.config file I used with CakePHP in a [...]]]></description>
				<content:encoded><![CDATA[<p>My co-worker pointed me to a new PHP Database MVC resource called CakePHP but I couldn&#8217;t get the URL Rewrite rules to work on IIS 7. After much trouble shooting I finally tweaked the web.config file to work with CakePHP installed in a sub folder.</p>
<p>Here is the web.config file I used with CakePHP in a sub folder.</p>
<pre> &lt;configuration&gt;
   &lt;system.webServer&gt;
     &lt;rewrite&gt;
       &lt;rules&gt;
         &lt;clear/&gt;
         &lt;rule name="Imported Rule 0" stopProcessing="true"&gt;
           &lt;match url="^(img|css|files|js)(.*)$"&gt;&lt;/match&gt;
           &lt;action type="Rewrite" url="/{Path_To_CakePHP_Directory}/app/webroot/{R:1}{R:2}" appendQueryString="false"&gt;&lt;/action&gt;
         &lt;/rule&gt;
         &lt;rule name="Imported Rule 1" stopProcessing="true"&gt;
           &lt;match url="^(.*)$" ignoreCase="false" /&gt;
           &lt;conditions logicalGrouping="MatchAll"&gt;
             &lt;add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /&gt;
             &lt;add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /&gt;
           &lt;/conditions&gt;
           &lt;action type="Rewrite" url="index.php?url={R:1}" appendQueryString="true" /&gt;
         &lt;/rule&gt;
         &lt;rule name="Imported Rule 2" stopProcessing="true"&gt;
           &lt;match url="^$" ignoreCase="false" /&gt;
           &lt;action type="Rewrite" url="/{Path_To_CakePHP_Directory}/app/webroot/" /&gt;
         &lt;/rule&gt;
         &lt;rule name="Imported Rule 3" stopProcessing="true"&gt;
           &lt;match url="(.*)" ignoreCase="false" /&gt;
           &lt;action type="Rewrite" url="/{Path_To_CakePHP_Directory}/app/webroot/{R:1}" /&gt;
         &lt;/rule&gt;
         &lt;rule name="Imported Rule 4" stopProcessing="true"&gt;
           &lt;match url="^(.*)$" ignoreCase="false" /&gt;
           &lt;conditions logicalGrouping="MatchAll"&gt;
             &lt;add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /&gt;
             &lt;add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /&gt;
           &lt;/conditions&gt;
           &lt;action type="Rewrite" url="index.php?url={R:1}" appendQueryString="true" /&gt;
         &lt;/rule&gt;
       &lt;/rules&gt;
     &lt;/rewrite&gt;
   &lt;/system.webServer&gt;
 &lt;/configuration&gt;</pre>
<div class='kindleWidget kindleLight' ><img class="colorbox-30"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/cakephp-with-iis-7-rewrite-rules-in-a-sub-folder/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Interesting Remote Computer Lab Idea</title>
		<link>http://www2.palomar.edu/pages/sphillips/interesting-remote-computer-lab-idea/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/interesting-remote-computer-lab-idea/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 17:29:20 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=25</guid>
		<description><![CDATA[The iSchool remote lab. https://answers.syr.edu/display/ischool/iSchool+Remote+Lab I wonder if we could implement something similar to this at Palomar College? Send to Kindle]]></description>
				<content:encoded><![CDATA[<p>The iSchool remote lab. <a href="https://answers.syr.edu/display/ischool/iSchool+Remote+Lab">https://answers.syr.edu/display/ischool/iSchool+Remote+Lab</a></p>
<p>I wonder if we could implement something similar to this at Palomar College?</p>
<div class='kindleWidget kindleLight' ><img class="colorbox-25"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/interesting-remote-computer-lab-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone</title>
		<link>http://www2.palomar.edu/pages/sphillips/windows-phone/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/windows-phone/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 19:34:06 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=21</guid>
		<description><![CDATA[First post from Windows Phone. The app needs a little tweaking so I can use it in landscape mode. Posted from WordPress for Windows Phone Send to Kindle]]></description>
				<content:encoded><![CDATA[<p>First post from Windows Phone. The app needs a little tweaking so I can use it in landscape mode.</p>
<p>Posted from WordPress for Windows Phone</p>
<div class='kindleWidget kindleLight' ><img class="colorbox-21"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/windows-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Publishing Programs</title>
		<link>http://www2.palomar.edu/pages/sphillips/blog-publishing-programs/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/blog-publishing-programs/#comments</comments>
		<pubDate>Tue, 17 May 2011 21:57:12 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[windows live writer]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/2011/05/17/blog-publishing-programs/</guid>
		<description><![CDATA[Since I am starting to post on this site now I thought I would give mention to some of the tools I use for creating posts. The first tool I am going to talk about is Windows Live Writer. I published this post using Windows Live Writer 2011 on my Windows 7 computer. It has [...]]]></description>
				<content:encoded><![CDATA[<p>Since I am starting to post on this site now I thought I would give mention to some of the tools I use for creating posts. The first tool I am going to talk about is <a href="http://explore.live.com/windows-live-writer" target="_blank">Windows Live Writer</a>.</p>
<p>I published this post using Windows Live Writer 2011 on my Windows 7 computer. It has a lot of nice options for a free software program. It is very easy to setup with WordPress based blogs and gives you a lot of basic word processing type options such as spell-check, font selection and other tools. The interface uses the new Ribbon that was introduced in Word 2007.</p>
<p>The program is extendable via <a href="http://plugins.live.com/writer/browse?orderby=featured&amp;page=1" target="_blank">plugins</a> for adding more functionality. It also has built-in options for inserting pictures and videos from multiple sources. You also have a quick preview option to see your post before actually publishing it.</p>
<p>If your running a Windows operating system I would recommend giving it try to see if it makes publishing to WordPress a lot easier.</p>
<div class='kindleWidget kindleLight' ><img class="colorbox-18"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/blog-publishing-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Questions for the Day!</title>
		<link>http://www2.palomar.edu/pages/sphillips/two-questions-for-the-day/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/two-questions-for-the-day/#comments</comments>
		<pubDate>Mon, 16 May 2011 13:57:38 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=16</guid>
		<description><![CDATA[What&#8217;s the point? &#8211; What is the end goal of doing what you are doing? Are you trying to accomplish something? Are you trying to get somewhere? Think about the point! Is it worth it? &#8211; Is the goal, accomplishment, or destination worth getting? Send to Kindle]]></description>
				<content:encoded><![CDATA[<p>What&#8217;s the point? &#8211; What is the end goal of doing what you are doing? Are you trying to accomplish something? Are you trying to get somewhere? Think about the point!</p>
<p>Is it worth it? &#8211; Is the goal, accomplishment, or destination worth getting?</p>
<div class='kindleWidget kindleLight' ><img class="colorbox-16"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/two-questions-for-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here we go!</title>
		<link>http://www2.palomar.edu/pages/sphillips/here-we-go/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/here-we-go/#comments</comments>
		<pubDate>Thu, 12 May 2011 05:22:08 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=7</guid>
		<description><![CDATA[This is the first post for my new WordPress site. Pardon my dust as I get this site up and running. Send to Kindle]]></description>
				<content:encoded><![CDATA[<p>This is the first post for my new WordPress site. Pardon my dust as I get this site up and running.</p>
<div class='kindleWidget kindleLight' ><img class="colorbox-8"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/here-we-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www2.palomar.edu/pages/sphillips/hello-world-2/</link>
		<comments>http://www2.palomar.edu/pages/sphillips/hello-world-2/#comments</comments>
		<pubDate>Wed, 11 May 2011 18:51:15 +0000</pubDate>
		<dc:creator>Shay Phillips</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[art]]></category>

		<guid isPermaLink="false">http://www2.palomar.edu/pages/sphillips/?p=1</guid>
		<description><![CDATA[This is only the beginning! Send to Kindle]]></description>
				<content:encoded><![CDATA[<p>This is only the beginning!</p>
<p><a href="http://www2.palomar.edu/pages/sphillips/files/2011/05/shay_art_style.jpg"><img class="aligncenter size-medium wp-image-9 colorbox-7" src="http://www2.palomar.edu/pages/sphillips/files/2011/05/shay_art_style-300x270.jpg" alt="Custom Drawing of Shay" width="300" height="270" /></a></p>
<div class='kindleWidget kindleLight' ><img class="colorbox-7"  src="http://www2.palomar.edu/pages/sphillips/wp-content/plugins/send-to-kindle/media/white-15.png" /><span>Send to Kindle</span></div>]]></content:encoded>
			<wfw:commentRss>http://www2.palomar.edu/pages/sphillips/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
