<?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>Jim McCall</title>
	<atom:link href="http://jpmiii.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jpmiii.com</link>
	<description>Personal Pages</description>
	<lastBuildDate>Tue, 09 Apr 2013 21:33:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Motor controller</title>
		<link>http://jpmiii.com/2013/jim/motor-controller/</link>
		<comments>http://jpmiii.com/2013/jim/motor-controller/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 21:32:59 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Robot]]></category>
		<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=319</guid>
		<description><![CDATA[I&#8217;m trying to build a robot on a minimal budget. This is the motor controller for the wheels.The motors will be Black &#38; Decker AS6NG alkaline battery screwdriver. The IC is l298N. Voltage Regulator. diodes are 1N4006 Rs is 2 &#8211; 3.2 Ohms 1/4 watt resistors in parallel.]]></description>
				<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/o_d1c78VC34" height="315" width="560" allowfullscreen="" frameborder="0"></iframe><br />
<iframe src="http://www.youtube.com/embed/sKpj8uoIYQ0" height="315" width="560" allowfullscreen="" frameborder="0"></iframe><br />
<iframe src="http://www.youtube.com/embed/vAWDFgtE7cA" height="315" width="560" allowfullscreen="" frameborder="0"></iframe><br />
I&#8217;m trying to build a robot on a minimal budget. This is the motor controller for the wheels.The motors will be Black &amp; Decker <a href="http://www.walmart.com/ip/Black-Decker-6-Volt-Alkaline-Screwdriver/20645661">AS6NG alkaline battery screwdriver</a>.</p>
<p>The IC is<a href="https://www.jameco.com/webapp/wcs/stores/servlet/Product_10001_10001_245403_-1"> l298N</a>.</p>
<p><a href="https://www.jameco.com/webapp/wcs/stores/servlet/Product_10001_10001_192233_-1">Voltage Regulator</a>.</p>
<p>diodes are 1N4006<br />
Rs is 2 &#8211; 3.2 Ohms 1/4 watt resistors in parallel.</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2013%2Fjim%2Fmotor-controller%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2013/jim/motor-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shift register control of stepper motor</title>
		<link>http://jpmiii.com/2013/jim/shift-register-control-of-stepper-motor/</link>
		<comments>http://jpmiii.com/2013/jim/shift-register-control-of-stepper-motor/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 18:39:01 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=312</guid>
		<description><![CDATA[I bought 10 little stepper motors for about $2.70 each. It takes 4 wires to control each one so I bought some shift registers.This is a test using 3 wires from the arduino to control 2 stepper motors. motor &#160; shift register &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; _______________________________________________________________________________________ //Pin connected to ST_CP int latchPin = 8; //Pin connected to SH_CP int clockPin = 12; ////Pin connected to DS int dataPin = 11; int state = 0; int motorOneTarget = 0; int motorTwoTarget = 0; int motorOneStep = 0; int motorTwoStep = 0; int motorOneSteps[] = {B00000001, B00000011, B00000010, B00000110, B00000100, B00001100, B00001000, B00001001}; int motorOneStepsr[] = {B00001000, B00001100, B00000100, B00000110, B00000010, B00000011, B00000001, B00001001}; int motorTwoSteps[] = {B00010000, B00110000, B00100000, B01100000, B01000000, B11000000, B10000000, B10010000}; int motorTwoStepsr[] = {B10000000, B11000000, B01000000, B01100000, B00100000, B00110000, B00010000, B10010000}; void setup() { //set pins to output so you can control the shift register pinMode(latchPin, OUTPUT); pinMode(clockPin, OUTPUT); pinMode(dataPin, OUTPUT); Serial.begin(9600); } void loop() { if (motorOneTarget == 0){ motorOneTarget = random(200) &#8211; 100; Serial.println(motorOneTarget); } if (motorTwoTarget == 0){ motorTwoTarget = random(200) &#8211; 100; } stepMove(); delay(10); //Serial.println(motorOneTarget); } void stepMove() { if (motorOneTarget &#62; 0) { [...]]]></description>
				<content:encoded><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/NouBmMPLYC4" frameborder="0" allowfullscreen></iframe><br />
I bought 10 little stepper motors for about $2.70 each. It takes 4 wires to control each one so I bought some shift registers.This is a test using 3 wires from the arduino to control 2 stepper motors.</p>
<p><a title="motor" href="http://www.ebay.com/itm/181013743961?ssPageName=STRK:MEWNX:IT&amp;_trksid=p3984.m1439.l2649" target="_blank">motor</a></p>
<p>&nbsp;</p>
<p><a title="ic" href="http://www.jameco.com/webapp/wcs/stores/servlet/ProductDisplay?freeText=911189&amp;langId=-1&amp;storeId=10001&amp;productId=911189" target="_blank">shift register</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>_______________________________________________________________________________________</p>
<p>//Pin connected to ST_CP<br />
int latchPin = 8;<br />
//Pin connected to SH_CP<br />
int clockPin = 12;<br />
////Pin connected to DS<br />
int dataPin = 11;</p>
<p>int state = 0;</p>
<p>int motorOneTarget = 0;<br />
int motorTwoTarget = 0;<br />
int motorOneStep = 0;<br />
int motorTwoStep = 0;<br />
int motorOneSteps[] = {B00000001, B00000011, B00000010, B00000110, B00000100, B00001100, B00001000, B00001001};<br />
int motorOneStepsr[] = {B00001000, B00001100, B00000100, B00000110, B00000010, B00000011, B00000001, B00001001};<br />
int motorTwoSteps[] = {B00010000, B00110000, B00100000, B01100000, B01000000, B11000000, B10000000, B10010000};<br />
int motorTwoStepsr[] = {B10000000, B11000000, B01000000, B01100000, B00100000, B00110000, B00010000, B10010000};<br />
void setup() {<br />
//set pins to output so you can control the shift register<br />
pinMode(latchPin, OUTPUT);<br />
pinMode(clockPin, OUTPUT);<br />
pinMode(dataPin, OUTPUT);<br />
Serial.begin(9600);<br />
}</p>
<p>void loop() {<br />
if (motorOneTarget == 0){<br />
motorOneTarget = random(200) &#8211; 100;<br />
Serial.println(motorOneTarget);<br />
}<br />
if (motorTwoTarget == 0){<br />
motorTwoTarget = random(200) &#8211; 100;<br />
}<br />
stepMove();<br />
delay(10);<br />
//Serial.println(motorOneTarget);</p>
<p>}<br />
void stepMove() {<br />
if (motorOneTarget &gt; 0) {<br />
state = state &amp; B11110000;<br />
state = state | motorOneStepsr[motorOneStep];<br />
digitalWrite(latchPin, LOW);<br />
shiftOut(dataPin, clockPin, MSBFIRST, state);<br />
digitalWrite(latchPin, HIGH);<br />
motorOneStep += 1;<br />
if (motorOneStep &gt; 7) {<br />
motorOneStep = 0;<br />
motorOneTarget = motorOneTarget &#8211; 1;<br />
}<br />
}<br />
if (motorOneTarget &lt; 0) {<br />
state = state &amp; B11110000;<br />
state = state | motorOneSteps[motorOneStep];<br />
digitalWrite(latchPin, LOW);<br />
shiftOut(dataPin, clockPin, MSBFIRST, state);<br />
digitalWrite(latchPin, HIGH);<br />
motorOneStep += 1;<br />
if (motorOneStep &gt; 7) {<br />
motorOneStep = 0;<br />
motorOneTarget = motorOneTarget + 1;<br />
}<br />
}<br />
if (motorTwoTarget &gt; 0) {<br />
state = state &amp; B00001111;<br />
state = state | motorTwoStepsr[motorTwoStep];<br />
digitalWrite(latchPin, LOW);<br />
shiftOut(dataPin, clockPin, MSBFIRST, state);<br />
digitalWrite(latchPin, HIGH);<br />
motorTwoStep += 1;<br />
if (motorTwoStep &gt; 7) {<br />
motorTwoStep = 0;<br />
motorTwoTarget = motorTwoTarget &#8211; 1;<br />
}<br />
}<br />
if (motorTwoTarget &lt; 0) {<br />
state = state &amp; B00001111;<br />
state = state | motorTwoSteps[motorTwoStep];<br />
digitalWrite(latchPin, LOW);<br />
shiftOut(dataPin, clockPin, MSBFIRST, state);<br />
digitalWrite(latchPin, HIGH);<br />
motorTwoStep += 1;<br />
if (motorTwoStep &gt; 7) {<br />
motorTwoStep = 0;<br />
motorTwoTarget = motorTwoTarget + 1;<br />
}<br />
}<br />
}</p>
<p>&nbsp;</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2013%2Fjim%2Fshift-register-control-of-stepper-motor%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2013/jim/shift-register-control-of-stepper-motor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>play list 09292012</title>
		<link>http://jpmiii.com/2012/jim/play-list-09292012/</link>
		<comments>http://jpmiii.com/2012/jim/play-list-09292012/#comments</comments>
		<pubDate>Sat, 29 Sep 2012 12:34:23 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=302</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/videoseries?list=FLd5Mc_7Jblzvx8i8N2eDnzQ&amp;hl=en_US" frameborder="0" width="560" height="315"></iframe></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2012%2Fjim%2Fplay-list-09292012%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2012/jim/play-list-09292012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>case of missing dog</title>
		<link>http://jpmiii.com/2012/jim/case-of-missing-dog/</link>
		<comments>http://jpmiii.com/2012/jim/case-of-missing-dog/#comments</comments>
		<pubDate>Mon, 24 Sep 2012 19:29:45 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=297</guid>
		<description><![CDATA[https://docs.google.com/document/d/1SQnbzw6R5sRXPKsJuOqgrk5ATfEIF5iWMALILkEEUgU/edit]]></description>
				<content:encoded><![CDATA[<p>https://docs.google.com/document/d/1SQnbzw6R5sRXPKsJuOqgrk5ATfEIF5iWMALILkEEUgU/edit</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2012%2Fjim%2Fcase-of-missing-dog%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2012/jim/case-of-missing-dog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>playlist 1</title>
		<link>http://jpmiii.com/2012/jim/playlist-1/</link>
		<comments>http://jpmiii.com/2012/jim/playlist-1/#comments</comments>
		<pubDate>Sun, 23 Sep 2012 22:12:56 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=298</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/videoseries?list=PLCD739391E500A9E6&amp;hl=en_US" frameborder="0" allowfullscreen></iframe></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2012%2Fjim%2Fplaylist-1%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2012/jim/playlist-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My civcraft server</title>
		<link>http://jpmiii.com/2012/jim/my-civcraft-server/</link>
		<comments>http://jpmiii.com/2012/jim/my-civcraft-server/#comments</comments>
		<pubDate>Fri, 03 Aug 2012 01:00:46 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=293</guid>
		<description><![CDATA[The plugins on my home version of civcraft all seem to be working fine except bottle o. Citadel, Prison Pearl, and snitches seem to work fine. 195 recipes 27 achievements 18:43:10 [INFO] Starting minecraft server version 1.3.1 18:43:10 [INFO] Loading properties 18:43:10 [INFO] Default game type: SURVIVAL 18:43:10 [INFO] Generating keypair 18:43:11 [INFO] Starting Minecraft server on *:25565 18:43:11 [INFO] This server is running CraftBukkit version git-Bukkit-1.2.5-R5.0-6-g11e32f1-b2270jnks (MC: 1.3.1) (Implementing API version 1.3.1-R0.1-SNAPSHOT) 18:43:11 [INFO] [PhysicalShop] Loading PhysicalShop v9.1.2 18:43:11 [INFO] [WorldBorder] Loading WorldBorder v1.5.4 18:43:11 [INFO] [PreciousStones] Loading PreciousStones v9.1.2 18:43:11 [INFO] [PrisonPearl] Loading PrisonPearl v1.3 18:43:11 [INFO] [Citadel] Loading Citadel v1.2 18:43:11 [INFO] [bottleO] Loading bottleO v0.4 18:43:11 [INFO] Preparing level &#8220;world&#8221; 18:43:12 [INFO] Preparing start region for level 0 (Seed: 6671782448272245126) 18:43:12 [INFO] Preparing start region for level 1 (Seed: 6671782448272245126) 18:43:13 [INFO] Preparing spawn area: 4% 18:43:13 [INFO] &#8212;&#8211; Bukkit Auto Updater &#8212;&#8211; 18:43:13 [INFO] It appears that you&#8217;re running a Development Build, when you&#8217;ve specified in bukkit.yml that you prefer to run Recommended Builds. 18:43:13 [INFO] If you would like to be kept informed about new Development Build releases, it is recommended that you change &#8216;preferred-channel&#8217; in your bukkit.yml to &#8216;dev&#8217;. 18:43:13 [INFO] With that [...]]]></description>
				<content:encoded><![CDATA[<p>The plugins on my home version of civcraft all seem to be working fine except bottle o.</p>
<p>Citadel, Prison Pearl, and snitches seem to work fine.</p>
<blockquote><p>195 recipes<br />
27 achievements<br />
18:43:10 [INFO] Starting minecraft server version 1.3.1<br />
18:43:10 [INFO] Loading properties<br />
18:43:10 [INFO] Default game type: SURVIVAL<br />
18:43:10 [INFO] Generating keypair<br />
18:43:11 [INFO] Starting Minecraft server on *:25565<br />
18:43:11 [INFO] This server is running CraftBukkit version git-Bukkit-1.2.5-R5.0-6-g11e32f1-b2270jnks (MC: 1.3.1) (Implementing API version 1.3.1-R0.1-SNAPSHOT)<br />
18:43:11 [INFO] [PhysicalShop] Loading PhysicalShop v9.1.2<br />
18:43:11 [INFO] [WorldBorder] Loading WorldBorder v1.5.4<br />
18:43:11 [INFO] [PreciousStones] Loading PreciousStones v9.1.2<br />
18:43:11 [INFO] [PrisonPearl] Loading PrisonPearl v1.3<br />
18:43:11 [INFO] [Citadel] Loading Citadel v1.2<br />
18:43:11 [INFO] [bottleO] Loading bottleO v0.4<br />
18:43:11 [INFO] Preparing level &#8220;world&#8221;<br />
18:43:12 [INFO] Preparing start region for level 0 (Seed: 6671782448272245126)<br />
18:43:12 [INFO] Preparing start region for level 1 (Seed: 6671782448272245126)<br />
18:43:13 [INFO] Preparing spawn area: 4%<br />
18:43:13 [INFO] &#8212;&#8211; Bukkit Auto Updater &#8212;&#8211;<br />
18:43:13 [INFO] It appears that you&#8217;re running a Development Build, when you&#8217;ve specified in bukkit.yml that you prefer to run Recommended Builds.<br />
18:43:13 [INFO] If you would like to be kept informed about new Development Build releases, it is recommended that you change &#8216;preferred-channel&#8217; in your bukkit.yml to &#8216;dev&#8217;.<br />
18:43:13 [INFO] With that set, you will be told whenever a new version is available for download, so that you can always keep up to date and secure with the latest fixes.<br />
18:43:13 [INFO] If you would like to disable this warning, simply set &#8216;suggest-channels&#8217; to false in bukkit.yml.<br />
18:43:13 [INFO] &#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8212;&#8211;<br />
18:43:13 [INFO] Preparing start region for level 2 (Seed: 6671782448272245126)<br />
18:43:14 [INFO] Preparing spawn area: 40%<br />
18:43:14 [INFO] [PhysicalShop] Enabling PhysicalShop v9.1.2<br />
18:43:14 [INFO] [PhysicalShop] Did not hook into LogBlock<br />
18:43:14 [INFO] [PhysicalShop] PhysicalShop v9.1.2 enabled.<br />
18:43:14 [INFO] [WorldBorder] Enabling WorldBorder v1.5.4<br />
18:43:14 [INFO] [WorldBorder] [CONFIG] Using round border, knockback of 3.0 blocks, and timer delay of 5.<br />
18:43:14 [INFO] [WorldBorder] [CONFIG] Border-checking timed task started.<br />
18:43:14 [INFO] [WorldBorder] [CONFIG] World &#8220;world&#8221; has border radius 2000 at X: 0.0 Z: 0.0<br />
18:43:14 [INFO] For reference, the main world&#8217;s spawn location is at X: 208.0 Y: 64.0 Z: 256.0<br />
18:43:14 [INFO] [PreciousStones] Enabling PreciousStones v9.1.2<br />
18:43:14 [INFO] [PreciousStones] Version 9.1.2 loaded<br />
18:43:15 [INFO] [PreciousStones] MySQL Connection successful<br />
18:43:15 [INFO] [PreciousStones] (world) cuboids: 3<br />
18:43:15 [INFO] [PrisonPearl] Enabling PrisonPearl v1.3<br />
18:43:15 [INFO] [Citadel] Enabling Citadel v1.2<br />
18:43:16 [INFO] [Citadel] Citadel is now enabled. ( Ã¢â‚¬Â¢_Ã¢â‚¬Â¢)>Ã¢Å’ï¿½Ã¢â€“Â -Ã¢â€“Â  ( Ã¢Å’ï¿½Ã¢â€“Â _Ã¢â€“Â )<br />
18:43:16 [INFO] [bottleO] Enabling bottleO v0.4<br />
18:43:16 [INFO] [bottleO] bottleO v0.4 enabled!<br />
18:43:16 [INFO] Server permissions file permissions.yml is empty, ignoring it<br />
18:43:16 [INFO] Done (4.440s)! For help, type &#8220;help&#8221; or &#8220;?&#8221;<br />
18:45:34 [INFO] jpmiii[/70.245.14.51:56172] logged in with entity id 436 at ([world] 218.87858192007064, 64.0, 235.75103226017438)<br />
18:59:24 [INFO] [bottleO] invalid xp values for jpmiii, calculated xp:2830, reported xp:1612, level:38, progress:0.80508476, reported xp lower, stopping.<br />
18:59:33 [INFO] [bottleO] invalid xp values for jpmiii, calculated xp:2830, reported xp:1612, level:38, progress:0.80508476, reported xp lower, stopping.<br />
18:59:38 [INFO] [bottleO] invalid xp values for jpmiii, calculated xp:2830, reported xp:1612, level:38, progress:0.80508476, reported xp lower, stopping.<br />
19:31:13 [INFO] jaysonnnn4[/192.168.1.105:65324] logged in with entity id 24412 at ([world] 227.53831504479177, 76.0, 241.08008947096732)<br />
19:34:17 [WARNING] jaysonnnn4 moved wrongly!<br />
19:35:50 [WARNING] jaysonnnn4 moved too quickly! 4.98674642073089,-3.2622489083599504,20.06062225777596 (2.4777151858047946, 2.9778319690283235, 9.944602661454594)<br />
19:36:11 [INFO] jaysonnnn4[/192.168.1.105:65341] logged in with entity id 27017 at ([world_the_end] -17.794041374880084, 66.26224890835995, -18.989744981320566)<br />
19:41:29 [INFO] Connection reset<br />
19:41:29 [INFO] jpmiii lost connection: disconnect.quitting<br />
19:41:46 [INFO] Connection reset<br />
19:41:46 [INFO] jaysonnnn4 lost connection: disconnect.quitting<br />
>stop<br />
19:43:36 [INFO] CONSOLE: Stopping the server..<br />
19:43:36 [INFO] Stopping server<br />
19:43:36 [INFO] [bottleO] Disabling bottleO v0.4<br />
19:43:36 [INFO] [bottleO] bottleO v0.4 disabled!<br />
19:43:36 [INFO] [Citadel] Disabling Citadel v1.2<br />
19:43:36 [INFO] [Citadel] Citadel is now disabled. (Ã¢â€¢Â¯ Ã¢â‚¬Â¢_Ã¢â‚¬Â¢)Ã¢â€¢Â¯ Ã¥Â½Â¡Ã¢â€�Â»Ã¢â€�ï¿½Ã¢â€�Â»<br />
19:43:36 [INFO] [PrisonPearl] Disabling PrisonPearl v1.3<br />
19:43:36 [INFO] [PreciousStones] Disabling PreciousStones v9.1.2<br />
19:43:36 [INFO] [WorldBorder] Disabling WorldBorder v1.5.4<br />
19:43:36 [INFO] [WorldBorder] [CONFIG] Border-checking timed task stopped.<br />
19:43:36 [INFO] [PhysicalShop] Disabling PhysicalShop v9.1.2<br />
19:43:36 [INFO] Saving players<br />
19:43:36 [SEVERE] java.net.SocketException: Socket closed<br />
19:43:36 [INFO] Saving worlds<br />
19:43:36 [SEVERE] 	at java.net.PlainSocketImpl.socketAccept(Native Method)<br />
19:43:36 [SEVERE] 	at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:375)<br />
19:43:36 [SEVERE] 	at java.net.ServerSocket.implAccept(ServerSocket.java:470)<br />
19:43:36 [SEVERE] 	at java.net.ServerSocket.accept(ServerSocket.java:438)<br />
19:43:36 [SEVERE] 	at net.minecraft.server.DedicatedServerConnectionThread.run(SourceFile:56)<br />
19:43:36 [INFO] Closing listening thread<br />
19:43:36 [INFO] Saving chunks for level &#8216;world&#8217;/net.minecraft.server.WorldProviderNormal@2b9f5491<br />
19:43:36 [INFO] Saving chunks for level &#8216;world_nether&#8217;/net.minecraft.server.WorldProviderHell@696911f6<br />
19:43:37 [INFO] Saving chunks for level &#8216;world_the_end&#8217;/net.minecraft.server.WorldProviderTheEnd@711a638a<br />
19:43:37 [INFO] Stopping server
</p></blockquote>
<p><a href="http://imgur.com/wEwzX"><img src="http://i.imgur.com/wEwzX.png" title="Hosted by imgur.com" alt="" /></a></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2012%2Fjim%2Fmy-civcraft-server%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2012/jim/my-civcraft-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clairy Browne &amp; The Bangin&#8217; Rackettes</title>
		<link>http://jpmiii.com/2012/jim/clairy-browne-the-bangin-rackettes/</link>
		<comments>http://jpmiii.com/2012/jim/clairy-browne-the-bangin-rackettes/#comments</comments>
		<pubDate>Wed, 01 Aug 2012 04:34:41 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=290</guid>
		<description><![CDATA[Saw them on a Heineken commercial sounds good Whatta Man by Clairy Browne &#38; The Bangin&#8217; Rackettes Love Letter (7&#34; Single) by Clairy Browne &#38; The Bangin&#8217; Rackettes]]></description>
				<content:encoded><![CDATA[<p>Saw them on a Heineken commercial sounds good
<p>
<p><iframe width="400" height="100" style="position: relative; display: block; width: 400px; height: 100px;" src="http://bandcamp.com/EmbeddedPlayer/v=2/track=2960280280/size=venti/bgcol=FFFFFF/linkcol=4285BB/" allowtransparency="true" frameborder="0"><a href="http://banginrackettes.bandcamp.com/track/whatta-man">Whatta Man by Clairy Browne &amp; The Bangin&#8217; Rackettes</a></iframe></p>
<p>
<iframe width="400" height="100" style="position: relative; display: block; width: 400px; height: 100px;" src="http://bandcamp.com/EmbeddedPlayer/v=2/album=2212087245/size=venti/bgcol=FFFFFF/linkcol=4285BB/" allowtransparency="true" frameborder="0"><a href="http://banginrackettes.bandcamp.com/album/love-letter-7-single">Love Letter (7&quot; Single) by Clairy Browne &amp; The Bangin&#8217; Rackettes</a></iframe></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2012%2Fjim%2Fclairy-browne-the-bangin-rackettes%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2012/jim/clairy-browne-the-bangin-rackettes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fireplace!</title>
		<link>http://jpmiii.com/2011/jim/fireplace/</link>
		<comments>http://jpmiii.com/2011/jim/fireplace/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:45:58 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=271</guid>
		<description><![CDATA[link]]></description>
				<content:encoded><![CDATA[<p><a href="http://youtu.be/e_BL5EKwSqE" title="fireplace">link</a></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2011%2Fjim%2Ffireplace%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2011/jim/fireplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My House</title>
		<link>http://jpmiii.com/2010/jim/252/</link>
		<comments>http://jpmiii.com/2010/jim/252/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 02:10:18 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=252</guid>
		<description><![CDATA[View Larger Map]]></description>
				<content:encoded><![CDATA[<p><iframe width="700" height="394" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?hl=en&amp;q=1105+n+4th+st+mcgehee,+ar&amp;client=firefox-a&amp;ie=UTF8&amp;hq=&amp;hnear=1105+N+4th+St,+McGehee,+Desha,+Arkansas+71654&amp;gl=us&amp;ei=E6D5TLmDB5P6sAPjgeHSCA&amp;oi=geocode_result&amp;sqi=2&amp;ved=0CBkQ8gEwAA&amp;t=h&amp;layer=c&amp;cbll=33.636485,-91.404355&amp;panoid=JDvH7igaZ0hVA2aFlqoREA&amp;cbp=13,255.29,,1,4.14&amp;source=embed&amp;ll=33.628431,-91.404362&amp;spn=0.028158,0.060081&amp;z=14&amp;output=svembed"></iframe><br /><small><a href="http://maps.google.com/maps?hl=en&amp;q=1105+n+4th+st+mcgehee,+ar&amp;client=firefox-a&amp;ie=UTF8&amp;hq=&amp;hnear=1105+N+4th+St,+McGehee,+Desha,+Arkansas+71654&amp;gl=us&amp;ei=E6D5TLmDB5P6sAPjgeHSCA&amp;oi=geocode_result&amp;sqi=2&amp;ved=0CBkQ8gEwAA&amp;t=h&amp;layer=c&amp;cbll=33.636485,-91.404355&amp;panoid=JDvH7igaZ0hVA2aFlqoREA&amp;cbp=13,255.29,,1,4.14&amp;source=embed&amp;ll=33.628431,-91.404362&amp;spn=0.028158,0.060081&amp;z=14" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2010%2Fjim%2F252%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2010/jim/252/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vbs script</title>
		<link>http://jpmiii.com/2010/jimmy/vbs_script/</link>
		<comments>http://jpmiii.com/2010/jimmy/vbs_script/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 00:28:21 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://jpmiii.com/?p=139</guid>
		<description><![CDATA[Save this as a .vbs file with wordpad or notepad Do a = MsgBox("I'm sorry this won't load.",3 , "Error") if a = vbYes then b = MsgBox("LEAVE NOW!!!!!!!!!!!!!!!!!", , "Error") End If i=i+1 Loop While i]]></description>
				<content:encoded><![CDATA[<p>Save this as a .vbs file with wordpad or notepad</p>
<p><code><br />
Do<br />
a = MsgBox("I'm sorry this won't load.",3 , "Error")<br />
if a = vbYes then<br />
b = MsgBox("LEAVE NOW!!!!!!!!!!!!!!!!!", , "Error")<br />
End If<br />
i=i+1<br />
Loop While i<10</code></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjpmiii.com%2F2010%2Fjimmy%2Fvbs_script%2F&amp;layout=standard&amp;show_faces=true&amp;width=&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:25px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://jpmiii.com/2010/jimmy/vbs_script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
