diff --git a/build/Game-Of-Life.html b/build/Game-Of-Life.html new file mode 100644 index 00000000..efbbb6b5 --- /dev/null +++ b/build/Game-Of-Life.html @@ -0,0 +1,254 @@ + +Game of Life - By: bendersteed - A simple implementation of Conway's Game of Life in JS. + + + + + + game of life + + + +

Game of Life

+
+
+ + +
+
+ + + +
+
+

+ The Game of Life, also known simply as Life, is a cellular + automaton devised by the British mathematician John Horton + Conway in 1970. + + Learn more here! +

+

+ + + + diff --git a/build/Just_A_Placeholder.txt b/build/Just_A_Placeholder.txt new file mode 100644 index 00000000..95e0fb0e --- /dev/null +++ b/build/Just_A_Placeholder.txt @@ -0,0 +1,5 @@ +# +# Just something to enable me to create the "/build" directory! +# +# +# ORMitchell <----> 03/25/2021 \ No newline at end of file diff --git a/build/index.html b/build/index.html new file mode 100644 index 00000000..afd75998 --- /dev/null +++ b/build/index.html @@ -0,0 +1,17 @@ + + + + Whatcha Lookin For ???? + + + + + + +

Nothing Here Yet !!!!

+ + + diff --git a/server.py b/server.py index 430d1dc7..9276b6cb 100644 --- a/server.py +++ b/server.py @@ -9,7 +9,7 @@ class Handler(http.server.SimpleHTTPRequestHandler): def do_GET(self): self.send_response(HTTPStatus.OK) self.end_headers() - msg = 'Hello! you requested %s' % (self.path) + msg = 'Hello My Dude! you requested %s' % (self.path) self.wfile.write(msg.encode())