<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Squirrel Hacker &#187; Java</title>
	<atom:link href="http://blog.seanja.com/category/programming/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.seanja.com</link>
	<description>I have come forward in time from the year 1986 to share this with you</description>
	<lastBuildDate>Mon, 06 Feb 2012 12:38:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>When is 4 &#8211; 1 = 4?</title>
		<link>http://blog.seanja.com/2009/08/when-is-4-1-4/</link>
		<comments>http://blog.seanja.com/2009/08/when-is-4-1-4/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 00:59:07 +0000</pubDate>
		<dc:creator>SeanJA</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[WTF]]></category>
		<category><![CDATA[Chain-of-responsibility pattern]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[Computer programming]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Software design patterns]]></category>
		<category><![CDATA[Software engineering]]></category>
		<category><![CDATA[Variable shadowing]]></category>

		<guid isPermaLink="false">http://blog.seanja.com/?p=727</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2009/08/when-is-4-1-4/' addthis:title='When is 4 &#8211; 1 = 4? '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>When c like languages say so $a = 5; $b = 1; &#160; $result = $a---$b; echo $a; #=&#62;4 echo $b; #=&#62;1 echo $result; #=&#62;4 public class FunMaths&#123; public static void main&#40;String&#91;&#93; args&#41; &#123; int result; int a = 5, b = 1; result = a---b; System.out.println&#40;a&#41;; System.out.println&#40;b&#41;; System.out.println&#40;result&#41;; &#125; &#125; Related posts: Orms and [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2009/08/when-is-4-1-4/' addthis:title='When is 4 &#8211; 1 = 4? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>
Related posts:<ol>
<li><a href='http://blog.seanja.com/2010/05/orms-and-circular-references/' rel='bookmark' title='Orms and Circular References'>Orms and Circular References</a></li>
<li><a href='http://blog.seanja.com/2011/07/trollin-oracle/' rel='bookmark' title='Trollin Oracle'>Trollin Oracle</a></li>
<li><a href='http://blog.seanja.com/2010/04/php-functions-youre-doing-it-wrong/' rel='bookmark' title='PHP Functions, you&#8217;re doing it wrong&#8230;'>PHP Functions, you&#8217;re doing it wrong&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2009/08/when-is-4-1-4/' addthis:title='When is 4 &#8211; 1 = 4? '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>When c like languages say so</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$a</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">5</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$b</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$a</span><span style="color: #339933;">---</span><span style="color: #000088;">$b</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$a</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">#=&gt;4
</span><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$b</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">#=&gt;1
</span><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$result</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">#=&gt;4</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> FunMaths<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">int</span> result<span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">int</span> a <span style="color: #339933;">=</span> <span style="color: #cc66cc;">5</span>, b <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
		result <span style="color: #339933;">=</span> a<span style="color: #339933;">---</span>b<span style="color: #339933;">;</span>
		<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>a<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>b<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>result<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2009/08/when-is-4-1-4/' addthis:title='When is 4 &#8211; 1 = 4? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div><p>Related posts:<ol>
<li><a href='http://blog.seanja.com/2010/05/orms-and-circular-references/' rel='bookmark' title='Orms and Circular References'>Orms and Circular References</a></li>
<li><a href='http://blog.seanja.com/2011/07/trollin-oracle/' rel='bookmark' title='Trollin Oracle'>Trollin Oracle</a></li>
<li><a href='http://blog.seanja.com/2010/04/php-functions-youre-doing-it-wrong/' rel='bookmark' title='PHP Functions, you&#8217;re doing it wrong&#8230;'>PHP Functions, you&#8217;re doing it wrong&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seanja.com/2009/08/when-is-4-1-4/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Why I use NetBeans</title>
		<link>http://blog.seanja.com/2009/04/why-i-use-netbeans/</link>
		<comments>http://blog.seanja.com/2009/04/why-i-use-netbeans/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:15:51 +0000</pubDate>
		<dc:creator>SeanJA</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Apache Ant]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Inc.]]></category>
		<category><![CDATA[INTERNATIONAL BUSINESS MACHINES CORPORATION]]></category>
		<category><![CDATA[Java platform]]></category>
		<category><![CDATA[NETBEANS INC]]></category>
		<category><![CDATA[ORACLE AMERICA]]></category>
		<category><![CDATA[Revision control]]></category>
		<category><![CDATA[Sun Microsystems]]></category>

		<guid isPermaLink="false">http://blog.seanja.com/?p=580</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2009/04/why-i-use-netbeans/' addthis:title='Why I use NetBeans '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>I am sure you know by now that IBM was set to aquire Sun Microsystems this week. This would have been bad seeing as most of their products directly compete/overlap with eachother. Fortunately they backed off at the last minute (or at least they did not offer enough money for them). While this might be [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2009/04/why-i-use-netbeans/' addthis:title='Why I use NetBeans ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>
