forked from ecampidoglio/gameoflife
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3045539
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## What is this? | ||
|
||
This is a web-based implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) built on the .NET web stack. | ||
|
||
## Why? | ||
|
||
The sole purpose of this project is to be *sandbox* to try out whatever library, language or technique that interests me at the moment. If a given experiment turns out well, I'll usually keep the implementation for future reference. | ||
|
||
Right now I'm using: | ||
|
||
- [Microsoft ASP.NET Web Api 4.0](http://www.asp.net/web-api) | ||
- [KnockoutJS](http://knockoutjs.com) | ||
- [jQuery](http://jquery.com) | ||
|
||
## How is it being developed? | ||
|
||
The entire application is developed using [Behavior-driven development (BDD)](https://en.wikipedia.org/wiki/Behavior-driven_development) style testing from the acceptance tests down to the unit test level. |