about.html
author Eugen Sawin <sawine@me73.com>
Fri, 06 Jan 2012 17:41:08 +0100
changeset 88 9c66e0a69a07
parent 86 bccc43e500a8
permissions -rw-r--r--
Fixed failed init of game of life.
sawine@85
     1
<!DOCTYPE html>
sawine@85
     2
<html lang="en">
sawine@85
     3
  <head>
sawine@85
     4
    <title>ME73</title>
sawine@85
     5
    <meta name="author" content="Eugen Sawin <sawine@me73.com>" />
sawine@85
     6
    <meta name="description" content="A Digital Playground" />
sawine@85
     7
    <meta name="robots" content="index, follow, noarchive" />
sawine@85
     8
    <meta name="googlebot" content="noarchive" />
sawine@85
     9
    <script src="jquery.js"></script>
sawine@85
    10
    <script src="script.js"></script>
sawine@85
    11
    <link rel="stylesheet" href="dark.css" type="text/css" />
sawine@85
    12
    <script type="application/javascript">
sawine@85
    13
      var _gaq = _gaq || [];
sawine@85
    14
      _gaq.push(['_setAccount', 'UA-2137333-1']);
sawine@85
    15
      _gaq.push(['_trackPageview']);
sawine@85
    16
      (function() {
sawine@85
    17
      var ga = document.createElement('script'); ga.type = 'text/javascript';
sawine@85
    18
      ga.async = true;
sawine@85
    19
      ga.src = ('https:' == document.location.protocol ? 'https://ssl' :'http://www') 
sawine@85
    20
      + '.google-analytics.com/ga.js';
sawine@85
    21
      var s = document.getElementsByTagName('script')[0];
sawine@85
    22
      s.parentNode.insertBefore(ga, s);
sawine@85
    23
      })();
sawine@85
    24
    </script>
sawine@85
    25
  </head>
sawine@85
    26
  <body>
sawine@85
    27
    <div id="wrap">
sawine@85
    28
      <div id="header">
sawine@85
    29
        <canvas id="logo">
sawine@85
    30
          FIND A BETTER BROWSER
sawine@85
    31
        </canvas>
sawine@85
    32
        <canvas id="sim">
sawine@85
    33
        </canvas>
sawine@85
    34
      </div>
sawine@85
    35
      <div id="content-wrap">
sawine@85
    36
        <div id="main">
sawine@85
    37
          <h2>Who am I?</h2>
sawine@85
    38
<p>
sawine@85
    39
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.
sawine@85
    40
</p>
sawine@85
    41
<p>
sawine@85
    42
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.
sawine@85
    43
</p>
sawine@85
    44
<p>
sawine@86
    45
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.
sawine@85
    46
</p>
sawine@85
    47
<p>      
sawine@87
    48
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>.
sawine@85
    49
</p>
sawine@85
    50
sawine@85
    51
        </div>
sawine@85
    52
        <div id="sidebar">
sawine@85
    53
          <p>           
sawine@85
    54
	    <a href="about.html" class="float-left"></a>            
sawine@85
    55
            I'm a programmer,<br />
sawine@85
    56
            a student of computer science,<br />
sawine@85
    57
            a music enthusiast.<br />
sawine@85
    58
            This is my site.
sawine@85
    59
          </p>
sawine@85
    60
          <div id="random_quote"></div>
sawine@85
    61
        </div>
sawine@85
    62
      </div>
sawine@85
    63
      <div id="footer">
sawine@85
    64
        <div id="footer-left">
sawine@85
    65
          <p>
sawine@85
    66
            <a href="mailto:sawine@me73.com">
sawine@85
    67
	      Eugen Sawin<br/>Software Enginnering &amp; Research</a>
sawine@85
    68
          </p>
sawine@85
    69
        </div>
sawine@85
    70
        <div id="footer-right">
sawine@85
    71
          <p class="align-right">
sawine@85
    72
            <a href="index.html">Home</a> | <a href="#top">Top</a>
sawine@85
    73
          </p>
sawine@85
    74
        </div>
sawine@85
    75
      </div>
sawine@85
    76
    </div>
sawine@85
    77
    <script type="application/javascript">
sawine@85
    78
      load_random_quote();
sawine@85
    79
    </script>
sawine@85
    80
  </body>
sawine@85
    81
</html>
sawine@85
    82