<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://robowiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zian</id>
	<title>Robowiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://robowiki.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zian"/>
	<link rel="alternate" type="text/html" href="http://robowiki.net/wiki/Special:Contributions/Zian"/>
	<updated>2026-05-05T00:04:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=13214</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=13214"/>
		<updated>2009-10-09T06:41:35Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Performance */ Rumble stats have stabilized&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WhiteWhale is a nanobot. It builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot cannot do anything object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
The architecture has proven to be a bit controversial.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale beats all the bots except for 1.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12917</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12917"/>
		<updated>2009-10-04T06:30:55Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Architecture */ Typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WhiteWhale is a nanobot. It builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot cannot do anything object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
The architecture has proven to be a bit controversial.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Category:NanoBots&amp;diff=12842</id>
		<title>Category:NanoBots</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Category:NanoBots&amp;diff=12842"/>
		<updated>2009-10-03T04:45:10Z</updated>

		<summary type="html">&lt;p&gt;Zian: Added info on the Nanorumble&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bots with a [[code size]] of less than 250 bytes.&lt;br /&gt;
&lt;br /&gt;
There is a competition for bots of this size, named the [http://darkcanuck.net/rumble/Rankings?game=nanorumble Nanorumble].&lt;br /&gt;
&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User_talk:Zian&amp;diff=12841</id>
		<title>User talk:Zian</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User_talk:Zian&amp;diff=12841"/>
		<updated>2009-10-03T04:31:52Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Preview mode */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=&amp;quot;100%&amp;quot; style=&amp;quot;background: white; &amp;quot; &lt;br /&gt;
| valign=&amp;quot;top&amp;quot; width=&amp;quot;60%&amp;quot; style=&amp;quot;border: 2px solid #000; padding: .5em 1em; -moz-border-radius: 1em; -webkit-border-radius: 1em&amp;quot; |&lt;br /&gt;
'''Welcomeback!'''&lt;br /&gt;
&lt;br /&gt;
Hello, {{BASEPAGENAME}}, and welcomeback! We have moved to this new wiki recently. Hope you will find this as comfortable as the old one.&lt;br /&gt;
&lt;br /&gt;
Unlike the old wiki, you may use four tildes (&amp;lt;nowiki&amp;gt;--~~~~&amp;lt;/nowiki&amp;gt;) to sign your comment; this will automatically insert your username and the date. If you are not familiar with MediaWiki, these links might help you out:&lt;br /&gt;
* [[wikipedia:How to edit|How to edit]] on [[wikipedia:|Wikipedia]]&lt;br /&gt;
* [[metawikipedia:Cheatsheet|MediaWiki Cheatsheet]]&lt;br /&gt;
* and the [[metawikipedia:File:MediaWikiRefCard.pdf|Reference Card]] of MediaWiki on the [[metawikipedia:|Meta Wiki]].&lt;br /&gt;
Again, welcomeback!&lt;br /&gt;
&lt;br /&gt;
—— « [[User:AaronR|AaronR]] « [[User talk:AaronR|Talk]] « 00:07, 3 October 2009 (UTC) &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yet another Robocoder returns! « [[User:AaronR|AaronR]] « [[User talk:AaronR|Talk]] « 00:07, 3 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Preview mode ==&lt;br /&gt;
&lt;br /&gt;
Please use preview mode before you save, you are making flooding [[Special:RecentChanges]]! --[[User:Nat|&amp;lt;span style=&amp;quot;color:#099;&amp;quot;&amp;gt;Nat&amp;lt;/span&amp;gt;]] [[User talk:Nat|&amp;lt;span style=&amp;quot;color:#0a5;&amp;quot;&amp;gt;Pavasant&amp;lt;/span&amp;gt;]] 04:27, 3 October 2009 (UTC)&lt;br /&gt;
:Ah, sorry about that. Ever since Kinsen posted the source code to his bot, I've been dumping out what I know about the architecture. I'll try to use the preview button more; it'll certainly cut down on the number of minor changes I make. This is the first time I've really participated in the RoboWiki. [[User:Zian|Zian]] 04:31, 3 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12837</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12837"/>
		<updated>2009-10-03T04:23:54Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Architecture */ More concise&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WhiteWhale is a nanobot. It builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's cannot do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
The architecture has proven to be a bit controversial.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12836</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12836"/>
		<updated>2009-10-03T04:21:28Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Performance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WhiteWhale is a nanobot. It builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
The architecture has proven to be a bit controversial.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12835</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12835"/>
		<updated>2009-10-03T04:21:01Z</updated>

		<summary type="html">&lt;p&gt;Zian: Made an intro&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;WhiteWhale is a nanobot. It builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
The architecture has proven to be a bit controversial.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy compared to other bots due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12834</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12834"/>
		<updated>2009-10-03T04:20:15Z</updated>

		<summary type="html">&lt;p&gt;Zian: Note on the controversy&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
The architecture has proven to be a bit controversial.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy compared to other bots due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12833</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12833"/>
		<updated>2009-10-03T04:19:05Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Performance */ Comma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy compared to other bots due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12832</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12832"/>
		<updated>2009-10-03T04:18:48Z</updated>

		<summary type="html">&lt;p&gt;Zian: Added the Performance section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
The interpreter robot is quite speedy compared to other bots, due to various neat tricks, which you'll have to read the code to find out for yourself. :) Let's just say that it wasn't exactly a fast bot for a very long time.&lt;br /&gt;
&lt;br /&gt;
As far as the nanorumble goes, WhiteWhale currently beats all the bots except for 4.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12831</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12831"/>
		<updated>2009-10-03T04:15:43Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* Architecture */ More on prefix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2 instead of 5 + 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12830</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12830"/>
		<updated>2009-10-03T04:15:16Z</updated>

		<summary type="html">&lt;p&gt;Zian: /* How The Robot Works */ Note on prefix notation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== Architecture ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions. The expressions use prefix notation (e.g. + 5 2).&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12829</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12829"/>
		<updated>2009-10-03T04:13:45Z</updated>

		<summary type="html">&lt;p&gt;Zian: Removed a new line&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
== How The Robot Works ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions.&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12828</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12828"/>
		<updated>2009-10-03T04:13:14Z</updated>

		<summary type="html">&lt;p&gt;Zian: Started explaining how the bot works&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
The current source code can be downloaded from [http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar http://sites.google.com/site/dcvqksyb/robocode/kinsen.nano.WhiteWhale_1.0_src.jar].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How The Robot Works ==&lt;br /&gt;
The robot understands a very small set of instructions: set, get, subtract, divide, if, call, and characterToInteger (CMD_SET, CMD_IF, CMD_SUBTRACT, CMD_DIVIDE, CMD_IF, CMD_CALL, and CMD_LITERAL). This instruction set provides the foundation for basic mathematical expressions.&lt;br /&gt;
&lt;br /&gt;
WhiteWhale has a large, but limited memory. The calls to Java functions are stored in STRING_TABLE and the commands are stored in COMMANDS.&lt;br /&gt;
&lt;br /&gt;
The nanobot's most obvious shortcoming is its inability to do anything remotely object-oriented. There is no way to instantiate arbitrary objects.&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12810</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12810"/>
		<updated>2009-10-03T00:40:14Z</updated>

		<summary type="html">&lt;p&gt;Zian: Nanorumble stats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
{{RumbleStatsDefault|link=http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale+1.0|rumble=NanoRumble|scorelabel=APS|score=77.96|rank=1st|win=147|loss=4|plrank=1st|glicko2=1938.7|score2label=Survival|score2=89.87}}&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12809</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12809"/>
		<updated>2009-10-03T00:14:00Z</updated>

		<summary type="html">&lt;p&gt;Zian: Fixed a link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/RatingsDetails?game=nanorumble&amp;amp;name=kinsen.nano.WhiteWhale%201.0 RoboRumble].&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12808</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12808"/>
		<updated>2009-10-03T00:12:16Z</updated>

		<summary type="html">&lt;p&gt;Zian: Added categories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/Rankings?game=roborumble RoboRumble].&lt;br /&gt;
&lt;br /&gt;
[[Category:NanoBots]]&lt;br /&gt;
[[Category:Bots]]&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Zian&amp;diff=12807</id>
		<title>User:Zian</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Zian&amp;diff=12807"/>
		<updated>2009-10-03T00:11:24Z</updated>

		<summary type="html">&lt;p&gt;Zian: Wikisyntax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found Robocode through my AP Computer Science A class. I fiddled around with it a little but never did much. I introduced [[User:Kinsen | Kinsen]] to RoboCode when I was in APCS A.&lt;br /&gt;
&lt;br /&gt;
I've helped [[User:Kinsen | Kinsen]] with his robots and talked about design. I also try to make him use good coding style and document things.&lt;br /&gt;
&lt;br /&gt;
Currently, I'm working on a Robocode project with him.&lt;br /&gt;
&lt;br /&gt;
Language design is interesting but compilers can be touchy things.&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=White_Whale&amp;diff=12806</id>
		<title>White Whale</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=White_Whale&amp;diff=12806"/>
		<updated>2009-10-03T00:10:27Z</updated>

		<summary type="html">&lt;p&gt;Zian: Added a disambiguation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Stub}}&lt;br /&gt;
