<?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=Tmservo</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=Tmservo"/>
	<link rel="alternate" type="text/html" href="http://robowiki.net/wiki/Special:Contributions/Tmservo"/>
	<updated>2026-05-05T12:17:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Tron/Diagonal_Movement&amp;diff=34401</id>
		<title>Thread:Talk:Tron/Diagonal Movement</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Tron/Diagonal_Movement&amp;diff=34401"/>
		<updated>2015-09-21T22:23:56Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Diagonal Movement&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why doesn't Tron use Diagonal Movement instead of Orthogonal Movement when doing so will multiply speed by the square root of 2&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Talk:Tron&amp;diff=34402</id>
		<title>Talk:Tron</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Talk:Tron&amp;diff=34402"/>
		<updated>2015-09-21T22:23:56Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Talk page autocreated when first thread was posted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/Version_History/Agent_Smith_is_now_the_top_UK_robot_in_the_Rumble!/reply_(5)&amp;diff=34339</id>
		<title>Thread:Talk:AgentSmith/Version History/Agent Smith is now the top UK robot in the Rumble!/reply (5)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/Version_History/Agent_Smith_is_now_the_top_UK_robot_in_the_Rumble!/reply_(5)&amp;diff=34339"/>
		<updated>2015-08-24T22:07:09Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Agent Smith is now the top UK robot in the Rumble!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wolfman is the new champion of the UK&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User_talk:Tmservo&amp;diff=34268</id>
		<title>User talk:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User_talk:Tmservo&amp;diff=34268"/>
		<updated>2015-07-31T01:11:09Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
package Josewong;&lt;br /&gt;
import robocode.*;&lt;br /&gt;
//import java.awt.Color;&lt;br /&gt;
&lt;br /&gt;
// API help : http://robocode.sourceforge.net/docs/robocode/robocode/Robot.html&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Invertigo - a robot by (your name here)&lt;br /&gt;
 */&lt;br /&gt;