Related posts:<ol>
<li><a href='http://blog.seanja.com/2009/01/netbeans-subversion-eclipse-subversion/' rel='bookmark' title='Netbeans Subversion &gt; Eclipse Subversion'>Netbeans Subversion &gt; Eclipse Subversion</a></li>
<li><a href='http://blog.seanja.com/2010/04/netbeans-6-9-my-favourite-new-features/' rel='bookmark' title='Netbeans 6.9: My New Favourite Features'>Netbeans 6.9: My New Favourite Features</a></li>
<li><a href='http://blog.seanja.com/2010/03/jquery-contains-selector-and-unicode-characters/' rel='bookmark' title='jQuery :contains selector and unicode characters'>jQuery :contains selector and unicode characters</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2009/04/why-i-use-netbeans/' addthis:title='Why I use NetBeans '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>I am sure you know by now that IBM was set to aquire Sun Microsystems this week. This would have been bad seeing as most of their products directly compete/overlap with eachother. Fortunately they backed off at the last minute (or at least they did not offer enough money for them). While this might be a barganing tactic I surely hope that this is not the case. If they had bought them, it seems to me that it would have meant the death of many of the great Sun products.</p>
<p><a title="NetBeans" href="http://en.wikipedia.org/wiki/NetBeans" target="_blank">NetBeans</a> is one that would have been dead really quickly, sure it would have survived as a fork of the code <a href="http://www.linuxforums.org/misc/open_source_will_never_die.html" target="_blank">(since Open Source projects never really die</a>) but it would have been making much slower progress than it does now. This is because of <a title="Eclipse" href="http://en.wikipedia.org/wiki/Eclipse_(software)" target="_blank">Eclipse</a> which is a good product in its own right&#8230; but as someone put it:</p>
<blockquote><p>NetBeans is the Mac of the IDE world&#8230; it just works</p></blockquote>
<p>If you want to use php in eclipse you have to work at setting it up, if you want to develop in php, download the php package, ruby? There is one  for that too. Since they are all professionally developed as part of the package there is no need to work to get it going no need to route aroud the net trying to find which plugins you need, which ones are still supported (which ones are supported well), which ones do not conflict with eachother&#8230; You want to use SVN? Which one do you use? <a href="http://subclipse.tigris.org/" target="_blank">Subclipse</a>? <a href="http://www.eclipse.org/subversive/" target="_blank">Subversive</a>? Does it work with your version of eclipse? Your repository? <a href="http://dev.eclipse.org/newslists/news.eclipse.technology.subversive/msg00651.html" target="_blank">Will it corrupt it</a>? Does it work with the latest version of subversion? Can it use the command line version if it doesn&#8217;t? (On a side note, subclipse probably works fine since it is supported by tigris).</p>
<p>So, if you have a choice at work, try it, if not, try it at home. It even has an eclipse project importer. You have nothing to lose, it is free after all.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2009/04/why-i-use-netbeans/' addthis:title='Why I use NetBeans ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div><p>Related posts:<ol>
<li><a href='http://blog.seanja.com/2009/01/netbeans-subversion-eclipse-subversion/' rel='bookmark' title='Netbeans Subversion &gt; Eclipse Subversion'>Netbeans Subversion &gt; Eclipse Subversion</a></li>
<li><a href='http://blog.seanja.com/2010/04/netbeans-6-9-my-favourite-new-features/' rel='bookmark' title='Netbeans 6.9: My New Favourite Features'>Netbeans 6.9: My New Favourite Features</a></li>
<li><a href='http://blog.seanja.com/2010/03/jquery-contains-selector-and-unicode-characters/' rel='bookmark' title='jQuery :contains selector and unicode characters'>jQuery :contains selector and unicode characters</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seanja.com/2009/04/why-i-use-netbeans/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Why implement PHP in Java?</title>
		<link>http://blog.seanja.com/2008/08/why-implement-php-in-java/</link>
		<comments>http://blog.seanja.com/2008/08/why-implement-php-in-java/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 03:27:36 +0000</pubDate>
		<dc:creator>SeanJA</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[COBOL]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Computing platforms]]></category>
		<category><![CDATA[Cross-platform software]]></category>
		<category><![CDATA[Curly bracket programming languages]]></category>
		<category><![CDATA[Java platform]]></category>
		<category><![CDATA[Java Virtual Machine]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Scripting languages]]></category>

		<guid isPermaLink="false">http://blog.seanja.com/?p=149</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2008/08/why-implement-php-in-java/' addthis:title='Why implement PHP in Java? '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>First of all, why not? Everything else can run on the jvm (yes&#8230; even c#), so why not php? Well&#8230; I certainly don&#8217;t see why not&#8230; Java is a fairly robust language with a pile of different libraries and (as you saw if you clicked on any of those links) languages that can run on [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2008/08/why-implement-php-in-java/' addthis:title='Why implement PHP in Java? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>
