The WC3 Web Test Suites Working Group has just announced that they have a test for mobile devices. This is an important step as mobile connectivity grows. So head over to there test and see how your mobile device handles it. Short address for the test is http://icanhaz.com/wt more
Recently I was asked to code a simple method. This method should take in two parameters a string and a character. The goal of the method was to count the max number of consecutive times the character parameter appeared in the string. So an example would be that the string “abaabbaaa” is passed into the method along with the character ‘a’ The method should then return 3 because the character ‘a’ appears 3 times in... more
Documentation is the coders best and worst friend. It is a two sided sword, it makes your life easier but no one likes writing it. So coders do what we do best and find a way to make the computer do it for us. There are two tools which I use on a regular basis when I'm working on a project. while these tools do not work perfectly they do cut down the amount of... more