public class Invertigo extends Robot&lt;br /&gt;
{&lt;br /&gt;
	/**&lt;br /&gt;
	 * run: Invertigo's default behavior&lt;br /&gt;
	 */&lt;br /&gt;
	public void run() {&lt;br /&gt;
		// Initialization of the robot should be put here&lt;br /&gt;
&lt;br /&gt;
		// After trying out your robot, try uncommenting the import at the top,&lt;br /&gt;
		// and the next line:&lt;br /&gt;
&lt;br /&gt;
		// setColors(Color.red,Color.blue,Color.green); // body,gun,radar&lt;br /&gt;
&lt;br /&gt;
		// Robot main loop&lt;br /&gt;
		while(true) {&lt;br /&gt;
			// Replace the next 4 lines with any behavior you would like&lt;br /&gt;
			back(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
			ahead(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onScannedRobot: What to do when you see another robot&lt;br /&gt;
	 */&lt;br /&gt;
	public void onScannedRobot(ScannedRobotEvent e) {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		fire(0.95);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitByBullet: What to do when you're hit by a bullet&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitByBullet(HitByBulletEvent e) {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(10);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitWall: What to do when you hit a wall&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitWall(HitWallEvent e) {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(20);&lt;br /&gt;
	}	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
package Josewong;&lt;br /&gt;
import robocode.*;&lt;br /&gt;
&lt;br /&gt;
// API help : http://robocode.sourceforge.net/docs/robocode/robocode/JuniorRobot.html&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * InvertigoJunior - a robot by (your name here)&lt;br /&gt;
 */&lt;br /&gt;
public class InvertigoJunior extends JuniorRobot&lt;br /&gt;
{&lt;br /&gt;
	/**&lt;br /&gt;
	 * run: InvertigoJunior's default behavior&lt;br /&gt;
	 */&lt;br /&gt;
	public void run() {&lt;br /&gt;
		// Initialization of the robot should be put here&lt;br /&gt;
&lt;br /&gt;
		// Some color codes: blue, yellow, black, white, red, pink, brown, grey, orange...&lt;br /&gt;
		// Sets these colors (robot parts): body, gun, radar, bullet, scan_arc&lt;br /&gt;
		setColors(orange, blue, white, yellow, black);&lt;br /&gt;
&lt;br /&gt;
		// Robot main loop&lt;br /&gt;
		while(true) {&lt;br /&gt;
			// Replace the next 4 lines with any behavior you would like&lt;br /&gt;
			back(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
			ahead(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onScannedRobot: What to do when you see another robot&lt;br /&gt;
	 */&lt;br /&gt;
	public void onScannedRobot() {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		fire(0.95);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitByBullet: What to do when you're hit by a bullet&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitByBullet() {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(10);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitWall: What to do when you hit a wall&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitWall() {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(20);&lt;br /&gt;
	}	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
I am actually Josewong from wikia&lt;br /&gt;
My name is Augustus Joseph Wong and my location is 7129 Beverly Street, 66204,&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/AgentSmith_0.2_%27s_kd-tree/reply_(2)&amp;diff=34263</id>
		<title>Thread:Talk:AgentSmith/AgentSmith 0.2 's kd-tree/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/AgentSmith_0.2_%27s_kd-tree/reply_(2)&amp;diff=34263"/>
		<updated>2015-07-30T17:19:25Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to AgentSmith 0.2 's kd-tree&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Also why is Your version of Skilgannon's kd-tree different.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User_talk:Tmservo&amp;diff=34261</id>
		<title>User talk:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User_talk:Tmservo&amp;diff=34261"/>
		<updated>2015-07-30T16:25:45Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: I am actually Josewong from wikia&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
package Josewong;&lt;br /&gt;
import robocode.*;&lt;br /&gt;
//import java.awt.Color;&lt;br /&gt;
&lt;br /&gt;
// API help : http://robocode.sourceforge.net/docs/robocode/robocode/Robot.html&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Invertigo - a robot by (your name here)&lt;br /&gt;
 */&lt;br /&gt;
public class Invertigo extends Robot&lt;br /&gt;
{&lt;br /&gt;
	/**&lt;br /&gt;
	 * run: Invertigo's default behavior&lt;br /&gt;
	 */&lt;br /&gt;
	public void run() {&lt;br /&gt;
		// Initialization of the robot should be put here&lt;br /&gt;
&lt;br /&gt;
		// After trying out your robot, try uncommenting the import at the top,&lt;br /&gt;
		// and the next line:&lt;br /&gt;
&lt;br /&gt;
		// setColors(Color.red,Color.blue,Color.green); // body,gun,radar&lt;br /&gt;
&lt;br /&gt;
		// Robot main loop&lt;br /&gt;
		while(true) {&lt;br /&gt;
			// Replace the next 4 lines with any behavior you would like&lt;br /&gt;
			back(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
			ahead(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onScannedRobot: What to do when you see another robot&lt;br /&gt;
	 */&lt;br /&gt;
	public void onScannedRobot(ScannedRobotEvent e) {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		fire(0.95);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitByBullet: What to do when you're hit by a bullet&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitByBullet(HitByBulletEvent e) {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(10);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitWall: What to do when you hit a wall&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitWall(HitWallEvent e) {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(20);&lt;br /&gt;
	}	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
package Josewong;&lt;br /&gt;
import robocode.*;&lt;br /&gt;
&lt;br /&gt;
// API help : http://robocode.sourceforge.net/docs/robocode/robocode/JuniorRobot.html&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * InvertigoJunior - a robot by (your name here)&lt;br /&gt;
 */&lt;br /&gt;
public class InvertigoJunior extends JuniorRobot&lt;br /&gt;
{&lt;br /&gt;
	/**&lt;br /&gt;
	 * run: InvertigoJunior's default behavior&lt;br /&gt;
	 */&lt;br /&gt;
	public void run() {&lt;br /&gt;
		// Initialization of the robot should be put here&lt;br /&gt;
&lt;br /&gt;
		// Some color codes: blue, yellow, black, white, red, pink, brown, grey, orange...&lt;br /&gt;
		// Sets these colors (robot parts): body, gun, radar, bullet, scan_arc&lt;br /&gt;
		setColors(orange, blue, white, yellow, black);&lt;br /&gt;
&lt;br /&gt;
		// Robot main loop&lt;br /&gt;
		while(true) {&lt;br /&gt;
			// Replace the next 4 lines with any behavior you would like&lt;br /&gt;
			back(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
			ahead(100);&lt;br /&gt;
			turnGunLeft(360);&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onScannedRobot: What to do when you see another robot&lt;br /&gt;
	 */&lt;br /&gt;
	public void onScannedRobot() {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		fire(0.95);&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitByBullet: What to do when you're hit by a bullet&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitByBullet() {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(10);&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/**&lt;br /&gt;
	 * onHitWall: What to do when you hit a wall&lt;br /&gt;
	 */&lt;br /&gt;
	public void onHitWall() {&lt;br /&gt;
		// Replace the next line with any behavior you would like&lt;br /&gt;
		ahead(20);&lt;br /&gt;
	}	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
I am actually Josewong from wikia&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found/reply_(4)&amp;diff=34258</id>
		<title>Thread:User talk:Skilgannon/KDTree/Optimization found/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found/reply_(4)&amp;diff=34258"/>
		<updated>2015-07-30T01:20:39Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Optimization found&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Actually my dad Chris Reeves is the real Tmservo&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found/reply_(2)&amp;diff=34256</id>
		<title>Thread:User talk:Skilgannon/KDTree/Optimization found/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found/reply_(2)&amp;diff=34256"/>
		<updated>2015-07-30T00:35:34Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Optimization found&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;No I'm not.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found&amp;diff=34254</id>
		<title>Thread:User talk:Skilgannon/KDTree/Optimization found</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found&amp;diff=34254"/>
		<updated>2015-07-29T23:51:15Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found a optimization, You can use 65536 + 2*_dimensions instead of  512 * 1024 / 8 + 2*_dimensions.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found&amp;diff=34253</id>
		<title>Thread:User talk:Skilgannon/KDTree/Optimization found</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Skilgannon/KDTree/Optimization_found&amp;diff=34253"/>
		<updated>2015-07-29T23:51:06Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Optimization found&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found a optimization, You can use 65536 + 2*_dimensions instead of  512 * 1024 / 8 + 2*_dimensions&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Mint/Mint_1.0&amp;diff=34204</id>
		<title>Thread:Talk:Mint/Mint 1.0</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Mint/Mint_1.0&amp;diff=34204"/>
		<updated>2015-07-25T18:52:07Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On http://robocode-archive.strangeautomata.com/robots/ I found Mint 1.0 which was released in 2013 February 6. I wonder how this version is different from the other versions.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Mint/Mint_1.0&amp;diff=34203</id>
		<title>Thread:Talk:Mint/Mint 1.0</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Mint/Mint_1.0&amp;diff=34203"/>
		<updated>2015-07-25T18:51:49Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Mint 1.0&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On http://robocode-archive.strangeautomata.com/robots/ I found Mint 1.0 which was released in 2013 february 6. I wonder how this version is different from the other versions.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:RoboRumble/Starting_With_RoboRumble/Starting_with_Roborumble_Questions/reply_(3)&amp;diff=34197</id>
		<title>Thread:Talk:RoboRumble/Starting With RoboRumble/Starting with Roborumble Questions/reply (3)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:RoboRumble/Starting_With_RoboRumble/Starting_with_Roborumble_Questions/reply_(3)&amp;diff=34197"/>
		<updated>2015-07-24T21:48:06Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Starting with Roborumble Questions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm running battles right now&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Raspberry_Pi/Raspberry_PI_2/reply_(6)&amp;diff=34195</id>
		<title>Thread:Talk:Raspberry Pi/Raspberry PI 2/reply (6)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Raspberry_Pi/Raspberry_PI_2/reply_(6)&amp;diff=34195"/>
		<updated>2015-07-24T21:00:21Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Raspberry PI 2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
The P2-300 is Single core, The Cortex-A7 is Quad core .&lt;br /&gt;
The P2-300 has 300 Mhz, The Cortex-A7 has 900 Mhz.&lt;br /&gt;
The P2-300 is CISC, The Cortex-A7 is RISC.&lt;br /&gt;
The P2-300 consumes 18.6 Watts, The Raspberry Pi only 4 Watts.&lt;br /&gt;
In other words yes the Cortex-A7 is better than P2-300.&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/AgentSmith_0.2_%27s_kd-tree&amp;diff=34183</id>
		<title>Thread:Talk:AgentSmith/AgentSmith 0.2 's kd-tree</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/AgentSmith_0.2_%27s_kd-tree&amp;diff=34183"/>
		<updated>2015-07-23T01:03:13Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why does AgentSmith 0.2 use Skilgannon's kd-tree in it. It's license says You must give appropriate credit.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/AgentSmith_0.2_%27s_kd-tree&amp;diff=34182</id>
		<title>Thread:Talk:AgentSmith/AgentSmith 0.2 's kd-tree</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:AgentSmith/AgentSmith_0.2_%27s_kd-tree&amp;diff=34182"/>
		<updated>2015-07-23T01:02:21Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: AgentSmith 0.2 's kd-tree&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why does AgentSmith 0.2 use Skilgannon's kd-tree in it. It's license says You must give appropiate credit.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Mint/How_to_enable_Sandbox_Flattener/reply_(2)&amp;diff=34179</id>
		<title>Thread:Talk:Mint/How to enable Sandbox Flattener/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Mint/How_to_enable_Sandbox_Flattener/reply_(2)&amp;diff=34179"/>
		<updated>2015-07-21T22:26:13Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to How to enable Sandbox Flattener&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;So what does config.properties do with Mint 0.12 then&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Mint/How_to_enable_Sandbox_Flattener&amp;diff=34177</id>
		<title>Thread:Talk:Mint/How to enable Sandbox Flattener</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Mint/How_to_enable_Sandbox_Flattener&amp;diff=34177"/>
		<updated>2015-07-20T22:02:57Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: How to enable Sandbox Flattener&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How do I enable the Sandbox Flattener in Mint 0.12&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34174</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34174"/>
		<updated>2015-07-16T21:55:52Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 1.9o gets Chenged_dir!! it freezes. I think we should fix that.&lt;br /&gt;
Edit: I found the problem ReverseMovement.java and ReverseMovement.class in Krabby2 1.9o use iso-8859-1 instead of us-ascii&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34173</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34173"/>
		<updated>2015-07-16T21:45:35Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 1.9o gets Chenged_dir!! it freezes. I think we should fix that.&lt;br /&gt;
Edit: I found the problem ReverseMovement.java and ReverseMovement.class in Krabby2 1.9o use iso-8859-15 instead of utf-8&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34172</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34172"/>
		<updated>2015-07-16T21:43:40Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 1.9o gets Chenged_dir!! it freezes. I think we should fix that.&lt;br /&gt;
Edit: I found the problem ReverseMovement.java and ReverseMovement.class in Krabby2 use iso-8859-15 instead of utf-8&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34171</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34171"/>
		<updated>2015-07-16T18:57:28Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 1.9o gets Chenged_dir!! it freezes. I think we should fix that.&lt;br /&gt;
Edit: I found the problem ReverseMovement.java and ReverseMovement.class use iso-8859-15 instead of utf-8&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34170</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34170"/>
		<updated>2015-07-16T18:50:51Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 1.9o gets Chenged_dir!! it freezes. I think we should fix that.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34169</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34169"/>
		<updated>2015-07-16T18:50:25Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 gets Chenged_dir!! it freezes. I think we should fix that.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34168</id>
		<title>Thread:Talk:Krabby2/Krabby2 Freezing Apparently/reply (4)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Krabby2/Krabby2_Freezing_Apparently/reply_(4)&amp;diff=34168"/>
		<updated>2015-07-16T18:45:28Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Krabby2 Freezing Apparently&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes whenever Krabby2 gets Chenged_dir!! it freezes&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting/reply_(2)&amp;diff=34157</id>
		<title>Thread:Talk:Nene/Guaranteed Hit Targeting/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting/reply_(2)&amp;diff=34157"/>
		<updated>2015-07-15T00:37:32Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You didn't remove it from Nene there's GuaranteedHitTargeting.class in Nene 1.0.5&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting/reply_(2)&amp;diff=34156</id>
		<title>Thread:Talk:Nene/Guaranteed Hit Targeting/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting/reply_(2)&amp;diff=34156"/>
		<updated>2015-07-15T00:34:09Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Guaranteed Hit Targeting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You didn't remove it from Nene&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting&amp;diff=34154</id>
		<title>Thread:Talk:Nene/Guaranteed Hit Targeting</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting&amp;diff=34154"/>
		<updated>2015-07-13T01:29:17Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why does Nene's gun have Guaranteed Hit Targeting when Mint's gun doesn't? Can it increase performance in Mint?&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting&amp;diff=34153</id>
		<title>Thread:Talk:Nene/Guaranteed Hit Targeting</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Nene/Guaranteed_Hit_Targeting&amp;diff=34153"/>
		<updated>2015-07-13T01:27:58Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Guaranteed Hit Targeting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;?Why does Nene's gun have Guaranteed Hit Targeting when Mint's gun doesn't? Can it increase performance in Mint?&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Random_Movement_experiment&amp;diff=34151</id>
		<title>Thread:User talk:Tmservo/Random Movement experiment</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Random_Movement_experiment&amp;diff=34151"/>
		<updated>2015-07-09T21:17:12Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Random Movement experiment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Was that Random Movement version a experiment to see how good the the wave surfing is&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Rednaxela_kd-tree_24_v_50/reply_(2)&amp;diff=34147</id>
		<title>Thread:User talk:Tmservo/Rednaxela kd-tree 24 v 50/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Rednaxela_kd-tree_24_v_50/reply_(2)&amp;diff=34147"/>
		<updated>2015-07-07T18:07:15Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Rednaxela kd-tree 24 v 50 &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Let me show you something Rednaxela's and Skilgannon's kd-trees are tied in speed. And Skilgannon's kd-tree uses a bucket size of 50. You said lower bucket size is better. Therefore if Skilgannon's kd-tree used a bucket size of 24. It might be faster than Rednaxela's kd-tree.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Rednaxela_kd-tree_24_v_50&amp;diff=34143</id>
		<title>Thread:User talk:Tmservo/Rednaxela kd-tree 24 v 50</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Rednaxela_kd-tree_24_v_50&amp;diff=34143"/>
		<updated>2015-07-07T15:40:52Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Rednaxela kd-tree 24 v 50&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Which is faster for Rednaxela's kd-tree Bucket size 24 or Bucket size 50&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Exploit_that_needs_fixing&amp;diff=34127</id>
		<title>Thread:User talk:Tmservo/Exploit that needs fixing</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Exploit_that_needs_fixing&amp;diff=34127"/>
		<updated>2015-06-25T22:33:19Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Exploit that needs fixing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There's an Exploit on PiRocks page that needs fixing&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:RoboRumble/Wrong_survival_scores_for_some_pairings/reply&amp;diff=34103</id>
		<title>Thread:Talk:RoboRumble/Wrong survival scores for some pairings/reply</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:RoboRumble/Wrong_survival_scores_for_some_pairings/reply&amp;diff=34103"/>
		<updated>2015-05-23T01:33:29Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Most likely the version of Robocode the server allows is out of date&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:RoboRumble/Wrong_survival_scores_for_some_pairings/reply&amp;diff=34101</id>
		<title>Thread:Talk:RoboRumble/Wrong survival scores for some pairings/reply</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:RoboRumble/Wrong_survival_scores_for_some_pairings/reply&amp;diff=34101"/>
		<updated>2015-05-22T20:56:03Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Wrong survival scores for some pairings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Most likely the version of Robocode the server uses is out of date&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Roborumble_Participants&amp;diff=34086</id>
		<title>Thread:User talk:Tmservo/Roborumble Participants</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Roborumble_Participants&amp;diff=34086"/>
		<updated>2015-04-04T21:12:11Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The number of RoboRumble Participants dropped from over 1100 to 196. Can anybody fix this please?&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Roborumble_Participants&amp;diff=34085</id>
		<title>Thread:User talk:Tmservo/Roborumble Participants</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Roborumble_Participants&amp;diff=34085"/>
		<updated>2015-04-04T21:10:49Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Roborumble Participants&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The number of RoboRumbleParticipants dropped from over 1100 to 196. Can anybody fix this please?&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Naval_Robocode/Naval_Robocode_download/reply_(2)&amp;diff=34040</id>
		<title>Thread:Talk:Naval Robocode/Naval Robocode download/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Naval_Robocode/Naval_Robocode_download/reply_(2)&amp;diff=34040"/>
		<updated>2015-01-31T02:19:09Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The link doesn't work. You need to upload a new one.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Naval_Robocode/Naval_Robocode_download/reply_(2)&amp;diff=34039</id>
		<title>Thread:Talk:Naval Robocode/Naval Robocode download/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Naval_Robocode/Naval_Robocode_download/reply_(2)&amp;diff=34039"/>
		<updated>2015-01-31T02:17:01Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Naval Robocode download&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The link doesn't work. You need upload a new one.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=34004</id>
		<title>User:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=34004"/>
		<updated>2015-01-04T23:45:55Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Happy New Year.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:LiteRumble/Starting_your_own_LiteRumble/reply_(6)&amp;diff=33941</id>
		<title>Thread:Talk:LiteRumble/Starting your own LiteRumble/reply (6)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:LiteRumble/Starting_your_own_LiteRumble/reply_(6)&amp;diff=33941"/>
		<updated>2014-11-19T02:11:38Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Reply to Starting your own LiteRumble&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tkeisel Can I contribute to your Literumble please?&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Dmh/Make_BlackDeath_open_source&amp;diff=33913</id>
		<title>Thread:User talk:Dmh/Make BlackDeath open source</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Dmh/Make_BlackDeath_open_source&amp;diff=33913"/>
		<updated>2014-11-08T07:46:45Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Make BlackDeath open source&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Why can't you make BlackDeath open source? Your coding skills could benefit a lot from making it open source.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User_talk:Dmh&amp;diff=33914</id>
		<title>User talk:Dmh</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User_talk:Dmh&amp;diff=33914"/>
		<updated>2014-11-08T07:46:45Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Talk page autocreated when first thread was posted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Did_anyone_have_trouble_logging_in&amp;diff=33890</id>
		<title>Thread:User talk:Tmservo/Did anyone have trouble logging in</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Did_anyone_have_trouble_logging_in&amp;diff=33890"/>
		<updated>2014-10-28T07:04:50Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Because RoboWiki Forcibly logged me off and wouldn't let me log in until this day Did anyone else have that same problem&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User_talk:Tmservo&amp;diff=33889</id>
		<title>User talk:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User_talk:Tmservo&amp;diff=33889"/>
		<updated>2014-10-28T07:03:37Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Did_anyone_have_trouble_logging_in&amp;diff=33888</id>
		<title>Thread:User talk:Tmservo/Did anyone have trouble logging in</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:User_talk:Tmservo/Did_anyone_have_trouble_logging_in&amp;diff=33888"/>
		<updated>2014-10-28T07:02:56Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: New thread: Did anyone have trouble logging in&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Because robowiki wouldn't let me log in for a week&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=33863</id>
		<title>User:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=33863"/>
		<updated>2014-10-10T09:00:57Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The robowiki is way better now&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=33851</id>
		<title>User:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=33851"/>
		<updated>2014-10-03T07:28:56Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need more captchas to upgrade security like edit captcha and post and talk captcha.&lt;br /&gt;
And also have the robowiki ban every proxy.&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=33850</id>
		<title>User:Tmservo</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=User:Tmservo&amp;diff=33850"/>
		<updated>2014-10-03T07:27:37Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need more captchas to upgrade security like edit captcha and post and talk captcha&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
	<entry>
		<id>http://robowiki.net/w/index.php?title=Thread:Talk:Neutrino/Kotlin/reply_(2)&amp;diff=33782</id>
		<title>Thread:Talk:Neutrino/Kotlin/reply (2)</title>
		<link rel="alternate" type="text/html" href="http://robowiki.net/w/index.php?title=Thread:Talk:Neutrino/Kotlin/reply_(2)&amp;diff=33782"/>
		<updated>2014-09-18T22:15:49Z</updated>

		<summary type="html">&lt;p&gt;Tmservo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Under what Chase said Ceylon, Fantom, Gosu, Kotlin, are eligible languages for robocode&lt;/div&gt;</summary>
		<author><name>Tmservo</name></author>
		
	</entry>
</feed>