Skip to content

Instantly share code, notes, and snippets.

@abdinoor-jana
Last active March 28, 2016 20:50
Show Gist options
  • Save abdinoor-jana/0f9974a901217e669dad to your computer and use it in GitHub Desktop.
Save abdinoor-jana/0f9974a901217e669dad to your computer and use it in GitHub Desktop.
Jana Coding Challenge

#Challenge:

Create a command line program that will take an internet domain name (i.e. “jana.com”) and print out a list of the email addresses that were found on that website.

##Example:

> python find_email_addresses.py jana.com
Found these email addresses:
sales@jana.com
press@jana.com
info@jana.com
...

##Guidelines:

  • You can use any modern programming language you like. We work in Python and Java, so one of those is preferred but not required.
  • Your program must work on another computer, so be sure to include any required libraries (using libraries is OK).

##Hints:

  • Make sure to find email addresses on any discoverable page of the website, not just the home page.

##Submitting:

  • Create a public GitHub repository and submit your code as a Pull Request.
  • Include a README.md file with any information required to run the program.
@yoav-jana
Copy link

Love this. 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment