howiwork.html
author root@h1429602.stratoserver.net
Mon, 05 Jul 2010 17:19:17 +0200
changeset 16 a04897b5801e
parent 2 98e7c7074764
permissions -rw-r--r--
Increased photo size.
sawine@0
     1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
root@16
     2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
sawine@0
     3
root@16
     4
<head>
sawine@2
     5
<title>ME73 - A Programmer's Playground</title><meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
sawine@0
     6
<meta name="author" content="Eugen Sawin - me73.com" />
sawine@0
     7
<meta name="description" content="A Digital Playground" />
sawine@0
     8
<meta name="robots" content="index, follow, noarchive" />
sawine@0
     9
<meta name="googlebot" content="noarchive" />
sawine@0
    10
<script src="script.js" type="text/javascript"></script>
root@16
    11
<link rel="stylesheet" href="dark.css" type="text/css" />
root@16
    12
</head>
sawine@0
    13
root@16
    14
<body onload="draw(0, 0, 0, 0);">
sawine@0
    15
<div id="wrap">
root@16
    16
	<div id="header">			
root@16
    17
    	<h1 id="logo-text"><a href="index.html" title="">ME73</a></h1>		
sawine@2
    18
	    <p id="intro">A Programmer's Playground.</p>
sawine@0
    19
        <div id="nav">
sawine@0
    20
			<ul>
sawine@0
    21
				<li><a href="index.html">Home</a></li>
root@16
    22
				<li><a href="chrome.html">Chrome</a></li>
sawine@0
    23
				<li><a href="resume.html">Resume</a></li>
sawine@0
    24
				<li><a href="howiwork.html">How I Work</a></li>
sawine@0
    25
				<li><a href="personalwork.html">Personal Work</a></li>
root@16
    26
            	<li><a href="books.html">Books</a></li>
root@16
    27
	         	<li><a href="links.html">Links</a></li>			
sawine@0
    28
				<li><a href="contact.html">Contact</a></li>		
sawine@0
    29
			</ul>		
sawine@0
    30
	    </div>	
sawine@0
    31
	</div>
sawine@0
    32
	<div id="content-wrap">				
sawine@0
    33
		<div id="main">
root@16
    34
			<h2>Programming Languages</h2>
sawine@0
    35
<p><img src="images/binary.png" alt="binary" class="float-right" height="100" width="100" />
sawine@0
    36
During my studies and personal work, I've used a variety of programming
sawine@0
    37
languages. Here is an overview in chronologic order with some comments:</p>
sawine@0
    38
<ul>
sawine@0
    39
<li>
sawine@0
    40
<h4>QBasic. *</h4>
sawine@0
    41
It was the first language that I've learned. I've enjoyed hacking
sawine@0
    42
around in it a little, but never got far with it due to lack of
sawine@0
    43
learning resources.</li>
sawine@0
    44
<li>
sawine@0
    45
<h4>C++. *****</h4>
sawine@0
    46
This was actually my second language to learn, which meant a big leap.
sawine@0
    47
My first contact was at the age of 15, though I hadn't used it
sawine@0
    48
extensively until I started studying. In the past years, I've been
sawine@0
    49
developing most of my personal and professional work in C++. It's a beast and should be
sawine@0
    50
only handled with care.</li>
sawine@0
    51
<li>
sawine@0
    52
<h4>Java. ***</h4>
sawine@0
    53
My first contact with Java was at the university. It does provide help
sawine@0
    54
by managed memory and a big standard library.
sawine@0
    55
</li>
sawine@0
    56
<li>
sawine@0
    57
<h4>Haskell. *</h4>
sawine@0
    58
This language was a love-hate relationship for me. I hated it for being
sawine@0
    59
so difficult to grasp for the first time and loved it for inspiring me
sawine@0
    60
to approach problem solving from a differnt angle, even when working
sawine@0
    61
with non-functional languages.</li>
sawine@0
    62
<li>
sawine@0
    63
<h4>Prolog. **</h4>
sawine@0
    64
Nice iterative language especially for the field of artificial
sawine@0
    65
intelligence.</li>
sawine@0
    66
<li>
sawine@0
    67
<h4>C. *****</h4>
sawine@0
    68
C is clean and flat. It is still the most successful structured language and will most
sawine@0
    69
probably still be in use for many years to come, even if it's just "under the hood".</li>
sawine@0
    70
<li>
sawine@0
    71
<h4>Assembler. **</h4>
sawine@0
    72
Been there, done that.</li>
sawine@0
    73
<li>
sawine@0
    74
<h4>C#. ***</h4>
sawine@0
    75
It feels like the more mature language based on a managed
sawine@0
    76
architecture, especially in combination with Visual Studio, developing
sawine@0
    77
in it is a breeze. The .Net framework is mostly a well structured and
sawine@0
    78
complete environment to work in.</li>
sawine@0
    79
<li>
sawine@0
    80
<h4>Python. ****</h4> 
sawine@0
    81
It's my personal favourite language for many fields. It's best suited
sawine@0
    82
for rapid prototyping, which fits perfectly into my method of working.</li>
sawine@0
    83
