<?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>the jackol's den</title>
	<atom:link href="http://www.thejackol.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thejackol.com</link>
	<description>01100010 01101100 01100101 01101000</description>
	<lastBuildDate>Mon, 22 Jun 2009 20:01:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ASP.NET AJAX CalendarExtender losing styles</title>
		<link>http://www.thejackol.com/2009/06/23/asp-net-ajax-calendarextender-losing-styles/</link>
		<comments>http://www.thejackol.com/2009/06/23/asp-net-ajax-calendarextender-losing-styles/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:01:35 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[C#/.NET]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=605</guid>
		<description><![CDATA[	If the AJAX CalendarExtender control shows up without any style information or in the wrong places, the simplest solution is to copy the original CSS for the Calendar&#8217;s default style (located at AjaxControlToolkit\Calendar\Calendar.css into your application&#8217;s CSS file. Also make sure the CssClass property is not defined in your CalendarExtender. The actual content of the [...]]]></description>
			<content:encoded><![CDATA[	<p>If the <span class="caps">AJAX</span> CalendarExtender control shows up without any style information or in the wrong places, the simplest solution is to copy the original <span class="caps">CSS</span> for the Calendar&#8217;s default style (located at <code>AjaxControlToolkit\Calendar\Calendar.css</code> into your application&#8217;s <span class="caps">CSS</span> file. Also make sure the <code>CssClass</code> property is not defined in your <code>CalendarExtender</code>. The actual content of the default Calendar style is below:</p>

<pre><code>.ajax__calendar_container {padding:4px;position:absolute;cursor:default;width:170px;
    font-size:11px;text-align:center;font-family:tahoma,verdana,helvetica;}
.ajax__calendar_body {height:139px;width:170px;position:relative;overflow:hidden;
    margin:auto;}
.ajax__calendar_days, .ajax__calendar_months, .ajax__calendar_years {top:0px;left:0px;
    height:139px;width:170px;position:absolute;text-align:center;margin:auto;}
.ajax__calendar_container TABLE {font-size:11px;}
.ajax__calendar_header {height:20px;width:100%;}
.ajax__calendar_prev {cursor:pointer;width:15px;height:15px;float:left;
    background-repeat:no-repeat;background-position:50% 50%;
    background-image:url(&#60; %=WebResource(&#34;AjaxControlToolkit.Calendar.arrow-left.gif&#34;)%&#62;);}
.ajax__calendar_next {cursor:pointer;width:15px;height:15px;float:right;
    background-repeat:no-repeat;background-position:50% 50%;
    background-image:url(&#60; %=WebResource(&#34;AjaxControlToolkit.Calendar.arrow-right.gif&#34;)%&#62;);}
.ajax__calendar_title {cursor:pointer;font-weight:bold;}
.ajax__calendar_footer {height:15px;}
.ajax__calendar_today {cursor:pointer;padding-top:3px;}
.ajax__calendar_dayname {height:17px;width:17px;text-align:right;padding:0 2px;}
.ajax__calendar_day {height:17px;width:18px;text-align:right;padding:0 2px;cursor:pointer;}
.ajax__calendar_month {height:44px;width:40px;text-align:center;cursor:pointer;overflow:hidden;}
.ajax__calendar_year {height:44px;width:40px;text-align:center;cursor:pointer;overflow:hidden;}
</code>
<code>.ajax__calendar .ajax__calendar_container {border:1px solid #646464;background-color:#ffffff;
    color:#000000;}
.ajax__calendar .ajax__calendar_footer {border-top:1px solid #f5f5f5;}
.ajax__calendar .ajax__calendar_dayname {border-bottom:1px solid #f5f5f5;}
.ajax__calendar .ajax__calendar_day {border:1px solid #ffffff;}
.ajax__calendar .ajax__calendar_month {border:1px solid #ffffff;}
.ajax__calendar .ajax__calendar_year {border:1px solid #ffffff;}
</code>
<code>.ajax__calendar .ajax__calendar_active .ajax__calendar_day {background-color:#edf9ff;
    border-color:#0066cc;color:#0066cc;}
.ajax__calendar .ajax__calendar_active .ajax__calendar_month {background-color:#edf9ff;
    border-color:#0066cc;color:#0066cc;}
.ajax__calendar .ajax__calendar_active .ajax__calendar_year {background-color:#edf9ff;
    border-color:#0066cc;color:#0066cc;}
</code>
<code>.ajax__calendar .ajax__calendar_other .ajax__calendar_day {background-color:#ffffff;
    border-color:#ffffff;color:#646464;}
.ajax__calendar .ajax__calendar_other .ajax__calendar_year {background-color:#ffffff;
    border-color:#ffffff;color:#646464;}
</code>
<code>.ajax__calendar .ajax__calendar_hover .ajax__calendar_day {background-color:#edf9ff;
    border-color:#daf2fc;color:#0066cc;}
.ajax__calendar .ajax__calendar_hover .ajax__calendar_month {background-color:#edf9ff;
    border-color:#daf2fc;color:#0066cc;}
.ajax__calendar .ajax__calendar_hover .ajax__calendar_year {background-color:#edf9ff;
    border-color:#daf2fc;color:#0066cc;}
</code>
<code>.ajax__calendar .ajax__calendar_hover .ajax__calendar_title {color:#0066cc;}
.ajax__calendar .ajax__calendar_hover .ajax__calendar_today {color:#0066cc;}
</code></pre>

	<p>#</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F06%2F23%2Fasp-net-ajax-calendarextender-losing-styles%2F&amp;linkname=ASP.NET%20AJAX%20CalendarExtender%20losing%20styles" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/06/23/asp-net-ajax-calendarextender-losing-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Designers Should Learn How to Code</title>
		<link>http://www.thejackol.com/2009/06/13/why-designers-should-learn-how-to-code/</link>
		<comments>http://www.thejackol.com/2009/06/13/why-designers-should-learn-how-to-code/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 12:31:09 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=603</guid>
		<description><![CDATA[	
		More often than not, designers have rightfully been accused of retreating into their cocoons of ignorance as soon as their work of creating a web design is finished, leaving the dirty and more hands-on work of putting it up on the web to developers. This apathy is prevalent not only in the web-building industry, but [...]]]></description>
			<content:encoded><![CDATA[	<blockquote>
		<p>More often than not, designers have rightfully been accused of retreating into their cocoons of ignorance as soon as their work of creating a web design is finished, leaving the dirty and more hands-on work of putting it up on the web to developers. This apathy is prevalent not only in the web-building industry, but also in software and game engineering.</p>
		<p>The hard truth is that the <strong>buck of development should stop with designers</strong>. For optimum efficiency, designers should not only be concerned with painting the bigger picture but also building it! In this article, I’d like to share with you some reasons why designers should learn how to code.</p>
	</blockquote>

	<p><a href="http://sixrevisions.com/web_design/why-designers-should-learn-how-to-code/">Read more</a></p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F06%2F13%2Fwhy-designers-should-learn-how-to-code%2F&amp;linkname=Why%20Designers%20Should%20Learn%20How%20to%20Code" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/06/13/why-designers-should-learn-how-to-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t negotiate on your estimates</title>
		<link>http://www.thejackol.com/2009/06/08/dont-negotiate-on-your-estimates/</link>
		<comments>http://www.thejackol.com/2009/06/08/dont-negotiate-on-your-estimates/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 15:25:10 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=600</guid>
		<description><![CDATA[	
		My dad made a remark once that if you want to be good in sales, you can&#8217;t just believe that the glass is half full. You have to say with a straight face that a half-full glass is better than a completely full glass.
		Anyhow, my shop has generally good relationships between the technical team and [...]]]></description>
			<content:encoded><![CDATA[	<blockquote>
		<p>My dad made a remark once that if you want to be good in sales, you can&#8217;t just believe that the glass is half full. You have to say with a straight face that a half-full glass is better than a completely full glass.</p>
		<p>Anyhow, my shop has generally good relationships between the technical team and the sales team. There&#8217;s one thing that drives me nuts though: when we discuss priority and they try to negotiate with me on my estimates.</p>
	</blockquote>

	<p><a href="http://blog.tplus1.com/index.php/2009/06/07/dont-negotiate-on-your-estimates/">Read more</a></p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F06%2F08%2Fdont-negotiate-on-your-estimates%2F&amp;linkname=Don%26%238217%3Bt%20negotiate%20on%20your%20estimates" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/06/08/dont-negotiate-on-your-estimates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get LINQ to SQL results into a DataTable</title>
		<link>http://www.thejackol.com/2009/06/02/get-linq-to-sql-results-into-a-datatable/</link>
		<comments>http://www.thejackol.com/2009/06/02/get-linq-to-sql-results-into-a-datatable/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 08:33:09 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[C#/.NET]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[linq]]></category>
		<category><![CDATA[linq to sql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=594</guid>
		<description><![CDATA[	There are two ways to get LINQ to SQL results into a DataTable, as explained here.

	I use Sample II:

public DataTable ToDataTable(System.Data.Linq.DataContext ctx, object query)
{
     if (query == null)
     {
          throw new ArgumentNullException(&#34;query&#34;);
     }

  [...]]]></description>
			<content:encoded><![CDATA[	<p>There are two ways to get <span class="caps">LINQ</span> to <span class="caps">SQL</span> results into a DataTable, <a href="http://www.c-sharpcorner.com/UploadFile/VIMAL.LAKHERA/LINQResultsetToDatatable06242008042629AM/LINQResultsetToDatatable.aspx" ref="external nofollow">as explained here</a>.</p>

	<p>I use Sample II:</p>

<pre><code>public DataTable ToDataTable(System.Data.Linq.DataContext ctx, object query)
{
     if (query == null)
     {
          throw new ArgumentNullException(&#34;query&#34;);
     }
</code>
<code>     IDbCommand cmd = ctx.GetCommand(query as IQueryable);
     SqlDataAdapter adapter = new SqlDataAdapter();
     adapter.SelectCommand = (SqlCommand)cmd;
     DataTable dt = new DataTable(&#34;sd&#34;);
</code>
<code>     try
     {
          cmd.Connection.Open();
          adapter.FillSchema(dt, SchemaType.Source); 
          adapter.Fill(dt);
     }
     finally
     {
          cmd.Connection.Close();
     }
     return dt;
}
</code></pre>

	<p>//</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F06%2F02%2Fget-linq-to-sql-results-into-a-datatable%2F&amp;linkname=Get%20LINQ%20to%20SQL%20results%20into%20a%20DataTable" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/06/02/get-linq-to-sql-results-into-a-datatable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error 1606 when configuring an IIS website</title>
		<link>http://www.thejackol.com/2009/04/02/error-1606-when-configuring-an-iis-website/</link>
		<comments>http://www.thejackol.com/2009/04/02/error-1606-when-configuring-an-iis-website/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 14:31:21 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=586</guid>
		<description><![CDATA[	When installing an IIS application on Vista, you may receive the following error:

Error 1606. Could not access network location %SystemDrive%\inetpub\wwwroot\


	To correct this error, you will need to make a quick change in the registry:

	
		Make a backup of your registry.
		Start &#124; Run &#124; regedit
		Browse to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp using regedit
	
	
		Change the key PathWWWRoot to read &#8220;@C:\inetpub\wwwroot@&#8221; (your default [...]]]></description>
			<content:encoded><![CDATA[	<p>When installing an <span class="caps">IIS</span> application on Vista, you may receive the following error:</p>

<pre><code>Error 1606. Could not access network location %SystemDrive%\inetpub\wwwroot\
</code></pre>

	<p>To correct this error, you will need to make a quick change in the registry:</p>

	<ol>
		<li>Make a backup of your registry.</li>
		<li>Start | Run | regedit</li>
		<li>Browse to <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp</code> using regedit</li>
	</ol>
	<ol>
		<li>Change the key <code>PathWWWRoot</code> to read &#8220;@C:\inetpub\wwwroot@&#8221; (your default website location in <span class="caps">IIS</span>) instead of <code>%SystemDrive%\inetpub\wwwroot</code></li>
	</ol><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F04%2F02%2Ferror-1606-when-configuring-an-iis-website%2F&amp;linkname=Error%201606%20when%20configuring%20an%20IIS%20website" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/04/02/error-1606-when-configuring-an-iis-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The four stages of programming competence</title>
		<link>http://www.thejackol.com/2009/03/27/the-four-stages-of-programming-competence/</link>
		<comments>http://www.thejackol.com/2009/03/27/the-four-stages-of-programming-competence/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 13:32:45 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=581</guid>
		<description><![CDATA[	
		One of the basic pillars of the study of human psychology is the analysis of the subconscious and conscious mind. Sigmund Freud was one of the first to clearly identify and characterize the &#8216;areas&#8217; where our psychic energy flows. During the first part of his notable life he stated that these were the &#8216;subconscious&#8217;, &#8216;preconscious&#8217; [...]]]></description>
			<content:encoded><![CDATA[	<blockquote>
		<p>One of the basic pillars of the study of human psychology is the analysis of the subconscious and conscious mind. Sigmund Freud was one of the first to clearly identify and characterize the &#8216;areas&#8217; where our psychic energy flows. During the first part of his notable life he stated that these were the &#8216;subconscious&#8217;, &#8216;preconscious&#8217; and &#8216;conscious&#8217; mind.</p>
		<p>If we wanted to get an idea of how each of them is involved in our ideas, feelings, thoughts, decisions and motivation (which are key in our daily and professional lives), we should picture ourselves as an iceberg. The tip of the iceberg, the only part we see from the surface, is the conscious mind. It&#8217;s logical, organized, and we can control it, but still small. The vast and voluminous underlying mass is the unconscious mind. It&#8217;s disorganized, illogical, irrational, but defining in how we act.</p>
		<p>Modern psychology has attempted to classify how good we are at a certain skill by observing how deep it perforates that iceberg. It thus describes four stages of competence an individual can achieve. In this article I&#8217;ll try to apply this simple scheme to the skill we practice everyday: programming.</p>
	</blockquote>

	<p><a href="http://devthought.com/blog/general/2009/02/the-four-stages-of-programming-competence/">Read more</a></p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F03%2F27%2Fthe-four-stages-of-programming-competence%2F&amp;linkname=The%20four%20stages%20of%20programming%20competence" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/03/27/the-four-stages-of-programming-competence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MKCOL &#8230; 405 Method Not Allowed Subversion error</title>
		<link>http://www.thejackol.com/2009/03/24/mkcol-405-method-not-allowed-subversion-error/</link>
		<comments>http://www.thejackol.com/2009/03/24/mkcol-405-method-not-allowed-subversion-error/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 16:20:35 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[source control]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tortoisesvn]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=579</guid>
		<description><![CDATA[	I use DreamHost to store and manage all my Subversion repositories. When trying to commit a while back, I got this strange error:

svn: Commit failed (details follow):
svn: MKCOL of &#39;.../images&#39;: 405 Method Not Allowed


	Searching around, I managed to find a couple of reasons this could occur &#8212; wrong charset or a connectivity problem (proxy discarding [...]]]></description>
			<content:encoded><![CDATA[	<p>I use <a href="http://www.dreamhost.com/r.cgi?143924">DreamHost</a> to store and manage all my Subversion repositories. When trying to commit a while back, I got this strange error:</p>

<pre><code>svn: Commit failed (details follow):
svn: MKCOL of &#39;.../images&#39;: 405 Method Not Allowed
</code></pre>

	<p>Searching around, I managed to find a couple of reasons this could occur &#8212; wrong charset or a connectivity problem (proxy discarding the <code>MKCOL</code> command). I&#8217;m not behind a proxy so I tried passing a <code>charset</code> parameter but that didn&#8217;t really help.</p>

	<p>What finally helped was deleting the problematic &#8220;images&#8221; directory in the repository and re-commiting the directory. I use TortoiseSVN so it was as simple as using the Repo-Browser, right-clicking on the problematic directory and deleting it. The commit went through just fine after this.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F03%2F24%2Fmkcol-405-method-not-allowed-subversion-error%2F&amp;linkname=MKCOL%20%26%238230%3B%20405%20Method%20Not%20Allowed%20Subversion%20error" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/03/24/mkcol-405-method-not-allowed-subversion-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exclude Spotlight from indexing External Drives and folders</title>
		<link>http://www.thejackol.com/2009/03/19/exclude-spotlight-osx-external-drives-folders/</link>
		<comments>http://www.thejackol.com/2009/03/19/exclude-spotlight-osx-external-drives-folders/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 12:17:07 +0000</pubDate>
		<dc:creator>Mikhail Esteves</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[10.5.6]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[spotlight]]></category>

		<guid isPermaLink="false">http://www.thejackol.com/?p=573</guid>
		<description><![CDATA[	Getting Spotlight to skip indexing particular folders in a fixed drive is as simple as dragging the folders into Spotlight&#8217;s Privacy Settings tab. However, in order to get Spotlight to stop indexing external drives (USB drives, external hard disks, etc), the Privacy Settings tab only disables it temporarily &#8211; when you remount the volume, indexing [...]]]></description>
			<content:encoded><![CDATA[	<p>Getting Spotlight to skip indexing particular folders in a fixed drive is as simple as dragging the folders into Spotlight&#8217;s Privacy Settings tab. However, in order to get Spotlight to stop indexing external drives (<span class="caps">USB</span> drives, external hard disks, etc), the Privacy Settings tab only disables it temporarily &#8211; when you remount the volume, indexing begins again.</p>

	<p>To avoid Spotlight from indexing an entire volume, create an empty file named <code>.metadata_never_index</code> in the root folder of the volume. If your volume is called <code>MYDATA</code>, for example, open up Terminal and type:</p>

<pre><code>$ touch /Volumes/MYDATA/.metadata_never_index
</code></pre>

	<p>Spotlight should now skip indexing this volume &#8211; as long as this file exists.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.thejackol.com%2F2009%2F03%2F19%2Fexclude-spotlight-osx-external-drives-folders%2F&amp;linkname=Exclude%20Spotlight%20from%20indexing%20External%20Drives%20and%20folders" target="_blank"><img src="http://www.thejackol.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.thejackol.com/2009/03/19/exclude-spotlight-osx-external-drives-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