Related posts:<ol>
<li><a href='http://blog.seanja.com/2011/03/setting-up-php-5-x-on-webfaction/' rel='bookmark' title='Setting up PHP 5.x on webfaction'>Setting up PHP 5.x on webfaction</a></li>
<li><a href='http://blog.seanja.com/2010/03/re-top-10-php-techniques-that-will-save-you-time-and-effort/' rel='bookmark' title='RE: Top 10 PHP Techniques That Will Save You Time and Effort'>RE: Top 10 PHP Techniques That Will Save You Time and Effort</a></li>
<li><a href='http://blog.seanja.com/2008/04/testing-the-c-waters/' rel='bookmark' title='Testing the C# waters'>Testing the C# waters</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2008/08/why-implement-php-in-java/' addthis:title='Why implement PHP in Java? '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>First of all, why not? <a href="http://jruby.codehaus.org/">Everything</a> <a href="http://www.jython.org/Project/">else</a> <a href="http://research.sun.com/projects/JSqueak/">can</a> run on the jvm (yes&#8230; even <a href="http://dev.mainsoft.com/Default.aspx?tabid=130">c#</a>), so why not <a href="http://www.caucho.com/resin-3.0/quercus/index.xtp">php</a>? Well&#8230; I certainly don&#8217;t see why not&#8230; Java is a fairly robust language with a pile of different libraries and (as you saw if you clicked on any of those links) languages that can run on it. It is ideal!</p>
<p>Don&#8217;t like php&#8217;s random function? Why not use Java&#8217;s? Not your cup of tea? Use ruby&#8217;s instead, or python&#8217;s, or  write one in <a href="http://www.veryant.com/products/" target="_blank">COBOL</a> if you are really brave.</p>
<p>It also means that you can implement the functionality in Java, the database transactions in Ruby, then write all of the presentation in PHP, no clearer MVC separation than that eh? Admitedly it might get a bit confusing and I may be over exaggerating about the possibility of these implementation&#8217;s cross communication abilities&#8230; but it would be great if you could (I might test it later&#8230;).</p>
<p><a href="http://www.caucho.com/resin-3.0/quercus/index.xtp" target="_blank">http://www.caucho.com/resin-3.0/quercus/index.xtp</a></p>
<p>Go check it out!</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2008/08/why-implement-php-in-java/' addthis:title='Why implement PHP in Java? ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div><p>Related posts:<ol>
<li><a href='http://blog.seanja.com/2011/03/setting-up-php-5-x-on-webfaction/' rel='bookmark' title='Setting up PHP 5.x on webfaction'>Setting up PHP 5.x on webfaction</a></li>
<li><a href='http://blog.seanja.com/2010/03/re-top-10-php-techniques-that-will-save-you-time-and-effort/' rel='bookmark' title='RE: Top 10 PHP Techniques That Will Save You Time and Effort'>RE: Top 10 PHP Techniques That Will Save You Time and Effort</a></li>
<li><a href='http://blog.seanja.com/2008/04/testing-the-c-waters/' rel='bookmark' title='Testing the C# waters'>Testing the C# waters</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seanja.com/2008/08/why-implement-php-in-java/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jerk Markers</title>
		<link>http://blog.seanja.com/2006/11/jerk-markers/</link>
		<comments>http://blog.seanja.com/2006/11/jerk-markers/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 17:58:58 +0000</pubDate>
		<dc:creator>SeanJA</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Trent]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[professor]]></category>
		<category><![CDATA[teacher]]></category>

		<guid isPermaLink="false">http://blog.seanja.com/2006/11/27/denis-leary-no-cure-for-cancer-track-1/</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2006/11/jerk-markers/' addthis:title='Jerk Markers '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>Ok&#8230; so markers are assholes. They go through the assignments with the minimal effort that they can put into it. It is evident that they do this. I got my Operating Systems assignment back and this was made very clear to me. There were comments on it such as &#8220;Needs more comments&#8221;, and then later [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2006/11/jerk-markers/' addthis:title='Jerk Markers ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>
