Hi, and welcome to my website. I am a programmer, and start-up enthusiast. I love good code, and learning more about coding standards, design, algorithms, and implementation. I am currently the Lead Developer at FullSpeed Marketing and my job is awesome.
Chargify API PHP Class For Statements Posted on July 29th, 2011
This was made because the original Chargify PHP Client did not have a class for the Statements, so I added it to the library myself, and now I am sharing the code for others who may need this functionality. The original code can be found at https://github.com/jforrest/Chargify-PHP-Client The only changes made were: ChargifyConnector.php ChargifyStatement.php (added) [...]
PHP Recursive Spintax Class Code Posted on July 13th, 2011
This class is deprecated, click here to get v2.5! The code below is a class that allows you to use spintax in PHP. Simple as pie! 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859<?php class Spintax { function spin($string, $view=false) { $z=-1; $input = $this->bracketArray($string); for($i=0; $i<count($input);$i++){ [...]
Going to release a php/jQuery mvc framework called LFPHPMVC Posted on July 12th, 2011
LFPHPMVC is a lightweight “fake” php mvc framework, it allows for the easy deployment of php websites utilizing jquery, which offers the ability to design dynamic websites that rely on absolutely no page refresh. I have been using my own framework to achieve this in two of my projects. I will release it under AGPLv3 [...]