Porter Stemmer Algorithm Class in C#
The Porter Stemmer Algorithm is an algorithmn which was created to by Martin Porter to reduce english words to their root word stems. For example, the word “forms” would reduce to “form” and the word “connections” would reduce to “connect”. The details of the algorithmn can be found here
Setting up Apache with IIS and running PHP on both
Setting up Apache with IIS (and PHP on both)
Recently I’ve been working on a project in PHP since it required true URL rewriting which just is not available in the windows environment currently. This required the installation of Apache and it’s wonderful mod_rewrite module which does all the wonderful URL rewriting stuff. I [...]