/* PHP & MySQL Journal */
In: data| javascript| libraries| testing
21 May 2010Automatically creating fake or sample data is a frequent requirement for front-end web developers. Although usually not tedious, there are times when you need to quickly and automatically generate structured data for your html forms or CMS systems for testing purposes.
Faker.js is a JavaScript implementation inspired by Benjamin Curtis’s Ruby Gem Faker and Perl’s Data::Faker [...]
In: testing
10 Jan 2010how to extend and add your own commands to the selenium ide
In: testing
21 Dec 2009writing dependent tests in phpunit 3.4
In: testing
23 Nov 2009slow down the fast execution of selenium testrunner
how small changes in code can introduce bugs
debugging http traffic using Microsoft fiddler
Recently due to increased traffic on my site the server was taking a while to return pages, many times timing out the request. I was thinking of shifting my hosting with another provider, but before I could do that I first needed to test the load the present server could take. What I needed was [...]
Duplicated code in projects is a frequent thing and also the one ripe for factoring out in a new class or function. Cut/Paste coding is a common development practice among programmers, a lot of which can lead to code size increase and maintenance nightmares. PHPCPD (php copy paste detector) is a PEAR tool that makes [...]