books.html
author Eugen Sawin <sawine@me73.com>
Thu, 05 Jan 2012 23:04:57 +0100
changeset 81 a76b2fb0f21f
parent 78 1e4ba37124e3
child 85 e78c4a33e958
permissions -rw-r--r--
Added big 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           <p>Here is a list of books, that I find useful or simply enjoyed reading.</p>
    38 <h2>Engineering &amp; Science</h2>
    39 <ul>
    40 <li><h4>G&ouml;del, Escher, Bach: An Eternal Golden Braid</h4><h5>Douglas R. Hofstadter</h5>
    41 A metaphorical fugue on minds and machines in the spirit of Lewis Carroll.
    42 </li>
    43 <li><h4>The Pragmatic Programmer</h4><h5>Andrew Hunt and David Thomas</h5>
    44 A collection of advises for effective software development.
    45 </li>
    46 <li><h4>Effective C++ / More Effective C++</h4><h5>Scott Meyers</h5>
    47 Effective and safe C++ programming advises for practical use.
    48 </li>
    49 <li><h4>Thinking in C++</h4><h5>Bruce Eckel</h5>
    50 A freely available introduction to C++ and its Standard Library.
    51 </li>
    52 <li><h4>Artificial Intelligence: A Modern Approach</h4><h5>Stuart J. Russel and Peter Norvig</h5>
    53 A comprehensive compendium of most techniques for the development of artificial intelligence.
    54 </li>
    55 <li><h4>The Algorithmic Beauty of Plants</h4><h5>Przemyslwa Prusinkieicz and Aristid Lindenmayer</h5>
    56 A wonderful introduction to L-systems and a motivational read.
    57 </li>
    58 <li><h4>Compilers: Principles, Techniques &amp; Tools</h4><h5>Alfred V. Aho, Monica S. Lam and Ravi Sethi</h5>
    59 The standard introduction to compiler development. Also known as the Dragon Book.
    60 </li>
    61 <li><h4>Computer Networks</h4><h5>Andrew S. Tanenbaum</h5>
    62 A good and in-depth textbook for network technology.   
    63 </li>
    64 <li><h4>A Brief History of Time</h4><h5>Stephen W. Hawking</h5>
    65 Popular science. Follow Stephen on his quest for the Theory of Everything.
    66 </li>
    67 </ul>
    68 <h2>Fiction</h2>
    69 <ul>
    70 <li><h4>Do Androids Dream of Electric Sheep?</h4><h5>Philip K. Dick</h5>
    71 A dark vision of mankind's future and the ethics of artificial life.
    72 </li>
    73 <li><h4>Alice in Wonderland</h4><h5>Lewis Carroll</h5>
    74 Follow the rabbit.
    75 </li>
    76 <li><h4>Through the Looking-Glass</h4><h5>Lewis Carroll</h5>
    77 Sequel to Alice in Wonderland.
    78 </li>
    79 <li><h4>1984</h4><h5>George Orwell</h5>
    80 Classic novel about a totalitarian regime and its influence on the society.
    81 </li>
    82 </ul>
    83 <h2>My Books</h2>
    84 <ul>
    85 <li><h4>Luftraummodellierung und Abflugplanung</h4><h5>Eugen Sawin</h5>
    86 Ein Projekt zur Optimierung der Abflugplanung in den Vereinigten Arabischen Emiraten.
    87 <div class="download"><a href="http://www.amazon.de/Luftraummodellierung-Abflugplanung-Optimierung-Vereinigten-Arabischen/dp/3639346203">Buy it on Amazon (German)</a></div>
    88 </li>
    89 </ul>
    90 
    91         </div>
    92         <div id="sidebar">
    93           <p>           
    94 	    <a href="resume.html" class="float-left"></a>            
    95             I'm a programmer,<br />
    96             a student of computer science,<br />
    97             a music enthusiast.<br />
    98             This is my site.
    99           </p>
   100           <div id="random_quote"></div>
   101         </div>
   102       </div>
   103       <div id="footer">
   104         <div id="footer-left">
   105           <p>
   106             <a href="mailto:sawine@me73.com">
   107 	      Eugen Sawin<br/>Software Enginnering &amp; Research</a>
   108           </p>
   109         </div>
   110         <div id="footer-right">
   111           <p class="align-right">
   112             <a href="index.html">Home</a> | <a href="#top">Top</a>
   113           </p>
   114         </div>
   115       </div>
   116     </div>
   117     <script type="application/javascript">
   118       javascript:load_random_quote();
   119     </script>
   120   </body>
   121 </html>
   122