Ronald A. Richardson

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.

Recursive PHP Spintax Class 3.0 Posted on September 23rd, 2011

The last and final version update of the famous PHP Spintax class, this is ultimately recursive and easy to use. I hope that users online may fidn this class useful. It is free and open source, use it freely as you need. It’s simple to use read more below on how to use the Spintax [...]

Recursive PHP Spintax Class 2.5 Posted on August 17th, 2011

Here is the completely true recursive renovated class that makes use of regex. Get 3.0 NOW! PHP Recursive Spintax Class 3.0 12345678910111213141516171819202122232425262728293031323334<?php class Spintax {        function spin($str, $test=false)    {       if(!$test){          do {             $str = $this->regex($str);       [...]

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 [...]

PHP Grid Script Posted on May 17th, 2011

Here is a quick grid script I wrote in PHP, it allows you to generate a tile based grid that has various options. I’m not really going to walk through it the code is self explanatory and easy to use. Here are the buildGrid parameters that it can take to modify the grid. Doc: buildGrid(width, [...]