Previous Projects
Memory Game
Emulates the logic of a card game using JavaScript, CSS, and HTML
This project is an electronic version of a well-known card game "Concentration" or simply "Pairs". This is a card game in which all of the cards are laid face down. Then, two cards are flipped face up over each turn. The object is to find pairs of matching cards. The game ends when the last pair has been picked up. The goal of the project is to emulate the logic of the game using HTML, CSS, and JavaScript. GitHub
Arcade Game
An arcade game developed with JavaScript object-oriented programming features
The goal of this project is to develop a simple arcade game using JavaScript object-oriented programming features. GitHub
Restaurant Review App
In this project I have converted a static webpage to an offline-ready web-application.
How to Start a website
1. Download the project form GitHub Repo
2. In the project folder, start up a simple HTTP server to serve up the site files on your local computer. Python has some simple tools to do this:
- If you have Python 2.x, spin up the server with `python -m SimpleHTTPServer 8000`.
- For Python 3.x, you can use `python3 -m http.server 8000`.
3. With your server running, visit the site: `http://localhost:8000`.
Feed Reader Testing
Learning test-driven development by using the Jasmine.js framework
The goal of this project is to learn "testing-driven development" by using the Jasmine.js framework. GitHub Repo