<?xml version="1.0"?>
<rss version="2.0" xmlns:georss="http://www.georss.org/georss">
   <channel>
      <title>The GIS Guy</title>
      <link>http://www.yakjive.com/TheGISGuy/</link>
      <description>A website about GIS, geospatial technology and related technologies.</description>
      <language>en-us</language>
      <pubDate>Wed, 14 Oct 2009 17:54:36 MST</pubDate>
      <managingEditor>chris.j.andrews@gmail.com</managingEditor>
      <webMaster>chris.j.andrews@gmail.com</webMaster>
      <copyright>Copyright (c) 2007 www.yakjive.com/TheGISGuy. All rights reserved.</copyright>
  <item>
    <title>Article on Setting Up a Python Script as a Service</title>
    <link>http://www.yakjive.com/TheGISGuy/python-tips4-07.html#45</link>
    <description>
 Grig Gheorghiu wrote this great article on turning a python script into a service:

 1. Install Win2KResource Kit (Windows 2003 Resource Kit for XP users) &gt;
2. Run instsrv to install srvany.exe as a service with the name myscript: &lt;br &gt;
C:\Program Files\Resource Kit\instsrv myscript &#34;C:\Program Files\Resource Kit\srvany.exe&#34;  &gt;
3. Go to Computer Management-&gt;Services and make sure myscript is listed as a service. Also make sure the Startup Type is Automatic. &lt;br&...</description>
    <pubDate>Mon, 16 Apr 2007 09:24:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/python-tips4-07.html#45</guid>
    <category>US python-tips</category>
  </item>
  <item>
    <title>Access Object as Associative Array (Hashtable)</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips4-07.html#39</link>
    <description>
 var obj = new Object();  
obj.test = 1;  
obj.test2 = &#39;a&#39;;  
obj.test3 = new Array(&#39;b&#39;, &#39;c&#39;, &#39;d&#39;); 
obj.toString = function(){ 
return obj[&#39;test&#39;] + &#39;\n&#39; +  
obj[&#39;test2&#39;] + &#39;\n&#39; +  
obj[&#39;test3&#39;];}; 
alert(obj.toString());...</description>
    <pubDate>Mon, 09 Apr 2007 09:37:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips4-07.html#39</guid>
    <category>US javascript-tips</category>
  </item>
  <item>
    <title>JavaScript Objects</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#38</link>
    <description> Here&#39;s a simple JavaScript object:
 
 function MyObject(a){

 this.a = a; 
 // Alternatives formethod creation:
 this.function1 = MyObject_function1; 
 this.function2 = new Function(&#39;x&#39;, &#39;if(x){ return 1; } else { return 0;}&#34;);
 this.function3 = function(y){if(y){ return 1; } else { return 0;}};

 }
 function MyObject_function1(z){

 if(z){ return 1; } else { return 0;}

 }
 
 Declare the new object:
 myObject = new MyObject(1);...</description>
    <pubDate>Mon, 19 Mar 2007 16:24:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#38</guid>
    <category>US javascript-tips</category>
  </item>
  <item>
    <title>JSDoc</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#34</link>
    <description> OK... I&#39;ve been looking for this for a while, but never did the obvious search, so I never found it.
 deCarta&#39;s developers used JSDoc to build JavaDoc-type documentation for their JavaScript. It&#39;s pretty nice... simply required an ActivePerl install (on Windows) and very minor configuration. I was able to doc my own JavaScript files in less that 10 minutes including the download.
 Very cool....</description>
    <pubDate>Tue, 13 Mar 2007 13:16:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#34</guid>
    <category>US javascript-tips</category>
  </item>
  <item>
    <title>Iron Python and ASP</title>
    <link>http://www.yakjive.com/TheGISGuy/python-tips3-07.html#28</link>
    <description> I&#39;m managing to get Iron Python for ASP up and running. How cool!
 The following link seems to be a good starter tutorial:
 http://www.asp.net/ironpython/walkthrough01.aspx?tabid=62...</description>
    <pubDate>Fri, 02 Mar 2007 15:40:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/python-tips3-07.html#28</guid>
    <category>US python-tips</category>
  </item>
  <item>
    <title>Debugging AJAX calls</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips11-06.html#17</link>
    <description>Having trouble debugging AJAX calls back to your server? Check out FireBug, an addon for the FireFox browser that lets you see calls to the server and even look at the JS code. Pretty cool....</description>
    <pubDate>Wed, 15 Nov 2006 16:33:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips11-06.html#17</guid>
    <category>US javascript</category>
  </item>
   </channel>
</rss>

