linksend.html
author Eugen Sawin <sawine@me73.com>
Thu, 05 Jan 2012 15:32:41 +0100
changeset 79 72b5c635d6df
parent 77 9c443a61358c
child 80 ba69edadfc4c
permissions -rw-r--r--
Fixed game of life.
     1 <!DOCTYPE html>
     2 <html lang="en">
     3   <head>
     4     <title>ME73</title>
     5     <meta name="author" content="Eugen Sawin <sawine@me73.com>" />
     6     <meta name="description" content="A Digital Playground" />
     7     <meta name="robots" content="index, follow, noarchive" />
     8     <meta name="googlebot" content="noarchive" />
     9     <script src="jquery.js"></script>
    10     <script src="script.js"></script>
    11     <link rel="stylesheet" href="dark.css" type="text/css" />
    12     <script type="application/javascript">
    13       var _gaq = _gaq || [];
    14       _gaq.push(['_setAccount', 'UA-2137333-1']);
    15       _gaq.push(['_trackPageview']);
    16       (function() {
    17       var ga = document.createElement('script'); ga.type = 'text/javascript';
    18       ga.async = true;
    19       ga.src = ('https:' == document.location.protocol ? 'https://ssl' :'http://www') 
    20       + '.google-analytics.com/ga.js';
    21       var s = document.getElementsByTagName('script')[0];
    22       s.parentNode.insertBefore(ga, s);
    23       })();
    24     </script>
    25   </head>
    26   <body>
    27     <div id="wrap">
    28       <div id="header">
    29         <canvas id="logo">
    30           FIND A BETTER BROWSER
    31         </canvas>
    32         <canvas id="sim">
    33         </canvas>
    34       </div>
    35       <div id="content-wrap">
    36         <div id="main">
    37           <h2>The Good</h2>
    38 <ul>
    39 <li><h4><a href="http://www.wikipedia.org">Wikipedia</a></h4>
    40 The fascination of community, the wealth of knowledge.
    41 </li>
    42 <li><h4><a href="http://www.ted.com">TED</a></h4>
    43 Inspiring.
    44 </li>
    45 <li><h4><a href="http://www.xkcd.com">xkcd</a></h4>
    46 Kernel dumping thrice a week.
    47 </li>
    48 </ul>
    49 
    50 <h2>The Bad</h2>
    51 <ul>
    52 <li><h4><a href="https://twitter.com/notchnik">@sowae</a></h4>
    53 The emptyness in 140 characters.
    54 </li>
    55 <li><h4><a href="https://plus.google.com/101733701635400621767/">Google+ profile</a></h4>
    56 Staying in touch with people by keeping them at a distance.
    57 </li>
    58 </ul>
    59 
    60 <h2>People and their Sites</h2>
    61 <ul>
    62 <li><h4><a href="http://www.chris-koenig.de">Christian K&ouml;nig</a></h4>
    63 An ex-fellow student and companion in the quest for world domination.
    64 </li>
    65 <li><h4><a href="http://www.unidentify.com">Michael Chlebek</a></h4>
    66 An ex-fellow student and friendly programmer.
    67 </li>
    68 <li><h4><a href="http://www4.informatik.tu-muenchen.de/~schulz/">Dr. Stephan Schulz</a></h4>
    69 My advisor during my bachelor thesis and creator of the brainiac theorem prover called 
    70 <a href="http://eprover.org">E</a>.
    71 </li>
    72 </ul>
    73 
    74 <h2>Recursive</h2>
    75 <ul>
    76 <li>
    77 The End.<br />
    78 Recursive humour recycled from <a href="http://www4.informatik.tu-muenchen.de/~schulz/">Stephan Schulz</a>, to preserve the environment.
    79 </li>
    80 </ul>
    81 
    82         </div>
    83         <div id="sidebar">
    84           <p>           
    85 	    <a href="resume.html">
    86               <img src="images/me2.png" alt="me" class="float-left" height="70" width="70" />
    87             </a>            
    88             <br />I'm a programmer,<br />
    89             a student of computer science,<br />
    90             a music enthusiast.<br />
    91             This is my site.
    92           </p>
    93           <div id="random_quote"></div>
    94         </div>
    95       </div>
    96       <div id="footer">
    97         <div id="footer-left">
    98           <p>
    99             <a href="mailto:sawine@me73.com">
   100 	      Eugen Sawin<br/>Software Enginnering &amp; Research</a>
   101           </p>
   102         </div>
   103         <div id="footer-right">
   104           <p class="align-right">
   105             <a href="index.html">Home</a> | <a href="#top">Top</a>
   106           </p>
   107         </div>
   108       </div>
   109     </div>
   110     <script type="application/javascript">
   111       javascript:load_random_quote();
   112     </script>
   113   </body>
   114 </html>
   115