<?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>In Search of a Good Title</title>
	<atom:link href="http://curtis.humphreyonline.us/feed" rel="self" type="application/rss+xml" />
	<link>http://curtis.humphreyonline.us</link>
	<description>Curtis M. Humphrey's Website</description>
	<lastBuildDate>Wed, 02 Jun 2010 17:04:44 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>html tags that cannot accept css in Actionscript 3</title>
		<link>http://curtis.humphreyonline.us/code/actionscript/html-tags-that-cannot-accept-css-in-actionscript-3</link>
		<comments>http://curtis.humphreyonline.us/code/actionscript/html-tags-that-cannot-accept-css-in-actionscript-3#comments</comments>
		<pubDate>Wed, 02 Jun 2010 17:04:44 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Actionscipt/Flash]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=266</guid>
		<description><![CDATA[Painful! Painful! It amazes me how little effort is sometimes put into documentation and today I found another example in Actionscript 3.0. (This is another reason I love codeigniter: great user-friendly manual! but that is another story). The actionscript goal was as follows: to change text characteristics by applying css to a textField. I was [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Painful! Painful! It amazes me how little effort is sometimes put into documentation and today I found another example in Actionscript 3.0. (This is another reason I love codeigniter: great user-friendly <a href="http://codeigniter.com/user_guide/">manual</a>! but that is another story). The actionscript goal was as follows: to change text characteristics by applying css to a textField. I was thinking I would use the &#8220;b&#8221; and &#8220;i&#8221; tags (old school bold and italics) as my target tags. The only problem was that when applied nothing happened. Nothing, the &#8220;b&#8221; and &#8220;i&#8221; tags retained their original styling and my css was as if it was not applied. I spent time checking to make sure I applied it, time checking to make sure the tags where really there, and time looking through the manual to discover anything&#8230;</p>
<p>The tests proved that the tags where there and that the css was applied but I was still having the issue. So I just tried other tags and to my slight surprise the other tags worked. It appears that actionscript will not style &#8220;b&#8221; and &#8220;i&#8221; tags but will style &#8220;em&#8221; and &#8220;strong&#8221; tags. It will still interpet the &#8220;b&#8221; and &#8220;i&#8221; tags and apply their default styling it just will not let you overwrite those defaults with css. Sounds like either a bug or an undocumented exclusion&#8230; Either way very annoing and the manual is very unfriendly and slow. In fact online help through their livdocs was faster than through the program&#8230; Great manuals designed to be usable make or break software in the long run and this cannot be a good sign for Adobe. I&#8217;ve been playing/using flash since 2000 and their CS5 manual/help is much worse in terms of usability than their help was in 2000.</p>
<p>If you want to see a demo showing this issue try out the code below:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">...
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> newStyle:StyleSheet = <span style="color: #000000; font-weight: bold;">new</span> StyleSheet<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> styleObj:<span style="color: #0066CC;">Object</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
styleObj.<span style="color: #006600;">fontStyle</span> = <span style="color: #ff0000;">'normal'</span>;
styleObj.<span style="color: #0066CC;">color</span> = <span style="color: #ff0000;">'#660066'</span>;
styleObj.<span style="color: #006600;">display</span> = <span style="color: #ff0000;">'inline'</span>;
&nbsp;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;b&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;i&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;strong&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;em&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
&nbsp;
text_field.<span style="color: #006600;">styleSheet</span> = newStyle;
text_field.<span style="color: #0066CC;">htmlText</span> = <span style="color: #ff0000;">'&lt;b&gt;Hi&lt;/b&gt; &lt;i&gt;World!&lt;/i&gt; &lt;strong&gt;Hi&lt;/strong&gt; &lt;em&gt;World!&lt;/em&gt;'</span>;
&nbsp;
...</pre></div></div>

<p>The output should look something like this:<br />
<b>Hi</b> <i>World!</i> <strong style="color:#660066">Hi</strong> <em style="color:#660066"; font-style:normal">World!</em></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/code/actionscript/html-tags-that-cannot-accept-css-in-actionscript-3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress, PHP Memory, and 1and1.com part 2</title>
		<link>http://curtis.humphreyonline.us/code/wordpress/wordpress-php-memory-and-1and1-com-part-2</link>
		<comments>http://curtis.humphreyonline.us/code/wordpress/wordpress-php-memory-and-1and1-com-part-2#comments</comments>
		<pubDate>Mon, 26 Oct 2009 21:51:38 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=258</guid>
		<description><![CDATA[It has been some time since the first post on this subject on Mar 4, 2009. I had concluded that the issue was a silent failure (i.e., there is no direct feedback) of not enough PHP memory to run Wordpress with several plugins on 1and1. I like running plugins and therefore this situation was unacceptable. [...]


Related posts:<ol><li><a href='http://curtis.humphreyonline.us/code/wordpress/wordpress-php-memory-and-1and1com' rel='bookmark' title='Permanent Link: Wordpress, PHP Memory, and 1and1.com'>Wordpress, PHP Memory, and 1and1.com</a></li>
<li><a href='http://curtis.humphreyonline.us/code/wordpress/upgrading-to-wordpress-2-7-1' rel='bookmark' title='Permanent Link: Upgrading Wordpress to 2.7.1'>Upgrading Wordpress to 2.7.1</a></li>
<li><a href='http://curtis.humphreyonline.us/wordpress-plugins-in-use' rel='bookmark' title='Permanent Link: Wordpress Plugins in Use'>Wordpress Plugins in Use</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-260" title="MediaTemple logo" src="http://curtis.humphreyonline.us/wp-content/uploads/MediaTemple-logo.jpg" alt="MediaTemple logo" width="120" height="60" />It has been some time since the first post on this <a title="subject" href="http://curtis.humphreyonline.us/code/wordpress/wordpress-php-memory-and-1and1com">subject</a> on <span id="timestamp">Mar 4, 2009. I had concluded that the issue was a silent failure (i.e., there is no direct feedback) of not enough PHP memory to run Wordpress with several plugins on 1and1. I like <a title="running plugins" href="http://curtis.humphreyonline.us/wordpress-plugins-in-use">running plugins</a> and therefore this situation was unacceptable. I look around for a new host for around the same price $15 a month (I had the developer package at 1and1). I decided on <a title="MediaTemple" href="http://en.wikipedia.org/wiki/Media_Temple">MediaTemple</a> and there (GS) or grid-service package. I found a coupon and am only paying $16 a month. I am <span style="text-decoration: underline;">much</span> happier with them as they are a first class hoster. If you are in the same situation I would suggest doing the same. This site is currently on MediaTemple and I have lots of plugins running and the site is still snappy. If you do purchase from them please use my referral link: <a href="http://www.mediatemple.net/go/order/?refdom=humphreyonline.us" target="_blank">thanks!</a>.<br />
</span></p>
<p><strong> </strong></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Wordpress, PHP Memory, and 1and1.comWordpress, PHP Memory, and 1and1.com</div>


<p>Related posts:<ol><li><a href='http://curtis.humphreyonline.us/code/wordpress/wordpress-php-memory-and-1and1com' rel='bookmark' title='Permanent Link: Wordpress, PHP Memory, and 1and1.com'>Wordpress, PHP Memory, and 1and1.com</a></li>
<li><a href='http://curtis.humphreyonline.us/code/wordpress/upgrading-to-wordpress-2-7-1' rel='bookmark' title='Permanent Link: Upgrading Wordpress to 2.7.1'>Upgrading Wordpress to 2.7.1</a></li>
<li><a href='http://curtis.humphreyonline.us/wordpress-plugins-in-use' rel='bookmark' title='Permanent Link: Wordpress Plugins in Use'>Wordpress Plugins in Use</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/code/wordpress/wordpress-php-memory-and-1and1-com-part-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>word 2007 spell checking inside tables</title>
		<link>http://curtis.humphreyonline.us/articles/word-2007-spell-checking-inside-tables</link>
		<comments>http://curtis.humphreyonline.us/articles/word-2007-spell-checking-inside-tables#comments</comments>
		<pubDate>Fri, 16 Oct 2009 20:17:56 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[Word 2007]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=253</guid>
		<description><![CDATA[
I ran across an issue today in Microsoft Word 2007 where the text inside my tables was noticeably not being spell check (i.e., words like aaa or woords were not considered misspelled). To make a long story short, it turns out that the style used for the text had spell checking turned off. This is [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin-top: 0px; border: 0px initial initial;" title="Word 2007 Logo" src="http://curtis.humphreyonline.us/wp-content/uploads/MS-Word-Logo.jpg" alt="Word 2007 Logo" width="111" height="110" /></p>
<p>I ran across an issue today in Microsoft Word 2007 where the text inside my tables was noticeably not being spell check (i.e., words like aaa or woords were not considered misspelled). To make a long story short, it turns out that the style used for the text had spell checking turned off. This is a little known option located in a misplaced location. The location is the Language Window which is, in my opinion, mismatched as I do not think of spelling as a property belonging to language options but as a property belonging to the paragraph of text (working within the list presented by the context or second mouse button click menu). Furthermore the Language Window cannot be directly called from the text&#8217;s context menu but only from the text style&#8217;s context menu.</p>
<p>To see if this solves to your spell check situation try these steps:</p>
<p>From the text&#8217;s style:</p>
<ol>
<li>Second mouse button click on the text style used inside the table (the highlight style either listed in the Style section of the Home Ribbon tab or from the expanded Style list</li>
<li>Click on the Modify&#8230; option  (opens Modify Style Window)</li>
<li>Click the Format button (bottom left corner)</li>
<li>Click on the Language&#8230; option (opens Language Window)</li>
<li>Uncheck &#8220;Do not check spelling or grammer&#8221; checkbox.</li>
<li>Click Ok, Click Ok (exit Language and Modify Style Windows)</li>
<li>Click Office Button (round upper left bottom)</li>
<li>Click on the Word Options option (opens Word Options Window)</li>
<li>Choose Proofing tab (side bar)</li>
<li>Click Recheck Document button</li>
<li>Click Ok (exit Word Options Window)</li>
</ol>
<p>If this was the cause of your spell check problem the text will now be spell check!</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/articles/word-2007-spell-checking-inside-tables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visualization for Effectively Co-located GIS Map Items</title>
		<link>http://curtis.humphreyonline.us/projects/visualization-for-effectively-co-located-gis-map-items</link>
		<comments>http://curtis.humphreyonline.us/projects/visualization-for-effectively-co-located-gis-map-items#comments</comments>
		<pubDate>Sat, 20 Jun 2009 21:21:56 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Map-based Visualizations]]></category>
		<category><![CDATA[Visualizations]]></category>
		<category><![CDATA[Work done at Vanderbilt]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=225</guid>
		<description><![CDATA[One of my summer project (2009) is to supervisor someone for awhile on a projected I designed. This year&#8217;s project is entited &#8220;Visualization for Effectively Co-located GIS Map Items&#8221; (title did take a while to invent). The official project paragraph is below along with a mockup of the idea we are implimenting.
&#8220;When information is sent [...]


Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/visualization-of-multiple-robots-during-team-activities' rel='bookmark' title='Permanent Link: Visualization of Multiple Robots During Team Activities'>Visualization of Multiple Robots During Team Activities</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/phd-thesis-information-abstraction-visualization-for-human-robot-interaction' rel='bookmark' title='Permanent Link: Ph.D. Thesis: Information Abstraction Visualization for Human-Robot Interaction'>Ph.D. Thesis: Information Abstraction Visualization for Human-Robot Interaction</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of my summer project (2009) is to supervisor someone for awhile on a projected I designed. This year&#8217;s project is entited &#8220;Visualization for Effectively Co-located GIS Map Items&#8221; (title did take a while to invent). The official project paragraph is below along with a mockup of the idea we are implimenting.</p>
<blockquote><p>&#8220;When information is sent from robots or remote sensors to a computer interface that representing the information as items on a geographic information system (GIS) map, the items can often be effectively co-located. Items effectively co-located present a visual issue because the items visually overlap to the point that only one item is truly visible. The long-term objective of the Effectively Co-located GIS Map Items project is to develop graceful and useful methods to visually display these items. This particular project will focus on identifying when items are effectively co-located and then developing and implementing one or more methods to visually present these items.&#8221;</p></blockquote>
<div id="attachment_244" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-244" title="Visualization for Effectively Co-located GIS Map Items" src="http://curtis.humphreyonline.us/wp-content/uploads/Visualization-for-Effectively-Co-located-GIS-Map-Items.jpg" alt="Visualization for Effectively Co-located GIS Map Items" width="600" height="600" /><p class="wp-caption-text">Visualization mockup depicting an &quot;stack&quot; of items and the corrisponding &quot;unstacking&quot; visualization.</p></div>


<p>Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/visualization-of-multiple-robots-during-team-activities' rel='bookmark' title='Permanent Link: Visualization of Multiple Robots During Team Activities'>Visualization of Multiple Robots During Team Activities</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/phd-thesis-information-abstraction-visualization-for-human-robot-interaction' rel='bookmark' title='Permanent Link: Ph.D. Thesis: Information Abstraction Visualization for Human-Robot Interaction'>Ph.D. Thesis: Information Abstraction Visualization for Human-Robot Interaction</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/projects/visualization-for-effectively-co-located-gis-map-items/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HFES Submission Process not so Human Friendly</title>
		<link>http://curtis.humphreyonline.us/articles/hfes-not-so-human-friendly</link>
		<comments>http://curtis.humphreyonline.us/articles/hfes-not-so-human-friendly#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:11:27 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[HFES]]></category>
		<category><![CDATA[Human Factors]]></category>
		<category><![CDATA[Work done at Vanderbilt]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=235</guid>
		<description><![CDATA[We (i.e., Dr. Adams and I) just had our HFES journal paper &#8220;unsubmit&#8221; because our &#8220;submission exceeds the recommended figure/table count.&#8221; I had to laugh when I read it. The instruct sheet says this about figure/table count:
&#8220;[papers] typically have no more than 8 tables and/or figures and a reference section of no more than 1,500 [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-236" title="HFES logo" src="http://curtis.humphreyonline.us/wp-content/uploads/HFES-logo.gif" alt="HFES logo" width="199" height="52" />We (i.e., Dr. Adams and I) just had our <a title="HFES" href="http://www.hfes.org/">HFES</a> journal paper &#8220;unsubmit&#8221; because our &#8220;submission exceeds the recommended figure/table count.&#8221; I had to laugh when I read it. The <a href="http://www.hfes.org/Web/PubPages/hfauthorinfo.html" target="_blank">instruct sheet</a> says this about figure/table count:</p>
<blockquote><p>&#8220;[papers] typically have no more than 8 tables and/or figures and a reference section of no more than 1,500 words.&#8221;</p></blockquote>
<h3><strong>So let&#8217;s follow this logic&#8230;</strong></h3>
<ul>
<li>These instructions use the word &#8220;typically&#8221;, meaning &#8220;on average&#8221; or &#8220;normally&#8221;.</li>
<li>&#8220;typically&#8221; is not a limit or a max, but an average, which means some papers are more and some are less.</li>
<li>We submitted a paper with 13 tables and figures so we were more than average by 5, but some HFES  papers I have read only have 3 figure/tables, which is less by 5.</li>
<li>However, our paper is unsubmitted because it &#8220;exceeds the recommended figure/table count.&#8221;</li>
<li>However, recommended means a suggested or endorsed position, not a limit or a requirement.</li>
<li>Therefore, our paper was unsubmitted because we did not follow their suggestion on keeping the table/figure count to more than an &#8220;average&#8221;?</li>
</ul>
<p>Does anyone else see this funny logic? And this is supposed to be a journal on how to make this better for humans and this submission process is desperately in need of some human factors!</p>
<h3>Take home lesson:</h3>
<p>If you are going to put a limit such that things beyond the limit are not acceptable then you <strong>need to explicitly say so!</strong> If HFES had stated on their instruction page that papers typically have X table/figures and cannot exceed Y table/figures, then we would have written our paper with less than Y table/figures and all would be well. Instead, I have to rewrite parts of the paper to remove 6 figures because we are guessing that 8 is the limit.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/articles/hfes-not-so-human-friendly/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out of Space? Scattered Files? Use WinDirStat</title>
		<link>http://curtis.humphreyonline.us/articles/out-of-space-scattered-files-use-windirstat</link>
		<comments>http://curtis.humphreyonline.us/articles/out-of-space-scattered-files-use-windirstat#comments</comments>
		<pubDate>Thu, 11 Jun 2009 18:32:39 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[FYI]]></category>
		<category><![CDATA[Product Review]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=221</guid>
		<description><![CDATA[At Vanderbilt I work almost exclusively from my own Dell Inspiron E1705 labtop. I started using my own laptop so that I could sit in a room with windows and because being a Grad Student I often had to take work home. However, my laptop is getting dated and it is running out of hard [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>At Vanderbilt I work almost exclusively from my own Dell Inspiron E1705 labtop. I started using my own laptop so that I could sit in a room with windows and because being a Grad Student I often had to take work home. However, my laptop is getting dated and it is running out of hard drive space because of all the production programs I have installed (e.g., Visual Studio, QT, Adobe CS4, Mircosoft Office, <a title="RUNAWAY - The dream of the turtle" href="http://en.wikipedia.org/wiki/Runaway_2:_The_Dream_of_The_Turtle">RUNAWAY &#8211; The dream of the turtle</a>).</p>
<h3>Out of Space? Yes, yes I am&#8230;</h3>
<p>One day I wanted to see where all my space was being used and I found this great open source program: <a title="WinDirStat" href="http://windirstat.info/">WinDirStat</a>. Below is a shapshot of my hard drive usage with WinDirStat. I&#8217;ve also used it on our home PC to find everywhere we had backup our pictures using this color coding for files types (way cool). The User directory is large because I have over 4GB of Vanderbilt papers, <a href="http://curtis.humphreyonline.us/category/projects">projects</a>, with 2GB for my <a title="disertation " href="http://curtis.humphreyonline.us/projects/phd-thesis-information-abstraction-visualization-for-human-robot-interaction">Ph.D. Thesis</a> directory. Well it looks like the problem is that I just need a bigger hard drive or a new laptop <img src='http://curtis.humphreyonline.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . However, it will have to wait until after I start my post-Ph.D. job.</p>
<div id="attachment_222" class="wp-caption alignnone" style="width: 544px"><img class="size-full wp-image-222" title="WinDirStat" src="http://curtis.humphreyonline.us/wp-content/uploads/WinDirStat.jpg" alt="Snapshot of my hard drive usage with WinDirStat" width="534" height="480" /><p class="wp-caption-text">Snapshot of my hard drive usage with WinDirStat</p></div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/articles/out-of-space-scattered-files-use-windirstat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Komodo Edit 5</title>
		<link>http://curtis.humphreyonline.us/code/setting-up-komodo-edit-5</link>
		<comments>http://curtis.humphreyonline.us/code/setting-up-komodo-edit-5#comments</comments>
		<pubDate>Sat, 06 Jun 2009 22:02:55 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Coding Setup]]></category>
		<category><![CDATA[FYI]]></category>
		<category><![CDATA[Komodo Edit]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=200</guid>
		<description><![CDATA[I starting using Komodo IDE as my PHP editor over Dreamweaver in 2006? I was tired of Dreamweaver not having features like &#8220;looking function definition&#8221; which jumps to where the php function is defined in some other file. I tried a few other editors and they just didn&#8217;t feel as intutive. Since Komodo has created [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div id="attachment_203" class="wp-caption alignright" style="width: 138px"><a href="http://www.activestate.com/komodo_edit/" target="_blank"><img class="size-full wp-image-203 " title="Komodo Edit Logo" src="http://curtis.humphreyonline.us/wp-content/uploads/komodo-logo.gif" alt="Komodo Edit Logo" width="128" height="128" /></a><p class="wp-caption-text">Komodo Edit Logo</p></div>
<p>I starting using Komodo IDE as my PHP editor over Dreamweaver in 2006? I was tired of Dreamweaver not having features like &#8220;looking function definition&#8221; which jumps to where the php function is defined in some other file. I tried a few other editors and they just didn&#8217;t feel as intutive. Since Komodo has created an open source (read free) version call <a title="Komodo Edit" href="http://www.activestate.com/komodo_edit/">Komodo Edit</a> and have been using that and having missed the edit features. There are a number of things I do to make the Edit program feel more like home. First I install a few extensions&#8230;</p>
<h3 style="clear:both">Best Extensions:</h3>
<ul>
<li><a title="Komodo Edit Source Tree extension" href="http://community.activestate.com/xpi/source-tree" target="_blank">Source Tree</a> must have for quickly jumping around and viewing code</li>
<li><a title="Komodo Edit HTML Toolkit extension" href="http://community.activestate.com/xpi/html-toolkit" target="_blank">HTML Toolkit</a> great for auto-completing HTML/XML tags and previewing css images</li>
<li><a title="Komodo Edit Remote Drive Tree extension" href="http://community.activestate.com/xpi/remote-drive-tree" target="_blank">Remote Drive Tree</a> great for editing files you usally do not have local copies of (e.g., php.ini)</li>
<li><a title="Komodo Edit TODO Helper extension" href="http://community.activestate.com/xpi/todo-helper" target="_blank">TODO Helper</a> finds all your TODO statements so you don&#8217;t forget them</li>
</ul>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/code/setting-up-komodo-edit-5/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ph.D. Thesis: Information Abstraction Visualization for Human-Robot Interaction</title>
		<link>http://curtis.humphreyonline.us/projects/phd-thesis-information-abstraction-visualization-for-human-robot-interaction</link>
		<comments>http://curtis.humphreyonline.us/projects/phd-thesis-information-abstraction-visualization-for-human-robot-interaction#comments</comments>
		<pubDate>Fri, 05 Jun 2009 22:08:52 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[CIFA]]></category>
		<category><![CDATA[DIARE Concept]]></category>
		<category><![CDATA[Emergency Response Analysis]]></category>
		<category><![CDATA[GIS Information Sharing]]></category>
		<category><![CDATA[GVA algorithm]]></category>
		<category><![CDATA[Human-Robot Interaction]]></category>
		<category><![CDATA[Part of Ph.D. Thesis]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Visualizations]]></category>
		<category><![CDATA[Work done at Vanderbilt]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=189</guid>
		<description><![CDATA[Future emergency incident responses, including Chemical, Biological, Radiological, Nuclear, and Explosive (CBRNE), will incorporate robots. The ability to interact with robots and understand the resulting volumes of information requires a system of human-robot interfaces employing directable visualizations that provide information immediacy, relevancy, and sharing appropriate for each human’s responsibilities.
This dissertation conducted two modified Cognitive Tasks [...]


Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/emergency-response-system-human-robot-interaction-user-levels' rel='bookmark' title='Permanent Link: Emergency Response System Human-Robot Interaction User Levels'>Emergency Response System Human-Robot Interaction User Levels</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/addressing-information-sharing-in-directable-interfaces-via-diare-concept' rel='bookmark' title='Permanent Link: Addressing Information Sharing in Directable Interfaces via DIARE Concept'>Addressing Information Sharing in Directable Interfaces via DIARE Concept</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_212" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-212 " title="Vanderbilt School of Engineering" src="http://curtis.humphreyonline.us/wp-content/uploads/vanderbilt-school-of-engineering-300x71.png" alt="Vanderbilt School of Engineering" width="300" height="71" /><p class="wp-caption-text">Vanderbilt School of Engineering</p></div>
<p>Future emergency incident responses, including Chemical, Biological, Radiological, Nuclear, and Explosive (CBRNE), will incorporate robots. The ability to interact with robots and understand the resulting volumes of information requires a system of human-robot interfaces employing directable visualizations that provide information immediacy, relevancy, and sharing appropriate for each human’s responsibilities.<br />
This dissertation conducted two modified Cognitive Tasks Analyses (CTA) on the CBRNE incident response. The Cognitive Information Flow Analysis (CIFA) was developed to combine CTA results and to analyze the path of information as it passes through and is transformed by the system at different human-robot interaction (HRI) user levels. These analyses (i.e., modified CTAs and CIFA) collectively informed the HRI design and development.</p>
<p>The primary contributions of this dissertation are the development and evaluation of two novel visualization techniques that present immediate, relevant, and shared information provided by the robots to the human users in the system of human-robot interfaces. The General Visualization Abstraction (GVA) algorithm, the first technique, is designed to provide information immediacy and relevancy by displaying the most useful information at any given moment determined by rewarding information that is either historically and currently relevant or novel and emerging. The Decision Information Abstracted to a Relevant Encapsulation (DIARE) concept, the second technique, supports decision-making by representing prior event information as a defined volume in the visualization’s information space and encapsulates the volume into an explicit and visual object that can be shared across time and users.</p>
<p>User evaluations were conducted for both visualization techniques. The GVA algorithm’s evaluation results indicate that it can reduce cognitive workload, increase situational awareness, and improve performance for two different HRI user levels. The DIARE concept results indicate that participants were able to rapidly ascertain what had happened previously with great accuracy and good memory recall. Together, these two visualization techniques can assist decision-makers using directable visualizations, such as those used in HRI, by offering an effective method of sharing and providing real-time, relevant information.</p>
<h3 style="clear:both">Related Papers:</h3>
<p class="Pubs"><strong>Curtis M. Humphrey.</strong> <em>Information Abstraction Visualization for Human-Robot Interaction</em>. <span class="wikiword">PhD</span> thesis,<em>Vanderbilt University</em>, August 2009</p>


<p>Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/emergency-response-system-human-robot-interaction-user-levels' rel='bookmark' title='Permanent Link: Emergency Response System Human-Robot Interaction User Levels'>Emergency Response System Human-Robot Interaction User Levels</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/addressing-information-sharing-in-directable-interfaces-via-diare-concept' rel='bookmark' title='Permanent Link: Addressing Information Sharing in Directable Interfaces via DIARE Concept'>Addressing Information Sharing in Directable Interfaces via DIARE Concept</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/projects/phd-thesis-information-abstraction-visualization-for-human-robot-interaction/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing a System of User Interfaces for Controlling Robots for Emergency Incident Response</title>
		<link>http://curtis.humphreyonline.us/projects/designing-a-system-of-user-interfaces-for-controlling-robots-for-emergency-incident-response</link>
		<comments>http://curtis.humphreyonline.us/projects/designing-a-system-of-user-interfaces-for-controlling-robots-for-emergency-incident-response#comments</comments>
		<pubDate>Fri, 05 Jun 2009 21:52:23 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Emergency Response Analysis]]></category>
		<category><![CDATA[GVA algorithm]]></category>
		<category><![CDATA[Human-Robot Interaction]]></category>
		<category><![CDATA[Part of Ph.D. Thesis]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Visualizations]]></category>
		<category><![CDATA[Work done at Vanderbilt]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=151</guid>
		<description><![CDATA[The emergency response incidents (e.g., Chemical, Biological, Radiological, Nuclear, and Explosive (CBRNE) incidents or weapons of mass destruction) are evolving from a response involving humans (e.g. first responders, government officials, civilians) with equipment (e.g. protective suits, vehicles, sensors) to a response system combining humans and thinking machines (e.g. robots, information technology). The difference between equipment (e.g. fire engines, [...]


Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/emergency-response-system-human-robot-interaction-user-levels' rel='bookmark' title='Permanent Link: Emergency Response System Human-Robot Interaction User Levels'>Emergency Response System Human-Robot Interaction User Levels</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/robotic-tasks-for-cbrne-incident-response' rel='bookmark' title='Permanent Link: Robotic Tasks for CBRNE Incident Response'>Robotic Tasks for CBRNE Incident Response</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_187" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-187" title="System of User Interfaces" src="http://curtis.humphreyonline.us/wp-content/uploads/system-of-user-interfaces-300x223.jpg" alt="System of User Interfaces" width="300" height="223" /><p class="wp-caption-text">System of User Interfaces</p></div>
<p>The emergency response incidents (e.g., Chemical, Biological, Radiological, Nuclear, and Explosive (CBRNE) incidents or weapons of mass destruction) are evolving from a response involving humans (e.g. first responders, government officials, civilians) with equipment (e.g. protective suits, vehicles, sensors) to a response system combining humans and thinking machines (e.g. robots, information technology). The difference between equipment (e.g. fire engines, radios, maps) and thinking machines (e.g. robots, computerized decision support systems) is that machines incorporate some cognitive abilities. If the emergency response system is to take effective advantage of emerging technology, the response activity needs to be understood in a way that facilitates the incorporation of these thinking machines and the development of effective human machine interactions. The incorporation of new thinking machines into the emergency response system is resulting in a shift, abet slowly, to a new paradigm.</p>
<p>The long-term objective is to design and develop a system of robots and associated human-robot interfaces (HRI) appropriate technology for all responders throughout the human response command hierarchy by first understanding the human activities, rather than starting with the technology design and then evaluating its effectiveness after development.</p>
<div id="attachment_185" class="wp-caption aligncenter" style="width: 810px"><img class="size-full wp-image-185" title="Remote Operator Interface" src="http://curtis.humphreyonline.us/wp-content/uploads/remote-operator-interface.jpg" alt="Remote Operator Interface an Operator/Supervisor" width="800" height="586" /><p class="wp-caption-text">Remote Operator Interface an Operator/Supervisor Interaction Role</p></div>
<div id="attachment_184" class="wp-caption aligncenter" style="width: 810px"><img class="size-full wp-image-184" title="Operations Chief Interface" src="http://curtis.humphreyonline.us/wp-content/uploads/operations-chief-interface.jpg" alt="Operations Chief Interface an Abstract Supervisor Interaction Role" width="800" height="585" /><p class="wp-caption-text">Operations Chief Interface an Abstract Supervisor</p></div>


<p>Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/emergency-response-system-human-robot-interaction-user-levels' rel='bookmark' title='Permanent Link: Emergency Response System Human-Robot Interaction User Levels'>Emergency Response System Human-Robot Interaction User Levels</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/robotic-tasks-for-cbrne-incident-response' rel='bookmark' title='Permanent Link: Robotic Tasks for CBRNE Incident Response'>Robotic Tasks for CBRNE Incident Response</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/projects/designing-a-system-of-user-interfaces-for-controlling-robots-for-emergency-incident-response/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visualization of Multiple Robots During Team Activities</title>
		<link>http://curtis.humphreyonline.us/projects/visualization-of-multiple-robots-during-team-activities</link>
		<comments>http://curtis.humphreyonline.us/projects/visualization-of-multiple-robots-during-team-activities#comments</comments>
		<pubDate>Fri, 05 Jun 2009 20:52:23 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Actionscipt/Flash]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Visualizations]]></category>
		<category><![CDATA[Work done at Vanderbilt]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=143</guid>
		<description><![CDATA[As robotic systems encompass larger numbers of individual robotic agents, interface design must provide better visual representations that account for factors affecting situational awareness. This project investigated different robotic team visualizations that varied in how much information was displayed: only individual robots, individual robots connected via a semitransparent team shape, and a solid team shape. [...]


Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/compass-visualizations-for-human-robotic-interaction' rel='bookmark' title='Permanent Link: Compass Visualizations for Human-Robotic Interaction'>Compass Visualizations for Human-Robotic Interaction</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/multiple-robot-interfaces-scalability-and-the-halo-concept' rel='bookmark' title='Permanent Link: Multiple Robot Interfaces Scalability and the Halo Concept'>Multiple Robot Interfaces Scalability and the Halo Concept</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_181" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-181" title="Team Visualization Interface" src="http://curtis.humphreyonline.us/wp-content/uploads/team-visualization-interface-300x193.jpg" alt="Team Visualization Interface" width="300" height="193" /><p class="wp-caption-text">Team Visualization Interface</p></div>
<p>As robotic systems encompass larger numbers of individual robotic agents, interface design must provide better visual representations that account for factors affecting situational awareness. This project investigated different robotic team visualizations that varied in how much information was displayed: only individual robots, individual robots connected via a semitransparent team shape, and a solid team shape. The evaluation results revealed that the two visualizations that utilized a team shape were strongly preferred over the visualization that displayed only individual robots.</p>
<h3 style="clear:both">Related Papers:</h3>
<p class="Pubs"><strong>Humphrey, C. M.</strong>, Gordon, S. M., &amp; Adams, J. A. (2006). <em>Visualization of Multiple Robots During Team Activities</em>. In Human Factors and Ergonomics Society Annual Meeting Proceedings (Vol. 50, pp. 651-655).</p>


<p>Related posts:<ol><li><a href='http://curtis.humphreyonline.us/projects/compass-visualizations-for-human-robotic-interaction' rel='bookmark' title='Permanent Link: Compass Visualizations for Human-Robotic Interaction'>Compass Visualizations for Human-Robotic Interaction</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/multiple-robot-interfaces-scalability-and-the-halo-concept' rel='bookmark' title='Permanent Link: Multiple Robot Interfaces Scalability and the Halo Concept'>Multiple Robot Interfaces Scalability and the Halo Concept</a></li>
<li><a href='http://curtis.humphreyonline.us/projects/general-visualization-abstraction-algorithm-for-geographic-map-based-directable-interfaces' rel='bookmark' title='Permanent Link: General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces'>General Visualization Abstraction Algorithm for Geographic Map-Based Directable Interfaces</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/projects/visualization-of-multiple-robots-during-team-activities/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
