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