You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't like the default Faker city name generator. My testing yielded names like "South Melissamouth High School" which is a problem with the city, not with the work you did here.
I also don't love that professional suffixes (MD, PhD, DVM, DDS) are included in the names sent back. I would have expected only professional prefixes.
Proposed Solution
City: pull an actual list of cities...
Names: define a separate namer that doesn't include professional suffixes, and sometimes has only initials for the first/middle name.
The text was updated successfully, but these errors were encountered:
For cities, unlike states, Faker actually generates the names. I didn't look into the pattern it uses in any detail so I don't know what elements get fed in. That means we'd have to create our own list instead of using a generated list. That would significantly reduce the size of the generated pool. Not a deal breaker, but worth considering.
For names, it absolutely should be broken into pieces to avoid the issues when full names are used.
Feature Description
I don't like the default Faker city name generator. My testing yielded names like "South Melissamouth High School" which is a problem with the city, not with the work you did here.
I also don't love that professional suffixes (MD, PhD, DVM, DDS) are included in the names sent back. I would have expected only professional prefixes.
Proposed Solution
City: pull an actual list of cities...
Names: define a separate namer that doesn't include professional suffixes, and sometimes has only initials for the first/middle name.
The text was updated successfully, but these errors were encountered: