Skip to content

Instantly share code, notes, and snippets.

@iheartkode
Created May 31, 2015 15:42
Show Gist options
  • Save iheartkode/166e12f954fdf69878c9 to your computer and use it in GitHub Desktop.
Save iheartkode/166e12f954fdf69878c9 to your computer and use it in GitHub Desktop.
Wildlife tracker
They've asked you and your pair to build an app so that the rangers can report wildlife sightings.
Start out by letting users CRUD/L (create, read, update, destroy, list) species.
Next, allow them to input a sighting of an animal, along with the date, latitude, and longitude. (Hint: a species has many sightings.) Add CRUD functionality for these sightings.
Now, the area under consideration has been divided into several regions. Build out CRUD/L functionality for regions, and when a user reports a sighting, have them choose the region from a drop-down menu. (Hint: do a web search for html drop-down mdn.)
Bonus: let users run reports to list all the sightings during a given time period.
Extra Bonus: finally, let users narrow their reports down to a particular region.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment