def self.people_with_common_tags(person)
    profile_tags = person.articles.select("tags.id").joins(:tags).map(&:id)
    rule = "people_with_common_tags"
    return if profile_tags.blank?