<?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>GeoMaster&#039;s</title>
	<atom:link href="http://geomaster.ca/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://geomaster.ca/blog</link>
	<description>GIS &#38; IT &#124; http://geomaster.ca</description>
	<lastBuildDate>Mon, 27 Sep 2010 01:47:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ArcGIS Flex viewer 2.1 released</title>
		<link>http://geomaster.ca/blog/?p=14</link>
		<comments>http://geomaster.ca/blog/?p=14#comments</comments>
		<pubDate>Mon, 27 Sep 2010 01:33:26 +0000</pubDate>
		<dc:creator>Kail</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Flex Viewer]]></category>

		<guid isPermaLink="false">http://geomaster.ca/blog/?p=14</guid>
		<description><![CDATA[Arcgis flex API 2.1 &#038; Flex viewer 2.1 both are out. There are a lot to catch up on. Still adding KML and shapefiles need some work.
]]></description>
			<content:encoded><![CDATA[<p>Arcgis flex API 2.1 &#038; Flex viewer 2.1 both are out. There are a lot to catch up on. Still adding KML and shapefiles need some work.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeomaster.ca%2Fblog%2F%3Fp%3D14&amp;linkname=ArcGIS%20Flex%20viewer%202.1%20released"><img src="http://geomaster.ca/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geomaster.ca/blog/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add transparent picture to ArcMap</title>
		<link>http://geomaster.ca/blog/?p=13</link>
		<comments>http://geomaster.ca/blog/?p=13#comments</comments>
		<pubDate>Fri, 30 Oct 2009 22:59:58 +0000</pubDate>
		<dc:creator>Kail</dc:creator>
				<category><![CDATA[Blog Settings]]></category>
		<category><![CDATA[ArcGIS]]></category>

		<guid isPermaLink="false">http://geomaster.ca/blog/?p=13</guid>
		<description><![CDATA[1. In a graphics editor application such as Adobe Photoshop, fill the white, background portions of the logo that need to be transparent with a key color that does not appear elsewhere in the map; for example, bright magenta. This allows any areas of the logo that should be opaque white to remain opaque on [...]]]></description>
			<content:encoded><![CDATA[<p>1. In a graphics editor application such as Adobe Photoshop, fill the white, background portions of the logo that need to be transparent with a key color that does not appear elsewhere in the map; for example, bright magenta. This allows any areas of the logo that should be opaque white to remain opaque on the map.<br />
2. Note the RGB values of the key color as they will be needed later.<br />
3. Save the new image in BMP format.<br />
4. In ArcMap, place a marker on the layout using the Drawing toolbar&#8217;s New Marker tool (see image below).<br />
5. Double-click this new marker to open the Properties dialog box and click the Change Symbol button.<br />
6. Click the Properties button and select Picture Marker Symbol from the Type drop-down list.<br />
7. Navigate to the new logo BMP created previously and click OK.<br />
8. Use the RGB values used for the key color in the Transparent Color picker.<br />
9. Adjust the size of the marker as necessary and click OK on all of the dialog boxes.</p>
<p>Source:http://support.esri.com/index.cfm?fa=knowledgebase.techarticles.articleShow&#038;d=29225</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeomaster.ca%2Fblog%2F%3Fp%3D13&amp;linkname=Add%20transparent%20picture%20to%20ArcMap"><img src="http://geomaster.ca/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geomaster.ca/blog/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google map for Flash-mouse move lat/lon</title>
		<link>http://geomaster.ca/blog/?p=10</link>
		<comments>http://geomaster.ca/blog/?p=10#comments</comments>
		<pubDate>Tue, 20 Oct 2009 00:48:54 +0000</pubDate>
		<dc:creator>Kail</dc:creator>
				<category><![CDATA[Blog Settings]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://geomaster.ca/blog/?p=10</guid>
		<description><![CDATA[To display mouse move lat/lon in a label control and formate it with 6 digits, do so:
Within the map ready function, add:
map.addEventListener(MapMouseEvent.MOUSE_MOVE,
function(e:MapMouseEvent):void {
btnMMLatLng.text = e.latLng.lat().toFixed(6)+&#8221;, &#8220;+e.latLng.lng().toFixed(6);
});
 
Reference:
format numbers:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Number.html#includeExamplesSummary
]]></description>
			<content:encoded><![CDATA[<p>To display mouse move lat/lon in a label control and formate it with 6 digits, do so:<br />
Within the map ready function, add:</p>
<p>map.addEventListener(MapMouseEvent.MOUSE_MOVE,<br />
function(e:MapMouseEvent):void {<br />
btnMMLatLng.text = e.latLng.lat().toFixed(6)+&#8221;, &#8220;+e.latLng.lng().toFixed(6);<br />
});</p>
<p> </p>
<p>Reference:<br />
format numbers:<br />
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Number.html#includeExamplesSummary</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeomaster.ca%2Fblog%2F%3Fp%3D10&amp;linkname=Google%20map%20for%20Flash-mouse%20move%20lat%2Flon"><img src="http://geomaster.ca/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geomaster.ca/blog/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer won&#8217;t boot</title>
		<link>http://geomaster.ca/blog/?p=7</link>
		<comments>http://geomaster.ca/blog/?p=7#comments</comments>
		<pubDate>Sat, 17 Oct 2009 14:12:11 +0000</pubDate>
		<dc:creator>Kail</dc:creator>
				<category><![CDATA[Blog Settings]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://geomaster.ca/blog/?p=7</guid>
		<description><![CDATA[The other, I was surfing on the web&#8230;and it suddenly went pretty slow and there&#8217;s virus warning message as well. I couldn&#8217;t even close the Internet Explorer. I also tried to bring up the task manager to end the Explorer but this didn&#8217;t work. The screen is not freezing, I still can do other things, [...]]]></description>
			<content:encoded><![CDATA[<p>The other, I was surfing on the web&#8230;and it suddenly went pretty slow and there&#8217;s virus warning message as well. I couldn&#8217;t even close the Internet Explorer. I also tried to bring up the task manager to end the Explorer but this didn&#8217;t work. The screen is not freezing, I still can do other things, such as moving the mouse and clicking on the start menu. So I tried to log off the computer&#8230;but it seems to be taking too long. I press the reset button to restart the computer, then it ended up this nightmare:</p>
<p>&#8220;It won&#8217;t boot up in normal, safe mode or last working configuration.I tried restore to fix it, such as fixmbr, chkdsk, fixboot&#8230;nothing helps.</p>
<p>The computer&#8217;s OS is Window XP with SP3 installed. It&#8217;s not a problem caused by installing SP3. In fact, it&#8217;s not clear what caused this issue.</p>
<p>Luckily I used the Hiren&#8217;s Boot CD and started it as Mini WinXP and restore the registry to a last available point and it works!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeomaster.ca%2Fblog%2F%3Fp%3D7&amp;linkname=Computer%20won%26%238217%3Bt%20boot"><img src="http://geomaster.ca/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geomaster.ca/blog/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Combatting Spam In Wordpress  &#8211; The Easy Way</title>
		<link>http://geomaster.ca/blog/?p=1</link>
		<comments>http://geomaster.ca/blog/?p=1#comments</comments>
		<pubDate>Sun, 04 Oct 2009 03:56:25 +0000</pubDate>
		<dc:creator>Kail</dc:creator>
				<category><![CDATA[Blog Settings]]></category>

		<guid isPermaLink="false">http://geomaster.ca/blog//?p=1</guid>
		<description><![CDATA[Congratulations, your Wordpress installation has completed.  For your convienence we have included the following tips and suggestions you may refer to in order to decrease  the amount of spam you receive.
Enable Akismet
Akismet is a Wordpress plugin that comes default with every  installation.   Akismet is a real-time adaptive spam filter which [...]]]></description>
			<content:encoded><![CDATA[<p>Congratulations, your Wordpress installation has completed.  For your convienence we have included the following tips and suggestions you may refer to in order to decrease  the amount of spam you receive.</p>
<h2><span style="color: #3366ff;">Enable Akismet</span></h2>
<p>Akismet is a Wordpress plugin that comes default with every  installation.   Akismet is a real-time adaptive spam filter which scans  all incoming comments and helps you automatically filter spam comments  by stopping them at their source.</p>
<p>In order to use Akismet you must first get an API Key from Wordpress.  The API Key is free, but it does require you visiting their site and  creating an account.   Please visit <a class="moz-txt-link-freetext" href="http://www.wordpress.com/signup">http://www.wordpress.com/signup</a>.  Enter your personal information and at the bottom choose &#8220;Just a  username, please.&#8221;</p>
<p>Once you have created and verified your account, log in at  <a class="moz-txt-link-freetext" href="http://www.wordpress.com/wp-login.php">http://www.wordpress.com/wp-login.php</a>.   Click on the &#8220;Profile&#8221; link and  you will see at the very top, your WordPress.com API Key. We&#8217;re going to  use this soon so keep it available to you by recording it somewhere.</p>
<p>Go back to your Netfirms Wordpress installation:</p>
<p>1. Log in to your Wordpress Dashboard and click on the Plugins link<br />
2. Click &#8220;Activate&#8221; for the plug in Akismet<br />
3. You will see a yellow box with a link asking you to enter your  Wordpress.com API Key that you created earlier.<br />
4. Once entered, click &#8220;Update options&#8221; to enable Akismet.</p>
<p>For the vast majority of blogs on the Internet, Akismet alone will  eliminate 99% of the spam comments that are generated. There are some  other features you may enable on your blog to increase your spam protection.</p>
<p>For more information on Akismet, as well for further assistance should  you find Akismet reporting a large amount of false-positives, please  visit <a class="moz-txt-link-freetext" href="http://www.akismet.com/">http://www.akismet.com</a></p>
<h2><span style="color: #99cc00;">Discussion Settings </span></h2>
<p>Under the Settings menu in the &#8220;Disucssion&#8221; subsection you will see a  section which lists 3 options that will apply before a comment appears  on your blog.   The bottom two options &#8216;Comment Author must fill out name  and email&#8217; as well as &#8216;Comment author must have a previously approved  comment&#8217; are by default checked.   We recommend leaving this checked  however you may, if you find spam getting past Akismet often enable the  option that an Administrator must approve all new comments.</p>
<p>Comment Moderation is another option you may use.   You may change the  amount of allowed URLs or links from it&#8217;s default value of 2 by setting  it to 1.   This allows the comment to contain 1 link before it is placed  in a moderation queue.   Setting this to 0 will mean all comments will be  placed in the moderation queue.</p>
<p>Be careful with the word lists offered in Comment Moderation and Comment  Blacklist.   If you were to type the word &#8220;ass&#8221; it would block the word  assistance or assume.   Wordpress offers a list of words you may use in  the Comment Moderation box available at  <a class="moz-txt-link-freetext" href="http://codex.wordpress.org/Spam_Words">http://codex.wordpress.org/Spam_Words</a></p>
<h3><span style="color: #99cc00;">Require users to register in order to comment</span></h3>
<p>This is a setting available under Settings menu in the &#8220;General&#8221;  subsection.   Most spam bots are not designed to register on a Wordpress  site so this will effectively put an end to any spammers, but it may  also decrease the amount of comments people leave on your blog.   This  should only be a last resort.</p>
<h3><span style="color: #99cc00;">Going Further Beyond Wordpress </span></h3>
<p>Wordpress&#8217; plugin archecture means you can increase your anti-spam  protection even further by using plugins which are available for free at  <a class="moz-txt-link-freetext" href="http://wordpress.org/extend/plugins/">http://wordpress.org/extend/plugins/</a>.   Typical plugins that are used to  increase the protection of your account would be to add a CAPTCHA image  or security image test on each comment.   You can browse thousands of  freely available Wordpress plugins at  <a class="moz-txt-link-freetext" href="http://wordpress.org/extend/plugins/">http://wordpress.org/extend/plugins/</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeomaster.ca%2Fblog%2F%3Fp%3D1&amp;linkname=Combatting%20Spam%20In%20Wordpress%20%20%26%238211%3B%20The%20Easy%20Way"><img src="http://geomaster.ca/blog/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geomaster.ca/blog/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

