<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Nick DeNardis</title>
        <link>https://nickdenardis.com</link>
        <description>User experience, code, higher education, analytics and accessibility.</description>
        <lastBuildDate>Sun, 07 Dec 2025 12:09:26 GMT</lastBuildDate>
        <docs>http://blogs.law.harvard.edu/tech/rss</docs>
        <generator>https://github.com/webmasterish/vuepress-plugin-feed</generator>
        <atom:link href="https://nickdenardis.com/feed.atom" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Time for a new computer]]></title>
            <link>https://nickdenardis.com/2006/10/01/time-for-a-new-computer/</link>
            <guid>https://nickdenardis.com/2006/10/01/time-for-a-new-computer/</guid>
            <pubDate>Sun, 01 Oct 2006 00:00:00 GMT</pubDate>
            <description><![CDATA[So i broke down today and i bought a new computer. Well it is going to replace my current first generation Mac Mini G4 1.42 Ghz. Basically i found myself pretty much waiting 60% of the time instead of programming. Just having Eclipse, Photoshop, Apache, Firefox and iTunes open grinds this little machine to a halt. My solution yesterday was to just remote into my work machine and do all my work on that, it worked well but it is not a permanent solution. With my mom getting a new 20” iMac and the new Intel chips smoking the pants off the PowerPC chips i needed to upgrade. Also this will allow me to get rid of my Windows box for good, i will be running Parallels for any future Windows needs. The setup i ordered is not like super awesome impressive but it will do for now.]]></description>
        </item>
        <item>
            <title><![CDATA[Just added, Output individual fields]]></title>
            <link>https://nickdenardis.com/2006/12/08/just-added-output-individual-fields/</link>
            <guid>https://nickdenardis.com/2006/12/08/just-added-output-individual-fields/</guid>
            <pubDate>Fri, 08 Dec 2006 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[PHPSimpl Examples]]></title>
            <link>https://nickdenardis.com/2006/11/05/phpsimpl-examples/</link>
            <guid>https://nickdenardis.com/2006/11/05/phpsimpl-examples/</guid>
            <pubDate>Sun, 05 Nov 2006 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Proxy Midterm Update]]></title>
            <link>https://nickdenardis.com/2006/11/05/proxy-midterm-update/</link>
            <guid>https://nickdenardis.com/2006/11/05/proxy-midterm-update/</guid>
            <pubDate>Sun, 05 Nov 2006 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Proxy Project Going Good.]]></title>
            <link>https://nickdenardis.com/2006/10/15/proxy-project-going-good/</link>
            <guid>https://nickdenardis.com/2006/10/15/proxy-project-going-good/</guid>
            <pubDate>Sun, 15 Oct 2006 00:00:00 GMT</pubDate>
            <description><![CDATA[So I finally got my new Mini and my new Desk all setup. Thats all i wanted to say. Oh yea and we are finally seriously working on a new look for the Wayne State University homepage, it desperately needs it (from a back end and management standpoint, the frontend pretty much just needs a realign), four years old and designed by a company that went out of business. Now that we have the tools in place we can get it setup right.]]></description>
        </item>
        <item>
            <title><![CDATA[PHPSimpl Join() jumps into action]]></title>
            <link>https://nickdenardis.com/2006/12/08/phpsimpl-join-jumps-into-action/</link>
            <guid>https://nickdenardis.com/2006/12/08/phpsimpl-join-jumps-into-action/</guid>
            <pubDate>Fri, 08 Dec 2006 00:00:00 GMT</pubDate>
            <description><![CDATA[// Create the Registration class
$myRegistration = new Registration;
$display\[\] = array('registration\id','user\id','date\_registered','guests');// Create the User Class
$tmpUser = new Users;
$myRegistration->Join($tmpUser, 'user\_id', 'INNER');
$display\[\] = array('first\name','last\name');// Create the Payments Class
$tmpPayment = new Payment;
$myRegistration->Join($tmpPayment, 'conference\_id', 'INNER');
$display\[\] = array('conference\_id', 'amount', 'status', 'method');// Get a list of all the Registrations
$myRegistration->GetList($display,'date\_registered','DESC');]]></description>
        </item>
        <item>
            <title><![CDATA[New PHPSimpl caching system]]></title>
            <link>https://nickdenardis.com/2007/02/18/new-phpsimpl-caching-system/</link>
            <guid>https://nickdenardis.com/2007/02/18/new-phpsimpl-caching-system/</guid>
            <pubDate>Sun, 18 Feb 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[The last functionality that was added was the deprecation of the “CLEAR\_CACHE” define. Currently it is still working for backwards compatibility but will soon be removed. It has been replaced by the use of a GET variable that can be used on any page. There are two that will be able to clear specific caches and one that will clear all the caches.]]></description>
        </item>
        <item>
            <title><![CDATA[PHPSimpl - An Introduction]]></title>
            <link>https://nickdenardis.com/2006/10/20/phpsimpl-an-introduction/</link>
            <guid>https://nickdenardis.com/2006/10/20/phpsimpl-an-introduction/</guid>
            <pubDate>Fri, 20 Oct 2006 00:00:00 GMT</pubDate>
            <description><![CDATA[$examples = array('category\_id'=>'ex. PHP, MySQL, Cars, XML, PHPSIMPL');
      $this->DbTemplate($data, $this->required, $labels, $examples, $this->table);
  }
}]]></description>
        </item>
        <item>
            <title><![CDATA[PHPSimpl API Documentation]]></title>
            <link>https://nickdenardis.com/2007/02/18/phpsimpl-api-documentation/</link>
            <guid>https://nickdenardis.com/2007/02/18/phpsimpl-api-documentation/</guid>
            <pubDate>Sun, 18 Feb 2007 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[PHP Sessions in a Load Balanced Environment]]></title>
            <link>https://nickdenardis.com/2007/03/10/php-sessions-in-a-load/</link>
            <guid>https://nickdenardis.com/2007/03/10/php-sessions-in-a-load/</guid>
            <pubDate>Sat, 10 Mar 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[One thing that we struggle with in our server environment as many others do is doing load balancing and being able to sync session data between all the machines. Having one dedicated session space or server can be an option but that can get a little messy or expensive. So we added MySQL Sessions to the Simpl framework and it is easy as pie to use.]]></description>
        </item>
        <item>
            <title><![CDATA[Multiplication]]></title>
            <link>https://nickdenardis.com/2007/04/17/multiplication/</link>
            <guid>https://nickdenardis.com/2007/04/17/multiplication/</guid>
            <pubDate>Tue, 17 Apr 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[$myAddress->SetValue('customer\_id', $myCustomer->GetPrimary());
$myAddress->GetList();// Display all their current addresses
if (count($myAddress->results) > 0){
foreach($myAddress->results as $address){
 $myAddress->ResetValues();
 $myAddress->SetValues($address);
 $myAddress->MultiForm();
}
}]]></description>
            <enclosure url="https://nickdenardis.com/images/addresses.png">
            </enclosure>
        </item>
        <item>
            <title><![CDATA[PHPSimpl 0.8.0 RC1 Released]]></title>
            <link>https://nickdenardis.com/2007/04/26/phpsimpl-080-rc1-released/</link>
            <guid>https://nickdenardis.com/2007/04/26/phpsimpl-080-rc1-released/</guid>
            <pubDate>Thu, 26 Apr 2007 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[A More Centered API]]></title>
            <link>https://nickdenardis.com/2007/04/08/a-more-centered-api/</link>
            <guid>https://nickdenardis.com/2007/04/08/a-more-centered-api/</guid>
            <pubDate>Sun, 08 Apr 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[Its been a while but we have been working hard on an API that is going to withstand the test of time. This will make Simpl more expendable and not require as many application code level changes in the future.]]></description>
        </item>
        <item>
            <title><![CDATA[Google Groups Beta... Impressed.]]></title>
            <link>https://nickdenardis.com/2006/10/05/google-groups-beta-impressed/</link>
            <guid>https://nickdenardis.com/2006/10/05/google-groups-beta-impressed/</guid>
            <pubDate>Thu, 05 Oct 2006 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[PHPSimpl 0.8.0 Final Released]]></title>
            <link>https://nickdenardis.com/2007/05/12/phpsimpl-080-final-released/</link>
            <guid>https://nickdenardis.com/2007/05/12/phpsimpl-080-final-released/</guid>
            <pubDate>Sat, 12 May 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[Everybody Dance! PHPSimpl has reached its 0.8 release!
We have been working hard the last few weeks to get PHPSimpl release worthy and the day is finally here! Included in the release are:]]></description>
        </item>
        <item>
            <title><![CDATA[PHPSimpl 0.8.0 Beta 1 Released]]></title>
            <link>https://nickdenardis.com/2007/04/18/phpsimpl-080-beta-1-released/</link>
            <guid>https://nickdenardis.com/2007/04/18/phpsimpl-080-beta-1-released/</guid>
            <pubDate>Wed, 18 Apr 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[The Links]]></description>
        </item>
        <item>
            <title><![CDATA[Making web development fun again]]></title>
            <link>https://nickdenardis.com/2007/07/06/making-web-development-fun-again/</link>
            <guid>https://nickdenardis.com/2007/07/06/making-web-development-fun-again/</guid>
            <pubDate>Fri, 06 Jul 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[I have fallen in love with Rails. After using a ton of PHP frameworks none of them really seamed to be straightforward and seamless. Rails on the other hand is not as get up and go as php it has all the requirements I have been looking for in a framework. Some of the excitement is from getting to learn a new language and the structure of a Rails app just make sense.]]></description>
        </item>
        <item>
            <title><![CDATA[PHPSimpl 0.8.1 Maintenance Update]]></title>
            <link>https://nickdenardis.com/2007/06/27/phpsimpl-081-maintenance-update/</link>
            <guid>https://nickdenardis.com/2007/06/27/phpsimpl-081-maintenance-update/</guid>
            <pubDate>Wed, 27 Jun 2007 00:00:00 GMT</pubDate>
        </item>
        <item>
            <title><![CDATA[Understanding Rails Partials]]></title>
            <link>https://nickdenardis.com/2007/07/09/understanding-rails-partials/</link>
            <guid>https://nickdenardis.com/2007/07/09/understanding-rails-partials/</guid>
            <pubDate>Mon, 09 Jul 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[Partial’s are great, i really wish there was something as straight forward in Smarty. With Smarty it would require a loop and an include, but partials roll that all into one. It great when you are displaying a list of items, especially if that list can be used in multiple pages in many contexts.]]></description>
        </item>
        <item>
            <title><![CDATA[Stress testing a site with Apache's ab tool, part 1]]></title>
            <link>https://nickdenardis.com/2007/06/27/stress-testing-a-site-with/</link>
            <guid>https://nickdenardis.com/2007/06/27/stress-testing-a-site-with/</guid>
            <pubDate>Wed, 27 Jun 2007 00:00:00 GMT</pubDate>
            <description><![CDATA[ab http://example.com/]]></description>
        </item>
    </channel>
</rss>