We often have to outreach to people whose contact information we do not possess in order to find the best expert for a given project.
You have a db of company domain names with matching email addresses.
Sample DB
| Company | 
|---|
| class Person < ActiveRecord::Base | |
| scope :people_of_london, -> { where(age: 4..25).order(:first_name).where(birthplace: 'London') } | |
| def welcome_message | |
| if admin? | |
| "Welcome God" | |
| else | |
| "Welcome #{full_name}" | |
| end | |
| end | 
##WHAT IS SCRUM?
###Scrum Software development Scrum is an iterative and incremental agile software development framework for managing software projects and product or application development.
###Related topics
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console | 
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>DOM manipulation with jQuery</title> | |
| <!-- Add a link to jQuery CDN here script here --> | |
| <script type="text/javascript" src="jquery_example.js"></script> | |
| </head> | |
| <body> | 
| class Boggle | |
| attr_reader :board | |
| def initialize(board) | |
| @board = board | |
| end | |
| def create_word(*coords) | |
| coords.map { |coord| @board[coord.first][coord.last]}.join("") | |
| end |