Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/decodedco/codeed-photo-quiz
Resources and example app for the CodeEd Photo Quiz activity.
https://github.com/decodedco/codeed-photo-quiz
Last synced: 8 days ago
JSON representation
Resources and example app for the CodeEd Photo Quiz activity.
- Host: GitHub
- URL: https://github.com/decodedco/codeed-photo-quiz
- Owner: DecodedCo
- Created: 2013-08-15T14:44:38.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-09T09:42:43.000Z (over 11 years ago)
- Last Synced: 2024-11-19T23:47:54.294Z (2 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 0
- Watchers: 16
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CodeEd Quiz App
===============Learn to build a simple photo quiz app. We will use:
- [Twitter Bootstrap][bootstrap] to help us get our prototype looking good fast.
- [jQuery][jquery] so we can easily change our page with JS.
- [The flickr API][flickr] to load photos based on a certain keyword.
- [HTML5 localStorage][localstore] to save quiz scores on the user's computer.To Run:
-------After you've cloned the repo, make sure you do `git submodule init` and `git submodule update` to fetch all the dependencies!
You'll need a HTTP server. If you've got one, just point it in the direction of
this folder. If not, do `sudo npm install -g serve` (assuming nodejs is installed),
then `cd` into this directory, and run `serve`. Then, go to http://localhost:3000/.[bootstrap]: http://getbootstrap.com/ "Twitter's open source Bootstrap project."
[jquery]: http://jquery.com/ "jQuery is a fast, small, and feature-rich JavaScript library."
[flickr]: http://www.flickr.com/services/api/ "The flickr API lets us access content on flickr from our code."
[localstore]: https://developer.mozilla.org/en-US/docs/Web/Guide/DOM/Storage#sessionStorage "localStorage lets us save data on the user's computer to be accessed later."