''There is also a robot named [[WhiteWhale_(robot) | White Whale]].''&lt;br /&gt;
&lt;br /&gt;
As in [http://en.wikipedia.org/wiki/Moby-Dick Moby-Dick]. A robot which you have found troubling and have specifically set out to defeat.&lt;br /&gt;
&lt;br /&gt;
Discuss your white whales on the [[Talk:White Whale|talk page]].&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Zian&amp;diff=12805</id>
		<title>User:Zian</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Zian&amp;diff=12805"/>
		<updated>2009-10-03T00:09:21Z</updated>

		<summary type="html">&lt;p&gt;Zian: Wikisyntax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found Robocode through my AP Computer Science A class. I fiddled around with it a little but never did much. I introduced [[Kinsen]] to RoboCode when I was in APCS A.&lt;br /&gt;
&lt;br /&gt;
I've helped [[User:Kinsen | Kinsen]] with his robots and talked about design. I also try to make him use good coding style and document things.&lt;br /&gt;
&lt;br /&gt;
Currently, I'm working on a Robocode project with him.&lt;br /&gt;
&lt;br /&gt;
Language design is interesting but compilers can be touchy things.&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12804</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12804"/>
		<updated>2009-10-03T00:07:55Z</updated>

		<summary type="html">&lt;p&gt;Zian: Wikisyntax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter | NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/Rankings?game=roborumble RoboRumble].&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12802</id>
		<title>WhiteWhale (robot)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=WhiteWhale_(robot)&amp;diff=12802"/>
		<updated>2009-10-03T00:07:14Z</updated>

		<summary type="html">&lt;p&gt;Zian: Created a holding page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is reserved for Kinsen's latest nanobot. This robot builds on the work from {{OldWiki|Interpreter/NanoInterpreter NanoInterpreter}}.&lt;br /&gt;
&lt;br /&gt;
The robot is in the [http://darkcanuck.net/rumble/Rankings?game=roborumble RoboRumble].&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Zian&amp;diff=12801</id>
		<title>User:Zian</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Zian&amp;diff=12801"/>
		<updated>2009-10-03T00:01:47Z</updated>

		<summary type="html">&lt;p&gt;Zian: Migrated from the old wiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found Robocode through my AP Computer Science A class. I fiddled around with it a little but never did much. I introduced [[Kinsen]] to RoboCode when I was in APCS A.&lt;br /&gt;
&lt;br /&gt;
I've helped [[Kinsen]] with his robots and talked about design. I also try to make him use good coding style and document things.&lt;br /&gt;
&lt;br /&gt;
Currently, I'm working on a Robocode project with him.&lt;br /&gt;
&lt;br /&gt;
Language design is interesting but compilers can be touchy things.&lt;/div&gt;</summary>
		<author><name>Zian</name></author>
		
	</entry>
</feed>