<?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>Drakos7</title>
	<atom:link href="http://drakos7.net/feed" rel="self" type="application/rss+xml" />
	<link>http://drakos7.net</link>
	<description></description>
	<lastBuildDate>Thu, 08 Mar 2012 22:15:16 +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>Installing PHP 5.4.0RC8 and Apache 2.4 on Ubuntu 11.10</title>
		<link>http://drakos7.net/2012/02/installing-php-5-4-0rc8-and-apache-2-4-on-ubuntu-11-10</link>
		<comments>http://drakos7.net/2012/02/installing-php-5-4-0rc8-and-apache-2-4-on-ubuntu-11-10#comments</comments>
		<pubDate>Sat, 25 Feb 2012 03:05:11 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=522</guid>
		<description><![CDATA[About once every other week I try and spend some time at work thinking ahead. With PHP 5.4 on the horizon I began to wonder how our current Zend Framework application would fare if the SysAdmins decided to jump straight &#8230;<p class="read-more"><a href="http://drakos7.net/2012/02/installing-php-5-4-0rc8-and-apache-2-4-on-ubuntu-11-10">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>About once every other week I try and spend some time at work thinking ahead. With PHP 5.4 on the horizon I began to wonder how our current <a href="http://framework.zend.com" target="_blank">Zend Framework</a> application would fare if the SysAdmins <a href="http://drakos7.net/wp-content/uploads/2012/02/php54Apache241.jpg"><img class="alignright size-thumbnail wp-image-529" title="php54Apache241" src="http://drakos7.net/wp-content/uploads/2012/02/php54Apache241-150x150.jpg" alt="" width="150" height="150" /></a>decided to jump straight from PHP 5.2 to PHP 5.4. Would the site work at all? One way to find out. Lets install <a href="http://www.php.net/archive/2012.php#id2012-02-24-1" target="_blank">PHP 5.4RC8</a> and <a href="http://httpd.apache.org" target="_blank">Apache 2.4</a>.</p>
<p>I started by creating a fresh Ubuntu 11.10 VM. <em>In complete disclosure, I removed some of the unneeded packages like LibreOffice first.</em> I then cloned it so I would always have a base to work off of in the future.</p>
<h3>Build Environment</h3>
<p>Open a terminal prompt and switch to root.</p>
<pre class="brush: plain; title: ; notranslate">sudo su -</pre>
<p>This just makes life easier throughout the process. Normally I would recommend only switching to root when you fully need to, like when you run <em>apt-get install</em> or <em>make install</em>. Now lets make sure we have all the build environment pieces we need.</p>
<pre class="brush: plain; title: ; notranslate">
apt-get update
apt-get -y -q install make g++ flex bison build-essential zlib1g-dev binutils \
cmake automake autoconf libmcrypt-dev libmhash-dev libxslt1-dev \
libtidy-dev libbz2-dev libxml2-dev libssl-dev libmysqlclient16 libmysqlclient16-dev \
libpng12-dev libpng12-0 libpng3 libjpeg62 libjpeg62-dev libxpm-dev libpcre3 \
libpcre3-dev zlib1g zlib1g-dev libltdl-dev libltdl7 pkg-config \
libcurl4-openssl-dev libfreetype6 libfreetype6-dev libc-client2007e \
libc-client2007e-dev libkrb5-3 libkrb5-dev openssl libglobus-openssl \
libglobus-openssl-dev libcurl4-openssl-dev libicu-dev libicu44 libpspell-dev \
linux-libc-dev libc-dev-bin libc-bin libc-client2007e-dev eglibc-source \
libkrb5-3 libkrb5-dev libkrb53 libkrb5support0 libncurses5-dev libncurses5 \
ncurses-base ncurses-bin ncurses-term libaio-dev libedit-dev lynx
</pre>
<p>Certainly some of those are not totally needed if we are only checking to see if things install, but I want to make sure we have lots of bases covered. Now, time to get Apache 2.4. You can skip this portion if you want to only install PHP 5.4.</p>
<h3>Apache</h3>
<p>For Apache we need three pieces: the <a href="http://apr.apache.org/" target="_blank">Apache Portable Runtime</a>, <a href="http://apr.apache.org/" target="_blank">APR Utils</a>, and the <a href="http://httpd.apache.org/" target="_blank">Httpd server</a> itself. Feel free to find a closer mirror. This code will download the latest greatest for today and install it into <em>/usr/local/</em></p>
<pre class="brush: plain; title: ; notranslate">
# APR
wget http://mirrors.axint.net/apache//apr/apr-1.4.6.tar.gz
tar -xvzf apr-1.4.6.tar.gz
cd apr-1.4.6/
./configure
make
make install
cd ..

# APR Utils
wget http://mirrors.axint.net/apache//apr/apr-util-1.4.1.tar.gz
tar -xvzf apr-util-1.4.1.tar.gz
cd apr-util-1.4.1
./configure --with-apr=/usr/local/apr
make
make install
cd ..

# Apache
wget http://apache.petsads.us//httpd/httpd-2.4.1.tar.gz
tar -xvzf httpd-2.4.1.tar.gz
cd httpd-2.4.1
./configure --enable-file-cache --enable-cache --enable-disk-cache --enable-mem-cache --enable-deflate --enable-expires --enable-headers --enable-usertrack --enable-ssl --enable-cgi --enable-vhost-alias --enable-rewrite --enable-so --with-apr=/usr/local/apr/
make
make install
cd ..
</pre>
<p>The above worked rather painlessly for me once I knew that I had to install APR and APR Utils before the Httpd server. We will do the configuring of Apache in a bit. Lets install PHP 5.4RC8 first.</p>
<h3>PHP</h3>
<pre class="brush: plain; title: ; notranslate">
wget http://downloads.php.net/stas/php-5.4.0RC8.tar.gz
tar -xvzf php-5.4.0RC8.tar.gz
cd php-5.4.0RC8
'./configure' '--disable-debug' '--enable-inline-optimization' '--disable-all' '--enable-libxml' '--enable-session' '--enable-xml' '--enable-hash' '--with-pear' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-layout=GNU' '--enable-filter' '--with-pcre-regex' '--with-zlib' '--enable-simplexml' '--enable-xmlwriter' '--enable-dom' '--with-openssl' '--enable-pdo' '--with-pdo-sqlite' '--with-readline' '--with-sqlite3' '--with-iconv' '--disable-phar' '--with-libedit' '--enable-exif' '--with-bz2' '--with-gettext' '--with-mcrypt' '--with-mhash' '--with-gd' '--with-jpeg-dir' '--with-png-dir' '--with-zlib-dir' '--with-xpm-dir' '--with-xsl' '--with-tidy' '--with-freetype-dir' '--enable-gd-native-ttf' '--enable-mbstring' '--enable-sockets' '--enable-dom' '--enable-xml' '--enable-soap' '--enable-libxml' '--enable-session' '--enable-simplexml' --with-kerberos --with-curl '--with-mysql-sock' '--with-mysql=mysqlnd' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' '--with-config-file-path=/usr/local/etc'

make
make install</pre>
<p>PHP has tons of config options. I recommend checking your current install to see what it was built with and add those flags. Once nice thing here is that mysqlnd comes with PHP 5.4 so we do not have to link to an existing MySQL install. Another thing to note is that this sets php&#8217;s config directory to <em>/usr/local/etc</em>. Make sure to customize <em>&#8211;with-config-file-path</em> to wherever you want to store your <em>php.ini</em>.</p>
<h3>Configuration</h3>
<p>Speaking of php.ini, lets put one in place now.</p>
<pre class="brush: plain; title: ; notranslate">cp php.ini-development /usr/local/etc/php.ini</pre>
<p>And lets set up where Apache can find our files (unless you like putting things in <em>/usr/local/apache2/htdocs/</em>).</p>
<pre class="brush: plain; title: ; notranslate">mkdir /var/www/
chgrp -R www-data /var/www/</pre>
<p>Ready to configure Apache? I wasn&#8217;t! It had been over 4 years since I had done a source compile (I used to use Gentoo linux). Open up <em>/usr/local/apache2/conf/httpd.conf</em> in your favorite editor.</p>
<ol>
<li>Replace instances of <em>/usr/local/apache2/htdocs</em> with <em>/var/www </em>. There should be two.</li>
<li>Add <em>index.php</em> to the <em>DirectoryIndex</em> line</li>
<li>I uncommented #<em>LoadModule rewrite_module modules/mod_rewrite.so</em> and</li>
<li><em>#Include conf/extra/httpd-vhosts.conf</em> because I knew I was going to need them for my later testing.</li>
<li>And finally I added 2 lines to make sure we parse the PHP</li>
</ol>
<pre class="brush: plain; title: ; notranslate">AddHandler php5-script .php
AddType text/html .php</pre>
<p><span style="line-height: 18px;">I wanted to make sure Apache would start on boot so I added it to the main runlevel.</span></p>
<pre class="brush: plain; title: ; notranslate">ln -s -T /usr/local/apache2/bin/apachectl /etc/rc2.d/S80apache</pre>
<p>To find out what rcX.d you should use just execute <em>runlevel</em>. Shove the number it returns (2 in my case) in for X.</p>
<h3>Moment of Truth</h3>
<p>Three steps left. First, start up apache. If everything has gone well so far this should cause you no grief.</p>
<pre class="brush: plain; title: ; notranslate">/usr/local/apache2/bin/apachectl start</pre>
<p>Create a test php page:</p>
<pre class="brush: plain; title: ; notranslate">echo &quot;&lt;?php phpinfo();&quot; | cat &gt; /var/www/index.php</pre>
<p>And finally navigate to <em>http://localhost/</em> on your VM.</p>
<h3>Final Notes</h3>
<p>I re-ran this process a couple times on copies of the initial VM clone to refine it a bit. It all worked stellar today. YMMV of course. I had to do some additional steps after this to test our <a href="http://framework.zend.com" target="_blank">ZF</a> application since we use Oracle instead of MySQL. So far I have only found one minor Notice that popped up in 5.4 which was trivial to clean. Now if I could convince the SAs to upgrade to 5.4 once it goes gold&#8230;</p>
<p>Enjoy testing your code on PHP 5.4!</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2012/02/installing-php-5-4-0rc8-and-apache-2-4-on-ubuntu-11-10/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Otto&#8217;s, for the cure</title>
		<link>http://drakos7.net/2012/02/ottos-for-the-cure</link>
		<comments>http://drakos7.net/2012/02/ottos-for-the-cure#comments</comments>
		<pubDate>Sun, 12 Feb 2012 19:44:08 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=487</guid>
		<description><![CDATA[Otto&#8217;s Cure. The German Remedy for Throat and Lung Diseases Part of my Dad&#8217;s old medicine collection.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-488" title="Otto's Cure" src="http://drakos7.net/wp-content/uploads/2012/02/IMG_0092-150x150.jpg" alt="" width="150" height="150" /></p>
<p><strong>Otto&#8217;s Cure.</strong><br />
<strong>The German Remedy</strong><br />
<strong>for Throat and Lung Diseases</strong></p>
<p><em>Part of my Dad&#8217;s old medicine collection.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2012/02/ottos-for-the-cure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZF Config XML vs Ini Showdown</title>
		<link>http://drakos7.net/2012/02/zf-config-xml-vs-ini-showdown</link>
		<comments>http://drakos7.net/2012/02/zf-config-xml-vs-ini-showdown#comments</comments>
		<pubDate>Fri, 10 Feb 2012 21:08:17 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=470</guid>
		<description><![CDATA[Back at php&#124;tek11 Rob Allen gave a talk on optimizing Zend Framework. During the tutorial he pointed out how you could cache your application config files so that they are not loaded and parsed at every request. This got me thinking &#8230;<p class="read-more"><a href="http://drakos7.net/2012/02/zf-config-xml-vs-ini-showdown">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Back at <a href="http://tek11.phparch.com/" target="_blank">php|tek11</a> <a href="http://akrabat.com/" target="_blank">Rob Allen</a> gave a <a href="http://tek11.phparch.com/talk-synopses/#Optimizing-a-Zend-Framework-application" target="_blank">talk</a> on optimizing <a href="http://framework.zend.com" target="_blank">Zend Framework</a>. During the tutorial he pointed out how you could cache your application config files so that they are not loaded and parsed at every request. This got me thinking about something that had been bugging me for a long time. What is the best format for your config file?</p>
<p>Back before ZF 1.0 there was a fair bit of confusion on how to do everything &#8220;right&#8221;, especially setting up a &#8220;modular&#8221; build. One of the first good examples out there was made by <a href="http://www.dasprids.de/" target="_blank">Dasprid</a>, and he used an xml based application config. We are talking back in early 2007 when it was the wild west for ZF. Since then, I only see people using ini files.</p>
<p>Well, here it finally is, the official synthetic Zend_Config benchmark shootout.</p>
<p><span id="more-470"></span></p>
<p>I created an ini and a xml config file with the same content.</p>
<pre class="brush: plain; title: ; notranslate">
[production]
bootstrap.path=&quot;../application/Bootstrap.php&quot;
bootstrap.class=&quot;Bootstrap&quot;
routes=&quot;../application/config/routes.xml&quot;
phpSettings.display_startup_errors=0
phpSettings.display_errors=0
phpSettings.date.timezone=&quot;America/New_York&quot;
autoloadernamespaces[]=&quot;Zend&quot;
autoloadernamespaces[]=&quot;My_&quot;
resources.frontController.controllerDirectory=&quot;../application/controllers&quot;
resources.frontController.moduleDirectory=&quot;../application/modules&quot;
resources.frontController.defaultModule=&quot;default&quot;
resources.frontController.plugins[]=&quot;My_Controller_Plugin_IDS&quot;
resources.frontController.plugins[]=&quot;My_Controller_Plugin_Messy&quot;
resources.modules[]=
resources.view.encoding=&quot;UTF-8&quot;
resources.view.escape=&quot;htmlentities&quot;
resources.layout.layout=&quot;default&quot;
resources.layout.layoutPath=&quot;../application/layouts&quot;
resources.db.adapter=&quot;MySQL&quot;
resources.db.params.username=&quot;USER&quot;
resources.db.params.password=&quot;CHANGEME&quot;
resources.db.params.dbname=&quot;DB&quot;
resources.db.isDefaultTableAdapter=true
</pre>
<p>xml.xml:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;config&gt;
    &lt;production&gt;
        &lt;bootstrap&gt;
            &lt;path&gt;../application/Bootstrap.php&lt;/path&gt;
            &lt;class&gt;Bootstrap&lt;/class&gt;
        &lt;/bootstrap&gt;
        &lt;routes&gt;../application/config/routes.xml&lt;/routes&gt;
        &lt;phpSettings&gt;
            &lt;display_startup_errors&gt;0&lt;/display_startup_errors&gt;
            &lt;display_errors&gt;0&lt;/display_errors&gt;
            &lt;date&gt;
                &lt;timezone&gt;America/New_York&lt;/timezone&gt;
            &lt;/date&gt;
        &lt;/phpSettings&gt;
        &lt;autoloadernamespaces&gt;
            &lt;Zend&gt;Zend&lt;/Zend&gt;
            &lt;S3&gt;My_&lt;/S3&gt;
        &lt;/autoloadernamespaces&gt;
        &lt;resources&gt;
            &lt;frontController&gt;
                &lt;controllerDirectory&gt;../application/controllers&lt;/controllerDirectory&gt;
                &lt;moduleDirectory&gt;../application/modules&lt;/moduleDirectory&gt;
                &lt;defaultModule&gt;default&lt;/defaultModule&gt;
                &lt;plugins&gt;
                    &lt;ids&gt;My_Controller_Plugin_IDS&lt;/ids&gt;
                    &lt;messy&gt;My_Controller_Plugin_Messy&lt;/messy&gt;
                &lt;/plugins&gt;
            &lt;/frontController&gt;
            &lt;modules&gt;
                &lt;placeholder/&gt;
            &lt;/modules&gt;
            &lt;view&gt;
                &lt;encoding&gt;UTF-8&lt;/encoding&gt;
                &lt;escape&gt;htmlentities&lt;/escape&gt;
            &lt;/view&gt;
            &lt;layout&gt;
                &lt;layout&gt;default&lt;/layout&gt;
                &lt;layoutPath&gt;../application/layouts&lt;/layoutPath&gt;
            &lt;/layout&gt;
            &lt;db&gt;
                &lt;adapter&gt;MySQL&lt;/adapter&gt;
                &lt;params&gt;
                    &lt;username&gt;USER&lt;/username&gt;
                    &lt;password&gt;CHANGEME&lt;/password&gt;
                    &lt;dbname&gt;DB&lt;/dbname&gt;
                &lt;/params&gt;
                &lt;isDefaultTableAdapter&gt;true&lt;/isDefaultTableAdapter&gt;
            &lt;/db&gt;
        &lt;/resources&gt;
    &lt;/production&gt;
&lt;/config&gt;
</pre>
<p>As you can see, xml is a bit more verbose! Then I made a simple script to hammer them.</p>
<pre class="brush: php; title: ; notranslate">
require_once 'Zend/Config/Xml.php';
require_once 'Zend/Config/Ini.php';

$runs = 10000;

$start = time();
for ($i=0;$i&lt;$runs;$i++){
    $config = new Zend_Config_Xml('xml.xml','production');
    clearstatcache('xml.xml');
}
echo &quot;XML,$runs,&quot; .(time()-$start).&quot;\n&quot;;

$start = time();
for ($i=0;$i&lt;$runs;$i++){
    $config = new Zend_Config_Ini('ini.ini','production');
    clearstatcache('ini.ini');
}
echo &quot;INI,$runs,&quot; .(time()-$start).&quot;\n&quot;;
</pre>
<p>My initial attempts showed xml to be faster but that seemed weird, until I noticed that the file was being cached. Hence the addition of <em>clearstatcache</em> to replicate individual connections. If we run this a bunch of times for different run levels we get the following table (time is in seconds).</p>
<table>
<thead>
<tr>
<th>Runs</th>
<th>XML</th>
<th>INI</th>
</tr>
</thead>
<tbody>
<tr>
<td>10000</td>
<td>3</td>
<td>3</td>
</tr>
<tr>
<td>100000</td>
<td>36</td>
<td>31</td>
</tr>
<tr>
<td>200000</td>
<td>72</td>
<td>60</td>
</tr>
</tbody>
</table>
<p>So we can see, the XML version, at load, does show to be slower than an ini file. Whether this is due to the xml parser, or the simple fact that the ini file is half the size (977b vs 1824b) I do not know. And yes, I know a bunch about micro-optimization and artificial benchmarks. My sites also don&#8217;t get a sustained 3k hits/s. What I do know is I am switching over to ini.</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2012/02/zf-config-xml-vs-ini-showdown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates and Gallery Go Bye-Bye</title>
		<link>http://drakos7.net/2012/02/updates-and-gallery-go-bye-bye</link>
		<comments>http://drakos7.net/2012/02/updates-and-gallery-go-bye-bye#comments</comments>
		<pubDate>Fri, 10 Feb 2012 17:50:32 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[church]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=409</guid>
		<description><![CDATA[Website I am probably going to start posting more geeky things to this blog now. I have some PHP related experiments that I wanted to provide to the community. I might post more of my lego creations as well, like &#8230;<p class="read-more"><a href="http://drakos7.net/2012/02/updates-and-gallery-go-bye-bye">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<h2>Website</h2>
<p><a href="http://drakos7.net/wp-content/uploads/2012/02/IMG_0250.jpg"><img class="alignright size-thumbnail wp-image-416" title="Micro City 1" src="http://drakos7.net/wp-content/uploads/2012/02/IMG_0250-150x150.jpg" alt="" width="150" height="150" /></a>I am probably going to start posting more geeky things to this blog now. I have some PHP related experiments that I wanted to provide to the community. I might post more of my lego creations as well, like this mini-modular city.</p>
<p>I am finally taking the old image gallery offline. I know that very few people actually looked at my family pictures, so it is not a big loss anyway. Since wordpress has its own way of storing images with posts, I&#8217;ll just use that.</p>
<p>I updated WordPress and accidentally deleted the wp-content folder so I lost all the pictures I had been uploading here. Ugh. I made a copy of the database but not that folder. <em>*sigh*</em></p>
<p>I have been toying with moving this site to an Amazon Micro-instance. It has resided on the server of a friend for over 9 years now. I&#8217;ll post something if I actually get up the nerve to make the jump.</p>
<h2>Life</h2>
<p>In our lives, the biggest thing is that we have switched churches. December was our last month worshipping at <a title="Christ Central Presbyterian Church" href="http://christcentralpc.net/" target="_blank">CCPC</a>. I am still officially the webmaster for their site so hopefully someone will step up to lead that charge. Our departure was for numerous reasons: distance (35 miles), not part of the community, &#8230; One of the biggest reasons though was our Senior Pastor being asked to leave. As my shepherding the body was closely tied to his leadership, we decided that it was time for us to leave as well. As I was the only Ruling Elder at the time, it was an extremely difficult decision for our family.</p>
<p>Many people asked if I felt a sense of relief leaving, like a weight coming off my shoulders. Alas, that is not the case. After worshipping at CCPC for 5 years, and being an Elder for 3, it was a sad occasion. I served diligently to teach, train, and shepherd. In the process we made a lot of precious friendships that will be difficult to maintain. Although I started three rounds of Elder and Deacon training, the end result was only one of each. The church has only one new Ruling Elder and has just started their pastoral search process, so it felt like there was so much more to do. But I realized several things in the process. There will always be to much to do. I can only do so much with the people who will listen and follow. No time is a good time to leave.</p>
<p>We are now getting to know people at <a title="Shady Grove PCA" href="http://www.shadygrovepca.org/" target="_blank">Shady Grove PCA</a> which is a mere 10 minutes away from our house. The first Sunday we worshipped there felt like coming home for some reason. It is a new chapter in our life, and we are looking forward to what God is going to do.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2012/02/updates-and-gallery-go-bye-bye/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Early Snow</title>
		<link>http://drakos7.net/2011/10/early-snow</link>
		<comments>http://drakos7.net/2011/10/early-snow#comments</comments>
		<pubDate>Sat, 29 Oct 2011 12:56:24 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Kids]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[Winter]]></category>

		<guid isPermaLink="false">http://drakos7.net/2011/10/early-snow</guid>
		<description><![CDATA[Child 1: Child 2:It&#8217;s snowing, it&#8217;s snowing, it&#8217;s snowing! I wish there was more snow. &#160;]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-418" style="border-style: initial; border-color: initial; border-width: initial; background-color: #f7f7f7;" title="2011 Early Snow" src="http://drakos7.net/wp-content/uploads/2011/10/IMG_0189-150x150.jpg" alt="" width="150" height="150" /></p>
<p>Child 1:</p>
<blockquote><p>
Child 2:It&#8217;s snowing, it&#8217;s snowing, it&#8217;s snowing!</p></blockquote>
<blockquote><p>I wish there was more snow.</p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2011/10/early-snow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiggin out</title>
		<link>http://drakos7.net/2011/10/wiggin-out</link>
		<comments>http://drakos7.net/2011/10/wiggin-out#comments</comments>
		<pubDate>Thu, 27 Oct 2011 23:52:20 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Anne]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[Reading]]></category>

		<guid isPermaLink="false">http://drakos7.net/2011/10/wiggin-out</guid>
		<description><![CDATA[My daughter brought home Ender&#8217;s Game from the school library without me mentioning it previously. Total win. Unfortunately the book is rather violent and filled with expletives.]]></description>
			<content:encoded><![CDATA[<p>My daughter brought home <strong>Ender&#8217;s Game</strong> from the school library without me mentioning it previously. Total win.</p>
<p>Unfortunately the book is rather violent and filled with expletives.</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2011/10/wiggin-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customer Service</title>
		<link>http://drakos7.net/2011/09/customer-service</link>
		<comments>http://drakos7.net/2011/09/customer-service#comments</comments>
		<pubDate>Sun, 04 Sep 2011 02:25:28 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[quotes]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[quote]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=401</guid>
		<description><![CDATA[&#8220;Church members are not customers, demanding better service from our employees. We are family gathering together to build each other and the church.&#8221; - Phillip Jensen]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Church members are not customers, demanding better service from our employees. We are family gathering together to build each other and the church.&#8221; - Phillip Jensen</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2011/09/customer-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tek11 Winner</title>
		<link>http://drakos7.net/2011/05/tek11-winner</link>
		<comments>http://drakos7.net/2011/05/tek11-winner#comments</comments>
		<pubDate>Fri, 27 May 2011 22:09:42 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[jeff]]></category>
		<category><![CDATA[trips]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=534</guid>
		<description><![CDATA[My brother and I got 1st place in the Tropo hackathon at phptek11. If you want to read the rules they were here. We won a Parrot AR.Drone Quadricopter for making a two-factor authentication system using Tropo&#8217;s apis.]]></description>
			<content:encoded><![CDATA[<p>My brother and I got 1st place in the <a href="https://www.tropo.com" target="_blank">Tropo</a> hackathon at <a href="http://tek11.phparch.com/" target="_blank">phptek11</a>. If you want to read the rules they were <a href="http://blog.tropo.com/phptek-rules/" target="_blank">here</a>. We won a <a href="http://ardrone.parrot.com/parrot-ar-drone/usa/" target="_blank">Parrot AR.Drone Quadricopter</a> for making a two-factor authentication system using Tropo&#8217;s apis.</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2011/05/tek11-winner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demise, Rumors of</title>
		<link>http://drakos7.net/2011/04/demise-rumors-of</link>
		<comments>http://drakos7.net/2011/04/demise-rumors-of#comments</comments>
		<pubDate>Mon, 25 Apr 2011 02:56:20 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Greg]]></category>
		<category><![CDATA[health care]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=397</guid>
		<description><![CDATA[Greatly exaggerated, as someone once said. As some of you got wind of from Camille&#8217;s facebook post, yes I did go to the hospital on Friday night and stayed there about 20hr. Xray, CT scans, blood work, and a stress test later &#8230;<p class="read-more"><a href="http://drakos7.net/2011/04/demise-rumors-of">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://drakos7.net/wp-content/uploads/2011/04/P1000290.jpg"><img class="alignright size-thumbnail wp-image-420" title="ChestPains2011" src="http://drakos7.net/wp-content/uploads/2011/04/P1000290-150x150.jpg" alt="" width="150" height="150" /></a>Greatly exaggerated, as <a href="http://en.wikipedia.org/wiki/Mark_Twain" target="_blank">someone</a> once said.</p>
<p>As some of you got wind of from Camille&#8217;s facebook post, yes I did go to the hospital on Friday night and stayed there about 20hr. Xray, CT scans, blood work, and a stress test later and they say I (internally) look much better than the average for my age. Despite my best attempts to consume large quantities of<a href="http://www.fiveguys.com/" target="_blank"> Five Guys</a> burgers (there is one open in Ithaca too!), even my cholesterol levels are good.</p>
<p>My stay at <a href="http://www.shadygroveadventisthospital.com/" target="_blank">Shady Grove Adventist Hospital </a>was a pleasant one. The nursing staff and doctors were all pleasant to talk to. The place was clean and fairly quiet. I have only very tiny dots on both arms from the needles, so they do a very good job drawing blood. Alas, I did not have the ability to experience the hospital food as I needed to fast the whole time due to the constant blood samples that were being drawn. I must say though, it smelled really good.</p>
<p>I am doing better. Doctors couldn&#8217;t find anything wrong so either the timing of the tests was too late or they are unable to pick up what my body is trying to say. I can&#8217;t complain about that even though I still have an occasional chest pain. I don&#8217;t think this was stress related (though I am under a very large amount of stress) because the symptoms don&#8217;t match my previous experiences with stress and panic. It isn&#8217;t heartburn either. I know what that feels like too. Neither of those would also explain why my lips would turn blue.</p>
<p>So, this is one of life&#8217;s mysteries, and my family is very glad to have me back in the house. Thank you everyone for your prayers.</p>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2011/04/demise-rumors-of/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quote of the Day 20110410</title>
		<link>http://drakos7.net/2011/04/instead</link>
		<comments>http://drakos7.net/2011/04/instead#comments</comments>
		<pubDate>Sun, 10 Apr 2011 12:35:29 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[quotes]]></category>
		<category><![CDATA[quote]]></category>

		<guid isPermaLink="false">http://drakos7.net/?p=393</guid>
		<description><![CDATA[&#8220;We often hear calls to &#8220;live the Gospel,&#8221; and yet, nowhere in Scripture are we called to &#8220;live the Gospel.&#8221; Instead, we are told to believe the Gospel and obey the Law, receiving God&#8217;s favor from the one and God&#8217;s &#8230;<p class="read-more"><a href="http://drakos7.net/2011/04/instead">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;We often hear calls to &#8220;live the Gospel,&#8221; and yet, nowhere in Scripture are we called to &#8220;live the Gospel.&#8221; Instead, we are told to believe the Gospel and obey the Law, receiving God&#8217;s favor from the one and God&#8217;s guidance from the other.&#8221; -<a href="http://www.whitehorseinn.org/free-articles/the-law-the-gospel-by-michael-horton.html" target="_blank">Horton</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://drakos7.net/2011/04/instead/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

