Fixing the multiprocessing error while developing for AppEngine
If you are developing for Google AppEngine on Mac, and you have updated python to 2.6.x or higher, you might face this non-sense error over and over:
ImportError: No module named _multiprocessing
The main reason behind this error is that AppEngine (as of this writing) can't get along with python versions higher than 2.5.x.
Fortunately it is quite easy to fix this issue, especially if you are using GoogleAppEngineLauncher:
Creating online data forms with no coding at all
Many times you need to collect information from users (e.g. employees) through online forms. As I just did for my HR department as a favor,...