Switched index page to game of life.
authorEugen Sawin <sawine@me73.com>
Fri, 06 Jan 2012 17:20:14 +0100
changeset 87c19fea1cd73f
parent 86 bccc43e500a8
child 88 9c66e0a69a07
Switched index page to game of life.
about.html
factory/v2012/about.html
factory/v2012/index.html
factory/v2012/script.js
index.html
script.js
     1.1 --- a/about.html	Fri Jan 06 17:09:19 2012 +0100
     1.2 +++ b/about.html	Fri Jan 06 17:20:14 2012 +0100
     1.3 @@ -45,7 +45,7 @@
     1.4  Before going back to <a href="http://xkcd.com/664">academia</a>, I used to develop <a href="http://xkcd.com/912">safety-critical</a> software systems for the Air Traffic Control industry at <a href="http://comsoft.aero">Comsoft</a>. You can experience my work for the industry by reading this little <a href="http://www.amazon.de/Luftraummodellierung-Abflugplanung-Optimierung-Vereinigten-Arabischen/dp/3639346203">book</a> I've written, while waiting for your flight to take off anywhere in the United Arab Emirates.
     1.5  </p>
     1.6  <p>      
     1.7 -I enjoy <a href="http://xkcd.com/844">good code</a>, <a href="http://xkcd.com/353">good</a> <a href="http://xkcd.com/224">programming languages</a>, <a href="http://xkcd.com/193">good music</a>, <a href="http://xkcd.com/971">good books</a>, <a href="http://xkcd.com/566">good movies</a> and <a href="http://xkcd.com/435">tea</a>. I enjoy spending time with my family and my lovely girlfriend, who makes the best <a href="http://suesskeks.de">little cookies</a> in town. And games, I like playing <a href="http://xkcd.com/888">good games</a> and developing games.
     1.8 +I enjoy <a href="http://xkcd.com/844">good code</a>, <a href="http://xkcd.com/353">good</a> <a href="http://xkcd.com/224">programming languages</a>, <a href="http://xkcd.com/193">good music</a>, <a href="http://xkcd.com/971">good books</a>, <a href="http://xkcd.com/566">good movies</a> and <a href="http://xkcd.com/435">tea</a>. I enjoy spending time with my family and my lovely girlfriend, who makes the best <a href="http://suesskeks.de">little cookies</a> in town. And I like <a href="http://xkcd.com/888">games</a>.
     1.9  </p>
    1.10  
    1.11          </div>
     2.1 --- a/factory/v2012/about.html	Fri Jan 06 17:09:19 2012 +0100
     2.2 +++ b/factory/v2012/about.html	Fri Jan 06 17:20:14 2012 +0100
     2.3 @@ -9,5 +9,5 @@
     2.4  Before going back to <a href="http://xkcd.com/664">academia</a>, I used to develop <a href="http://xkcd.com/912">safety-critical</a> software systems for the Air Traffic Control industry at <a href="http://comsoft.aero">Comsoft</a>. You can experience my work for the industry by reading this little <a href="http://www.amazon.de/Luftraummodellierung-Abflugplanung-Optimierung-Vereinigten-Arabischen/dp/3639346203">book</a> I've written, while waiting for your flight to take off anywhere in the United Arab Emirates.
     2.5  </p>
     2.6  <p>      
     2.7 -I enjoy <a href="http://xkcd.com/844">good code</a>, <a href="http://xkcd.com/353">good</a> <a href="http://xkcd.com/224">programming languages</a>, <a href="http://xkcd.com/193">good music</a>, <a href="http://xkcd.com/971">good books</a>, <a href="http://xkcd.com/566">good movies</a> and <a href="http://xkcd.com/435">tea</a>. I enjoy spending time with my family and my lovely girlfriend, who makes the best <a href="http://suesskeks.de">little cookies</a> in town. And games, I like playing <a href="http://xkcd.com/888">good games</a> and developing games.
     2.8 +I enjoy <a href="http://xkcd.com/844">good code</a>, <a href="http://xkcd.com/353">good</a> <a href="http://xkcd.com/224">programming languages</a>, <a href="http://xkcd.com/193">good music</a>, <a href="http://xkcd.com/971">good books</a>, <a href="http://xkcd.com/566">good movies</a> and <a href="http://xkcd.com/435">tea</a>. I enjoy spending time with my family and my lovely girlfriend, who makes the best <a href="http://suesskeks.de">little cookies</a> in town. And I like <a href="http://xkcd.com/888">games</a>.
     2.9  </p>
     3.1 --- a/factory/v2012/index.html	Fri Jan 06 17:09:19 2012 +0100
     3.2 +++ b/factory/v2012/index.html	Fri Jan 06 17:20:14 2012 +0100
     3.3 @@ -1,4 +1,5 @@
     3.4  <p>
     3.5 -  <img src="images/mandelbrot.png" alt="Mandelbrot" height="280" width="100%" />
     3.6 +  <canvas id="gameoflife" width="670" height="670">
     3.7 +    FIND A BETTER BROWSER.
     3.8 +  </canvas>
     3.9  </p>
    3.10 -       
     4.1 --- a/factory/v2012/script.js	Fri Jan 06 17:09:19 2012 +0100
     4.2 +++ b/factory/v2012/script.js	Fri Jan 06 17:20:14 2012 +0100
     4.3 @@ -38,9 +38,9 @@
     4.4      var page = document.location.href.substr(pos);
     4.5      if (page == "mandelbrot.html") {
     4.6          draw(0, 0, 0, 0, 0);
     4.7 -    } else if (page == "gameoflife.html") {
     4.8 -        init_gameoflife("text");
     4.9 -    }
    4.10 +    } else if (page == "" || page == "index.html") {
    4.11 +        init_gameoflife("ME73");
    4.12 +    }    
    4.13  });
    4.14  
    4.15  $(document).keypress(function(event) {
    4.16 @@ -340,9 +340,8 @@
    4.17                                      green, black);
    4.18          $("#gameoflife").mousemove(function(event) { 
    4.19              gameoflife.mouse_moved(mouse_pos(event, "#gameoflife")); 
    4.20 -        });   
    4.21 -        text = "ME73";
    4.22 -        var offset = new Array(13, 17);
    4.23 +        });       
    4.24 +        var offset = new Array(13, 16);
    4.25          for (var c in text) {            
    4.26              var w = 0;
    4.27              for (p in char_map[text[c]]) {
     5.1 --- a/index.html	Fri Jan 06 17:09:19 2012 +0100
     5.2 +++ b/index.html	Fri Jan 06 17:20:14 2012 +0100
     5.3 @@ -35,9 +35,10 @@
     5.4        <div id="content-wrap">
     5.5          <div id="main">
     5.6            <p>
     5.7 -  <img src="images/mandelbrot.png" alt="Mandelbrot" height="280" width="100%" />
     5.8 +  <canvas id="gameoflife" width="670" height="670">
     5.9 +    FIND A BETTER BROWSER.
    5.10 +  </canvas>
    5.11  </p>
    5.12 -       
    5.13  
    5.14          </div>
    5.15          <div id="sidebar">
     6.1 --- a/script.js	Fri Jan 06 17:09:19 2012 +0100
     6.2 +++ b/script.js	Fri Jan 06 17:20:14 2012 +0100
     6.3 @@ -38,9 +38,9 @@
     6.4      var page = document.location.href.substr(pos);
     6.5      if (page == "mandelbrot.html") {
     6.6          draw(0, 0, 0, 0, 0);
     6.7 -    } else if (page == "gameoflife.html") {
     6.8 -        init_gameoflife("text");
     6.9 -    }
    6.10 +    } else if (page == "" || page == "index.html") {
    6.11 +        init_gameoflife("ME73");
    6.12 +    }    
    6.13  });
    6.14  
    6.15  $(document).keypress(function(event) {
    6.16 @@ -340,9 +340,8 @@
    6.17                                      green, black);
    6.18          $("#gameoflife").mousemove(function(event) { 
    6.19              gameoflife.mouse_moved(mouse_pos(event, "#gameoflife")); 
    6.20 -        });   
    6.21 -        text = "ME73";
    6.22 -        var offset = new Array(13, 17);
    6.23 +        });       
    6.24 +        var offset = new Array(13, 16);
    6.25          for (var c in text) {            
    6.26              var w = 0;
    6.27              for (p in char_map[text[c]]) {