Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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."