|
|
|
|
|
by mapasj
1087 days ago
|
|
As someone who frequently does the full and mini NYT crosswords, I really like this idea. I’ve wondered what it’d be like trying to make my own. This seems like a useful tool for giving it a try. Some feedback:
- The chart showing the distribution of word length is very cool.
- Maybe you could educate newbies about how can choose a grid. I’m wondering if the predefined ones you provide are commonly seen in NYT. Does NYT prefer certain grids? Are you more likely to be accepted by NYT with a unique grid?
- Custom grids sounds like a great feature. I’m guessing there are some rules about symmetry and no two-letter words that you can help users with.
- Auto filling on an empty grid basically does all the work except clue writing? Maybe that’s intensive for your back-end? I noticed the page hang when submitting that. Maybe you can require some percentage for the user to first fill in on their own? As a user I think I’d only want the grid to highlight areas where I have an invalid word. |
|
> I’m guessing there are some rules about symmetry and no two-letter words that you can help users with.
Yes, and figuring out how to do the validation in a sensible way is probably my next step. I already have the encoding figured out, in fact if you examine the HTML you can see the grids as b64 binary strings, so the next step is the UX.
> Auto filling on an empty grid basically does all the work except clue writing
Sort of, having looked at a few other places that do this type of thing seriously there are other things about construction I'm not doing yet, like avoiding "CAT" and "CATS" or other substrings in general, and scoring words. I support the latter, but not on my poor E2 GCE instance (need more RAM). Clues aren't a problem I'm ready to solve yet, so I just cross-ref a nice site that has some of the historical ideas.
> I noticed the page hang when submitting that.
Yep, getting hugged to death :)