<li>
sawine@0
    84
<h4>Go. *</h4>
sawine@0
    85
Google has developed an interesting language with the goal of providing a general programming language including a garbage collector and efficient methods for concurrency handling. It's a fun language and shows some interesting concepts including a more dynamic approach on object orientation.</li>
root@16
    86
<li>
root@16
    87
<br />* show my level of expertise in the language
root@16
    88
</li>
sawine@0
    89
</ul>
sawine@0
    90
<h2>Operating Systems</h2>
sawine@0
    91
<ul>
sawine@0
    92
<li><h4>GNU/Linux</h4>
sawine@0
    93
Ubuntu, openSUSE, Red Hat and CentOS.</li>
sawine@0
    94
<li><h4>Microsoft Windows</h4>
sawine@0
    95
Windows 95/98/2000/XP/Vista/7.</li>
sawine@0
    96
<li><h4>AmigaOS</h4>
sawine@0
    97
Been a while...</li>
sawine@0
    98
</ul>
sawine@0
    99
<h2>Environments</h2>
sawine@0
   100
<ul>
sawine@0
   101
<li>
root@16
   102
<h4>GVim &amp; gedit</h4>
sawine@0
   103
These are my general purpose editors for quick editing on all platforms
sawine@0
   104
and have become my prefered editors when working in an IDE-free environment.</li>
sawine@0
   105
<li>
sawine@0
   106
<h4>Visual Studio</h4>
sawine@0
   107
It's my first choice for C#, C++ and C programming on Windows. It has
sawine@0
   108
proven to be a feature-rich, reliable and customisable IDE with great debugger integration.</li>
sawine@0
   109
<li>
sawine@0
   110
<h4>Eclipse</h4>
sawine@0
   111
It's what I prefer when developing in Java and, to some extent, when
sawine@0
   112
working in C++ on Linux. It has a great plugin system and is therefore
sawine@0
   113
extendable to be used with a big variety of languages.</li>
sawine@0
   114
</ul>
sawine@0
   115
<h2>Tools</h2>
sawine@0
   116
<ul>
sawine@0
   117
<li>
sawine@0
   118
<h4>Internet</h4>
sawine@0
   119
Chrome for browsing, IRSSI for IRC and Skype for communication.</li>
sawine@0
   120
<li>
sawine@0
   121
<h4>Documentation</h4>
root@16
   122
gedit &amp; LaTeX for papers, gnuplot for analysis visualisations and Inkscape for graphics.</li>
sawine@0
   123
<li>
sawine@0
   124
<h4>Version Control</h4>
sawine@2
   125
Mercurial for private work. 
sawine@2
   126
Subversion/CVS at work.</li>
sawine@0
   127
</ul>
sawine@0
   128
sawine@0
   129
      
sawine@0
   130
		</div>
sawine@0
   131
		<div id="sidebar">
sawine@0
   132
	        <!--<h3>About</h3>	-->
sawine@0
   133
	        <p>
sawine@0
   134
				<img src="images/me2.png" alt="me" class="float-left" height="64" width="64" />		
root@16
   135
			ME73 is my digital playground.
sawine@0
   136
            I'm a programmer, a student of computer science, a music enthusiast.
sawine@0
   137
            This site serves as a portfolio for my work, private and professional.
sawine@0
   138
	        </p>
root@16
   139
			<div id="random_quote"></div>	        	
sawine@0
   140
        </div>	
sawine@0
   141
	</div>
sawine@0
   142
  <div id="footer">
sawine@0
   143
	<div id="footer-left">
sawine@0
   144
		<p>
sawine@0
   145
		<!--&copy; ME73.COM&nbsp; 	-->
root@16
   146
      	<a href="http://creativecommons.org/licenses/by/3.0/"><img src="images/cc.png" alt="CC" style="float:left" /></a>
root@16
   147
		Except where otherwise noted, content on this site is licensed under a 			<a href="http://creativecommons.org/licenses/by/3.0">Creative Commons Attribution 3.0 License.</a> Site Design is based on a template by <a href="http://www.styleshout.com/">Styleshout.</a>
sawine@0
   148
		</p>	
sawine@0
   149
	</div>
sawine@0
   150
	
sawine@0
   151
	<div id="footer-right">
sawine@0
   152
		<p class="align-right">
root@16
   153
		<a href="index.html">Home</a> | <a href="#top">Top</a>
sawine@0
   154
		</p>
sawine@0
   155
	</div>	
sawine@0
   156
</div> 
sawine@0
   157
</div>
sawine@0
   158
<script type="text/javascript">
root@16
   159
    javascript:load_random_quote();        
sawine@0
   160
</script>
sawine@0
   161
<script type="text/javascript">
sawine@0
   162
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
sawine@0
   163
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
sawine@0
   164
</script>
sawine@0
   165
<script type="text/javascript">
sawine@0
   166
var pageTracker = _gat._getTracker("UA-2137333-1");
sawine@0
   167
pageTracker._trackPageview();
sawine@0
   168
</script>
root@16
   169
</body>
root@16
   170
</html>
root@16
   171