Added about page.
authorEugen Sawin <sawine@me73.com>
Fri, 06 Jan 2012 03:33:57 +0100
changeset 85e78c4a33e958
parent 84 b7834ce141c4
child 86 bccc43e500a8
Added about page.
about.html
books.html
factory/create_page
factory/v2012/about.html
factory/v2012/frame.html
factory/v2012/links.html
factory/v2012/linksend.html
factory/v2012/script.js
gameoflife.html
howiwork.html
index.html
links.html
linksend.html
mandelbrot.html
personalwork.html
resume.html
script.js
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/about.html	Fri Jan 06 03:33:57 2012 +0100
     1.3 @@ -0,0 +1,82 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html lang="en">
     1.6 +  <head>
     1.7 +    <title>ME73</title>
     1.8 +    <meta name="author" content="Eugen Sawin <sawine@me73.com>" />
     1.9 +    <meta name="description" content="A Digital Playground" />
    1.10 +    <meta name="robots" content="index, follow, noarchive" />
    1.11 +    <meta name="googlebot" content="noarchive" />
    1.12 +    <script src="jquery.js"></script>
    1.13 +    <script src="script.js"></script>
    1.14 +    <link rel="stylesheet" href="dark.css" type="text/css" />
    1.15 +    <script type="application/javascript">
    1.16 +      var _gaq = _gaq || [];
    1.17 +      _gaq.push(['_setAccount', 'UA-2137333-1']);
    1.18 +      _gaq.push(['_trackPageview']);
    1.19 +      (function() {
    1.20 +      var ga = document.createElement('script'); ga.type = 'text/javascript';
    1.21 +      ga.async = true;
    1.22 +      ga.src = ('https:' == document.location.protocol ? 'https://ssl' :'http://www') 
    1.23 +      + '.google-analytics.com/ga.js';
    1.24 +      var s = document.getElementsByTagName('script')[0];
    1.25 +      s.parentNode.insertBefore(ga, s);
    1.26 +      })();
    1.27 +    </script>
    1.28 +  </head>
    1.29 +  <body>
    1.30 +    <div id="wrap">
    1.31 +      <div id="header">
    1.32 +        <canvas id="logo">
    1.33 +          FIND A BETTER BROWSER
    1.34 +        </canvas>
    1.35 +        <canvas id="sim">
    1.36 +        </canvas>
    1.37 +      </div>
    1.38 +      <div id="content-wrap">
    1.39 +        <div id="main">
    1.40 +          <h2>Who am I?</h2>
    1.41 +<p>
    1.42 +During the day I am a master student of computer science at the <a href="http://uni-freiburg.de">University of Freiburg</a> in <a href="http://xkcd.com/984">Germany</a>. At <a href="http://xkcd.com/313">night</a>, I am a <a href="http://xkcd.com/378">programmer</a> creating useless <a href="personalwork.html">machines</a> for my own enjoyment.
    1.43 +</p>
    1.44 +<p>
    1.45 +In my scientific pursuits I delve into <a href="http://xkcd.com/638">artificial intelligence</a> and all its <a href="http://xkcd.com/329">challenges</a>. Along the long hard road to general artificial intelligence I make detours for solving algorithmic problems like <a href="http://xkcd.com/461">fast routing</a> in public transportation networks.
    1.46 +</p>
    1.47 +<p>
    1.48 +Before going back to <a href="http://xkcd.com/664">academia</a>, I used to develop safety-critical software systems for the <a href="http://xkcd.com/912">Air Traffic Control</a> industry at <a href="http://comsoft.aero">Comsoft</a>. You can enjoy my work in 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.49 +</p>
    1.50 +<p>      
    1.51 +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>.
    1.52 +</p>
    1.53 +
    1.54 +        </div>
    1.55 +        <div id="sidebar">
    1.56 +          <p>           
    1.57 +	    <a href="about.html" class="float-left"></a>            
    1.58 +            I'm a programmer,<br />
    1.59 +            a student of computer science,<br />
    1.60 +            a music enthusiast.<br />
    1.61 +            This is my site.
    1.62 +          </p>
    1.63 +          <div id="random_quote"></div>
    1.64 +        </div>
    1.65 +      </div>
    1.66 +      <div id="footer">
    1.67 +        <div id="footer-left">
    1.68 +          <p>
    1.69 +            <a href="mailto:sawine@me73.com">
    1.70 +	      Eugen Sawin<br/>Software Enginnering &amp; Research</a>
    1.71 +          </p>
    1.72 +        </div>
    1.73 +        <div id="footer-right">
    1.74 +          <p class="align-right">
    1.75 +            <a href="index.html">Home</a> | <a href="#top">Top</a>
    1.76 +          </p>
    1.77 +        </div>
    1.78 +      </div>
    1.79 +    </div>
    1.80 +    <script type="application/javascript">
    1.81 +      load_random_quote();
    1.82 +    </script>
    1.83 +  </body>
    1.84 +</html>
    1.85 +
     2.1 --- a/books.html	Fri Jan 06 01:23:40 2012 +0100
     2.2 +++ b/books.html	Fri Jan 06 03:33:57 2012 +0100
     2.3 @@ -91,7 +91,7 @@
     2.4          </div>
     2.5          <div id="sidebar">
     2.6            <p>           
     2.7 -	    <a href="resume.html" class="float-left"></a>            
     2.8 +	    <a href="about.html" class="float-left"></a>            
     2.9              I'm a programmer,<br />
    2.10              a student of computer science,<br />
    2.11              a music enthusiast.<br />
    2.12 @@ -115,7 +115,7 @@
    2.13        </div>
    2.14      </div>
    2.15      <script type="application/javascript">
    2.16 -      javascript:load_random_quote();
    2.17 +      load_random_quote();
    2.18      </script>
    2.19    </body>
    2.20  </html>
     3.1 --- a/factory/create_page	Fri Jan 06 01:23:40 2012 +0100
     3.2 +++ b/factory/create_page	Fri Jan 06 03:33:57 2012 +0100
     3.3 @@ -5,7 +5,7 @@
     3.4  from optparse import OptionParser
     3.5  
     3.6  content_dir = "v2012"
     3.7 -content_files = ("index.html", "resume.html", "howiwork.html", "personalwork.html", "books.html", "links.html", "linksend.html", "gameoflife.html", "mandelbrot.html")
     3.8 +content_files = ("index.html", "resume.html", "howiwork.html", "personalwork.html", "books.html", "links.html", "linksend.html", "gameoflife.html", "mandelbrot.html", "about.html")
     3.9  
    3.10  def create_page(frame_filename, content_filename, output_filename):
    3.11     frame_file = open(frame_filename, "r")
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/factory/v2012/about.html	Fri Jan 06 03:33:57 2012 +0100
     4.3 @@ -0,0 +1,13 @@
     4.4 +<h2>Who am I?</h2>
     4.5 +<p>
     4.6 +During the day I am a master student of computer science at the <a href="http://uni-freiburg.de">University of Freiburg</a> in <a href="http://xkcd.com/984">Germany</a>. At <a href="http://xkcd.com/313">night</a>, I am a <a href="http://xkcd.com/378">programmer</a> creating useless <a href="personalwork.html">machines</a> for my own enjoyment.
     4.7 +</p>
     4.8 +<p>
     4.9 +In my scientific pursuits I delve into <a href="http://xkcd.com/638">artificial intelligence</a> and all its <a href="http://xkcd.com/329">challenges</a>. Along the long hard road to general artificial intelligence I make detours for solving algorithmic problems like <a href="http://xkcd.com/461">fast routing</a> in public transportation networks.
    4.10 +</p>
    4.11 +<p>
    4.12 +Before going back to <a href="http://xkcd.com/664">academia</a>, I used to develop safety-critical software systems for the <a href="http://xkcd.com/912">Air Traffic Control</a> industry at <a href="http://comsoft.aero">Comsoft</a>. You can enjoy my work in 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.
    4.13 +</p>
    4.14 +<p>      
    4.15 +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>.
    4.16 +</p>
     5.1 --- a/factory/v2012/frame.html	Fri Jan 06 01:23:40 2012 +0100
     5.2 +++ b/factory/v2012/frame.html	Fri Jan 06 03:33:57 2012 +0100
     5.3 @@ -38,7 +38,7 @@
     5.4          </div>
     5.5          <div id="sidebar">
     5.6            <p>           
     5.7 -	    <a href="resume.html" class="float-left"></a>            
     5.8 +	    <a href="about.html" class="float-left"></a>            
     5.9              I'm a programmer,<br />
    5.10              a student of computer science,<br />
    5.11              a music enthusiast.<br />
    5.12 @@ -62,7 +62,7 @@
    5.13        </div>
    5.14      </div>
    5.15      <script type="application/javascript">
    5.16 -      javascript:load_random_quote();
    5.17 +      load_random_quote();
    5.18      </script>
    5.19    </body>
    5.20  </html>
     6.1 --- a/factory/v2012/links.html	Fri Jan 06 01:23:40 2012 +0100
     6.2 +++ b/factory/v2012/links.html	Fri Jan 06 03:33:57 2012 +0100
     6.3 @@ -13,7 +13,7 @@
     6.4  
     6.5  <h2>The Bad</h2>
     6.6  <ul>
     6.7 -<li><h4><a href="https://twitter.com/notchnik">@sowae</a></h4>
     6.8 +<li><h4><a href="https://twitter.com/notchnik">@eamsen</a></h4>
     6.9  The emptyness in 140 characters.
    6.10  </li>
    6.11  <li><h4><a href="https://plus.google.com/101733701635400621767/">Google+ profile</a></h4>
     7.1 --- a/factory/v2012/linksend.html	Fri Jan 06 01:23:40 2012 +0100
     7.2 +++ b/factory/v2012/linksend.html	Fri Jan 06 03:33:57 2012 +0100
     7.3 @@ -13,7 +13,7 @@
     7.4  
     7.5  <h2>The Bad</h2>
     7.6  <ul>
     7.7 -<li><h4><a href="https://twitter.com/notchnik">@sowae</a></h4>
     7.8 +<li><h4><a href="https://twitter.com/notchnik">@eamsen</a></h4>
     7.9  The emptyness in 140 characters.
    7.10  </li>
    7.11  <li><h4><a href="https://plus.google.com/101733701635400621767/">Google+ profile</a></h4>
     8.1 --- a/factory/v2012/script.js	Fri Jan 06 01:23:40 2012 +0100
     8.2 +++ b/factory/v2012/script.js	Fri Jan 06 03:33:57 2012 +0100
     8.3 @@ -5,7 +5,7 @@
     8.4  
     8.5  $(document).ready(function() {   
     8.6      simulation = new Simulation(document.getElementById("sim"), 
     8.7 -                                670, 50, 8, green, background);  
     8.8 +                                670, 50, 6, green, background);  
     8.9      var image = new Image();
    8.10      image.onload = init_logo;
    8.11      image.src = "images/logobase.png";
     9.1 --- a/gameoflife.html	Fri Jan 06 01:23:40 2012 +0100
     9.2 +++ b/gameoflife.html	Fri Jan 06 03:33:57 2012 +0100
     9.3 @@ -43,7 +43,7 @@
     9.4          </div>
     9.5          <div id="sidebar">
     9.6            <p>           
     9.7 -	    <a href="resume.html" class="float-left"></a>            
     9.8 +	    <a href="about.html" class="float-left"></a>            
     9.9              I'm a programmer,<br />
    9.10              a student of computer science,<br />
    9.11              a music enthusiast.<br />
    9.12 @@ -67,7 +67,7 @@
    9.13        </div>
    9.14      </div>
    9.15      <script type="application/javascript">
    9.16 -      javascript:load_random_quote();
    9.17 +      load_random_quote();
    9.18      </script>
    9.19    </body>
    9.20  </html>
    10.1 --- a/howiwork.html	Fri Jan 06 01:23:40 2012 +0100
    10.2 +++ b/howiwork.html	Fri Jan 06 03:33:57 2012 +0100
    10.3 @@ -114,7 +114,7 @@
    10.4          </div>
    10.5          <div id="sidebar">
    10.6            <p>           
    10.7 -	    <a href="resume.html" class="float-left"></a>            
    10.8 +	    <a href="about.html" class="float-left"></a>            
    10.9              I'm a programmer,<br />
   10.10              a student of computer science,<br />
   10.11              a music enthusiast.<br />
   10.12 @@ -138,7 +138,7 @@
   10.13        </div>
   10.14      </div>
   10.15      <script type="application/javascript">
   10.16 -      javascript:load_random_quote();
   10.17 +      load_random_quote();
   10.18      </script>
   10.19    </body>
   10.20  </html>
    11.1 --- a/index.html	Fri Jan 06 01:23:40 2012 +0100
    11.2 +++ b/index.html	Fri Jan 06 03:33:57 2012 +0100
    11.3 @@ -42,7 +42,7 @@
    11.4          </div>
    11.5          <div id="sidebar">
    11.6            <p>           
    11.7 -	    <a href="resume.html" class="float-left"></a>            
    11.8 +	    <a href="about.html" class="float-left"></a>            
    11.9              I'm a programmer,<br />
   11.10              a student of computer science,<br />
   11.11              a music enthusiast.<br />
   11.12 @@ -66,7 +66,7 @@
   11.13        </div>
   11.14      </div>
   11.15      <script type="application/javascript">
   11.16 -      javascript:load_random_quote();
   11.17 +      load_random_quote();
   11.18      </script>
   11.19    </body>
   11.20  </html>
    12.1 --- a/links.html	Fri Jan 06 01:23:40 2012 +0100
    12.2 +++ b/links.html	Fri Jan 06 03:33:57 2012 +0100
    12.3 @@ -49,7 +49,7 @@
    12.4  
    12.5  <h2>The Bad</h2>
    12.6  <ul>
    12.7 -<li><h4><a href="https://twitter.com/notchnik">@sowae</a></h4>
    12.8 +<li><h4><a href="https://twitter.com/notchnik">@eamsen</a></h4>
    12.9  The emptyness in 140 characters.
   12.10  </li>
   12.11  <li><h4><a href="https://plus.google.com/101733701635400621767/">Google+ profile</a></h4>
   12.12 @@ -87,7 +87,7 @@
   12.13          </div>
   12.14          <div id="sidebar">
   12.15            <p>           
   12.16 -	    <a href="resume.html" class="float-left"></a>            
   12.17 +	    <a href="about.html" class="float-left"></a>            
   12.18              I'm a programmer,<br />
   12.19              a student of computer science,<br />
   12.20              a music enthusiast.<br />
   12.21 @@ -111,7 +111,7 @@
   12.22        </div>
   12.23      </div>
   12.24      <script type="application/javascript">
   12.25 -      javascript:load_random_quote();
   12.26 +      load_random_quote();
   12.27      </script>
   12.28    </body>
   12.29  </html>
    13.1 --- a/linksend.html	Fri Jan 06 01:23:40 2012 +0100
    13.2 +++ b/linksend.html	Fri Jan 06 03:33:57 2012 +0100
    13.3 @@ -49,7 +49,7 @@
    13.4  
    13.5  <h2>The Bad</h2>
    13.6  <ul>
    13.7 -<li><h4><a href="https://twitter.com/notchnik">@sowae</a></h4>
    13.8 +<li><h4><a href="https://twitter.com/notchnik">@eamsen</a></h4>
    13.9  The emptyness in 140 characters.
   13.10  </li>
   13.11  <li><h4><a href="https://plus.google.com/101733701635400621767/">Google+ profile</a></h4>
   13.12 @@ -82,7 +82,7 @@
   13.13          </div>
   13.14          <div id="sidebar">
   13.15            <p>           
   13.16 -	    <a href="resume.html" class="float-left"></a>            
   13.17 +	    <a href="about.html" class="float-left"></a>            
   13.18              I'm a programmer,<br />
   13.19              a student of computer science,<br />
   13.20              a music enthusiast.<br />
   13.21 @@ -106,7 +106,7 @@
   13.22        </div>
   13.23      </div>
   13.24      <script type="application/javascript">
   13.25 -      javascript:load_random_quote();
   13.26 +      load_random_quote();
   13.27      </script>
   13.28    </body>
   13.29  </html>
    14.1 --- a/mandelbrot.html	Fri Jan 06 01:23:40 2012 +0100
    14.2 +++ b/mandelbrot.html	Fri Jan 06 03:33:57 2012 +0100
    14.3 @@ -54,7 +54,7 @@
    14.4          </div>
    14.5          <div id="sidebar">
    14.6            <p>           
    14.7 -	    <a href="resume.html" class="float-left"></a>            
    14.8 +	    <a href="about.html" class="float-left"></a>            
    14.9              I'm a programmer,<br />
   14.10              a student of computer science,<br />
   14.11              a music enthusiast.<br />
   14.12 @@ -78,7 +78,7 @@
   14.13        </div>
   14.14      </div>
   14.15      <script type="application/javascript">
   14.16 -      javascript:load_random_quote();
   14.17 +      load_random_quote();
   14.18      </script>
   14.19    </body>
   14.20  </html>
    15.1 --- a/personalwork.html	Fri Jan 06 01:23:40 2012 +0100
    15.2 +++ b/personalwork.html	Fri Jan 06 03:33:57 2012 +0100
    15.3 @@ -184,7 +184,7 @@
    15.4          </div>
    15.5          <div id="sidebar">
    15.6            <p>           
    15.7 -	    <a href="resume.html" class="float-left"></a>            
    15.8 +	    <a href="about.html" class="float-left"></a>            
    15.9              I'm a programmer,<br />
   15.10              a student of computer science,<br />
   15.11              a music enthusiast.<br />
   15.12 @@ -208,7 +208,7 @@
   15.13        </div>
   15.14      </div>
   15.15      <script type="application/javascript">
   15.16 -      javascript:load_random_quote();
   15.17 +      load_random_quote();
   15.18      </script>
   15.19    </body>
   15.20  </html>
    16.1 --- a/resume.html	Fri Jan 06 01:23:40 2012 +0100
    16.2 +++ b/resume.html	Fri Jan 06 03:33:57 2012 +0100
    16.3 @@ -88,7 +88,7 @@
    16.4          </div>
    16.5          <div id="sidebar">
    16.6            <p>           
    16.7 -	    <a href="resume.html" class="float-left"></a>            
    16.8 +	    <a href="about.html" class="float-left"></a>            
    16.9              I'm a programmer,<br />
   16.10              a student of computer science,<br />
   16.11              a music enthusiast.<br />
   16.12 @@ -112,7 +112,7 @@
   16.13        </div>
   16.14      </div>
   16.15      <script type="application/javascript">
   16.16 -      javascript:load_random_quote();
   16.17 +      load_random_quote();
   16.18      </script>
   16.19    </body>
   16.20  </html>
    17.1 --- a/script.js	Fri Jan 06 01:23:40 2012 +0100
    17.2 +++ b/script.js	Fri Jan 06 03:33:57 2012 +0100
    17.3 @@ -5,7 +5,7 @@
    17.4  
    17.5  $(document).ready(function() {   
    17.6      simulation = new Simulation(document.getElementById("sim"), 
    17.7 -                                670, 50, 8, green, background);  
    17.8 +                                670, 50, 6, green, background);  
    17.9      var image = new Image();
   17.10      image.onload = init_logo;
   17.11      image.src = "images/logobase.png";