<?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"
	>

<channel>
	<title>MiscWorld</title>
	<atom:link href="http://andres.jaimes.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://andres.jaimes.net</link>
	<description>A MiscWorld Experience</description>
	<pubDate>Wed, 09 Jun 2010 22:30:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>How to access a Web service from a C# Desktop Application</title>
		<link>http://andres.jaimes.net/2010/02/09/how-to-access-a-web-service-from-a-c-desktop-application/</link>
		<comments>http://andres.jaimes.net/2010/02/09/how-to-access-a-web-service-from-a-c-desktop-application/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 19:56:17 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Dot Net]]></category>

		<category><![CDATA[Web Developer]]></category>

		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/2010/02/09/how-to-access-a-web-service-from-a-c-desktop-application/</guid>
		<description><![CDATA[This project will teach you how to create a C# Desktop Application that uses a Web Service as its backend. You will need Visual Web Developer Express and Visual C# Express.


Step 1: Creating the Web Service
Open Visual Web Developer and go to File &#62; New Project. Under Project Types select Visual C# &#62; Web. Under [...]]]></description>
			<content:encoded><![CDATA[<p>This project will teach you how to create a C# Desktop Application that uses a Web Service as its backend. You will need <a href="http://www.microsoft.com/express/" target="_blank">Visual Web Developer Express and Visual C# Express</a>.</p>
<p><img src="http://andres.jaimes.net/files/2010/02/ws8-thumb.png" border="0" alt="ws8" width="280" height="190" /></p>
<p><span id="more-139"></span></p>
<h2>Step 1: Creating the Web Service</h2>
<p>Open <strong>Visual Web Developer</strong> and go to <strong>File</strong> &gt; <strong>New Project</strong>. Under <strong>Project Types</strong> select <strong>Visual C#</strong> &gt; <strong>Web</strong>. Under Templates select <strong>ASP.NET Web Service Application</strong>. Press the <strong>Ok</strong> button.</p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws1.png"><img src="http://andres.jaimes.net/files/2010/02/ws1-thumb.png" border="0" alt="ws1" width="450" height="358" /></a></p>
<p>By default, Visual Web Developer will create a Web Service and a HelloWorld operation (method) in it that returns a string.</p>
<p>In this example we will add another operation so we learn how to deal with parameters. Add the following code after the HelloWorld operation closing brace:</p>
<pre>[WebMethod]
public int sum(int a, int b)
{
    return a + b;
}</pre>
<p>Notice the <strong>[WebMethod]</strong> annotation. It lets Web Developer know we are adding a web operation and it must do all the required stuff to publish it.</p>
<p>We are now ready to run the web service, so press the start button <a href="http://andres.jaimes.net/files/2010/02/ws2.png"><img src="http://andres.jaimes.net/files/2010/02/ws2-thumb.png" border="0" alt="ws2" width="33" height="29" /></a> and don’t stop it.</p>
<p>Visual Web Developer will open an Internet Explorer window that shows your Web Service description. Copy the URL you see there, since you will use it later. <strong>Don’t close Internet Explorer since that will stop your web service too!</strong></p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws9.png"><img src="http://andres.jaimes.net/files/2010/02/ws9-thumb.png" border="0" alt="ws9" width="400" height="290" /></a></p>
<h2>Step 2: Creating the C# Desktop Application</h2>
<p>Open <strong>Visual C# Express</strong> and go to <strong>File</strong> &gt; <strong>New Project</strong>. Under <strong>Templates</strong> select <strong>Windows Forms Application</strong> and press <strong>Ok</strong>.</p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws3.png"><img src="http://andres.jaimes.net/files/2010/02/ws3-thumb.png" border="0" alt="ws3" width="450" height="328" /></a></p>
<p>Now we will add a reference to our Web Service. In the <strong>Solution Explorer</strong>, right click on <strong>WindowsFormsApplication1</strong> and select <strong>Add Service Reference…</strong></p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws5.png"><img src="http://andres.jaimes.net/files/2010/02/ws5-thumb.png" border="0" alt="ws5" width="394" height="222" /></a></p>
<p>Paste de URL you copied from Internet Explorer in step 1 and press the <strong>Go</strong> button. If everything goes ok, you should see the <strong>HelloWorld</strong> and the <strong>sum</strong> operations listed in this window. Press <strong>Ok</strong> to continue.</p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws6.png"><img src="http://andres.jaimes.net/files/2010/02/ws6-thumb.png" border="0" alt="ws6" width="450" height="412" /></a></p>
<p>You should now have a Reference to your Web Service in your Solution Explorer named <strong>ServiceReference1</strong>.</p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws7.png"><img src="http://andres.jaimes.net/files/2010/02/ws7-thumb.png" border="0" alt="ws7" width="284" height="242" /></a></p>
<p><strong></strong></p>
<p>Now let’s go back to the Windows Form Designer. By default, <strong>Visual C# Express</strong> will create an empty <strong>Windows Form</strong> for you. Using the <strong>Toolbox</strong> add some controls so it looks like the following image:</p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws4.png"><img src="http://andres.jaimes.net/files/2010/02/ws4-thumb.png" border="0" alt="ws4" width="336" height="245" /></a></p>
<p>Double click the <strong>button1</strong> button and add the following code:</p>
<pre>private void button1_Click(object sender, EventArgs e)
{
    ServiceReference1.Service1Soap s = new ServiceReference1.Service1SoapClient();
    label1.Text = "" + s.sum(int.Parse(textBox1.Text), int.Parse(textBox2.Text));
}</pre>
<p>Click the <strong>start</strong> button <a href="http://andres.jaimes.net/files/2010/02/ws2.png"><img src="http://andres.jaimes.net/files/2010/02/ws2-thumb.png" border="0" alt="ws2" width="33" height="29" /></a>to start using your application… write some values in the text boxes and click the sum button. Your application will pass the parameters to the web service and will show you the result.</p>
<p><a href="http://andres.jaimes.net/files/2010/02/ws8.png"><img src="http://andres.jaimes.net/files/2010/02/ws8-thumb.png" border="0" alt="ws8" width="280" height="190" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2010/02/09/how-to-access-a-web-service-from-a-c-desktop-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>asp.net tips and tricks</title>
		<link>http://andres.jaimes.net/2009/08/18/aspnet-tips-and-tricks/</link>
		<comments>http://andres.jaimes.net/2009/08/18/aspnet-tips-and-tricks/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 14:49:24 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=105</guid>
		<description><![CDATA[How to get the username in a web app
Four steps to achieve it:

Use the following code to get the username in your application:
string user = User.Identity.Name.ToString();

Modify your web.config file to include the identity and the authentication tags:
&#60;system.web&#62;        
        &#60;identity impersonate="true" /&#62;
        &#60;authentication mode="Windows"/&#62;
&#60;/system.web&#62;

In IIS right click your application and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to get the username in a web app</strong></p>
<p>Four steps to achieve it:</p>
<ol>
<li>Use the following code to get the username in your application:
<pre>string user = User.Identity.Name.ToString();</pre>
</li>
<li>Modify your web.config file to include the <em>identity</em> and the <em>authentication</em> tags:
<pre>&lt;system.web&gt;        
        &lt;identity impersonate="true" /&gt;
        &lt;authentication mode="Windows"/&gt;
&lt;/system.web&gt;</pre>
</li>
<li>In IIS right click your application and select <em>Properties</em>. Go to the <em>Directory Security</em> tab. Click <em>Edit</em> under <em>Authentication and Access Control</em>. <strong>Uncheck</strong> <em>Enable anonymous access</em> and <strong>check</strong> <em>Integrated Windows authentication</em>. Click Ok to save your changes.</li>
<li>Open Windows Explorer, go to your application folder and modify permissions to allow your users (and not the IIS anonymous user) access your application.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2009/08/18/aspnet-tips-and-tricks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is beauty better than functional?</title>
		<link>http://andres.jaimes.net/2009/03/07/is-beauty-better-than-functional/</link>
		<comments>http://andres.jaimes.net/2009/03/07/is-beauty-better-than-functional/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 04:42:13 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=98</guid>
		<description><![CDATA[
what do you think?
how many times we find ourselves trying to sell a good project that, because of its ugly look, ends in the garbage bin? Do you think an engineer should have some lessons on aesthetics? art? or leave that right minded work to the guy who used to be in ballet lessons at the university?
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-99" src="http://andres.jaimes.net/files/2009/03/stripprint.jpg" alt="" width="500" height="155" /></p>
<p>what do you think?</p>
<p>how many times we find ourselves trying to sell a good project that, because of its ugly look, ends in the garbage bin? Do you think an engineer should have some lessons on aesthetics? art? or leave that right minded work to the guy who used to be in ballet lessons at the university?</p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2009/03/07/is-beauty-better-than-functional/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tabs, Shortcuts and Internet Explorer</title>
		<link>http://andres.jaimes.net/2009/02/05/tabs-shortcuts-and-internet-explorer/</link>
		<comments>http://andres.jaimes.net/2009/02/05/tabs-shortcuts-and-internet-explorer/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 21:34:50 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=91</guid>
		<description><![CDATA[Have you read the information that shows up when you click the &#8220;new tab&#8221; button in IE? I think I did it once when I tried for the first time this tabbed IE, and never took a look at it again. Until yesterday. I just read it and surprised me because it contains a useful list of shortcuts for managing tabs. Many of [...]]]></description>
			<content:encoded><![CDATA[<p>Have you read the information that shows up when you click the &#8220;new tab&#8221; button in IE? I think I did it once when I tried for the first time this tabbed IE, and never took a look at it again. Until yesterday. I just read it and surprised me because it contains a useful list of shortcuts for managing tabs. Many of them remind me the way <a title="Opera Browser" href="http://www.opera.com" target="_blank">Opera</a> works, but there are a few new.</p>
<p> <strong><span style="font-size: 8pt;font-family: Verdana">Keyboard shortcuts</span></strong><span style="font-size: 8pt;font-family: Verdana"> </span></p>
<table class="MsoNormalTable" style="width: 100%" border="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td style="width: 45%;border: #ece9d8;padding: 0.75pt" width="45%" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open links in a new tab in the background </span></p>
</td>
<td style="width: 55%;border: #ece9d8;padding: 0.75pt" width="55%" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+click </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open links in a new tab in the foreground </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+SHIFT+click </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open a new tab in the foreground </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+T </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open a new tab from the Address bar </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">ALT+ENTER </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open a new tab from the search box </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">ALT+ENTER </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open Quick Tabs (thumbnail view) </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+Q </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Switch between tabs </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+TAB/CTRL+SHIFT+TAB </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Switch to a specific tab number </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+<em>n</em> (<em>n</em> can be 1-8) </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Switch to the last tab </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+9 </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Close current tab </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+W </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Close all tabs </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">ALT+F4 </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Close other tabs </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">CTRL+ALT+F4 </span></p>
</td>
</tr>
</tbody>
</table>
<p><strong><span style="font-size: 8pt;font-family: Verdana">Mouse shortcuts</span></strong><span style="font-size: 8pt;font-family: Verdana"> </span></p>
<table class="MsoNormalTable" style="width: 100%" border="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td style="width: 45%;border: #ece9d8;padding: 0.75pt" width="45%" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open a link in a background tab </span></p>
</td>
<td style="width: 55%;border: #ece9d8;padding: 0.75pt" width="55%" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Click the middle mouse button on a link </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Open a new tab </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Double-click the empty space to the right of the last tab </span></p>
</td>
</tr>
<tr>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Close a tab </span></p>
</td>
<td style="border: #ece9d8;padding: 0.75pt" valign="top">
<p class="MsoNormal" style="margin: 0cm 0cm 0pt"><span style="font-size: 8pt;font-family: Verdana">Click the middle mouse button on the tab </span></p>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2009/02/05/tabs-shortcuts-and-internet-explorer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>About this new year&#8230;</title>
		<link>http://andres.jaimes.net/2009/01/12/year2009/</link>
		<comments>http://andres.jaimes.net/2009/01/12/year2009/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 18:26:21 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=85</guid>
		<description><![CDATA[Hello all.
Since November I have been using the Microsoft 2008 Express Suite. Nice suite, but a big change since these last months I was only on the Java side. C# is one of those languages you can easily fall in love with.
Most of the applications I&#8217;m developing are for web, and it has been a [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all.</p>
<p>Since November I have been using the Microsoft 2008 Express Suite. Nice suite, but a big change since these last months I was only on the Java side. C# is one of those languages you can easily fall in love with.</p>
<p>Most of the applications I&#8217;m developing are for web, and it has been a great opportunity to use some of the DHTML libraries I&#8217;ve found on the web to create those new fancy interfaces. From accordions to drag and drop everything seemed so nice&#8230; until I faced the challenge to create a full Outlook-like calendar. I have been three or four days testing different libraries, and I&#8217;m afraid I will have to create it from the ground up. I&#8217;m very lazy for JavaScript programming&#8230; and specially if I have to integrate it with an existing library, including objects and events and all that stuff&#8230; uff, anyway&#8230; I think it&#8217;s time to start programming&#8230; or pushing the creative neuron further&#8230; <img src='http://andres.jaimes.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2009/01/12/year2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dilbert</title>
		<link>http://andres.jaimes.net/2008/10/17/dilbert/</link>
		<comments>http://andres.jaimes.net/2008/10/17/dilbert/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 16:04:11 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=83</guid>
		<description><![CDATA[I love Dilbert!

]]></description>
			<content:encoded><![CDATA[<p>I love Dilbert!</p>
<p><a href="http://andres.jaimes.net/files/2008/10/28236_strip_print.gif"><img class="alignnone size-medium wp-image-84" src="http://andres.jaimes.net/files/2008/10/28236_strip_print-300x93.gif" alt="" width="300" height="93" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2008/10/17/dilbert/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox cannot load &#8220;localhost&#8221;, while IE can</title>
		<link>http://andres.jaimes.net/2008/08/24/firefox-cannot-load-localhost-while-ie-can/</link>
		<comments>http://andres.jaimes.net/2008/08/24/firefox-cannot-load-localhost-while-ie-can/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 17:56:55 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=82</guid>
		<description><![CDATA[I installed IIS on a reformatted computer and when trying to access the home page using Firefox I was asked for my username and password. After many tries and permission checkings (check this first!) I used IE and it worked… I googled a little bit and found this solution:
1. Open up Firefox and type about:config [...]]]></description>
			<content:encoded><![CDATA[<p>I installed IIS on a reformatted computer and when trying to access the home page using Firefox I was asked for my username and password. After many tries and permission checkings (check this first!) I used IE and it worked… I googled a little bit and found this solution:</p>
<p>1. Open up Firefox and type <strong>about:config</strong> in the url field</p>
<p>2. In the Filter Type in <strong>ntlm</strong></p>
<p>3. Double click “<strong>network.automatic-ntlm-auth.trusted-uris</strong>” and type in <strong>localhost </strong>and hit enter</p>
<p>After I did that everything worked ok.</p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2008/08/24/firefox-cannot-load-localhost-while-ie-can/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Server Upgrade</title>
		<link>http://andres.jaimes.net/2008/05/26/server-upgrade/</link>
		<comments>http://andres.jaimes.net/2008/05/26/server-upgrade/#comments</comments>
		<pubDate>Mon, 26 May 2008 21:46:56 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andres.jaimes.net/?p=40</guid>
		<description><![CDATA[Last sunday I upgraded my website software&#8230; phew!, It was a long task, but final result was very pleasant :-). Right now it&#8217;s running on Wordpress 1.5. Very nice. One major change was the use of subdomains instead of subdirectories. I pretend to keep all blogs cleaner by putting each one in its own subdomain [...]]]></description>
			<content:encoded><![CDATA[<p>Last sunday I upgraded my website software&#8230; phew!, It was a long task, but final result was very pleasant :-). Right now it&#8217;s running on Wordpress 1.5. Very nice. One major change was the use of subdomains instead of subdirectories. I pretend to keep all blogs cleaner by putting each one in its own subdomain space. The price is some broken links on the net ;-)&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2008/05/26/server-upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My papaya tree</title>
		<link>http://andres.jaimes.net/2008/05/04/my-papaya-tree/</link>
		<comments>http://andres.jaimes.net/2008/05/04/my-papaya-tree/#comments</comments>
		<pubDate>Sun, 04 May 2008 22:28:06 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jaimes.net/andres/2008/05/04/my-papaya-tree/</guid>
		<description><![CDATA[This tree is in my garden&#8230; yummi, yummi

]]></description>
			<content:encoded><![CDATA[<p>This tree is in my garden&#8230; yummi, yummi</p>
<p><img class="alignnone size-full wp-image-37" src="http://andres.jaimes.net/files/2008/05/papaya-tree.jpg" alt="Papaya tree" width="450" height="338" /></p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2008/05/04/my-papaya-tree/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logo contest and Xara</title>
		<link>http://andres.jaimes.net/2008/05/04/a-logo-using-xara/</link>
		<comments>http://andres.jaimes.net/2008/05/04/a-logo-using-xara/#comments</comments>
		<pubDate>Sun, 04 May 2008 22:22:14 +0000</pubDate>
		<dc:creator>andres</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jaimes.net/andres/2008/05/04/a-logo-using-xara/</guid>
		<description><![CDATA[Two months ago I designed this logo for an internal company product contest. I didn&#8217;t win, but I learned a lot. Xara made the work very simple, and well&#8230; hope you like it as much as I do&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Two months ago I designed this logo for an internal company product contest. I didn&#8217;t win, but I learned a lot. Xara made the work very simple, and well&#8230; hope you like it as much as I do&#8230;</p>
<p><img class="alignnone size-full wp-image-38" src="http://andres.jaimes.net/files/2008/05/magellan.png" alt="Magellan Logo" width="400" height="324" /></p>
]]></content:encoded>
			<wfw:commentRss>http://andres.jaimes.net/2008/05/04/a-logo-using-xara/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
