Month: August 2011

Mcrypt extension error after installing phpMyAdmin on IIS

If you install phpMyAdmin on IIS and get the error:

PROBLEM: cannot load mcrypt extension. please check your php configuration

This could be due to the extension being missing or that it is not listed correctly in php.ini file. Listed below are the instructions from around the web that I followed to get this working:

Continue reading

Supporting informal learning in the workplace

Supporting Informal Learning

Informal learning is particularly useful where learners are not novices in a subject area and have some background, but are trying to add skills or need additional support for the details of unfamiliar tasks. Training people to find the information they need when they need it may work as well as training them to remember all the information they need, especially if they will not be putting the new skills to use frequently enough to keep it all memorized.  


Continue reading

Javascript testing for NaN: why doesn’t !=”NaN” work?

A couple of weeks ago, I was working on a custom HTML wrapper for Captivate quizzes that would behave one way if a score were already stored for that quiz, and another if the score were non-existent or zero.

So, how best to test for the existence of a score? Usually I test for the existence of a value with


if (typeof foo != "undefined"){do something}

Continue reading