{
    "version": "https://jsonfeed.org/version/1",
    "title": "Nick DeNardis",
    "home_page_url": "https://nickdenardis.com",
    "feed_url": "https://nickdenardis.com/feed.json",
    "description": "User experience, code, higher education, analytics and accessibility.",
    "items": [
        {
            "id": "https://nickdenardis.com/2006/10/01/time-for-a-new-computer/",
            "url": "https://nickdenardis.com/2006/10/01/time-for-a-new-computer/",
            "title": "Time for a new computer",
            "summary": "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.",
            "date_modified": "2006-10-01T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/12/08/just-added-output-individual-fields/",
            "url": "https://nickdenardis.com/2006/12/08/just-added-output-individual-fields/",
            "title": "Just added, Output individual fields",
            "date_modified": "2006-12-08T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/11/05/phpsimpl-examples/",
            "url": "https://nickdenardis.com/2006/11/05/phpsimpl-examples/",
            "title": "PHPSimpl Examples",
            "date_modified": "2006-11-05T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/11/05/proxy-midterm-update/",
            "url": "https://nickdenardis.com/2006/11/05/proxy-midterm-update/",
            "title": "Proxy Midterm Update",
            "date_modified": "2006-11-05T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/10/15/proxy-project-going-good/",
            "url": "https://nickdenardis.com/2006/10/15/proxy-project-going-good/",
            "title": "Proxy Project Going Good.",
            "summary": "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.",
            "date_modified": "2006-10-15T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/12/08/phpsimpl-join-jumps-into-action/",
            "url": "https://nickdenardis.com/2006/12/08/phpsimpl-join-jumps-into-action/",
            "title": "PHPSimpl Join() jumps into action",
            "summary": "// Create the Registration class\n$myRegistration = new Registration;\n$display\\[\\] = array('registration\\id','user\\id','date\\_registered','guests');// Create the User Class\n$tmpUser = new Users;\n$myRegistration->Join($tmpUser, 'user\\_id', 'INNER');\n$display\\[\\] = array('first\\name','last\\name');// Create the Payments Class\n$tmpPayment = new Payment;\n$myRegistration->Join($tmpPayment, 'conference\\_id', 'INNER');\n$display\\[\\] = array('conference\\_id', 'amount', 'status', 'method');// Get a list of all the Registrations\n$myRegistration->GetList($display,'date\\_registered','DESC');",
            "date_modified": "2006-12-08T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/02/18/new-phpsimpl-caching-system/",
            "url": "https://nickdenardis.com/2007/02/18/new-phpsimpl-caching-system/",
            "title": "New PHPSimpl caching system",
            "summary": "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.",
            "date_modified": "2007-02-18T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/10/20/phpsimpl-an-introduction/",
            "url": "https://nickdenardis.com/2006/10/20/phpsimpl-an-introduction/",
            "title": "PHPSimpl - An Introduction",
            "summary": "$examples = array('category\\_id'=>'ex. PHP, MySQL, Cars, XML, PHPSIMPL');\n      $this->DbTemplate($data, $this->required, $labels, $examples, $this->table);\n  }\n}",
            "date_modified": "2006-10-20T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/02/18/phpsimpl-api-documentation/",
            "url": "https://nickdenardis.com/2007/02/18/phpsimpl-api-documentation/",
            "title": "PHPSimpl API Documentation",
            "date_modified": "2007-02-18T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/03/10/php-sessions-in-a-load/",
            "url": "https://nickdenardis.com/2007/03/10/php-sessions-in-a-load/",
            "title": "PHP Sessions in a Load Balanced Environment",
            "summary": "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.",
            "date_modified": "2007-03-10T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/04/17/multiplication/",
            "url": "https://nickdenardis.com/2007/04/17/multiplication/",
            "title": "Multiplication",
            "summary": "$myAddress->SetValue('customer\\_id', $myCustomer->GetPrimary());\n$myAddress->GetList();// Display all their current addresses\nif (count($myAddress->results) > 0){\nforeach($myAddress->results as $address){\n $myAddress->ResetValues();\n $myAddress->SetValues($address);\n $myAddress->MultiForm();\n}\n}",
            "image": "https://nickdenardis.com/images/addresses.png",
            "date_modified": "2007-04-17T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/04/26/phpsimpl-080-rc1-released/",
            "url": "https://nickdenardis.com/2007/04/26/phpsimpl-080-rc1-released/",
            "title": "PHPSimpl 0.8.0 RC1 Released",
            "date_modified": "2007-04-26T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/04/08/a-more-centered-api/",
            "url": "https://nickdenardis.com/2007/04/08/a-more-centered-api/",
            "title": "A More Centered API",
            "summary": "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.",
            "date_modified": "2007-04-08T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2006/10/05/google-groups-beta-impressed/",
            "url": "https://nickdenardis.com/2006/10/05/google-groups-beta-impressed/",
            "title": "Google Groups Beta... Impressed.",
            "date_modified": "2006-10-05T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/05/12/phpsimpl-080-final-released/",
            "url": "https://nickdenardis.com/2007/05/12/phpsimpl-080-final-released/",
            "title": "PHPSimpl 0.8.0 Final Released",
            "summary": "Everybody Dance! PHPSimpl has reached its 0.8 release!\nWe have been working hard the last few weeks to get PHPSimpl release worthy and the day is finally here! Included in the release are:",
            "date_modified": "2007-05-12T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/04/18/phpsimpl-080-beta-1-released/",
            "url": "https://nickdenardis.com/2007/04/18/phpsimpl-080-beta-1-released/",
            "title": "PHPSimpl 0.8.0 Beta 1 Released",
            "summary": "The Links",
            "date_modified": "2007-04-18T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/07/06/making-web-development-fun-again/",
            "url": "https://nickdenardis.com/2007/07/06/making-web-development-fun-again/",
            "title": "Making web development fun again",
            "summary": "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.",
            "date_modified": "2007-07-06T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/06/27/phpsimpl-081-maintenance-update/",
            "url": "https://nickdenardis.com/2007/06/27/phpsimpl-081-maintenance-update/",
            "title": "PHPSimpl 0.8.1 Maintenance Update",
            "date_modified": "2007-06-27T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/07/09/understanding-rails-partials/",
            "url": "https://nickdenardis.com/2007/07/09/understanding-rails-partials/",
            "title": "Understanding Rails Partials",
            "summary": "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.",
            "date_modified": "2007-07-09T00:00:00.000Z"
        },
        {
            "id": "https://nickdenardis.com/2007/06/27/stress-testing-a-site-with/",
            "url": "https://nickdenardis.com/2007/06/27/stress-testing-a-site-with/",
            "title": "Stress testing a site with Apache's ab tool, part 1",
            "summary": "ab http://example.com/",
            "date_modified": "2007-06-27T00:00:00.000Z"
        }
    ]
}