<?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>altrugon.com &#187; Web development</title>
	<atom:link href="http://www.altrugon.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.altrugon.com</link>
	<description>El blog de altrugon</description>
	<lastBuildDate>Fri, 10 Dec 2010 22:15:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to display an icon for broken images in Firefox</title>
		<link>http://www.altrugon.com/browsers/how-to-display-an-icon-for-broken-images-in-firefox/</link>
		<comments>http://www.altrugon.com/browsers/how-to-display-an-icon-for-broken-images-in-firefox/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 20:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.altrugon.com/?p=378</guid>
		<description><![CDATA[Many browsers display an icon for broken images, even Firefox, but for some reason some times Firefox doesn't do it. So, how can obligate Firefox to display an icon for broken images?

The solution is inside...]]></description>
			<content:encoded><![CDATA[<p>The first part is make sure your <strong>browser.display.show_image_placeholders</strong> variable is set to <em>true</em> in your config file. To do this type <strong>about:config</strong> in the address bar of the browser, hit enter, and then do a search for this variable. A double click will change the value of the variable.</p>
<p>If you still can&#8217;t see the icon despite the fact that <strong>browser.display.show_image_placeholders</strong> is set to <em>true</em> then you need to follow this steps:</p>
<ul>
<li>Go to the <a href="http://kb.mozillazine.org/Profile_folder_-_Firefox#Finding_the_profile_folder">Firefox profile folder</a>.</li>
<li>Go into the user folder found there.</li>
<li>Go into the <em>chrome</em>. folder</li>
<li>Duplicate the file <em>userContent-example.css</em> and save it as <em>userContent.css</em></li>
<li>Open a text editor and paste the following code:
<pre><code>/*
 * Show image placeholders
 */
@-moz-document url-prefix(http), url-prefix(file) {
  img:-moz-broken{
    -moz-force-broken-image-icon:1;
    width:24px;
    height:24px;
  }
}
</code></pre>
</li>
<li>Save the file and restart Firefox</li>
</ul>
<p>On Mac Os X the path to the css file would look something like this:<br />
<strong>/Users/<username>/Library/Application\ Support/Firefox/Profiles/
<profile folder>/chrome/userContent-example.css</strong></p>
<p>I hope this had solved your problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.altrugon.com/browsers/how-to-display-an-icon-for-broken-images-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips, Tricks, and Applications</title>
		<link>http://www.altrugon.com/mac-os-x/tips-tricks-and-applications-consejos-trucos-y-aplicaciones/</link>
		<comments>http://www.altrugon.com/mac-os-x/tips-tricks-and-applications-consejos-trucos-y-aplicaciones/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:36:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac Os X]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[tips & tricks]]></category>

		<guid isPermaLink="false">http://www.altrugon.com/?p=313</guid>
		<description><![CDATA[Everything that make our life easier is always welcome, that&#8217;s why I have created this page. I pretend to collect some of all those &#8220;Tips, Tricks, and Applications&#8221; that I used to make my work journey Applications Coda is more than a text editor and is the second most used application in my computer (is [...]]]></description>
			<content:encoded><![CDATA[<p>Everything that make our life easier is always welcome, that&#8217;s why I have created this page. I pretend to collect some of all those &#8220;Tips, Tricks, and Applications&#8221; that I used to make my work journey <img src='http://www.altrugon.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Applications</h3>
<ul>
<li><a href="http://www.panic.com/coda/" target="_blank">Coda</a> is more than a text editor and is the second most used application in my computer (is difficult to beat browser&#8217;s first position)</li>
<li><a href="http://cocoaapp.com/products/dockables/">Dockables</a>: With a simple click of your mouse you can lock your screen, backup your time machine, go to sleep mode, and more&#8230;</li>
</ul>
<h3>Tips &amp; Tricks</h3>
<ul>
<li>Here is a nice collectios of <a href="http://www.mactricksandtips.com/2008/09/32-coda-tips-and-tricks.html" target="_blank">Tips &amp; Tricks for Coda</a>.</li>
<li>A very handy <a href="http://marcgrabanski.com/article/list-of-useful-jquery-plugins">jQuery Plugins list</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.altrugon.com/mac-os-x/tips-tricks-and-applications-consejos-trucos-y-aplicaciones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add multiple files to SVN</title>
		<link>http://www.altrugon.com/web-development/how-to-add-multiple-files-to-svncomo-anadir-varios-archivos-a-svn/</link>
		<comments>http://www.altrugon.com/web-development/how-to-add-multiple-files-to-svncomo-anadir-varios-archivos-a-svn/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 17:00:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[añadir varios ficheros a svn]]></category>
		<category><![CDATA[add multiple files to svn]]></category>
		<category><![CDATA[adding multiple files to svn]]></category>
		<category><![CDATA[svn add]]></category>

		<guid isPermaLink="false">http://www.altrugon.com/?p=269</guid>
		<description><![CDATA[We all know that when you want to add multiple files to the SVN repository you need to specified each one of those files, something like this: svn add file1 file2 dir3/file3 But what happen when what you need is to add all those files that are not under revision yet? Well, in that case [...]]]></description>
			<content:encoded><![CDATA[<p>We all know that when you want to add multiple files to the SVN repository you need to specified each one of those files, something like this:</p>
<pre><code>svn add file1 file2 dir3/file3</code></pre>
<p>But what happen when what you need is to add all those files that are not under revision yet?</p>
<p>Well, in that case we have this solutions:</p>
<pre><code>svn add $( svn st | grep "^?" | awk '{print $2}' )</code></pre>
<p>I hope this make a little bit easier your working days.</p>
<p><strong>Update:</strong> I have found this other option that is shorter and easier to remember.</p>
<pre><code>svn add * --force</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.altrugon.com/web-development/how-to-add-multiple-files-to-svncomo-anadir-varios-archivos-a-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

