Yelp's search functionality includes semi-related businesses (e.g. when searching for property management companies it returns real estate photographers, maintenance, etc). Create some kind of script that locates all unrelated companies, and add them to an evaluation "blacklist" of sorts that tells a given function to skip over a specific company.
Implementing (ish) in #9 . Instead of a company-based blacklist, I created a category based whitelist. If a company has a specific category associated with it, it gets added. Otherwise, it gets skipped.
Yelp's search functionality includes semi-related businesses (e.g. when searching for property management companies it returns real estate photographers, maintenance, etc). Create some kind of script that locates all unrelated companies, and add them to an evaluation "blacklist" of sorts that tells a given function to skip over a specific company.