<?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>NeoEGM.com &#187; Tech</title>
	<atom:link href="http://www.neoegm.com/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neoegm.com</link>
	<description>Knowledge is inside</description>
	<lastBuildDate>Mon, 08 Jul 2024 05:38:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.39</generator>
	<item>
		<title>Keil uVision Plugin: Matrix Keyboard</title>
		<link>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/</link>
		<comments>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/#comments</comments>
		<pubDate>Mon, 03 May 2010 04:53:36 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Keil Plugins]]></category>
		<category><![CDATA[8051]]></category>
		<category><![CDATA[AGSI]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[Matrix Keyboard]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[uVision]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1692</guid>
		<description><![CDATA[Update (2010-05-19): schematic updated to reflect real circuit. Since I could not manage to find a decent matrix keyboard plugin for Keil uVision, I&#8217;ve decided to develop one. Internally, it responds to the following schematic: It&#8217;s prepared to accept multiple key presses at once, so you can simulate a real world application: Usage First of [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" rel="bookmark" title="How to install a Keil uVision peripheral plugin">How to install a Keil uVision peripheral plugin </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/guitar-trainer/" rel="bookmark" title="Guitar Trainer">Guitar Trainer </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><strong>Update (2010-05-19):</strong> schematic updated to reflect real circuit.</p>
<p>Since I could not manage to find a decent matrix keyboard plugin for Keil uVision, I&#8217;ve decided to develop one.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard.png" alt="" title="MatrixKeyboard_Keyboard" width="184" height="255" class="aligncenter size-full wp-image-1694" /></p>
<p><span id="more-1692"></span></p>
<p>Internally, it responds to the following schematic:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Schematic.png" rel="lightbox[1692]"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Schematic-180x300.png" alt="" title="MatrixKeyboard_Schematic" width="180" height="300" class="aligncenter size-medium wp-image-1693" /></a></p>
<p>It&#8217;s prepared to accept multiple key presses at once, so you can simulate a real world application:</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard_Multiple.png" alt="" title="MatrixKeyboard_Keyboard_Multiple" width="184" height="256" class="aligncenter size-full wp-image-1695" /></p>
<h3>Usage</h3>
<p>First of all, you must install it on the Keil uVision and configure your project in order to use it while simulating. The plugin name, for the configuration, is <strong>MatrixKeyboard</strong>. You can follow <a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/">this step by step guide</a>.</p>
<p>Then, you must copy the <strong>MatrixKeyboard.ini</strong> file to your project and modify it to satisfy your needs. For example, given the following pin definitions:</p>
<pre class="brush: cpp; title: ; notranslate">
sbit Keyboard_Scan_0 = P1^1;
sbit Keyboard_Scan_1 = P1^2;
sbit Keyboard_Scan_2 = P1^3;
sbit Keyboard_Scan_3 = P1^4;

sbit Keyboard_Return_0 = P1^5;
sbit Keyboard_Return_1 = P1^6;
sbit Keyboard_Return_2 = P1^7;
</pre>
<p>You could configure the INI file like this:</p>
<pre class="brush: plain; title: ; notranslate">
[Settings]

; All port addresses in hexadecimal
; Bits: 0-7

Scan0_Port_Address = 90
Scan0_Port_Bit = 1

Scan1_Port_Address = 90
Scan1_Port_Bit = 2

Scan2_Port_Address = 90
Scan2_Port_Bit = 3

Scan3_Port_Address = 90
Scan3_Port_Bit = 4

Return0_Port_Address = 90
Return0_Port_Bit = 5

Return1_Port_Address = 90
Return1_Port_Bit = 6

Return2_Port_Address = 90
Return2_Port_Bit = 7
</pre>
<p>If you don&#8217;t remember the port addresses, you can always check the header file corresponding to you microcontroller and look for a line like this:</p>
<pre class="brush: cpp; title: ; notranslate">
sfr P1 = 0x90;
</pre>
<p>Well, that&#8217;s all. You can now run your project in simulation mode and open the plugin via Peripherals->Matrix Keyboard.</p>
<p><a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">MatrixKeyboard is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p>Finally, the downloads:</p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/keil-plugins/matrix-keyboard/MatrixKeyboard_1.1.zip">MatrixKeyboard Plugin v1.1</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/keil-plugins/matrix-keyboard/MatrixKeyboard_1.1_Source.zip">Download v1.1 Source Code</a></p>
</div>
<p>The source code proyect is done in Visual Studio 2008, but it can be easily adapted for other versions.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="guitar fret notes">guitar fret notes</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="diapasón guitarra">diapasón guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="diapasón de la guitarra">diapasón de la guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="matrix keyboard">matrix keyboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="notes on the fretboard">notes on the fretboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="guitar notes on the fretboard">guitar notes on the fretboard</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="KEIL UVISION">KEIL UVISION</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="teclado matricial">teclado matricial</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="the notes on a guitar">the notes on a guitar</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" title="windows 95 games">windows 95 games</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" rel="bookmark" title="How to install a Keil uVision peripheral plugin">How to install a Keil uVision peripheral plugin </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/software/tools/guitar-trainer/" rel="bookmark" title="Guitar Trainer">Guitar Trainer </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install a Keil uVision peripheral plugin</title>
		<link>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/</link>
		<comments>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/#comments</comments>
		<pubDate>Mon, 03 May 2010 02:55:40 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Keil Plugins]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Keil]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Step by Step]]></category>
		<category><![CDATA[uVision]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1704</guid>
		<description><![CDATA[The installation of a Keil uVision plugin depends on the plugin to be installed, but it&#8217;s commonly divided in four main steps. 1- First, copy the files corresponding to the C51 directory of the Keil&#8217;s installation. Assuming you have installed the application in C:\Keil, then the destination directory would be C:\Keil\C51. Commonly, you just copy [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" rel="bookmark" title="Keil uVision Plugin: Matrix Keyboard">Keil uVision Plugin: Matrix Keyboard </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/MatrixKeyboard_Keyboard_Multiple.png" alt="" title="MatrixKeyboard_Keyboard_Multiple" width="184" height="256" class="aligncenter size-full wp-image-1695" /></a></p>
<p>The installation of a Keil uVision plugin depends on the plugin to be installed, but it&#8217;s commonly divided in four main steps.</p>
<p><span id="more-1704"></span></p>
<p>1- First, copy the files corresponding to the <strong>C51</strong> directory of the Keil&#8217;s installation.</p>
<p>Assuming you have installed the application in C:\Keil, then the destination directory would be <strong>C:\Keil\C51</strong>.</p>
<p>Commonly, you just copy there the plugin DLL.</p>
<p>2- Copy the additional files to be used to the <strong>UV3</strong> or <strong>UV4</strong> directory, depending on whether you are using uVision 3 o uVision 4.</p>
<p>These use to be additional files used by the plugin. This should have been indicated by the plugin developer for each particular plugin.</p>
<p>3- Copy the needed files to each project directory. These are commonly project specific configuration files, like the ones specifying the used pins.</p>
<p>4- Configure the project in order to use the plugin.</p>
<p>In uVision, go to Project->Options for Target, and then to the Debug tab.</p>
<p>There, we edit the field &#8220;Parameter&#8221; which is next to &#8220;Dialog DLL&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2010/05/Keil_Config_Debug.png" rel="lightbox[1704]"><img src="http://www.neoegm.com/wp-content/uploads/2010/05/Keil_Config_Debug-300x225.png" alt="" title="Keil_Config_Debug" width="300" height="225" class="aligncenter size-medium wp-image-1707" /></a></p>
<p>We add the following to the back of the text string:</p>
<p>-d<strong>PluginName</strong></p>
<p>For example, in the case we wanted to use the <a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/">Matrix Keyboard plugin</a>, we would write, just as in the image:</p>
<p>-d<strong>MatrixKeyboard</strong></p>
<p>That&#8217;s all, we&#8217;re ready to start the debugging mode and run our project.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil plugin">keil plugin</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil uvision 4">keil uvision 4</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil uvision3">keil uvision3</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="how to install KEIL uvision3">how to install KEIL uvision3</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil peripherals">keil peripherals</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="keil peripheral">keil peripheral</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="peripheral plug in">peripheral plug in</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="How to install keil uvision 4">How to install keil uvision 4</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="como instalar el keil">como instalar el keil</a></li>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/" title="Keil peripheral dll">Keil peripheral dll</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/hardware/8051/keil-plugins/keil-uvision-plugin-matrix-keyboard/" rel="bookmark" title="Keil uVision Plugin: Matrix Keyboard">Keil uVision Plugin: Matrix Keyboard </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/hardware/8051/keil-plugins/how-to-install-a-keil-uvision-peripheral-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top updated to version 1.3</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 14:04:06 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/</guid>
		<description><![CDATA[Since Facebook changed its structure, some days ago, the Move Facebook Events Box to Top script has stoppped working. I&#8217;ve just updated it to the version 1.3 to solve the problem. Please visit the original post to download the updated version. Go to the original post Incoming search terms for the article: faceboopk facebook script [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2">Move Facebook Events Box to Top updated to version 1.2 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2.1">Move Facebook Events Box to Top updated to version 1.2.1 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>Since Facebook changed its structure, some days ago, the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Move Facebook Events Box to Top</a> script has stoppped working.</p>
<p>I&#8217;ve just updated it to the version 1.3 to solve the problem.</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">original post</a> to download the updated version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="faceboopk">faceboopk</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook script">facebook script</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="Javascript|NeoEGM com">Javascript|NeoEGM com</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook events">facebook events</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="actualizar greasemonkey">actualizar greasemonkey</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook scripts">facebook scripts</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="script facebook">script facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="events facebook">events facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="facebook scriptleri">facebook scriptleri</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" title="recuadro de cumple años">recuadro de cumple años</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2">Move Facebook Events Box to Top updated to version 1.2 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2.1">Move Facebook Events Box to Top updated to version 1.2.1 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Add-On: Close Repeated Tabs 1.0</title>
		<link>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/</link>
		<comments>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:33:38 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Add-ons]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Close]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[Experimental]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Public]]></category>
		<category><![CDATA[Repetition]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tabs]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/</guid>
		<description><![CDATA[I&#8217;ve just updated the Close Repeated Tabs Firefox add-on to the 1.0 version. It was modified to completely comply with Firefox 3.6 and 3.7. Also, you can now choose whether to treat the different anchors as the same page or not. Just click here to download: Download Or go to the original post for more [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/" rel="bookmark" title="Firefox Add-On: Close Repeated Tabs">Firefox Add-On: Close Repeated Tabs </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" rel="bookmark" title="Firefox Add-on: List Open URLs">Firefox Add-on: List Open URLs </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-54 aligncenter" title="Close Repeated Tabs Menu" src="http://www.neoegm.com/wp-content/uploads/2009/04/closerepeatedtabs.png" alt="Close Repeated Tabs Menu" width="380" height="380" /></p>
<p>I&#8217;ve just updated the <a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/">Close Repeated Tabs Firefox add-on</a> to the 1.0 version.</p>
<p>It was modified to completely <strong>comply with Firefox 3.6 and 3.7</strong>.</p>
<p>Also, you can now choose whether to treat the different anchors as the same page or not.</p>
<p>Just click here to download:</p>
<div align="center">
<p class="download"><a href="https://addons.mozilla.org/en-US/firefox/addon/11884/">Download</a></p>
</div>
<p>Or go to the original post for more information:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/">Original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox close">firefox close</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="Source: www10436.aboutcollegeessay.com/">Source: www10436.aboutcollegeessay.com/</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="addon firefox tab duplicados">addon firefox tab duplicados</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="Firefox_Addons_1-0">Firefox_Addons_1-0</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox addon repeat movements">firefox addon repeat movements</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="plugin firefox repeat post">plugin firefox repeat post</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="firefox repeat addon">firefox repeat addon</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="repeat webpage plugin firefox">repeat webpage plugin firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="goldd2s">goldd2s</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" title="https://yandex ru/clck/jsredir?from=yandex ru;search;web;;&amp;text=&amp;etext=1822 YMHvs22AeEOYtQ9KsOTU32sVTX8RySU11DTwf4rkvueBbEhVUgc4RbU1AourVfZM d0d75b4488fd5a7e0d68c4127db73f875c2e65f9&amp;uuid=&amp;state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXme">https://yandex ru/clck/jsredir?from=yandex ru;search;web;;&amp;text=&amp;etext=1822 YMHvs22AeEOYtQ9KsOTU32sVTX8RySU11DTwf4rkvueBbEhVUgc4RbU1AourVfZM d0d75b4488fd5a7e0d68c4127db73f875c2e65f9&amp;uuid=&amp;state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXme</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/" rel="bookmark" title="Firefox Add-On: Close Repeated Tabs">Firefox Add-On: Close Repeated Tabs </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" rel="bookmark" title="Firefox Add-on: List Open URLs">Firefox Add-on: List Open URLs </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top &#8211; Diagnostics Version</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 20:55:43 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[Diagnostics]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/</guid>
		<description><![CDATA[I&#8217;ve just published the diagnostics version of the Move Facebook Events Box to Top script. It&#8217;s made to help in the tracing of any kind of problem which may keep the script from working for someone. There shouldn&#8217;t be need to say that the diagnostics version is just for the ones who are having problems [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2">Move Facebook Events Box to Top updated to version 1.2 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>I&#8217;ve just published the diagnostics version of the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Move Facebook Events Box to Top</a> script.</p>
<p>It&#8217;s made to help in the tracing of any kind of problem which may keep the script from working for someone.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop_Diagnostics.png" alt="FacebookEventsToTop_Diagnostics" title="FacebookEventsToTop_Diagnostics" width="383" height="198" class="aligncenter size-full wp-image-1582" /></p>
<p>There shouldn&#8217;t be need to say that <strong>the diagnostics version is just for the ones who are having problems with the script</strong>.</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/#diagnostics">original post</a> to read the instructions and download the latest version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/#diagnostics">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="ver eventos en facebook">ver eventos en facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover eventos facebook">mover eventos facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="como mover un recuadro en facebook">como mover un recuadro en facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover comentarios facebook">mover comentarios facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="plugin facebook desplazar arriba">plugin facebook desplazar arriba</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="TRASLADAR VIDEOS A FACEBOOK">TRASLADAR VIDEOS A FACEBOOK</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover de sitio los videos de facebook">mover de sitio los videos de facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover los eventos de facebbok">mover los eventos de facebbok</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover publicacion del facebook">mover publicacion del facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/" title="mover publicaciones de facebook">mover publicaciones de facebook</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2">Move Facebook Events Box to Top updated to version 1.2 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-diagnostics-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 19:55:35 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Admin Panel]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Naming]]></category>
		<category><![CDATA[Original]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/</guid>
		<description><![CDATA[I&#8217;ve just released the version 3.1.6.3 of the Google (XML) Sitemaps Generator with qTranslate Support WordPress Plugin. Two important things have been fixed: Support for blogs without qTranslate (it won&#8217;t give fatal errors anymore) Correct naming of the plugin in the WordPress Repository (as &#8220;Google XML Sitemaps with qTranslate Support&#8221;). The incorrect naming may cause [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" rel="bookmark" title="qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>I&#8217;ve just released the version 3.1.6.3 of the <a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/"><em>Google (XML) Sitemaps Generator with qTranslate Support</em> WordPress Plugin</a>.</p>
<p>Two important things have been fixed:</p>
<ul>
<li>Support for blogs without qTranslate (it won&#8217;t give fatal errors anymore)</li>
<li>Correct naming of the plugin in the WordPress Repository (as &#8220;Google XML Sitemaps with qTranslate Support&#8221;). The incorrect naming may cause the ones who have downloaded previous versions of the plugins to get updated to the original version (the one that does not support qTranslate).</li>
</ul>
<p><strong>I really recommend updating since you may not receive the notifications for this version of the plugin but for the original one (which does not support qTranslate).</strong></p>
<p>You can download the latest version from the original post page:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="versión actual del plugin Google Update">versión actual del plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="current version plugin Google Update">current version plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="neo tag generator">neo tag generator</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="versión actual plugin Google Update">versión actual plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="google xml sitemaps">google xml sitemaps</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="current version plugin Google Updater">current version plugin Google Updater</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="qtranslate sitemap">qtranslate sitemap</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="versión actual del plugin Google Updater">versión actual del plugin Google Updater</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="descargar versión actual del plugin Google Update">descargar versión actual del plugin Google Update</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" title="WordPress|NeoEGM com">WordPress|NeoEGM com</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" rel="bookmark" title="qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:55:57 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Admin Panel]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/</guid>
		<description><![CDATA[Just to make the things easier for the ones using the Google (XML) Sitemaps Generator with qTranslate Support WordPress Plugin, I&#8217;ve just released it in the WordPress repository as &#8220;google-xml-sitemaps-with-qtranslate-support&#8220;. This enables you to get easily notified when a new version is available and to use the automatic updating feature (from the WordPress admin panel). [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" rel="bookmark" title="Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)">Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" rel="bookmark" title="qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>Just to make the things easier for the ones using the <a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Google (XML) Sitemaps Generator with qTranslate Support WordPress Plugin</a>, I&#8217;ve just released it in the WordPress repository as &#8220;<em><strong>google-xml-sitemaps-with-qtranslate-support</strong></em>&#8220;.</p>
<p>This enables you to get easily <strong>notified when a new version is available</strong> and to use the <strong>automatic updating feature</strong> (from the WordPress admin panel).</p>
<p>You can download the latest version from the original post page:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="problemas qtranslate">problemas qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="qtranslate vs">qtranslate vs</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="google sitemaps generator for wordpress qtranslate support">google sitemaps generator for wordpress qtranslate support</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="xml generador">xml generador</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" title="xml sitemap generator and editor">xml sitemap generator and editor</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" rel="bookmark" title="Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)">Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" rel="bookmark" title="qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top updated to version 1.2.1</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 20:55:03 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/</guid>
		<description><![CDATA[It has happened almost no time since the last update (I made it yesterday), but I had to make a new release to correct one remaining problem which made the script not to work sometimes with the new site structure (specifically when returning to home without reloading after some kind of actions, for example, clicking [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2">Move Facebook Events Box to Top updated to version 1.2 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>It has happened almost no time since the last update (I made it yesterday), but I had to make a new release to correct one remaining problem which made the script not to work sometimes with the new site structure (specifically when returning to home without reloading after some kind of actions, for example, clicking the &#8220;Return to home&#8221; link after cleaning up all the pending requests).</p>
<p>You may have not seen the problem, but anyway I recommend the update because Facebook keeps changing the site structure and this is the best working release (its been doing its work flawlessly in every case I&#8217;ve tested it in by now).</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">original post</a> to download the updated version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="facebook events box">facebook events box</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="facebook how to move post to top">facebook how to move post to top</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="how to move post to the top on facebook">how to move post to the top on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="move facebook post top">move facebook post top</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="move posts to top in facebook">move posts to top in facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="move the box 1 2 1">move the box 1 2 1</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="move the box 1 2 1 download">move the box 1 2 1 download</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" title="mover post en facebook">mover post en facebook</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2">Move Facebook Events Box to Top updated to version 1.2 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Facebook Events Box to Top updated to version 1.2</title>
		<link>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/</link>
		<comments>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 20:55:48 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Birthday]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Customize]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Friend]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Short]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1396</guid>
		<description><![CDATA[Since some days ago, the Move Facebook Events Box to Top script has stoppped working in some Facebook accounts (while it kept working in some others). It happened to be that Facebook is updating some parts of its page structure and that changes generated the problems. I&#8217;ve just updated it to the version 1.2 to [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2.1">Move Facebook Events Box to Top updated to version 1.2.1 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/FacebookEventsToTop.png" alt="FacebookEventsToTop" title="FacebookEventsToTop" width="425" height="441" class="aligncenter size-full wp-image-874" /></p>
<p>Since some days ago, the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Move Facebook Events Box to Top</a> script has stoppped working in some Facebook accounts (while it kept working in some others).</p>
<p>It happened to be that Facebook is updating some parts of its page structure and that changes generated the problems.</p>
<p>I&#8217;ve just updated it to the version 1.2 to solve the problem .</p>
<p>Please visit the <a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">original post</a> to download the updated version.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top/">Go to the original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="add events box facebook">add events box facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="Facebook Move events box">Facebook Move events box</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="facebook move events">facebook move events</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="facebook events scripts">facebook events scripts</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="events box facebook?">events box facebook?</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="move events box">move events box</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to move facebookevents box to top">how to move facebookevents box to top</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to move comments to top on facebook">how to move comments to top on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to move comments to the top on facebook">how to move comments to the top on facebook</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/" title="how to add events box on facebook">how to add events box on facebook</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-3/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.3">Move Facebook Events Box to Top updated to version 1.3 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.2.1">Move Facebook Events Box to Top updated to version 1.2.1 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 20:55:48 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Home Page]]></category>
		<category><![CDATA[Include]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1384</guid>
		<description><![CDATA[Although, as I said in the original post, I had not originally written the code modifications to enable the qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin, I decided to make some corrections myself to do the following things: Home page now appears in the different languages in the sitemap. Entries not written [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" rel="bookmark" title="Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)">Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" rel="bookmark" title="qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>Although, as I said in the original post, I had not originally written the code modifications to enable the <a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</a>, I decided to make some corrections myself to do the following things:</p>
<ul>
<li><strong>Home page</strong> now appears in the different languages in the sitemap.</li>
<li>Entries not written in the <strong>default language</strong> do not appear anymore in the sitemap. Now, just the written languages appear. (Thanks Blutarsky for notifying the bug)</li>
</ul>
<p>The updated code modifications and the new download version are in the original post:</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/">Go to original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate wordpress">qtranslate wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="The last run didnt finish! Maybe you can raise the memory or time limit for PHP scripts">The last run didnt finish! Maybe you can raise the memory or time limit for PHP scripts</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate Out of memory">qtranslate Out of memory</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate codigo">qtranslate codigo</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate plugin">qtranslate plugin</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="wordpress qtranslate">wordpress qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="qtranslate links">qtranslate links</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="wordpress Script execution halted: Out of memory">wordpress Script execution halted: Out of memory</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="no tiene los permisos wordpress qtranslate">no tiene los permisos wordpress qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" title="error de permisos qtranslate">error de permisos qtranslate</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" rel="bookmark" title="Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)">Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" rel="bookmark" title="qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin">qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Voltage Videos I &#8211; Curiosities with High Voltage (1)</title>
		<link>http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/</link>
		<comments>http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 20:55:01 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[High Voltage]]></category>
		<category><![CDATA[Ampere]]></category>
		<category><![CDATA[Arc]]></category>
		<category><![CDATA[Beam]]></category>
		<category><![CDATA[Burn]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[Coil]]></category>
		<category><![CDATA[Cook]]></category>
		<category><![CDATA[Curiosities]]></category>
		<category><![CDATA[Electricity]]></category>
		<category><![CDATA[Flyback]]></category>
		<category><![CDATA[High]]></category>
		<category><![CDATA[Hot dog]]></category>
		<category><![CDATA[Neon]]></category>
		<category><![CDATA[Plasma]]></category>
		<category><![CDATA[Power]]></category>
		<category><![CDATA[Power Lines]]></category>
		<category><![CDATA[Sign]]></category>
		<category><![CDATA[Spark]]></category>
		<category><![CDATA[Tesla]]></category>
		<category><![CDATA[Tesla Coil]]></category>
		<category><![CDATA[Transformer]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Voltage]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1375</guid>
		<description><![CDATA[This is the first post of the &#8220;High Voltage Videos&#8221; series. Here, I&#8217;ll publish some videos of curiosities and interesting things involving high voltage electricity. Enjoy them What happens if you touch the power lines? 15000 Volt (15kV) Electricity Arc at 1.5 Ampere 500000 Volt (500kV) Switch Opening Arc (VERY good!) &#8220;Plasma&#8221; beam (Recommended!) Cooking [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/blog/advertising-spots/mama-luchetti-spot-videos/" rel="bookmark" title="Mamá Luchetti (Spot Videos)">Mamá Luchetti (Spot Videos) </a></li>
<li><a href="http://www.neoegm.com/blog/videos/birds-on-the-wires-the-music-of-the-birds/" rel="bookmark" title="Birds on the Wires &#8211; The Music of the Birds">Birds on the Wires &#8211; The Music of the Birds </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>This is the first post of the &#8220;High Voltage Videos&#8221; series.</p>
<p>Here, I&#8217;ll publish some videos of curiosities and interesting things involving high voltage electricity.</p>
<p>Enjoy them <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<h4>What happens if you touch the power lines?</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/P8tprAIQFCE&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/P8tprAIQFCE&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object><br />
<span id="more-1375"></span></p>
<h4>15000 Volt (15kV) Electricity Arc at 1.5 Ampere</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/W6yiWQdVP_w&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/W6yiWQdVP_w&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>500000 Volt (500kV) Switch Opening Arc (VERY good!)</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/PXiOQCRiSp0&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/PXiOQCRiSp0&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>&#8220;Plasma&#8221; beam (Recommended!)</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/B1bRNTdsjQ4&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/B1bRNTdsjQ4&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>Cooking a hot dog with high voltage (That would happen to your hand! (at least))</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/ZSkB1xZstcI&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZSkB1xZstcI&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>Burning a CD with a Neon Sign Transformer</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/CUxbIuxqQl8&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CUxbIuxqQl8&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object></p>
<h4>A guy frying everything with a circuit made with a Flyback Transformer</h4>
<p><object width="500" height="405"><param name="movie" value="http://www.youtube.com/v/JOTn7A4BFfs&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JOTn7A4BFfs&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="videos voltaje">videos voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="www video-voltaje com">www video-voltaje com</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="videovoltage com">videovoltage com</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="video voltaje">video voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="generador de alto voltaje con flyback">generador de alto voltaje con flyback</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="video voltaje videos">video voltaje videos</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="videos de alto voltaje">videos de alto voltaje</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="www videovoltage com">www videovoltage com</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="Video-voltaje com">Video-voltaje com</a></li>
<li><a href="http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/" title="videos voltaje com">videos voltaje com</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/blog/advertising-spots/mama-luchetti-spot-videos/" rel="bookmark" title="Mamá Luchetti (Spot Videos)">Mamá Luchetti (Spot Videos) </a></li>
<li><a href="http://www.neoegm.com/blog/videos/birds-on-the-wires-the-music-of-the-birds/" rel="bookmark" title="Birds on the Wires &#8211; The Music of the Birds">Birds on the Wires &#8211; The Music of the Birds </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/high-voltage/high-voltage-videos-i-curiosities-with-high-voltage-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Visits Notification Tool</title>
		<link>http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/</link>
		<comments>http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 18:25:06 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Accounts]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Authorized]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Google API]]></category>
		<category><![CDATA[Grant]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Notification]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Pageviews]]></category>
		<category><![CDATA[Prism]]></category>
		<category><![CDATA[Profiles]]></category>
		<category><![CDATA[Revoke]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[Secure]]></category>
		<category><![CDATA[Shortcut]]></category>
		<category><![CDATA[Simple]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Today]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Visits]]></category>
		<category><![CDATA[Webpage]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Window]]></category>
		<category><![CDATA[Yesterday]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1333</guid>
		<description><![CDATA[If you have a website with Google Analytics configured and want to be able to track its visits without needing to go to the Analytics Site (except when you need more advanced reports), then this online tool is for you&#8230; It&#8217;s very simple to use&#8230; You just need to access the following URL: http://www.neoegm.com/services/google-analytics-visits/ And [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" rel="bookmark" title="Firefox Add-on: List Open URLs">Firefox Add-on: List Open URLs </a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/searching/which-search-engine-would-you-choose-if-you-just-saw-their-results-google-yahoo-or-bing/" rel="bookmark" title="Which search engine would you choose if you just saw their results? Google, Yahoo or Bing?">Which search engine would you choose if you just saw their results? Google, Yahoo or Bing? </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" rel="bookmark" title="Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)">Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more) </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>If you have a website with <a href="http://www.google.com/analytics/">Google Analytics</a> configured and want to be able to track its visits without needing to go to the Analytics Site (except when you need more advanced reports), then this online tool is for you&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Visits.png" alt="GoogleAnalyticsVisits_Visits" title="GoogleAnalyticsVisits_Visits" width="341" height="285" class="aligncenter size-full wp-image-1344" /></p>
<p><span id="more-1333"></span></p>
<p>It&#8217;s very simple to use&#8230; You just need to access the following URL:</p>
<div align="center" style="font-weight: bold; font-size:10pt;">
<a href="http://www.neoegm.com/services/google-analytics-visits/">http://www.neoegm.com/services/google-analytics-visits/</a>
</div>
<p>And this screen will appear (<a href="#Convert_Into_Application">below</a> I&#8217;ll explain how to make this service look like an application and even make a special desktop shortcut):</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Login.png" alt="GoogleAnalyticsVisits_Login" title="GoogleAnalyticsVisits_Login" width="373" height="301" class="aligncenter size-full wp-image-1342" /></p>
<p>If you press Login, you&#8217;ll be taken to the Google Apps site, which will ask you for your login information (unless you&#8217;re already logged in):</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Authenticate.png" rel="lightbox[1333]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Authenticate-300x200.png" alt="GoogleAnalyticsVisits_Authenticate" title="GoogleAnalyticsVisits_Authenticate" width="300" height="200" class="aligncenter size-medium wp-image-1338" /></a></p>
<p><br/><br />
<img src="http://www.neoegm.com/wp-content/uploads/2009/09/PadlockIcon.png" alt="PadlockIcon" title="PadlockIcon" width="100" height="100" class="alignleft size-full wp-image-1351" /><strong>Notice:</strong> as this application was developed using the Google Analytics API, your login information does not go through the <strong><em>NeoEGM.com</em></strong> site, so there&#8217;s no way to record it. The Javascript source code is available for you to check it out.</p>
<p><br/><br />
After that, the Permission Grant screen will appear&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Grant.png" rel="lightbox[1333]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Grant-300x201.png" alt="GoogleAnalyticsVisits_Grant" title="GoogleAnalyticsVisits_Grant" width="300" height="201" class="aligncenter size-medium wp-image-1347" /></a></p>
<p>You must press the &#8220;Grant access&#8221; button in order for the analytics statistics data to be accessed by the application. Again: there&#8217;s absolutely no harm in doing this since there&#8217;s no record at all being saved by the <strong><em>NeoEGM.com</em></strong> site.</p>
<p>After the &#8220;Grant access&#8221; button has been pressed, you&#8217;ll get the account listing screen&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Accounts.png" alt="GoogleAnalyticsVisits_Accounts" title="GoogleAnalyticsVisits_Accounts" width="373" height="301" class="aligncenter size-full wp-image-1337" /></p>
<p>There, you have to choose the desired account to monitor. You can also easily copy the account link to bookmark it or to access it directly whenever you want (without having to pass through the accounts screen)&#8230; This is very useful when you have a bunch of sites to monitor and want to open all the links at the same time&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_IndexCopyLinks.png" alt="GoogleAnalyticsVisits_IndexCopyLinks" title="GoogleAnalyticsVisits_IndexCopyLinks" width="377" height="304" class="aligncenter size-full wp-image-1341" /></p>
<p>Anyway, I recommend opening one of them first, to do all the authentication stuff, and then open all the remaining ones&#8230;</p>
<p>Well, finally, we&#8217;ll get to the visits screen, which show today&#8217;s and yesterday&#8217;s visits and pageviews&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_VisitsExplained.png" rel="lightbox[1333]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_VisitsExplained-300x135.png" alt="GoogleAnalyticsVisits_VisitsExplained" title="GoogleAnalyticsVisits_VisitsExplained" width="300" height="135" class="aligncenter size-medium wp-image-1345" /></a></p>
<p>It&#8217;ll get automatically updated each 5 minutes&#8230; So you can the window open and look it from time to time&#8230; Of course, you must take into account that the Google Analytics service does not refresh its internal data each time a user visits your site&#8230; It may take several minutes (usually 1 hour) for you to see changes in your visits&#8230;</p>
<p>Well, that&#8217;s all about the application&#8230; Below are further instructions to make it have a more friendly interface&#8230;</p>
<p><a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">As usual, Google Analytics Visits is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a>&#8230;</span></p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/PadlockIcon.png" alt="PadlockIcon" title="PadlockIcon" width="100" height="100" class="alignleft size-full wp-image-1351" /><strong>Security tip:</strong> if, for any reason, you ever wanted to revoke the access you have granted to <strong>any</strong> web application to access your Google data, you can visit the &#8220;<a href="https://www.google.com/accounts/IssuedAuthSubTokens">change authorized sites</a>&#8221; Google Accounts facility.<br />
<br/></p>
<p>Enjoy it <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>

<a name="Convert_Into_Application"></a><h3>How to convert it into an application (or at least make it look like one :))</h3>
<p>As you will have probably noticed in the previous screenshots, there was was no address bar, navigation buttons, status bar nor anything related with a browser in the windows I&#8217;ve shown. How did I do that?</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/PrismLogoClean.png" alt="PrismLogoClean" title="PrismLogoClean" width="192" height="237" class="alignleft size-full wp-image-1336" />There is an excellent <a href="http://www.firefox.com/">Firefox</a> add-in called <strong>Prism</strong> which lets you convert <strong>any</strong> website into a desktop application. It does even create the shortcuts for you!</p>
<p>How does it work?</p>
<p>Well, first of all, you need to have the <a href="http://www.firefox.com/">Firefox</a> browser and install the <a href="https://developer.mozilla.org/en/Prism">Prism</a> extension:</p>
<div align="right">
<p class="download"><a href="https://addons.mozilla.org/en-US/firefox/addon/6665">Prism Extension for Firefox</a></p>
</div>
<p>After that, you have to access the URL you want to convert into an application and go to Tools->Convert Website to Application&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_ConvertWebsiteToApplication.png" alt="GoogleAnalyticsVisits_ConvertWebsiteToApplication" title="GoogleAnalyticsVisits_ConvertWebsiteToApplication" width="358" height="489" class="aligncenter size-full wp-image-1339" /></p>
<p>Then, you&#8217;ll get to the Prism application configuration dialog&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_Prism.png" alt="GoogleAnalyticsVisits_Prism" title="GoogleAnalyticsVisits_Prism" width="407" height="583" class="aligncenter size-full wp-image-1343" /></p>
<p>There, you have to configure how you wish your new application to behave (in this case, it won&#8217;t have anything related to a browser and will create a Desktop shortcut icon)&#8230;</p>
<p>And that&#8217;s all! You&#8217;ll have your Google Analytics Visits desktop shortcut icon&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/GoogleAnalyticsVisits_DesktopIcon.png" alt="GoogleAnalyticsVisits_DesktopIcon" title="GoogleAnalyticsVisits_DesktopIcon" width="136" height="117" class="aligncenter size-full wp-image-1363" /></p>
<p>Enjoy it <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="padlock icon">padlock icon</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas mastil guitarra">notas mastil guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="mastil guitarra notaS">mastil guitarra notaS</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="google analytics notifications">google analytics notifications</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas en el mastil">notas en el mastil</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas del mastil de la guitarra">notas del mastil de la guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="google analytics notification">google analytics notification</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="posicion notas guitarra">posicion notas guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="diapason de la guitarra con las notas">diapason de la guitarra con las notas</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" title="notas en el mastil de guitarra">notas en el mastil de guitarra</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" rel="bookmark" title="Firefox Add-on: List Open URLs">Firefox Add-on: List Open URLs </a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/searching/which-search-engine-would-you-choose-if-you-just-saw-their-results-google-yahoo-or-bing/" rel="bookmark" title="Which search engine would you choose if you just saw their results? Google, Yahoo or Bing?">Which search engine would you choose if you just saw their results? Google, Yahoo or Bing? </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" rel="bookmark" title="Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)">Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more) </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress</title>
		<link>http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/</link>
		<comments>http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 20:55:15 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Administrator]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Attack]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[Fill]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Generate]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Modify]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[Permissions]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Prefix]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Rename]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Solve]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Injection]]></category>
		<category><![CDATA[Sufficient]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Webpage]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[wp-config.php]]></category>
		<category><![CDATA[WP-Security-Scan]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1308</guid>
		<description><![CDATA[I&#8217;ll tell you my story, but you may be in the same situation having done something completely different, so keep reading&#8230; One day, some time ago, I was very happily installing the WP-Security-Scan WordPress plugin, and I got an analysis result saying that I should change the default WordPress database table prefix in order to [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" rel="bookmark" title="How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor">How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" rel="bookmark" title="Hide WordPress Visual Editor Tab 1.01">Hide WordPress Visual Editor Tab 1.01 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ll tell you my story, but you may be in the same situation having done something completely different, so keep reading&#8230;</p>
<p>One day, some time ago, I was very happily installing the WP-Security-Scan WordPress plugin, and I got an analysis result saying that I should <strong>change the default WordPress database table prefix</strong> in order to make harder the potential SQL Injection attacks&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix1.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix1-300x154.png" alt="WordpressAuthorization_TablePrefix1" title="WordpressAuthorization_TablePrefix1" width="300" height="154" class="aligncenter size-medium wp-image-1313" /></a></p>
<p><span id="more-1308"></span></p>
<p>So I went to the link and filled the new prefix in the screen that appeared&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix2.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix2-300x129.png" alt="WordpressAuthorization_TablePrefix2" title="WordpressAuthorization_TablePrefix2" width="300" height="129" class="aligncenter size-medium wp-image-1314" /></a></p>
<p>After pressing the &#8220;Start Renaming&#8221; button, I got the following page:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix3.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_TablePrefix3-300x264.png" alt="WordpressAuthorization_TablePrefix3" title="WordpressAuthorization_TablePrefix3" width="300" height="264" class="aligncenter size-medium wp-image-1309" /></a></p>
<p>Everything seemed to have been done perfectly&#8230;</p>
<p>But&#8230;&#8230; This is what I got after trying to go somewhere else in the administration panel:</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_Insufficient_EN.png" rel="lightbox[1308]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/WordpressAuthorization_Insufficient_EN-300x47.png" alt="WordpressAuthorization_Insufficient_EN" title="WordpressAuthorization_Insufficient_EN" width="300" height="47" class="aligncenter size-medium wp-image-1310" /></a></p>
<p>The infamous &#8220;You do not have sufficient permissions to access this page&#8221; message&#8230;</p>
<p>From this point on, I could not access the administration panel anymore&#8230; So what could I do?</p>
<p>The problem seemed to be generated by the modification of the WordPress table prefix, so I went to phpMyAdmin to check the database&#8230; Everething seemed OK.. I checked the wp-config,php&#8230; The prefix had been updated&#8230; The site seemed to work flawlessly for normal visitors&#8230;</p>
<p>So I started searching&#8230; And finally found <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/">a site</a> whose solution I&#8217;ll leave you below in a easier to use way&#8230;</p>
<h3>Solution</h3>
<p>If this problem was generated by a change to the WordPress database table prefix (done by the buggy WP-Security-Scan plugin, by a migration or by other means), you should fill the following two fields and press the &#8220;Generate&#8221; button to generate a SQL Query which you should execute in your database (using phpMyAdmin or other options)&#8230;</p>

<script type="text/javascript">
function WPPrefixGenerateSQLQuery()
{
	var oldprefix = document.getElementById("wpprefix_query_old_prefix").value;
	var newprefix = document.getElementById("wpprefix_query_new_prefix").value;
	
	var queryfield = document.getElementById("wpprefix_query_sql");
	
	var sql = "UPDATE `" + newprefix + "usermeta` SET `meta_key` = REPLACE(`meta_key`, '" + oldprefix + "', '" + newprefix + "');\n\n";
	sql += "UPDATE `" + newprefix + "options` SET `option_name` = '" + newprefix + "user_roles' WHERE `option_name` = '" + oldprefix + "user_roles' AND `blog_id` = 0;";
	
	queryfield.value = sql;
}
</script>

<table border="0" cellspacing="5" cellpadding="0">
	<tr>
		<td>Old Prefix</td>
		<td><input type="text" name="wpprefix_query_old_prefix" id="wpprefix_query_old_prefix" value="wp_" /></td>
	</tr>
	<tr>
		<td>New Prefix</td>
		<td><input type="text" name="wpprefix_query_new_prefix" id="wpprefix_query_new_prefix" value="wp_new_prefix_" /></td>
	</tr>
	<tr>
		<td>&nbsp;</td>
		<td align="right"><input type="submit" name="button" id="button" value="Generate" onclick="WPPrefixGenerateSQLQuery();" /></td>
	</tr>
</table>
<br />
<table border="0" cellspacing="5" cellpadding="0">
	<tr>
		<td valign="top">SQL</td>
		<td><textarea name="wpprefix_query_sql" style="width: 462px;" cols="45" rows="5" readonly="readonly" id="wpprefix_query_sql"></textarea></td>
	</tr>
</table>
<script type="text/javascript">WPPrefixGenerateSQLQuery();</script>
<p>That&#8217;s all&#8230; If this didn&#8217;t work for you, it may be other kind of problem&#8230; In that case, take a look at the <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/#comment-82402">comments section</a> of <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/">this post</a>, since there are some people which found other solutions.</p>
<p>Hope it helps <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="No tienes suficientes permisos para acceder a esta página">No tienes suficientes permisos para acceder a esta página</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="no tienes suficientes permisos para hacer esto facebook">no tienes suficientes permisos para hacer esto facebook</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="No tienes suficientes permisos para acceder a esta página wordpress">No tienes suficientes permisos para acceder a esta página wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="wordpress No tienes suficientes permisos para acceder a esta página">wordpress No tienes suficientes permisos para acceder a esta página</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="no tiene los permisos necesarios">no tiene los permisos necesarios</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="facebook No tienes suficientes permisos para hacer esto">facebook No tienes suficientes permisos para hacer esto</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="You do not have access to the administrator section of this site">You do not have access to the administrator section of this site</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="No tienes suficientes permisos para hacer esto">No tienes suficientes permisos para hacer esto</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="no tienes suficientes permisos para acceder a esta página wordpress role">no tienes suficientes permisos para acceder a esta página wordpress role</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" title="You do not have sufficient permissions to access this page">You do not have sufficient permissions to access this page</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" rel="bookmark" title="How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor">How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" rel="bookmark" title="Hide WordPress Visual Editor Tab 1.01">Hide WordPress Visual Editor Tab 1.01 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Add-on: List Open URLs</title>
		<link>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/</link>
		<comments>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 20:55:36 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Add-ons]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Address]]></category>
		<category><![CDATA[All]]></category>
		<category><![CDATA[Back]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Clipboard]]></category>
		<category><![CDATA[Copy]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Dump]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Forward]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Hyperlink]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Listing]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Option]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[Show]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Tabs]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[URLs]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Webpage]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Window]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1286</guid>
		<description><![CDATA[Let&#8217;s say you&#8217;re searching for videos (or webpages if you wish) of some topic. And you navigate through lots and lots of them&#8230; Opening new tabs and even jumping between links without leaving the previous URL open somewhere else (this commonly happens when you click any &#8220;Related Video&#8221; on YouTube, since it automatically opens on [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" rel="bookmark" title="Firefox Add-On: Close Repeated Tabs 1.0">Firefox Add-On: Close Repeated Tabs 1.0 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/" rel="bookmark" title="Firefox Add-On: Close Repeated Tabs">Firefox Add-On: Close Repeated Tabs </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" rel="bookmark" title="Google Analytics Visits Notification Tool">Google Analytics Visits Notification Tool </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Let&#8217;s say you&#8217;re <strong>searching</strong> for videos (or webpages if you wish) of some topic. And you <strong>navigate through lots</strong> and lots of them&#8230; Opening new tabs and even jumping between links without leaving the previous URL open somewhere else (this commonly happens when you click any &#8220;Related Video&#8221; on YouTube, since it automatically opens on the same tab)&#8230;</p>
<p>It would be <strong>really tedious</strong> to go through each of your tabs <strong>rescuing all the interesting URLs</strong> to save them&#8230;</p>
<p>Also, if you could save them as bookmarks (assuming you don&#8217;t care about the browsing history), it&#8217;s not really simple to just <strong>get the URLs to copy them</strong> or to send them to somebody else&#8230;</p>
<p>For this (and for any other case you could find), I developed the &#8220;List Open URLs&#8221; Firefox Add-on&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_Menu.png" alt="ListOpenURLs_Menu" title="ListOpenURLs_Menu" width="354" height="252" class="aligncenter size-full wp-image-1293" /></p>
<p><span id="more-1286"></span></p>
<p>As you can imagine, its really simple to use&#8230;</p>
<p>You just click the Tools menu &#8220;List Open URLs&#8221; option and you&#8217;ll get a prompt asking whether or not you want to take into account the history of each of the tabs&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_HistoryQuestion.png" alt="ListOpenURLs_HistoryQuestion" title="ListOpenURLs_HistoryQuestion" width="359" height="148" class="aligncenter size-full wp-image-1292" /></p>
<p>If you choose not to (&#8220;Cancel&#8221; button), then it will generate a listing including only the currently opened URLs&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_DumpNoHistory.png" alt="ListOpenURLs_DumpNoHistory" title="ListOpenURLs_DumpNoHistory" width="350" height="191" class="aligncenter size-full wp-image-1291" /></p>
<p>But if you, instead, clicked &#8220;OK&#8221;, then you&#8217;d get a full listing, including the history of each tabs (the URLs in the &#8220;back&#8221; and &#8220;forward&#8221; buttons)&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_DumpHistory.png" rel="lightbox[1286]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_DumpHistory-300x132.png" alt="ListOpenURLs_DumpHistory" title="ListOpenURLs_DumpHistory" width="300" height="132" class="aligncenter size-medium wp-image-1290" /></a></p>
<p>Finally, if you want to copy the entire text, you can simply right click it and choose &#8220;Select All&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_SelectAll.png" rel="lightbox[1286]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_SelectAll-300x132.png" alt="ListOpenURLs_SelectAll" title="ListOpenURLs_SelectAll" width="300" height="132" class="aligncenter size-medium wp-image-1288" /></a></p>
<p>And, after that, right click it again and choose &#8220;Copy&#8221;&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_Copy.png" rel="lightbox[1286]"><img src="http://www.neoegm.com/wp-content/uploads/2009/09/ListOpenURLs_Copy-300x131.png" alt="ListOpenURLs_Copy" title="ListOpenURLs_Copy" width="300" height="131" class="aligncenter size-medium wp-image-1289" /></a></p>
<p>That&#8217;s all&#8230; You&#8217;ll have the text in your clipboard&#8230;</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">As usual, List Open URLs is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a>&#8230;</span></p>
<p>If you want it, just click here to download:</p>
<div align="center">
<p class="download"><a href="https://addons.mozilla.org/en-US/firefox/addon/14223/">Download</a></p>
</div>
<p>If you like it, please add a review at <a href="https://addons.mozilla.org/en-US/firefox/addon/14223/">Firefox&#8217;s Add-on site</a> so it can get out of the &#8220;experimental&#8221; state&#8230;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="firefox open list of urls">firefox open list of urls</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open list of urls in tabs addon">open list of urls in tabs addon</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="flash factory los angeles web design">flash factory los angeles web design</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="новости челябинск мир 74">новости челябинск мир 74</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open list of urls">open list of urls</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open list of urls in firefox">open list of urls in firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open urls from list">open urls from list</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="firefox open a list of URLs">firefox open a list of URLs</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="open list of urls firefox">open list of urls firefox</a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/" title="list urls firefox">list urls firefox</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-1-0/" rel="bookmark" title="Firefox Add-On: Close Repeated Tabs 1.0">Firefox Add-On: Close Repeated Tabs 1.0 </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-close-repeated-tabs-extension/" rel="bookmark" title="Firefox Add-On: Close Repeated Tabs">Firefox Add-On: Close Repeated Tabs </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" rel="bookmark" title="Google Analytics Visits Notification Tool">Google Analytics Visits Notification Tool </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/firefox/add-ons/firefox-add-on-list-open-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide WordPress Visual Editor Tab 1.01</title>
		<link>http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/</link>
		<comments>http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 20:01:25 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Break]]></category>
		<category><![CDATA[Client-side]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Remove]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[Visual Editor]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1275</guid>
		<description><![CDATA[Hide WordPress Visual Editor Tab has been updated to the 1.01 version to make it also work when creating new posts and pages. In the previous (1.0) version, it just worked while editing already created posts and pages. To download the latest version, please visit the original Hide WordPress Visual Editor Tab post. Go to [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" rel="bookmark" title="How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor">How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><strong><em>Hide WordPress Visual Editor Tab</em></strong> has been updated to the 1.01 version to make it also work when creating new posts and pages. In the previous (1.0) version, it just worked while editing already created posts and pages.</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_Removed.png" alt="Remove_Visual_Tab_Removed" title="Remove_Visual_Tab_Removed" width="499" height="208" class="aligncenter size-full wp-image-1178" /></p>
<p>To download the latest version, please visit the <a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/">original Hide WordPress Visual Editor Tab post</a>.</p>
<div align="center">
<p class="download"><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/">Go to original post</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="wordpress hide visual editor">wordpress hide visual editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="quitar editor visual wordpress">quitar editor visual wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="wordpress remove visual editor tab">wordpress remove visual editor tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="hide wordpress editor">hide wordpress editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="video freeware">video freeware</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="hide visual editor">hide visual editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="wordpress hide visual editor tab">wordpress hide visual editor tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="visual hide">visual hide</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="doores1">doores1</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" title="que hide visual">que hide visual</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" rel="bookmark" title="How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor">How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/firefox/scripts/move-facebook-events-box-to-top-updated-to-version-1-1/" rel="bookmark" title="Move Facebook Events Box to Top updated to version 1.1">Move Facebook Events Box to Top updated to version 1.1 </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin</title>
		<link>http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/</link>
		<comments>http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:55:17 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Core]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Modified]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1239</guid>
		<description><![CDATA[Some time ago, Qian Qin, the author of qTranslate, has published what should be modified on the Google (XML) Sitemaps Generator WordPress Plugin to make it support qTranslate. However, this has never reached any of the releases of this plugin. (Qian Qin says he sent an e-mail to the author and I&#8217;ve done it myself, [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" rel="bookmark" title="Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)">Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3) </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/09/wordpress-logo-notext-rgb1-150x150.png" alt="wordpress-logo-notext-rgb[1]" title="wordpress-logo-notext-rgb[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1243" /></p>
<p>Some time ago, <a href="http://www.qianqin.de/">Qian Qin</a>, the author of <a href="http://www.qianqin.de/qtranslate/">qTranslate</a>, has published <a href="http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&#038;t=446&#038;p=2182&#038;hilit=google+xml#p2182">what should be modified</a> on the <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google (XML) Sitemaps Generator</a> WordPress Plugin to make it support qTranslate.</p>
<p>However, this has never reached any of the releases of this plugin. (Qian Qin says he sent an e-mail to the author and I&#8217;ve done it myself, with no response).</p>
<p>So, I&#8217;m going to publish what should be modified on the plugin (for the ones who may want to do them themselves) and then, leave the link to download the modified version I prepared. I&#8217;ll be updating it for each new release.</p>
<p><strong>Update:</strong> I&#8217;ve made some code corrections myself to include the different translations of the home page and not to include the entries not written in the default language (just include the written languages). The download and the code snippets have been updated to reflect the changes. If you wish more details, please go to the <a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/">post of the update</a>.</p>
<p><strong>Update (2009-09-30):</strong> I&#8217;ve updated the naming of the plugin at the WordPress repository and the support for blogs without qTranslate installed. <strong>For releases before the 3.1.6.3, you may get notified for the original version updates (and not for this version supporting qTranslate), so I really recommend updating.</strong> If you wish more details, please go to the <a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/">post of the update</a>.</p>
<p><span id="more-1239"></span></p>
<p>First, the changes&#8230; They are all made in the <em>sitemap-core.php</em> file&#8230;</p>
<h4>Change 1</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1753; light: false; title: ; toolbar: true; notranslate">
		//Add the home page (WITH a slash!)
		if($this-&amp;gt;GetOption(&amp;quot;in_home&amp;quot;)) {
			if('page' == get_option('show_on_front') &amp;amp;&amp;amp; get_option('page_on_front')) {
				$pageOnFront = get_option('page_on_front');
				$p = get_page($pageOnFront);
				if($p) {
					$homePid = $p-&amp;gt;ID;
					$this-&amp;gt;AddUrl(trailingslashit($home), $this-&amp;gt;GetTimestampFromMySql( ($p-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $p-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $p-&amp;gt;post_modified_gmt : $p-&amp;gt;post_date_gmt)), $this-&amp;gt;GetOption(&amp;quot;cf_home&amp;quot;), $this-&amp;gt;GetOption(&amp;quot;pr_home&amp;quot;));
				}
			} else {
				$this-&amp;gt;AddUrl(trailingslashit($home), $this-&amp;gt;GetTimestampFromMySql( get_lastpostmodified('GMT')), $this-&amp;gt;GetOption(&amp;quot;cf_home&amp;quot;), $this-&amp;gt;GetOption(&amp;quot;pr_home&amp;quot;));
			}
		}
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1753; light: false; title: ; toolbar: true; notranslate">
		//[NeoEGM] Moved here for home page support for different languages
		$useQTransLate = function_exists('qtrans_convertURL') &amp;amp;&amp;amp; function_exists('qtrans_getAvailableLanguages');
		global $q_config;

		//Add the home page (WITH a slash!)
		if($this-&amp;gt;GetOption(&amp;quot;in_home&amp;quot;)) {
			if('page' == get_option('show_on_front') &amp;amp;&amp;amp; get_option('page_on_front')) {
				$pageOnFront = get_option('page_on_front');
				$p = get_page($pageOnFront);
				if($p) {
					$homePid = $p-&amp;gt;ID;
					$this-&amp;gt;AddUrl(trailingslashit($home), $this-&amp;gt;GetTimestampFromMySql( ($p-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $p-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $p-&amp;gt;post_modified_gmt : $p-&amp;gt;post_date_gmt)), $this-&amp;gt;GetOption(&amp;quot;cf_home&amp;quot;), $this-&amp;gt;GetOption(&amp;quot;pr_home&amp;quot;));
					
					//[NeoEGM] Home page support for different languages
					if($useQTransLate)
						foreach($q_config['enabled_languages'] as $language)
							if($language != $q_config['default_language'])
								$this-&amp;gt;AddUrl(qtrans_convertURL( trailingslashit($home), $language, true), $this-&amp;gt;GetTimestampFromMySql( ($p-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $p-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $p-&amp;gt;post_modified_gmt : $p-&amp;gt;post_date_gmt)), $this-&amp;gt;GetOption(&amp;quot;cf_home&amp;quot;), $this-&amp;gt;GetOption(&amp;quot;pr_home&amp;quot;));
				}
			} else {
				$this-&amp;gt;AddUrl(trailingslashit($home), $this-&amp;gt;GetTimestampFromMySql( get_lastpostmodified('GMT')), $this-&amp;gt;GetOption(&amp;quot;cf_home&amp;quot;), $this-&amp;gt;GetOption(&amp;quot;pr_home&amp;quot;));
				
				//[NeoEGM] Home page support for different languages
				if($useQTransLate)
					foreach($q_config['enabled_languages'] as $language)
						if($language != $q_config['default_language'])
							$this-&amp;gt;AddUrl(qtrans_convertURL( trailingslashit($home), $language, true), $this-&amp;gt;GetTimestampFromMySql( get_lastpostmodified('GMT')), $this-&amp;gt;GetOption(&amp;quot;cf_home&amp;quot;), $this-&amp;gt;GetOption(&amp;quot;pr_home&amp;quot;));
			}
		}
</pre>
<h4>Change 2</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1775; light: false; title: ; toolbar: true; notranslate">
$useQTransLate = false; //function_exists('qtrans_convertURL') &amp;amp;&amp;amp; function_exists('qtrans_getEnabledLanguages'); Not really working yet
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1791; light: false; title: ; toolbar: true; notranslate">
//[NeoEGM] Line removed
//$useQTransLate = false; //function_exists('qtrans_convertURL') &amp;amp;&amp;amp; function_exists('qtrans_getEnabledLanguages'); Not really working yet
</pre>
<h4>Change 3</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1954; light: false; title: ; toolbar: true; notranslate">
//Add it
$this-&amp;gt;AddUrl($permalink,$this-&amp;gt;GetTimestampFromMySql( ($post-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $post-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&amp;gt;post_modified_gmt : $post-&amp;gt;post_date_gmt)), ($isPage?$cf_pages:$cf_posts), $prio);
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1971; light: false; title: ; toolbar: true; notranslate">
//Add it
//[NeoEGM] Add it only if the default language is defined, otherwise only add the defined languages
$QTranslateLanguages = qtrans_getAvailableLanguages($post-&amp;gt;post_content);
if (in_array($q_config['default_language'], $QTranslateLanguages))
	$this-&amp;gt;AddUrl($permalink, $this-&amp;gt;GetTimestampFromMySql( ($post-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $post-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&amp;gt;post_modified_gmt : $post-&amp;gt;post_date_gmt)), ($isPage?$cf_pages:$cf_posts), $prio);
</pre>
<h4>Change 4</h4>
<p>Original version:</p>
<pre class="brush: php; collapse: true; first-line: 1970; light: false; title: ; toolbar: true; notranslate">
// Multilingual Support with qTranslate, thanks to Qian Qin
if ($useQTransLate) {
	global $q_config;
	foreach (qtrans_getEnabledLanguages($post-&amp;gt;post_content) as $language) {
		if ($language != $q_config['default_language']) {
			$this-&amp;gt;AddUrl(qtrans_convertURL($permalink, $language), $this-&amp;gt;GetTimestampFromMySql( ($post-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $post-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&amp;gt;post_modified_gmt : $post-&amp;gt;post_date_gmt)), ($isPage ? $cf_pages : $cf_posts), $prio);
		}
	}
}
</pre>
<p>Modified version:</p>
<pre class="brush: php; collapse: true; first-line: 1990; light: false; title: ; toolbar: true; notranslate">
//Multilingual Support with qTranslate, thanks to Qian Qin
//[NeoEGM] Moved up the global variable scope line
if ($useQTransLate)
	foreach (qtrans_getAvailableLanguages($post-&amp;gt;post_content) as $language)
		if ($language != $q_config['default_language'])
			$this-&amp;gt;AddUrl(qtrans_convertURL($permalink, $language, true), $this-&amp;gt;GetTimestampFromMySql( ($post-&amp;gt;post_modified_gmt &amp;amp;&amp;amp; $post-&amp;gt;post_modified_gmt != '0000-00-00 00:00:00' ? $post-&amp;gt;post_modified_gmt : $post-&amp;gt;post_date_gmt)), ($isPage ? $cf_pages : $cf_posts), $prio);
</pre>
<h4>Download modified plugin version</h4>
<p>Now, finally, the link&#8230;</p>
<div align="center">
<p class="download"><a href="http://downloads.wordpress.org/plugin/google-xml-sitemaps-with-qtranslate-support.3.1.6.3.zip">Download Version 3.1.6.3</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="neoegm">neoegm</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qTranslatesupportfortheGoogle(XML)SitemapsGeneratorWordpressPlugin|NeoEGM com">qTranslatesupportfortheGoogle(XML)SitemapsGeneratorWordpressPlugin|NeoEGM com</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qtranslate">qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="Please edit wp-db inc php in wp-includes and set SAVEQUERIES to true if you want to see the queries">Please edit wp-db inc php in wp-includes and set SAVEQUERIES to true if you want to see the queries</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="google xml sitemap">google xml sitemap</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="Google XML Sitemaps with qTranslate Support">Google XML Sitemaps with qTranslate Support</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="wp-db inc php">wp-db inc php</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qtrans_convertURL">qtrans_convertURL</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="wordpress sitemap qtranslate">wordpress sitemap qtranslate</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/" title="qtranslate google">qtranslate google</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/updated-qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin-3-1-6-2nd-release/" rel="bookmark" title="Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release)">Updated: qTranslate support for the Google (XML) Sitemaps Generator WordPress Plugin 3.1.6 (2nd Release) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/google-xml-sitemaps-generator-with-qtranslate-support-now-available-at-the-wordpress-repository/" rel="bookmark" title="Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository">Google (XML) Sitemaps Generator with qTranslate support now available at the WordPress Repository </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/important-update-google-xml-sitemaps-generator-with-qtranslate-support-version-3-1-6-3/" rel="bookmark" title="Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3)">Important Update: Google (XML) Sitemaps Generator with qTranslate support (Version 3.1.6.3) </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/plugins/qtranslate-support-for-the-google-xml-sitemaps-generator-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove the &#8220;Visual&#8221; tab from the WordPress post/page editor</title>
		<link>http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/</link>
		<comments>http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 20:58:28 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Break]]></category>
		<category><![CDATA[Client-side]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[Remove]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tab]]></category>
		<category><![CDATA[Users]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[Visual Editor]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1173</guid>
		<description><![CDATA[There are lots of people (like me) who just use the HTML mode of the WordPress Editor&#8230; Sometimes, you cannot just disable the WYSIWYG editor (in my case, I cannot do it because I use the qTranslate plugin to enable the creation of posts in different languages)&#8230; For this people, having the Visual editor tab, [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" rel="bookmark" title="Hide WordPress Visual Editor Tab 1.01">Hide WordPress Visual Editor Tab 1.01 </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" rel="bookmark" title="How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress">How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>There are lots of people (like me) who just use the HTML mode of the WordPress Editor&#8230; Sometimes, you cannot just disable the WYSIWYG editor (in my case, I cannot do it because I use the <a href="http://www.qianqin.de/qtranslate/">qTranslate plugin</a> to enable the creation of posts in different languages)&#8230; For this people, having the Visual editor tab, might be a very big problem&#8230;</p>
<p>Lets say you&#8217;re writing a post in the HTML tab&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_HTML.png" alt="Remove_Visual_Tab_HTML" title="Remove_Visual_Tab_HTML" width="499" height="207" class="aligncenter size-full wp-image-1176" /></p>
<p>And you click by mistake the Visual tab&#8230;</p>
<p><span id="more-1173"></span></p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_Visual.png" alt="Remove_Visual_Tab_Visual" title="Remove_Visual_Tab_Visual" width="500" height="207" class="aligncenter size-full wp-image-1175" /></p>
<p>When you go back to the HTML mode, you&#8217;ll see, probably with a bit of anger, that all your code has just been broken&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_HTML_Broken.png" alt="Remove_Visual_Tab_HTML_Broken" title="Remove_Visual_Tab_HTML_Broken" width="499" height="218" class="aligncenter size-full wp-image-1177" /></p>
<p>So what&#8217;s the solution to prevent this problem from happening again? Well, what better than just removing the tab?</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Remove_Visual_Tab_Removed.png" alt="Remove_Visual_Tab_Removed" title="Remove_Visual_Tab_Removed" width="499" height="208" class="aligncenter size-full wp-image-1178" /></p>
<p>I&#8217;ve made a script to do this&#8230; I didn&#8217;t make it a WordPress plugin for two reasons: first, to avoid making the server work more without reason for things you can easily do on the client side, and second, to allow without problems the different users of your blog to choose the writing method they prefer (may be some users do use the visual editor)&#8230;</p>
<p><br/><br />
<a href="http://www.firefox.com/"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Firefox_small.png" alt="Firefox_small" title="Firefox_small" width="69" height="69" class="alignleft size-full wp-image-880" /></a> This script needs <a href="http://www.firefox.com/">Firefox</a> and the <a href="https://addons.mozilla.org/firefox/addon/748">GreaseMonkey</a> add-on (I really recommend installing it since it gives you the ability to run this kind of &#8220;web site customizing scripts&#8221;)&#8230;</p>
<p><br/><br />
First of all, assuming you have Firefox installed, you have to install the GreaseMonkey add-on (click &#8220;Add to Firefox&#8221; in the following link):</p>
<div align="center">
<p class="download"><a href="https://addons.mozilla.org/firefox/addon/748">GreaseMonkey Firefox Extension</a></p>
</div>
<p><br/><br />
Then, once it is installed and running (you must restart Firefox when asked for), there will be a colored monkey face in the status bar (if it is gray, you must enable the engine by clicking on it):</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/GreaseMonkey_On.png" alt="GreaseMonkey_On" title="GreaseMonkey_On" width="227" height="22" class="aligncenter size-full wp-image-882" /></p>
<p>After that, you are finally prepared to install the script&#8230;</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">As usual, Hide WordPress Visual Editor Tab is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p><br/><br />
Now, finally, the link&#8230;</p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/hide-wordpress-visual-editor-tab/hide-wordpress-visual-editor-tab-1.01.user.js">Hide WordPress Visual Editor Tab 1.01</a></p>
</div>
<p><strong>Update:</strong> new version 1.01 which makes it also work when creating new posts and pages (it just worked when editing).<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress remove visual tab">wordpress remove visual tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress disable visual tab">wordpress disable visual tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="remove visual tab wordpress">remove visual tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="disable visual tab wordpress">disable visual tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="remove html tab wordpress">remove html tab wordpress</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="eliminar hoja en visual">eliminar hoja en visual</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress remove visual editor">wordpress remove visual editor</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress remove HTML tab">wordpress remove HTML tab</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="access music on server from a client">access music on server from a client</a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/" title="wordpress hide html tab">wordpress hide html tab</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/wordpress/hide-wordpress-visual-editor-tab-1-01/" rel="bookmark" title="Hide WordPress Visual Editor Tab 1.01">Hide WordPress Visual Editor Tab 1.01 </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/plugins/wp-no-format/" rel="bookmark" title="WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification)">WP-No-Format WordPress Plugin (Prevent HTML Code Formatting/Modification) </a></li>
<li><a href="http://www.neoegm.com/tech/wordpress/how-to-fix-the-you-do-not-have-sufficient-permissions-to-access-this-page-message-in-wordpress/" rel="bookmark" title="How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress">How to fix the &#8220;You do not have sufficient permissions to access this page&#8221; message in WordPress </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/wordpress/how-to-remove-the-visual-tab-from-the-wordpress-post-page-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intelligent Escaper-Unescaper &#8211; Online Unescape and Escape Tool (with URL Parameter Parsing and more)</title>
		<link>http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/</link>
		<comments>http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 05:00:18 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Anchor]]></category>
		<category><![CDATA[Decode]]></category>
		<category><![CDATA[decodeURI]]></category>
		<category><![CDATA[decodeURIComponent]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Easy]]></category>
		<category><![CDATA[Encode]]></category>
		<category><![CDATA[encodeURI]]></category>
		<category><![CDATA[encodeURIComponent]]></category>
		<category><![CDATA[Escape]]></category>
		<category><![CDATA[Force]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[Intelligent]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Parameters]]></category>
		<category><![CDATA[Parse]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Unescape]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1078</guid>
		<description><![CDATA[With this online tool, you can easily escape and unescape strings (among other powerful things, explained below)&#8230; If you want to bookmark it, you may prefer this shorter address: http://www.neoegm.com/software/intelligent-escaper-unescaper/. [Press the right mouse button and select the option offered by your browser to add it to your bookmarks/favorites.] As you can see, there are [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/online-tools/convert-celsius-to-fahrenheit-online/" rel="bookmark" title="Convert Celsius to Fahrenheit Online">Convert Celsius to Fahrenheit Online </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" rel="bookmark" title="Google Analytics Visits Notification Tool">Google Analytics Visits Notification Tool </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/php-random-password-generator/" rel="bookmark" title="PHP random password generator">PHP random password generator </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>With this online tool, you can easily escape and unescape strings (among other powerful things, explained below)&#8230;</p>
<p>If you want to bookmark it, you may prefer this shorter address: <a href="http://www.neoegm.com/software/intelligent-escaper-unescaper/">http://www.neoegm.com/software/intelligent-escaper-unescaper/</a>. [Press the right mouse button and select the option offered by your browser to add it to your bookmarks/favorites.]</p>
<p><script type="text/javascript" src="/scripts/intelligent-escaper-unescaper.js"></script></p>

<div align="center">
<p>
	<textarea name="escape_unescape_text" id="escape_unescape_text" cols="60" rows="10" sytle="width: 500px;"></textarea>
</p>
<p>
	<input type="button" name="Button" id="button" value="Escape" onclick="var field = document.getElementById('escape_unescape_text'); field.value = Escape(field.value);" />
	<input type="button" name="button2" id="button3" value="Escape (Forced)" onclick="var field = document.getElementById('escape_unescape_text'); field.value = Escape(field.value, true);" />
	<input type="button" name="button" id="button2" value="Unescape" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = unescape(field.value);" />
	</p>
<p>
	<input type="button" name="button5" id="button6" value="Escape URL" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeURL(field.value);" />
	<input type="button" name="button15" id="button16" value="Escape URL (Forced)" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeURL(field.value, true);" />
	<input type="button" name="button16" id="button17" value="Escape URL (Forced + Host)" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeURL(field.value, true, true);" />
</p>
<p>
	<input type="button" name="button6" id="button7" value="Intelligent Escape" onclick="var field = document.getElementById('escape_unescape_text'); field.value = IntelligentEscape(field.value);" />
	<input type="button" name="button7" id="button8" value="Intelligent Unescape" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = IntelligentUnescape(field.value);" />
</p>
<p>
	<input type="button" name="button3" id="button4" value="Parse URL Parameters" onclick="var field = document.getElementById('escape_unescape_text'); field.value = ParseURLParameters(field.value);" />
	<input type="button" name="button4" id="button5" value="Make URL with Parameters" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = MakeURLWithParameters(field.value);" />
	</p>
<p>
	<input type="button" name="button8" id="button9" value="Escape +" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeChar(field.value, '+');" />
	<input type="button" name="button13" id="button14" value="Escape #" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeChar(field.value, '#');" />
	<input type="button" name="button14" id="button15" value="Escape:" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = EscapeChar(field.value, document.getElementById('escape_unescape_char').value);" />
	<input name="escape_unescape_char" type="text" id="escape_unescape_char" value=":" size="1" maxlength="1" />
</p>
<p>
	<input type="button" name="button9" id="button10" value="encodeURI" onclick="var field = document.getElementById('escape_unescape_text'); field.value = encodeURI(field.value);" />
	<input type="button" name="button10" id="button11" value="decodeURI" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = decodeURI(field.value);" />
	<br/>
	<input type="button" name="button11" id="button12" value="encodeURIComponent" onclick="var field = document.getElementById('escape_unescape_text'); field.value = encodeURIComponent(field.value);" />
	<input type="button" name="button12" id="button13" value="decodeURIComponent" style="margin-left: 15px;" onclick="var field = document.getElementById('escape_unescape_text'); field.value = decodeURIComponent(field.value);" />
</p>
</div>
<p><span id="more-1078"></span></p>
<p>As you can see, there are several features&#8230; I&#8217;ll explain them one by one&#8230;</p>
<h4>Escape</h4>
<p>Calls the <a href="http://www.w3schools.com/jsref/jsref_escape.asp">escape</a> Javascript function, which encodes the special characters (with some exceptions).</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello%2C%20this%20is%20a%20test</pre>
<h4>Escape (Forced)</h4>
<p>Encodes <strong>every</strong> character, no matter whether it is special or not. Ideal to make the strings not easily readable.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<pre class="brush: plain; light: true; title: ; notranslate">%48%65%6C%6C%6F%2C%20%74%68%69%73%20%69%73%20%61%20%74%65%73%74</pre>
<h4>Unescape</h4>
<p>Calls the <a href="http://www.w3schools.com/jsref/jsref_unescape.asp">unescape</a> Javascript function, which decodes every encoded character. (The ones with the form %XX or %uXXXX).</p>
<p>Example 1:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Hello%2C%20this%20is%20a%20test</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<p>Example 2:</p>
<pre class="brush: plain; light: true; title: ; notranslate">%48%65%6C%6C%6F%2C%20%74%68%69%73%20%69%73%20%61%20%74%65%73%74</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello, this is a test</pre>
<h4>Escape URL</h4>
<p>Encodes the special characters, but respecting the URL syntax. It&#8217;s not the same as the &#8220;encodeURI&#8221; option, since this latter one calls the <a href="http://www.w3schools.com/jsref/jsref_encodeURI.asp">encodeURI</a> Javascript function, which does not encode the following characters: </p>
<pre class="brush: plain; light: true; title: ; notranslate">; , / ? : @ &amp; = + $ - _ . ! ~ * ' ( ) #</pre>
<p>While this one just does not encode them where corresponding. Parameters, anchors and Unicode characters are supported&#8230;</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This is my file named niño: the named place.doc</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This%20is%20my%20file%20named%20ni%F1o%3A%20the%20named%20place.doc</pre>
<h4>Escape URL (Forced)</h4>
<p>Similar to &#8220;Escape URL&#8221;, but forcing the normal character encoding as much as possible (without including the host). Ideal to make URLs hard to read at first glance.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This is my file named niño: the named place.doc</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/%54%68%69%73%20%69%73%20%6D%79%20%66%69%6C%65%20%6E%61%6D%65%64%20%6E%69%F1%6F%3A%20%74%68%65%20%6E%61%6D%65%64%20%70%6C%61%63%65%2E%64%6F%63</pre>
<h4>Escape URL (Forced + Host)</h4>
<p>Similar to &#8220;Escape URL&#8221;, but forcing the normal character encoding as much as possible (host included). Ideal to make URLs hard to read at first glance.</p>
<p><strong>Note:</strong> this syntax is not supported in some browsers.</p>
<p><em>Supported browsers:</em> Internet Explorer, Google Chrome.<br />
<em>Unsupported browsers:</em> Firefox, Lynx.</p>
<p>In the case of Firefox, the string gets decoded correctly (if the URL is valid), but it doesn&#8217;t open, you have to open it again with the decoded address (selecting it and pressing Enter). If the host doesn&#8217;t contain any dot, &#8220;www.&#8221; y &#8220;.com&#8221; al added automatically.</p>
<p>If you have support information for any other browser, please tell me and I&#8217;ll add it.</p>
<p>Ejemplo:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:84/This is my file named niño: the named place.doc</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://%77%77%77.%65%78%61%6D%70%6C%65.%63%6F%6D:84/%54%68%69%73%20%69%73%20%6D%79%20%66%69%6C%65%20%6E%61%6D%65%64%20%6E%69%F1%6F%3A%20%74%68%65%20%6E%61%6D%65%64%20%70%6C%61%63%65%2E%64%6F%63</pre>
<h4>Intelligent Escape</h4>
<p>This function is an intelligent version of &#8220;Escape&#8221;. It encodes the corresponding characters, but without re-encoding the already encoded data.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Partially%22%20encoded%20string. And I added this part.</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Partially%22%20encoded%20string.%20And%20I%20added%20this%20part.</pre>
<p>If we just pressed &#8220;Escape&#8221;, we would have received:</p>
<pre class="brush: plain; light: true; title: ; notranslate">Partially%2522%2520encoded%2520string.%20And%20I%20added%20this%20part.</pre>
<h4>Intelligent Unescape</h4>
<p>Calls the <a href="http://www.w3schools.com/jsref/jsref_unescape.asp">unescape</a> Javascript function repeatedly until there&#8217;s nothing remaining to be decoded. Useful when a string was encoded several times.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">%25%34%38%25%36%35%25%36%43%25%36%43%25%36%46</pre>
<pre class="brush: plain; light: true; title: ; notranslate">Hello</pre>
<p>If we just pressed &#8220;Unescape&#8221;, we would have received:</p>
<pre class="brush: plain; light: true; title: ; notranslate">%48%65%6C%6C%6F</pre>
<h4>Parse URL Parameters</h4>
<p>It breaks a URL into its corresponding parameters. The anchor is left without unescaping in the end.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:81/path/path/hello.php?a=3&amp;b=Good%20Morning&amp;c=El%20Ni%F1o#test-anchor</pre>
<pre class="brush: plain; light: true; title: ; notranslate">
http://www.example.com:81/path/path/hello.php

a=3
b=Good Morning
c=El Niño

#test-anchor
</pre>
<h4>Make URL with Parameters</h4>
<p>Reconstructs a URL based in the specified URL + parameters + anchor.</p>
<p>Example:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
http://www.example.com:81/path/path/hello.php

a=3
b=Good Morning
c=El Niño

#test-anchor
</pre>
<pre class="brush: plain; light: true; title: ; notranslate">http://www.example.com:81/path/path/hello.php?a=3&amp;b=Good%20Morning&amp;c=El%20Ni%F1o#test-anchor</pre>
<h4>Escape +</h4>
<p>It encodes the + characters. They are not escaped by the other functions, with the exception of &#8220;Escape (Forced)&#8221;.</p>
<h4>Escape #</h4>
<p>It encodes the # characters. They are not escaped by the other functions, with the exception of &#8220;Escape (Forced)&#8221;.</p>
<h4>Escape: &lt;char&gt;</h4>
<p>It encodes the characters specified in the input box.</p>
<h4>encodeURI</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/encodeURI">encodeURI</a> Javascript function.</p>
<h4>decodeURI</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/decodeURI">decodeURI</a> Javascript function.</p>
<h4>encodeURIComponent</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/encodeURIComponent">encodeURIComponent</a> Javascript function.</p>
<h4>decodeURIComponent</h4>
<p>Calls the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/decodeURIComponent">decodeURIComponent</a> Javascript function.</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="aligncenter size-full wp-image-251" /></a> <span class="aligncenter">Intelligent Escaper-Unescaper is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a> (attached)&#8230;</span></p>
<p><br/></p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/intelligent-escaper-unescaper/intelligent-escaper-unescaper.js">Download Source Code v1.0</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/intelligent-escaper-unescaper/Intelligent_Escaper-Unescaper_1.0.zip">Download Local Version v1.0</a></p>
</div>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="unescape online">unescape online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="url escape online">url escape online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="DEcodeURIComponent ONLINE">DEcodeURIComponent ONLINE</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="unescaper">unescaper</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="XML unescape online">XML unescape online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="unescape xml online">unescape xml online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="decodificar unescape">decodificar unescape</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="url escape tool">url escape tool</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="escape url online">escape url online</a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/" title="intelligent url escaper">intelligent url escaper</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/online-tools/convert-celsius-to-fahrenheit-online/" rel="bookmark" title="Convert Celsius to Fahrenheit Online">Convert Celsius to Fahrenheit Online </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/google-analytics-visits-notification-tool/" rel="bookmark" title="Google Analytics Visits Notification Tool">Google Analytics Visits Notification Tool </a></li>
<li><a href="http://www.neoegm.com/tech/online-tools/php-random-password-generator/" rel="bookmark" title="PHP random password generator">PHP random password generator </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/online-tools/intelligent-escaper-unescaper-online-unescape-and-escape-tool-with-url-parameter-parsing-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Hotmail, Live and MSN e-mail accounts to use them with POP3 in Outlook 2007 and Outlook 2003</title>
		<link>http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/</link>
		<comments>http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 07:00:07 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Configure]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[SPA]]></category>
		<category><![CDATA[Step by Step]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1036</guid>
		<description><![CDATA[As you may know, Microsoft has decided some time ago to open its POP3 support for Hotmail, Live and MSN e-mail accounts&#8230; Here, you&#8217;ll find the needed information to make them work on your favorite e-mail client&#8230; First, I&#8217;ll leave the configuration data (that you can use in any e-mail client) and, then, I&#8217;ll explain [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/blog/culture-above-all/culture-above-all-2-miss-teen-usa-2007-south-carolina-answers-a-question/" rel="bookmark" title="Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question">Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/vista-wow-windows-live-logo_256x2561-150x150.png" alt="vista-wow-windows-live-logo_256x256[1]" title="vista-wow-windows-live-logo_256x256[1]" width="150" height="150" class="aligncenter size-thumbnail wp-image-1074" /></p>
<p>As you may know, Microsoft has decided some time ago to open its <strong>POP3 support</strong> for <strong>Hotmail</strong>, <strong>Live</strong> and <strong>MSN</strong> e-mail accounts&#8230;</p>
<p>Here, you&#8217;ll find the needed information to make them work on your favorite e-mail client&#8230;</p>
<p>First, I&#8217;ll leave the configuration data (that you can use in any e-mail client) and, then, I&#8217;ll explain step by step how to configure the accounts in Outlook&#8230;</p>
<p><strong>Server type:</strong> POP3<br />
<strong>Incoming mail server (POP3):</strong> pop3.live.com<br />
<strong>Outgoing mail server (SMTP):</strong> smtp.live.com<br />
<strong>Require logon using Secure Password Authentication (SPA):</strong> Yes.<br />
<strong>SMTP Authentication:</strong> Yes, use the same settings as the incoming mail server.<br />
<strong>POP3 Encrypted Connection:</strong> Yes.<br />
<strong>POP3 Port:</strong> 995<br />
<strong>SMTP Connection Encryption:</strong> Yes, TLS.<br />
<strong>SMTP Port:</strong> 25.</p>
<p><span id="more-1036"></span></p>
<p>These instructions are for Outlook 2007, but they also apply to Outlook 2003 with some little differences&#8230; Those differences will be explained where corresponding&#8230;</p>
<p>First of all, you must go to Tools->Account Settings&#8230; [<em>Outlook 2003:</em> it is Tools->E-Mail Accounts&#8230;]</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Menu.png" alt="Outlook_2007_Configure_Menu" title="Outlook_2007_Configure_Menu" width="381" height="373" class="aligncenter size-full wp-image-1047" /></p>
<p>Then, this screen will appear&#8230; (If you don&#8217;t have any account set up yet, it may open directly the New Account Wizard)&#8230; [<em>Outlook 2003:</em> You must choose &#8220;View or change existing e-mail accounts&#8221; for the following screen to appear, but you can directly choose &#8220;Add a new e-mail account&#8221;.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Account_Settings.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Account_Settings-300x248.png" alt="Outlook_2007_Configure_Account_Settings" title="Outlook_2007_Configure_Account_Settings" width="300" height="248" class="aligncenter size-medium wp-image-1043" /></a></p>
<p>You must press &#8220;New&#8221;&#8230; (You will not need to do this if the New Account Wizard opened automatically).</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service_Main.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service_Main-300x227.png" alt="Outlook_2007_Configure_Service_Main" title="Outlook_2007_Configure_Service_Main" width="300" height="227" class="aligncenter size-medium wp-image-1052" /></a></p>
<p>Here you must choose &#8220;Microsoft Exchange, POP3, IMAP or HTTP&#8221; and press Next&#8230; [<em>Outlook 2003:</em> just choose POP3.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Auto.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Auto-300x226.png" alt="Outlook_2007_Configure_Auto" title="Outlook_2007_Configure_Auto" width="300" height="226" class="aligncenter size-medium wp-image-1044" /></a></p>
<p>Then, check &#8220;Manually configure server settings or additional server types&#8221; and press Next&#8230; [<em>Outlook 2003:</em> this step is not needed.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Service-300x227.png" alt="Outlook_2007_Configure_Service" title="Outlook_2007_Configure_Service" width="300" height="227" class="aligncenter size-medium wp-image-1051" /></a></p>
<p>Choose &#8220;Internet E-mail&#8221; and press Next&#8230; The Manual configuration screen will appear&#8230; Fill it with the following data: [<em>Outlook 2003:</em> the Manual configuration screen will appear directly without this step, just fill it. You must not check the &#8220;Require logon using Secure Password Authentication (SPA)&#8221; since it doesn&#8217;t seem to be correctly supported for Outlook 2003.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Manually.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Manually-300x227.png" alt="Outlook_2007_Configure_Manually" title="Outlook_2007_Configure_Manually" width="300" height="227" class="aligncenter size-medium wp-image-1046" /></a></p>
<p>Of course, you must adapt for your account the following fields: &#8220;Your Name&#8221;, &#8220;E-Mail Address&#8221;, &#8220;User Name&#8221; and &#8220;Password&#8221;&#8230; If you don&#8217;t want to leave your password saved, just uncheck the &#8220;Remember password&#8221; checkbox&#8230;</p>
<p>Then, press &#8220;More Settings&#8221;&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_More_General.png" alt="Outlook_2007_Configure_More_General" title="Outlook_2007_Configure_More_General" width="415" height="459" class="aligncenter size-full wp-image-1049" /></p>
<p>Go to the &#8220;Outgoing Server&#8221; page and leave it configured like this:</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_More_Outgoing.png" alt="Outlook_2007_Configure_More_Outgoing" title="Outlook_2007_Configure_More_Outgoing" width="411" height="458" class="aligncenter size-full wp-image-1050" /></p>
<p>Then go to the Advanced page and leave it like this&#8230; [<em>Outlook 2003:</em> there is no outgoing server connection encryption type selection, just check both SSL boxes.]</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_More_Advanced.png" alt="Outlook_2007_Configure_More_Advanced" title="Outlook_2007_Configure_More_Advanced" width="416" height="458" class="aligncenter size-full wp-image-1048" /></p>
<p>If you don&#8217;t want the downloaded messages to be removed from your webmail account, just check &#8220;Leave a copy of messages on the server&#8221;&#8230;</p>
<p>After that, press OK and then, the &#8220;Test Account Settings&#8221; button&#8230; If everything was correctly configured, you&#8217;ll get the following screen: [<em>Outlook 2003:</em> there are more items, but they must all be checked in green.]</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Test.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Test-300x157.png" alt="Outlook_2007_Configure_Test" title="Outlook_2007_Configure_Test" width="300" height="157" class="aligncenter size-medium wp-image-1042" /></a></p>
<p>Finally, close it and press Next&#8230; The Congratulations screen will appear&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Finish.png" rel="lightbox[1036]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Outlook_2007_Configure_Finish-300x226.png" alt="Outlook_2007_Configure_Finish" title="Outlook_2007_Configure_Finish" width="300" height="226" class="aligncenter size-medium wp-image-1045" /></a></p>
<p>And that&#8217;s all&#8230;</p>
<p>Enjoy it! <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="@hotmail com mail">@hotmail com mail</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar msn en outlook 2007">configurar msn en outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar msn en outlook">configurar msn en outlook</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="hotmail outlook 2007 manual settings">hotmail outlook 2007 manual settings</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="hotmail com mail">hotmail com mail</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar cuenta msn en outlook 2007">configurar cuenta msn en outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar outlook 2007 con msn">configurar outlook 2007 con msn</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="how to configure hotmail in outlook 2007">how to configure hotmail in outlook 2007</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="configurar cuenta de hotmail en outlook 2007 facil paso a paso">configurar cuenta de hotmail en outlook 2007 facil paso a paso</a></li>
<li><a href="http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/" title="how to configure hotmail in outlook 2007 step by step">how to configure hotmail in outlook 2007 step by step</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/blog/culture-above-all/culture-above-all-2-miss-teen-usa-2007-south-carolina-answers-a-question/" rel="bookmark" title="Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question">Culture Above All II: Miss Teen USA 2007 (South Carolina) answers a question </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/internet-tech/e-mail-internet/configure-hotmail-live-and-msn-e-mail-accounts-to-use-them-with-pop3-in-outlook-2007-and-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to compile C++ console programs which support special characters (ISO-8859-1)</title>
		<link>http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/</link>
		<comments>http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 05:00:24 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Charset]]></category>
		<category><![CDATA[Compile]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[G++]]></category>
		<category><![CDATA[GCC]]></category>
		<category><![CDATA[Hard-coded]]></category>
		<category><![CDATA[iconv]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[ISO-8859-1]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RAD]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Special Characters]]></category>
		<category><![CDATA[Strings]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[wxDev]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=1000</guid>
		<description><![CDATA[The GCC compiler (or G++) does not always work with our source code files just as we would expect it to. This specially happens when there are special characters in our files (the ones with ASCII codes higher than 127). Take the following program as a sample (the strings are written in spanish): Let&#8217;s compile [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/control-de-asistencia/" rel="bookmark" title="Attendance Control">Attendance Control </a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/simple-string-class/" rel="bookmark" title="Simple C++ String Class">Simple C++ String Class </a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/simple-list-class/" rel="bookmark" title="Simple C++ List Class">Simple C++ List Class </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>The GCC compiler (or G++) does not always work with our source code files just as we would expect it to. This specially happens when there are special characters in our files (the ones with ASCII codes higher than 127).</p>
<p>Take the following program as a sample (the strings are written in spanish):</p>
<pre class="brush: cpp; title: ; notranslate">
#include &lt;iostream&gt;
using std::cout;
using std::cin;
using std::endl;

#include &lt;string&gt;
using std::string;

int main()
{
	string sDummy;

	cout &lt;&lt; &quot;Por favor ingrese su contraseña: &quot;;
	cin &gt;&gt; sDummy;

	cout &lt;&lt; endl;
	cout &lt;&lt; &quot;Su contraseña es inválida, por favor verifíquela e inténtelo nuevamente. Ha ingresado: '&quot; &lt;&lt; sDummy &lt;&lt; &quot;'.&quot; &lt;&lt; endl;

	return 0;
}
</pre>
<p>Let&#8217;s compile it&#8230; </p>

<pre class="console">
g++ TestChars.cpp -o TestChars.exe
</pre>
<p>And execute it&#8230; We can easily imagine the output&#8230; But&#8230; This is what we get:</p>

<pre class="console">
Por favor ingrese su contrase±a: contraseña

Su contrase±a es invßlida, por favor veriffquela e intTntelo nuevamente. Ha ingresado: 'contraseña'.
</pre>
<p>Notice that the string that we&#8217;ve just typed (&#8220;contraseña&#8221;) gets correctly printed, while the ones hard-coded in the program don&#8217;t.</p>
<p>So&#8230; What can we do?</p>
<p>Well, there are some compiler command line parameters ready to help us&#8230; They are the <a href="http://gcc.gnu.org/onlinedocs/cpp/Invocation.html#index-character-set_002c-input-178">finput-charset</a> and <a href="http://gcc.gnu.org/onlinedocs/cpp/Invocation.html#index-fexec_002dcharset-173">fexec-charset</a> command line arguments&#8230;</p>
<p>Both take as additional parameter a <em>charset</em> name from the ones supported by the compiler&#8230;</p>
<p>For the interested ones, here is the output of the charsets supported by the library that GCC uses to make the conversion&#8230; They may not be the same on every system&#8230;</p>
<pre class="brush: plain; collapse: true; light: false; title: ; toolbar: true; notranslate">
# iconv --list
The following list contain all the coded character sets known.  This does not necessarily mean that all combinations of these names can be used for the FROM and TO command line parameters.  One coded character set can be listed with several different names (aliases).

437, 500, 500V1, 850, 851, 852, 855, 856, 857, 860, 861, 862, 863, 864, 865, 866, 866NAV, 869, 874, 904, 1026, 1046, 1047, 8859_1, 8859_2, 8859_3, 8859_4, 8859_5, 8859_6, 8859_7, 8859_8, 8859_9, 10646-1:1993, 10646-1:1993/UCS4, ANSI_X3.4-1968, ANSI_X3.4-1986, ANSI_X3.4, ANSI_X3.110-1983, ANSI_X3.110, ARABIC, ARABIC7, ARMSCII-8, ASCII, ASMO-708, ASMO_449, BALTIC, BIG-5, BIG-FIVE, BIG5-HKSCS, BIG5, BIG5HKSCS, BIGFIVE, BRF, BS_4730, CA, CN-BIG5, CN-GB, CN, CP-AR, CP-GR, CP-HU, CP037, CP038, CP273, CP274, CP275, CP278, CP280, CP281, CP282, CP284, CP285, CP290, CP297, CP367, CP420, CP423, CP424, CP437, CP500, CP737, CP775, CP803, CP813, CP819, CP850, CP851, CP852, CP855, CP856, CP857, CP860, CP861, CP862, CP863, CP864, CP865, CP866, CP866NAV, CP868, CP869, CP870, CP871, CP874, CP875, CP880, CP891, CP901, CP902, CP903, CP904, CP905, CP912, CP915, CP916, CP918, CP920, CP921, CP922, CP930, CP932, CP933, CP935, CP936, CP937, CP939, CP949, CP950, CP1004, CP1008, CP1025, CP1026, CP1046, CP1047, CP1070, CP1079, CP1081, CP1084, CP1089, CP1097, CP1112, CP1122, CP1123, CP1124, CP1125, CP1129, CP1130, CP1132, CP1133, CP1137, CP1140, CP1141, CP1142, CP1143, CP1144, CP1145, CP1146, CP1147, CP1148, CP1149, CP1153, CP1154, CP1155, CP1156, CP1157, CP1158, CP1160, CP1161, CP1162, CP1163, CP1164, CP1166, CP1167, CP1250, CP1251, CP1252, CP1253, CP1254, CP1255, CP1256, CP1257, CP1258, CP1282, CP1361, CP1364, CP1371, CP1388, CP1390, CP1399, CP4517, CP4899, CP4909, CP4971, CP5347, CP9030, CP9066, CP9448, CP10007, CP12712, CP16804, CPIBM861, CSA7-1, CSA7-2, CSASCII, CSA_T500-1983, CSA_T500, CSA_Z243.4-1985-1, CSA_Z243.4-1985-2, CSA_Z243.419851, CSA_Z243.419852, CSDECMCS, CSEBCDICATDE, CSEBCDICATDEA, CSEBCDICCAFR, CSEBCDICDKNO, CSEBCDICDKNOA, CSEBCDICES, CSEBCDICESA, CSEBCDICESS, CSEBCDICFISE, CSEBCDICFISEA, CSEBCDICFR, CSEBCDICIT, CSEBCDICPT, CSEBCDICUK, CSEBCDICUS, CSEUCKR, CSEUCPKDFMTJAPANESE, CSGB2312, CSHPROMAN8, CSIBM037, CSIBM038, CSIBM273, CSIBM274, CSIBM275, CSIBM277, CSIBM278, CSIBM280, CSIBM281, CSIBM284, CSIBM285, CSIBM290, CSIBM297, CSIBM420, CSIBM423, CSIBM424, CSIBM500, CSIBM803, CSIBM851, CSIBM855, CSIBM856, CSIBM857, CSIBM860, CSIBM863, CSIBM864, CSIBM865, CSIBM866, CSIBM868, CSIBM869, CSIBM870, CSIBM871, CSIBM880, CSIBM891, CSIBM901, CSIBM902, CSIBM903, CSIBM904, CSIBM905, CSIBM918, CSIBM921, CSIBM922, CSIBM930, CSIBM932, CSIBM933, CSIBM935, CSIBM937, CSIBM939, CSIBM943, CSIBM1008, CSIBM1025, CSIBM1026, CSIBM1097, CSIBM1112, CSIBM1122, CSIBM1123, CSIBM1124, CSIBM1129, CSIBM1130, CSIBM1132, CSIBM1133, CSIBM1137, CSIBM1140, CSIBM1141, CSIBM1142, CSIBM1143, CSIBM1144, CSIBM1145, CSIBM1146, CSIBM1147, CSIBM1148, CSIBM1149, CSIBM1153, CSIBM1154, CSIBM1155, CSIBM1156, CSIBM1157, CSIBM1158, CSIBM1160, CSIBM1161, CSIBM1163, CSIBM1164, CSIBM1166, CSIBM1167, CSIBM1364, CSIBM1371, CSIBM1388, CSIBM1390, CSIBM1399, CSIBM4517, CSIBM4899, CSIBM4909, CSIBM4971, CSIBM5347, CSIBM9030, CSIBM9066, CSIBM9448, CSIBM12712, CSIBM16804, CSIBM11621162, CSISO4UNITEDKINGDOM, CSISO10SWEDISH, CSISO11SWEDISHFORNAMES, CSISO14JISC6220RO, CSISO15ITALIAN, CSISO16PORTUGESE, CSISO17SPANISH, CSISO18GREEK7OLD, CSISO19LATINGREEK, CSISO21GERMAN, CSISO25FRENCH, CSISO27LATINGREEK1, CSISO49INIS, CSISO50INIS8, CSISO51INISCYRILLIC, CSISO58GB1988, CSISO60DANISHNORWEGIAN, CSISO60NORWEGIAN1, CSISO61NORWEGIAN2, CSISO69FRENCH, CSISO84PORTUGUESE2, CSISO85SPANISH2, CSISO86HUNGARIAN, CSISO88GREEK7, CSISO89ASMO449, CSISO90, CSISO92JISC62991984B, CSISO99NAPLPS, CSISO103T618BIT, CSISO111ECMACYRILLIC, CSISO121CANADIAN1, CSISO122CANADIAN2, CSISO139CSN369103, CSISO141JUSIB1002, CSISO143IECP271, CSISO150, CSISO150GREEKCCITT, CSISO151CUBA, CSISO153GOST1976874, CSISO646DANISH, CSISO2022CN, CSISO2022JP, CSISO2022JP2, CSISO2022KR, CSISO2033, CSISO5427CYRILLIC, CSISO5427CYRILLIC1981, CSISO5428GREEK, CSISO10367BOX, CSISOLATIN1, CSISOLATIN2, CSISOLATIN3, CSISOLATIN4, CSISOLATIN5, CSISOLATIN6, CSISOLATINARABIC, CSISOLATINCYRILLIC, CSISOLATINGREEK, CSISOLATINHEBREW, CSKOI8R, CSKSC5636, CSMACINTOSH, CSNATSDANO, CSNATSSEFI, CSN_369103, CSPC8CODEPAGE437, CSPC775BALTIC, CSPC850MULTILINGUAL, CSPC862LATINHEBREW, CSPCP852, CSSHIFTJIS, CSUCS4, CSUNICODE, CSWINDOWS31J, CUBA, CWI-2, CWI, CYRILLIC, DE, DEC-MCS, DEC, DECMCS, DIN_66003, DK, DS2089, DS_2089, E13B, EBCDIC-AT-DE-A, EBCDIC-AT-DE, EBCDIC-BE, EBCDIC-BR, EBCDIC-CA-FR, EBCDIC-CP-AR1, EBCDIC-CP-AR2, EBCDIC-CP-BE, EBCDIC-CP-CA, EBCDIC-CP-CH, EBCDIC-CP-DK, EBCDIC-CP-ES, EBCDIC-CP-FI, EBCDIC-CP-FR, EBCDIC-CP-GB, EBCDIC-CP-GR, EBCDIC-CP-HE, EBCDIC-CP-IS, EBCDIC-CP-IT, EBCDIC-CP-NL, EBCDIC-CP-NO, EBCDIC-CP-ROECE, EBCDIC-CP-SE, EBCDIC-CP-TR, EBCDIC-CP-US, EBCDIC-CP-WT, EBCDIC-CP-YU, EBCDIC-CYRILLIC, EBCDIC-DK-NO-A, EBCDIC-DK-NO, EBCDIC-ES-A, EBCDIC-ES-S, EBCDIC-ES, EBCDIC-FI-SE-A, EBCDIC-FI-SE, EBCDIC-FR, EBCDIC-GREEK, EBCDIC-INT, EBCDIC-INT1, EBCDIC-IS-FRISS, EBCDIC-IT, EBCDIC-JP-E, EBCDIC-JP-KANA, EBCDIC-PT, EBCDIC-UK, EBCDIC-US, EBCDICATDE, EBCDICATDEA, EBCDICCAFR, EBCDICDKNO, EBCDICDKNOA, EBCDICES, EBCDICESA, EBCDICESS, EBCDICFISE, EBCDICFISEA, EBCDICFR, EBCDICISFRISS, EBCDICIT, EBCDICPT, EBCDICUK, EBCDICUS, ECMA-114, ECMA-118, ECMA-128, ECMA-CYRILLIC, ECMACYRILLIC, ELOT_928, ES, ES2, EUC-CN, EUC-JISX0213, EUC-JP-MS, EUC-JP, EUC-KR, EUC-TW, EUCCN, EUCJP-MS, EUCJP-OPEN, EUCJP-WIN, EUCJP, EUCKR, EUCTW, FI, FR, GB, GB2312, GB13000, GB18030, GBK, GB_1988-80, GB_198880, GEORGIAN-ACADEMY, GEORGIAN-PS, GOST_19768-74, GOST_19768, GOST_1976874, GREEK-CCITT, GREEK, GREEK7-OLD, GREEK7, GREEK7OLD, GREEK8, GREEKCCITT, HEBREW, HP-GREEK8, HP-ROMAN8, HP-ROMAN9, HP-THAI8, HP-TURKISH8, HPGREEK8, HPROMAN8, HPROMAN9, HPTHAI8, HPTURKISH8, HU, IBM-803, IBM-856, IBM-901, IBM-902, IBM-921, IBM-922, IBM-930, IBM-932, IBM-933, IBM-935, IBM-937, IBM-939, IBM-943, IBM-1008, IBM-1025, IBM-1046, IBM-1047, IBM-1097, IBM-1112, IBM-1122, IBM-1123, IBM-1124, IBM-1129, IBM-1130, IBM-1132, IBM-1133, IBM-1137, IBM-1140, IBM-1141, IBM-1142, IBM-1143, IBM-1144, IBM-1145, IBM-1146, IBM-1147, IBM-1148, IBM-1149, IBM-1153, IBM-1154, IBM-1155, IBM-1156, IBM-1157, IBM-1158, IBM-1160, IBM-1161, IBM-1162, IBM-1163, IBM-1164, IBM-1166, IBM-1167, IBM-1364, IBM-1371, IBM-1388, IBM-1390, IBM-1399, IBM-4517, IBM-4899, IBM-4909, IBM-4971, IBM-5347, IBM-9030, IBM-9066, IBM-9448, IBM-12712, IBM-16804, IBM037, IBM038, IBM256, IBM273, IBM274, IBM275, IBM277, IBM278, IBM280, IBM281, IBM284, IBM285, IBM290, IBM297, IBM367, IBM420, IBM423, IBM424, IBM437, IBM500, IBM775, IBM803, IBM813, IBM819, IBM848, IBM850, IBM851, IBM852, IBM855, IBM856, IBM857, IBM860, IBM861, IBM862, IBM863, IBM864, IBM865, IBM866, IBM866NAV, IBM868, IBM869, IBM870, IBM871, IBM874, IBM875, IBM880, IBM891, IBM901, IBM902, IBM903, IBM904, IBM905, IBM912, IBM915, IBM916, IBM918, IBM920, IBM921, IBM922, IBM930, IBM932, IBM933, IBM935, IBM937, IBM939, IBM943, IBM1004, IBM1008, IBM1025, IBM1026, IBM1046, IBM1047, IBM1089, IBM1097, IBM1112, IBM1122, IBM1123, IBM1124, IBM1129, IBM1130, IBM1132, IBM1133, IBM1137, IBM1140, IBM1141, IBM1142, IBM1143, IBM1144, IBM1145, IBM1146, IBM1147, IBM1148, IBM1149, IBM1153, IBM1154, IBM1155, IBM1156, IBM1157, IBM1158, IBM1160, IBM1161, IBM1162, IBM1163, IBM1164, IBM1166, IBM1167, IBM1364, IBM1371, IBM1388, IBM1390, IBM1399, IBM4517, IBM4899, IBM4909, IBM4971, IBM5347, IBM9030, IBM9066, IBM9448, IBM12712, IBM16804, IEC_P27-1, IEC_P271, INIS-8, INIS-CYRILLIC, INIS, INIS8, INISCYRILLIC, ISIRI-3342, ISIRI3342, ISO-2022-CN-EXT, ISO-2022-CN, ISO-2022-JP-2, ISO-2022-JP-3, ISO-2022-JP, ISO-2022-KR, ISO-8859-1, ISO-8859-2, ISO-8859-3, ISO-8859-4, ISO-8859-5, ISO-8859-6, ISO-8859-7, ISO-8859-8, ISO-8859-9, ISO-8859-9E, ISO-8859-10, ISO-8859-11, ISO-8859-13, ISO-8859-14, ISO-8859-15, ISO-8859-16, ISO-10646, ISO-10646/UCS2, ISO-10646/UCS4, ISO-10646/UTF-8, ISO-10646/UTF8, ISO-CELTIC, ISO-IR-4, ISO-IR-6, ISO-IR-8-1, ISO-IR-9-1, ISO-IR-10, ISO-IR-11, ISO-IR-14, ISO-IR-15, ISO-IR-16, ISO-IR-17, ISO-IR-18, ISO-IR-19, ISO-IR-21, ISO-IR-25, ISO-IR-27, ISO-IR-37, ISO-IR-49, ISO-IR-50, ISO-IR-51, ISO-IR-54, ISO-IR-55, ISO-IR-57, ISO-IR-60, ISO-IR-61, ISO-IR-69, ISO-IR-84, ISO-IR-85, ISO-IR-86, ISO-IR-88, ISO-IR-89, ISO-IR-90, ISO-IR-92, ISO-IR-98, ISO-IR-99, ISO-IR-100, ISO-IR-101, ISO-IR-103, ISO-IR-109, ISO-IR-110, ISO-IR-111, ISO-IR-121, ISO-IR-122, ISO-IR-126, ISO-IR-127, ISO-IR-138, ISO-IR-139, ISO-IR-141, ISO-IR-143, ISO-IR-144, ISO-IR-148, ISO-IR-150, ISO-IR-151, ISO-IR-153, ISO-IR-155, ISO-IR-156, ISO-IR-157, ISO-IR-166, ISO-IR-179, ISO-IR-193, ISO-IR-197, ISO-IR-199, ISO-IR-203, ISO-IR-209, ISO-IR-226, ISO/TR_11548-1, ISO646-CA, ISO646-CA2, ISO646-CN, ISO646-CU, ISO646-DE, ISO646-DK, ISO646-ES, ISO646-ES2, ISO646-FI, ISO646-FR, ISO646-FR1, ISO646-GB, ISO646-HU, ISO646-IT, ISO646-JP-OCR-B, ISO646-JP, ISO646-KR, ISO646-NO, ISO646-NO2, ISO646-PT, ISO646-PT2, ISO646-SE, ISO646-SE2, ISO646-US, ISO646-YU, ISO2022CN, ISO2022CNEXT, ISO2022JP, ISO2022JP2, ISO2022KR, ISO6937, ISO8859-1, ISO8859-2, ISO8859-3, ISO8859-4, ISO8859-5, ISO8859-6, ISO8859-7, ISO8859-8, ISO8859-9, ISO8859-9E, ISO8859-10, ISO8859-11, ISO8859-13, ISO8859-14, ISO8859-15, ISO8859-16, ISO11548-1, ISO88591, ISO88592, ISO88593, ISO88594, ISO88595, ISO88596, ISO88597, ISO88598, ISO88599, ISO88599E, ISO885910, ISO885911, ISO885913, ISO885914, ISO885915, ISO885916, ISO_646.IRV:1991, ISO_2033-1983, ISO_2033, ISO_5427-EXT, ISO_5427, ISO_5427:1981, ISO_5427EXT, ISO_5428, ISO_5428:1980, ISO_6937-2, ISO_6937-2:1983, ISO_6937, ISO_6937:1992, ISO_8859-1, ISO_8859-1:1987, ISO_8859-2, ISO_8859-2:1987, ISO_8859-3, ISO_8859-3:1988, ISO_8859-4, ISO_8859-4:1988, ISO_8859-5, ISO_8859-5:1988, ISO_8859-6, ISO_8859-6:1987, ISO_8859-7, ISO_8859-7:1987, ISO_8859-7:2003, ISO_8859-8, ISO_8859-8:1988, ISO_8859-9, ISO_8859-9:1989, ISO_8859-9E, ISO_8859-10, ISO_8859-10:1992, ISO_8859-14, ISO_8859-14:1998, ISO_8859-15, ISO_8859-15:1998, ISO_8859-16, ISO_8859-16:2001, ISO_9036, ISO_10367-BOX, ISO_10367BOX, ISO_11548-1, ISO_69372, IT, JIS_C6220-1969-RO, JIS_C6229-1984-B, JIS_C62201969RO, JIS_C62291984B, JOHAB, JP-OCR-B, JP, JS, JUS_I.B1.002, KOI-7, KOI-8, KOI8-R, KOI8-RU, KOI8-T, KOI8-U, KOI8, KOI8R, KOI8U, KSC5636, L1, L2, L3, L4, L5, L6, L7, L8, L10, LATIN-9, LATIN-GREEK-1, LATIN-GREEK, LATIN1, LATIN2, LATIN3, LATIN4, LATIN5, LATIN6, LATIN7, LATIN8, LATIN10, LATINGREEK, LATINGREEK1, MAC-CENTRALEUROPE, MAC-CYRILLIC, MAC-IS, MAC-SAMI, MAC-UK, MAC, MACCYRILLIC, MACINTOSH, MACIS, MACUK, MACUKRAINIAN, MIK, MS-ANSI, MS-ARAB, MS-CYRL, MS-EE, MS-GREEK, MS-HEBR, MS-MAC-CYRILLIC, MS-TURK, MS932, MS936, MSCP949, MSCP1361, MSMACCYRILLIC, MSZ_7795.3, MS_KANJI, NAPLPS, NATS-DANO, NATS-SEFI, NATSDANO, NATSSEFI, NC_NC0010, NC_NC00-10, NC_NC00-10:81, NF_Z_62-010, NF_Z_62-010_(1973), NF_Z_62-010_1973, NF_Z_62010, NF_Z_62010_1973, NO, NO2, NS_4551-1, NS_4551-2, NS_45511, NS_45512, OS2LATIN1, OSF00010001, OSF00010002, OSF00010003, OSF00010004, OSF00010005, OSF00010006, OSF00010007, OSF00010008, OSF00010009, OSF0001000A, OSF00010020, OSF00010100, OSF00010101, OSF00010102, OSF00010104, OSF00010105, OSF00010106, OSF00030010, OSF0004000A, OSF0005000A, OSF05010001, OSF100201A4, OSF100201A8, OSF100201B5, OSF100201F4, OSF100203B5, OSF1002011C, OSF1002011D, OSF1002035D, OSF1002035E, OSF1002035F, OSF1002036B, OSF1002037B, OSF10010001, OSF10010004, OSF10010006, OSF10020025, OSF10020111, OSF10020115, OSF10020116, OSF10020118, OSF10020122, OSF10020129, OSF10020352, OSF10020354, OSF10020357, OSF10020359, OSF10020360, OSF10020364, OSF10020365, OSF10020366, OSF10020367, OSF10020370, OSF10020387, OSF10020388, OSF10020396, OSF10020402, OSF10020417, PT, PT2, PT154, R8, R9, RK1048, ROMAN8, ROMAN9, RUSCII, SE, SE2, SEN_850200_B, SEN_850200_C, SHIFT-JIS, SHIFT_JIS, SHIFT_JISX0213, SJIS-OPEN, SJIS-WIN, SJIS, SS636127, STRK1048-2002, ST_SEV_358-88, T.61-8BIT, T.61, T.618BIT, TCVN-5712, TCVN, TCVN5712-1, TCVN5712-1:1993, THAI8, TIS-620, TIS620-0, TIS620.2529-1, TIS620.2533-0, TIS620, TS-5881, TSCII, TURKISH8, UCS-2, UCS-2BE, UCS-2LE, UCS-4, UCS-4BE, UCS-4LE, UCS2, UCS4, UHC, UJIS, UK, UNICODE, UNICODEBIG, UNICODELITTLE, US-ASCII, US, UTF-7, UTF-8, UTF-16, UTF-16BE, UTF-16LE, UTF-32, UTF-32BE, UTF-32LE, UTF7, UTF8, UTF16, UTF16BE, UTF16LE, UTF32, UTF32BE, UTF32LE, VISCII, WCHAR_T, WIN-SAMI-2, WINBALTRIM, WINDOWS-31J, WINDOWS-874, WINDOWS-936, WINDOWS-1250, WINDOWS-1251, WINDOWS-1252, WINDOWS-1253, WINDOWS-1254, WINDOWS-1255, WINDOWS-1256, WINDOWS-1257, WINDOWS-1258, WINSAMI2, WS2, YU
</pre>
<p>The first parameter, <strong><em>finput-charset</em></strong>, is the charset used to <strong>read</strong> the source code files&#8230; The second one, fexec-charset</em></strong>, is the used to store the strings and character constants <strong>in the executable file</strong>, so they will be shown correctly while running&#8230;</p>
<p>So, assuming you&#8217;re writing your source files in <strong><em><a href="http://en.wikipedia.org/wiki/ISO/IEC_8859-1">iso-8859-1</a></em></strong> (the most common charset on Windows platforms) and want to show them while running in <strong><em><a href="http://en.wikipedia.org/wiki/Code_page_437">cp437</a></strong></em> (the DOS console charset), we could call the compiler like this:</p>

<pre class="console">
g++ TestChars.cpp -o TestChars.exe -finput-charset=iso-8859-1 -fexec-charset=cp437
</pre>
<p>And what do we expect to get? <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>

<pre class="console">
Por favor ingrese su contraseña: contraseña

Su contraseña es inválida, por favor verifíquela e inténtelo nuevamente. Ha ingresado: 'contraseña'.
</pre>
<p>Everything worked just the way we expected! <img src="http://www.neoegm.com/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Now, finally, I&#8217;ll show how to configure these command line options for the wxDev IDE&#8230;</p>
<p>First of all, I must say there are two ways to set compiler options: global options and project options&#8230; As you may imagine, the first ones are applied to every compiled project, while the latter just get applied to the currently opened project (they are set in a per project basis)&#8230;</p>
<p>To set the parameters in the global compiler options you must got to the Tools menu and then open the Compiler Options item&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Main_Menu_EN.png" alt="Main_Menu_EN" title="Main_Menu_EN" width="236" height="229" class="aligncenter size-full wp-image-1006" /></p>
<p>After that, you simply enter the following string (the parameters) into the &#8220;Add the following commands when calling compiler&#8221; box:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
-finput-charset=iso-8859-1 -fexec-charset=cp437
</pre>
<p>If there are already other parameters configured, you should append them&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Main_Compiler_Options_Filled_EN.png" alt="Main_Compiler_Options_Filled_EN" title="Main_Compiler_Options_Filled_EN" width="477" height="503" class="aligncenter size-full wp-image-1004" /></p>
<p>They will be sent to both the C compiler and the C++ compiler&#8230;</p>
<p>The other alternative is to set the same parameters in the project options&#8230;</p>
<p>First, we open the project options&#8230; Either going to Project->Project Options or right clicking the project and going to &#8220;Project Options&#8221;&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Project_Menu_EN.png" alt="Project_Menu_EN" title="Project_Menu_EN" width="278" height="235" class="aligncenter size-full wp-image-1008" /></p>
<p>Then, we go to the Parameters page and paste the parameters string in the two compiler boxes&#8230; Both parameters can be entered either in a single line or broken apart&#8230; Just as before, if there are already other parameters configured, you should append them&#8230;</p>
<p><a href="http://www.neoegm.com/wp-content/uploads/2009/08/Project_Options_Parameters_Filled_EN.png" rel="lightbox[1000]"><img src="http://www.neoegm.com/wp-content/uploads/2009/08/Project_Options_Parameters_Filled_EN-299x222.png" alt="Project_Options_Parameters_Filled_EN" title="Project_Options_Parameters_Filled_EN" width="299" height="222" class="aligncenter size-medium wp-image-1002" /></a></p>
<p>Whell, that&#8217;s all&#8230; Most IDEs will have similar options!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="Programming|NeoEGM com">Programming|NeoEGM com</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="graficos del diapason de la guitarra">graficos del diapason de la guitarra</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="mail czset cn loc:ES">mail czset cn loc:ES</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="mail gpl com cn loc:ES">mail gpl com cn loc:ES</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="mail gino com cn loc:ES">mail gino com cn loc:ES</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="wxDev|NeoEGM com">wxDev|NeoEGM com</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="mail ecma-music com loc:ES">mail ecma-music com loc:ES</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="mail sami com cn loc:ES">mail sami com cn loc:ES</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="where r the notes on a quitar">where r the notes on a quitar</a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/" title="email ecma-music com loc:ES">email ecma-music com loc:ES</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/control-de-asistencia/" rel="bookmark" title="Attendance Control">Attendance Control </a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/simple-string-class/" rel="bookmark" title="Simple C++ String Class">Simple C++ String Class </a></li>
<li><a href="http://www.neoegm.com/tech/programming/c-cpp/simple-list-class/" rel="bookmark" title="Simple C++ List Class">Simple C++ List Class </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neoegm.com/tech/programming/c-cpp/how-to-compile-c-console-programs-which-support-special-characters-iso-8859-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
