M
Malcolm McLean
This is my latest hobby project. A program to enable people to design crosswords.
You can see it at
http://www.malcolmmclean.site11.com/www/Crosswords/crosswords.html
It's written in C, under the Windows Win32 API. Whilst I'd be grateful for
any feedback ion the crossword-related elements of the project, I'm posting
here mainly on the programming issues. I feel I'm behind the times.
If I distribute the program as a windows binary, it's open to the threat of
viruses. Also, it's only usable on Windows. The program consists of a fairly
standard grid editor - just donkey work to knock up, routines to load and
save files, which are much more trouble than they should be since someone
specified an xml-based format for crosswords. So of course I need to
incorporate an entire XML parser into the program to read foreign files.
Then it's got a word matcher which is based on public domain spellchecker
files. Because it's written in C, this runs interactively and smoothly with
no clever programming - it just does a brute force O(N) search of the entire
database.
So maybe the interface should be web-based and the word search written in C?
But how do I go about setting up a CGI program on a free web host?
You can see it at
http://www.malcolmmclean.site11.com/www/Crosswords/crosswords.html
It's written in C, under the Windows Win32 API. Whilst I'd be grateful for
any feedback ion the crossword-related elements of the project, I'm posting
here mainly on the programming issues. I feel I'm behind the times.
If I distribute the program as a windows binary, it's open to the threat of
viruses. Also, it's only usable on Windows. The program consists of a fairly
standard grid editor - just donkey work to knock up, routines to load and
save files, which are much more trouble than they should be since someone
specified an xml-based format for crosswords. So of course I need to
incorporate an entire XML parser into the program to read foreign files.
Then it's got a word matcher which is based on public domain spellchecker
files. Because it's written in C, this runs interactively and smoothly with
no clever programming - it just does a brute force O(N) search of the entire
database.
So maybe the interface should be web-based and the word search written in C?
But how do I go about setting up a CGI program on a free web host?