Related posts:<ol>
<li><a href='http://blog.seanja.com/2007/01/bluray-drm/' rel='bookmark' title='BluRay drm'>BluRay drm</a></li>
<li><a href='http://blog.seanja.com/2010/12/lets-try-this/' rel='bookmark' title='Let&#8217;s Try This&#8230;'>Let&#8217;s Try This&#8230;</a></li>
<li><a href='http://blog.seanja.com/2008/09/for-best-viewing-use-chrome/' rel='bookmark' title='For best viewing, use chrome'>For best viewing, use chrome</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://blog.seanja.com/2006/11/jerk-markers/' addthis:title='Jerk Markers '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>Ok&#8230; so markers are assholes. They go through the assignments with the minimal effort that they can put into it. It is evident that they do this.</p>
<p>I got my Operating Systems assignment back and this was made very clear to me.  There were comments on it such as &#8220;Needs more comments&#8221;, and then later &#8220;It should only be 2&#8243;. The combination of these two amused me because  on the line where it said that &#8220;It should only be 2&#8243; there was a comment explaining why it wasn&#8217;t 2&#8230; Nice.</p>
<p>On that question I lost 1 point for not putting comments in the code even though on every line it was quite obvoius what was going on, to make sure that it wasn&#8217;t just me who understood the code, I gave it to my friend (an arts major) and she could tell me exactly what was going on at any line that I pointed to. I am a firm believer in the fact that if the code is written properly there do not need to be a whole bunch of comments. If you name a function stringToInt&#8230; what else could be going on really? I managed to argue my mark up 1 point for that part as the marker realised that he was being an ass (I guess&#8230;).</p>
<p>The other problem I had was on the last question of the assignment. There was supposed to be a proof of some sort. The marker asked the professor how to mark this part, and the teacher gave him some guidelines to go by. This gave the marker free reign to just throw marks on the page without actually thinking about it. He then protested that he &#8216;couldn&#8217;t understand the proof&#8217; when I said that my proof was right. It was pretty evident that the proof was lost on him and that he didn&#8217;t understand it, nor had he made any effort to do so. Way to go the extra mile there buddy.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://blog.seanja.com/2006/11/jerk-markers/' addthis:title='Jerk Markers ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div><p>Related posts:<ol>
<li><a href='http://blog.seanja.com/2007/01/bluray-drm/' rel='bookmark' title='BluRay drm'>BluRay drm</a></li>
<li><a href='http://blog.seanja.com/2010/12/lets-try-this/' rel='bookmark' title='Let&#8217;s Try This&#8230;'>Let&#8217;s Try This&#8230;</a></li>
<li><a href='http://blog.seanja.com/2008/09/for-best-viewing-use-chrome/' rel='bookmark' title='For best viewing, use chrome'>For best viewing, use chrome</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seanja.com/2006/11/jerk-markers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

