<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>Mgarcia a Web developer...</title>
	<link>http://mgarcia.info</link>
	<description>A programmer from Barcelona</description>
	<pubDate>Wed, 11 Jun 2008 16:36:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>XPlorer a substitute for the Windows Explorer</title>
		<link>http://mgarcia.info/2008/05/30/xplorer-a-substitute-for-the-windows-explorer/</link>
		<comments>http://mgarcia.info/2008/05/30/xplorer-a-substitute-for-the-windows-explorer/#comments</comments>
		<pubDate>Fri, 30 May 2008 08:22:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2008/05/30/xplorer-a-substitute-for-the-windows-explorer/</guid>
		<description><![CDATA[XPlorer is a substitute for the Windows Explorer, adding multi tabbed features. So it is possible to have lots of locations opened at the same time, while we can manage them in an easy and eficient way.
компютри втора употребаhttp://guti.webcindario.com/static.php?page=XPlorer 
Casinos casinos Blackjack mit einem einzelnen Deck oder mehreren Decks.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://guti.webcindario.com/static.php?page=XPlorer">XPlorer</a> is a substitute for the Windows Explorer, adding multi tabbed features. So it is possible to have lots of locations opened at the same time, while we can manage them in an easy and eficient way.</p>
<p><a href="http://guti.webcindario.com/static.php?page=XPlorer"><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://kvantservice.com/">компютри втора употреба</a></font>http://guti.webcindario.com/static.php?page=XPlorer </a></p>
<p><img src="http://guti.webcindario.com/images/xplorer.png" height="379" width="548" /><u style="display:none">Casinos <a href="http://www.realdealcasino.de">casinos</a> Blackjack mit einem einzelnen Deck oder mehreren Decks.</u></p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2008/05/30/xplorer-a-substitute-for-the-windows-explorer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript Reference, old but useful</title>
		<link>http://mgarcia.info/2008/05/07/javascript-reference-old-but-useful/</link>
		<comments>http://mgarcia.info/2008/05/07/javascript-reference-old-but-useful/#comments</comments>
		<pubDate>Wed, 07 May 2008 16:57:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Howto]]></category>

		<category><![CDATA[Javascript (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2008/05/07/javascript-reference-old-but-useful/</guid>
		<description><![CDATA[A very old document for help you with javascript, very useful
http://mgarcia.info/JavaScript-Reference/
]]></description>
			<content:encoded><![CDATA[<p>A very old document for help you with javascript, very useful</p>
<p><a href="http://mgarcia.info/JavaScript-Reference/">http://mgarcia.info/JavaScript-Reference/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2008/05/07/javascript-reference-old-but-useful/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving DataBase to another Server</title>
		<link>http://mgarcia.info/2008/02/23/moving-database-another-server/</link>
		<comments>http://mgarcia.info/2008/02/23/moving-database-another-server/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 16:59:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2008/02/23/moving-database-another-server/</guid>
		<description><![CDATA[A little &#8220;script&#8221; to move your mysql database to another Server.
 mysqldump -uusername -ppassword database &#124; ssh username_ssh@hostname.com &#8220;mysql -uusername -ppassword database&#8220;
]]></description>
			<content:encoded><![CDATA[<p>A little &#8220;script&#8221; to move your mysql database to another Server.</p>
<blockquote><p> mysqldump -u<em>username </em>-p<em>password database </em>| ssh <em>username_ssh</em>@<em>hostname.com</em> &#8220;mysql -u<em>username</em> -p<em>password</em> <em>database</em>&#8220;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2008/02/23/moving-database-another-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP include for javascript</title>
		<link>http://mgarcia.info/2008/02/09/php-include-for-javascript/</link>
		<comments>http://mgarcia.info/2008/02/09/php-include-for-javascript/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 21:17:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2008/02/09/php-include-for-javascript/</guid>
		<description><![CDATA[A small javascript (mootools) for load javascript files.
This is great if you have a lots of javascript and you dont want have your &#60;head&#62; with this javascript.
With this script you can load a javascrip file when you want.
function include_js(file_path){
var js = new Element(&#8217;script&#8217;)
.setProperties({&#8217;src&#8217;:file_path,&#8217;type&#8217;:'text/javascript&#8217;})
.injectInside(document.head);
}
Ex.
include_js(&#8217;thm/js/calendar.js&#8217;);
Sorry, mootools has http://docs.mootools.net/Remote/Assets.js 
]]></description>
			<content:encoded><![CDATA[<p><strike>A small javascript (mootools) for load javascript files.<br />
This is great if you have a lots of javascript and you dont want have your &lt;head&gt; with this javascript.<br />
With this script you can load a javascrip file when you want.</strike></p>
<blockquote><p><strike>function include_js(file_path){<br />
var js = new Element(&#8217;script&#8217;)<br />
.setProperties({&#8217;src&#8217;:file_path,&#8217;type&#8217;:'text/javascript&#8217;})<br />
.injectInside(document.head);<br />
}</strike></p></blockquote>
<p><strike>Ex.<br />
include_js(&#8217;thm/js/calendar.js&#8217;);</strike></p>
<p>Sorry, mootools has <a href="http://docs.mootools.net/Remote/Assets.js">http://docs.mootools.net/Remote/Assets.js </a></p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2008/02/09/php-include-for-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What can you do with a single stroke of the pen?</title>
		<link>http://mgarcia.info/2008/01/14/what-can-you-do-with-a-single-stroke-of-the-pen/</link>
		<comments>http://mgarcia.info/2008/01/14/what-can-you-do-with-a-single-stroke-of-the-pen/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 23:53:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2008/01/14/what-can-you-do-with-a-single-stroke-of-the-pen/</guid>
		<description><![CDATA[http://mgarcia.info/img/singleStroke.jpg
All done with a single stroke of the pen 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://mgarcia.info/img/singleStroke.jpg">http://mgarcia.info/img/singleStroke.jpg</a></p>
<p><em>All done with a single stroke of the pen </em></p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2008/01/14/what-can-you-do-with-a-single-stroke-of-the-pen/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto: SSh a little more secure (Debian, Ubuntu &#8230;)</title>
		<link>http://mgarcia.info/2008/01/05/howto-ssh-a-litte-more-secure-debian-ubuntu/</link>
		<comments>http://mgarcia.info/2008/01/05/howto-ssh-a-litte-more-secure-debian-ubuntu/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 10:21:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Howto]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2008/01/05/howto-ssh-a-litte-more-secure-debian-ubuntu/</guid>
		<description><![CDATA[If you have a server with ssh conection maybe you havent a secure configuration, with this Howto we will have a ssh more secure.

With Root open /etc/ssh/sshd_config
Change to the next &#8230; Protocol 2 and PermitRootLogin no
Also you can change ssh&#8217;s port for example port 1230: Port 1230


You must to open the port 1230 in you [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a server with ssh conection maybe you havent a secure configuration, with this Howto we will have a ssh more secure.</p>
<ol>
<li>With Root open /etc/ssh/sshd_config</li>
<li>Change to the next &#8230; <strong>Protocol 2</strong> and <strong>PermitRootLogin no</strong></li>
<li>Also you can change ssh&#8217;s port for example port 1230: <strong>Port 1230<br />
</strong></li>
</ol>
<p>You must to open the port 1230 in you Firewall and create a new user for &#8220;su&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2008/01/05/howto-ssh-a-litte-more-secure-debian-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New domains &#8230;</title>
		<link>http://mgarcia.info/2007/12/21/new-domains/</link>
		<comments>http://mgarcia.info/2007/12/21/new-domains/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 19:41:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/2007/12/21/new-domains/</guid>
		<description><![CDATA[Hello again, this time a bought some domains very interesting (I thinks so hehe)
bestmegastore.com
topsent.com
audiokid.com
fotosc.com
Also another domains because i want to do different blogs about travel as
MYADVENTURE-TRAVEL.COM and Kahului-Travel
Buy domains is like a drugs haha&#8230; Merry Christmas !!
]]></description>
			<content:encoded><![CDATA[<p>Hello again, this time a bought some domains very interesting (I thinks so hehe)</p>
<p><a href="http://bestmegastore.com">bestmegastore.com</a><br />
<a href="http://topsent.com">topsent.com</a><br />
<a href="http://audiokid.com">audiokid.com</a><br />
<a href="http://fotosc.com">fotosc.com</a></p>
<p>Also another domains because i want to do different blogs about travel as</p>
<p><a href="http://MYADVENTURE-TRAVEL.COM">MYADVENTURE-TRAVEL.COM</a> and <a href="http://Kahului-Travel.com">Kahului-Travel</a></p>
<p>Buy domains is like a drugs haha&#8230; Merry Christmas !!</p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2007/12/21/new-domains/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Autocompleter for Mootools</title>
		<link>http://mgarcia.info/2007/12/21/autocompleter-for-mootools/</link>
		<comments>http://mgarcia.info/2007/12/21/autocompleter-for-mootools/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 18:53:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/?p=7</guid>
		<description><![CDATA[My new script for Mootools, with this script you can show results for a input
You can see a example here 
]]></description>
			<content:encoded><![CDATA[<p>My new script for Mootools, with this script you can show results for a input<img src="http://mgarcia.info/examples/img/autocompleter.jpg" /></p>
<p>You can see a<a href="http://www.mgarcia.info/examples/autocompleter.html"> example here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2007/12/21/autocompleter-for-mootools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Calendar for Mootools</title>
		<link>http://mgarcia.info/2007/12/21/calendario-para-mootools/</link>
		<comments>http://mgarcia.info/2007/12/21/calendario-para-mootools/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 12:22:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/?p=4</guid>
		<description><![CDATA[Sometime in my job, i need a calendar but i had a poor calendar, bad javascript and desing&#8230;
Now, i know Mootools and i thought , i should to do a calendar for Mootools.
The Calendar is a spanish version but im working in a new version in English or may be in a version where you [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime in my job, i need a calendar but i had a poor calendar, bad javascript and desing&#8230;</p>
<p>Now, i know <a href="http://www.mootools.net">Mootools</a> and i thought , i should to do a calendar for Mootools.</p>
<p>The Calendar is a spanish version but im working in a new version in English or may be in a version where you can configure the language.</p>
<blockquote><p>You should add this class <strong>(&#8217;ncalendar&#8217;) </strong> to a input  and upload images and css from <a href="http://www.mgarcia.info/examples/calendar.html">Example web</a>.</p></blockquote>
<p>You can see a <a href="http://www.mgarcia.info/examples/calendar.html">Example </a>,  download a <a href="http://www.mgarcia.info/examples/javascript/calendar.js">extended version</a>  or <a href="http://www.mgarcia.info/examples/javascript/calendar_tar.js">packed version</a> if you want.</p>
<p>Enjoy the scripts <img src='http://mgarcia.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><span style="color: red">Edit: New Version 09/02/2008</span><br />
Note :Design by Robert (thanks!)</p>
<p>New Features</p>
<ol>
<li>You can select max and min Date</li>
<li>You can select a format date, ex. d/m/y m/d/Y etc&#8230;</li>
<li>New Design</li>
<li>Bug fixed (32 days??)</li>
</ol>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2007/12/21/calendario-para-mootools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tips (Script) for Mootools</title>
		<link>http://mgarcia.info/2007/12/21/mensaje-de-ayuda-o-tips-para-mootools/</link>
		<comments>http://mgarcia.info/2007/12/21/mensaje-de-ayuda-o-tips-para-mootools/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 10:53:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript (English)]]></category>

		<guid isPermaLink="false">http://mgarcia.info/?p=5</guid>
		<description><![CDATA[Hello again, this is my new script (of course for Mootools) .
With this script you can have forms with small tips, this tips shows when you clicks in a input or textarea, this one its
great when you  want show information like  &#8216;please write valid email&#8217;  or something like that.
Tips for Mootools its [...]]]></description>
			<content:encoded><![CDATA[<p>Hello again, this is my new script (of course for Mootools) .</p>
<p>With this script you can have forms with small tips, this tips shows when you clicks in a input or textarea, this one its<br />
great when you  want show information like  &#8216;please write valid email&#8217;  or something like that.</p>
<p>Tips for Mootools its a small script, almost  1.5k , easy to do work and inspirated <a href="http://askthecssguy.com">askthecssguy.com</a> &#8217;s script</p>
<p>Example:</p>
<p><a href="http://www.mgarcia.info/examples/hints.html">http://www.mgarcia.info/examples/hints.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mgarcia.info/2007/12/21/mensaje-de-ayuda-o-tips-para-mootools/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
