<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for minding the gaps</title>
	<atom:link href="http://www.mindingthegaps.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mindingthegaps.com/blog</link>
	<description>The discovery, acceptance &#38; management of life&#039;s gaps</description>
	<lastBuildDate>Sat, 13 Aug 2011 16:57:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Using Applescript &amp; Python To Set Title Case (AppleScrunix) by Russ Leseberg</title>
		<link>http://www.mindingthegaps.com/blog/2011/06/30/using-applescript-python-to-set-title-case-applescrunix/comment-page-1/#comment-11599</link>
		<dc:creator>Russ Leseberg</dc:creator>
		<pubDate>Sat, 13 Aug 2011 16:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=3214#comment-11599</guid>
		<description>I don&#039;t personally use coda so I don&#039;t have a ready answer. A couple of questions: Are you trying to create a coda plugin? Have you gotten AppleScript in any form to work in your coda code? Or.. are you trying to use Applescript to enhance the coda edit experience?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t personally use coda so I don&#8217;t have a ready answer. A couple of questions: Are you trying to create a coda plugin? Have you gotten AppleScript in any form to work in your coda code? Or.. are you trying to use Applescript to enhance the coda edit experience?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting with AppleScript (AppleScrunix Style) by Russ Leseberg</title>
		<link>http://www.mindingthegaps.com/blog/2011/04/29/sorting-with-applescript-applescrunix-style/comment-page-1/#comment-11598</link>
		<dc:creator>Russ Leseberg</dc:creator>
		<pubDate>Sat, 13 Aug 2011 16:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=3063#comment-11598</guid>
		<description>Absolutely. Can you provide me a sample list to sort?</description>
		<content:encoded><![CDATA[<p>Absolutely. Can you provide me a sample list to sort?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting with AppleScript (AppleScrunix Style) by Jake</title>
		<link>http://www.mindingthegaps.com/blog/2011/04/29/sorting-with-applescript-applescrunix-style/comment-page-1/#comment-11589</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Sat, 13 Aug 2011 07:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=3063#comment-11589</guid>
		<description>Looks very handy, I&#039;m set to try this &amp; wondering if there&#039;s a way to do this with 2-dimensional lists.</description>
		<content:encoded><![CDATA[<p>Looks very handy, I&#8217;m set to try this &amp; wondering if there&#8217;s a way to do this with 2-dimensional lists.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Applescript &amp; Python To Set Title Case (AppleScrunix) by Jason</title>
		<link>http://www.mindingthegaps.com/blog/2011/06/30/using-applescript-python-to-set-title-case-applescrunix/comment-page-1/#comment-11203</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 02 Aug 2011 22:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=3214#comment-11203</guid>
		<description>I am trying to implement this using coda and can&#039;t seem to get it to work. This is what I have :


-- script settings
on CodaScriptSettings()
	return {displayName:&quot;Titlecase&quot;, inContextMenu:&quot;yes&quot;}
end CodaScriptSettings

-- actual script
tell application &quot;Coda&quot;
	
	try
		
		tell current split of front document
			
			if selected text is not equal to &quot;&quot; then
				set someText to selected text
			else
				set someText to contents
			end if
			
		end tell
		
	on error
		beep
		return
	end try
	
end tell

set shellscriptString to do shell script &quot;python -c \&quot;print &quot; &amp; quoted form of (someText) &amp; &quot;.title()\&quot;&quot;

set shellresult to do shell script shellscriptString without altering line endings

tell application &quot;Coda&quot;
	try
		tell current split of document 1
			
			if selected text is not equal to &quot;&quot; then
				set selected text to shellresult
				
			else
				set contents to shellresult
			end if
			
		end tell
		
	on error
		beep
		
	end try
end tell</description>
		<content:encoded><![CDATA[<p>I am trying to implement this using coda and can&#8217;t seem to get it to work. This is what I have :</p>
<p>&#8211; script settings<br />
on CodaScriptSettings()<br />
	return {displayName:&#8221;Titlecase&#8221;, inContextMenu:&#8221;yes&#8221;}<br />
end CodaScriptSettings</p>
<p>&#8211; actual script<br />
tell application &#8220;Coda&#8221;</p>
<p>	try</p>
<p>		tell current split of front document</p>
<p>			if selected text is not equal to &#8220;&#8221; then<br />
				set someText to selected text<br />
			else<br />
				set someText to contents<br />
			end if</p>
<p>		end tell</p>
<p>	on error<br />
		beep<br />
		return<br />
	end try</p>
<p>end tell</p>
<p>set shellscriptString to do shell script &#8220;python -c \&#8221;print &#8221; &amp; quoted form of (someText) &amp; &#8220;.title()\&#8221;"</p>
<p>set shellresult to do shell script shellscriptString without altering line endings</p>
<p>tell application &#8220;Coda&#8221;<br />
	try<br />
		tell current split of document 1</p>
<p>			if selected text is not equal to &#8220;&#8221; then<br />
				set selected text to shellresult</p>
<p>			else<br />
				set contents to shellresult<br />
			end if</p>
<p>		end tell</p>
<p>	on error<br />
		beep</p>
<p>	end try<br />
end tell</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Countdown to iPad – Super-Reader (Use Case 44) by SUPER READER &#124; Quality Products Blog</title>
		<link>http://www.mindingthegaps.com/blog/2010/03/30/countdown-to-ipad-super-reader-use-case-43/comment-page-1/#comment-10452</link>
		<dc:creator>SUPER READER &#124; Quality Products Blog</dc:creator>
		<pubDate>Thu, 07 Jul 2011 09:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=1893#comment-10452</guid>
		<description>[...] super reader mindingthegaps.com [...]</description>
		<content:encoded><![CDATA[<p>[...] super reader mindingthegaps.com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Applescript &#8211; Converting Uppercase &amp; Lowercase (AppleScrunix Style) by Using Applescript &#38; Python To Set Title Case (AppleScrunix) &#124; minding the gaps</title>
		<link>http://www.mindingthegaps.com/blog/2011/05/26/applescript-converting-uppercase-lowercase-applescrunix-style/comment-page-1/#comment-10329</link>
		<dc:creator>Using Applescript &#38; Python To Set Title Case (AppleScrunix) &#124; minding the gaps</dc:creator>
		<pubDate>Thu, 30 Jun 2011 13:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=3110#comment-10329</guid>
		<description>[...] If you are interested in solving this problem just using AppleScript, you can get much of the code you need from my previous post, Applescript – Converting Uppercase &amp; Lowercase (AppleScrunix Style). [...]</description>
		<content:encoded><![CDATA[<p>[...] If you are interested in solving this problem just using AppleScript, you can get much of the code you need from my previous post, Applescript – Converting Uppercase &amp; Lowercase (AppleScrunix Style). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Stranger in the Zebra Suit by Heather</title>
		<link>http://www.mindingthegaps.com/blog/2011/02/27/the-stranger-in-the-zebra-suit/comment-page-1/#comment-8029</link>
		<dc:creator>Heather</dc:creator>
		<pubDate>Fri, 04 Mar 2011 00:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=2722#comment-8029</guid>
		<description>Interesting article Russ.  Been there, lived this.  It can be hard to convince traditional business that their brand extends beyond the graphics, copyrights and trademarks into areas where there aren&#039;t defined rules and lawyers can&#039;t defend.  As Steve said, you can&#039;t afford to be complacent. Many just don&#039;t want to invest and do the work that is required to avoid what inevitably may kill their identity.</description>
		<content:encoded><![CDATA[<p>Interesting article Russ.  Been there, lived this.  It can be hard to convince traditional business that their brand extends beyond the graphics, copyrights and trademarks into areas where there aren&#8217;t defined rules and lawyers can&#8217;t defend.  As Steve said, you can&#8217;t afford to be complacent. Many just don&#8217;t want to invest and do the work that is required to avoid what inevitably may kill their identity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Stranger in the Zebra Suit by Steve</title>
		<link>http://www.mindingthegaps.com/blog/2011/02/27/the-stranger-in-the-zebra-suit/comment-page-1/#comment-7976</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 01 Mar 2011 15:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=2722#comment-7976</guid>
		<description>Thanks for reminding us that we should never complacent about our brand... whether our personal brand or the brand of our business.  This event surely shows the power of social networking - that a collection of seemingly unconnected people can unite for a moment and get behind something quickly. That a new voice can be created through the connective tissues of technology. 

Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for reminding us that we should never complacent about our brand&#8230; whether our personal brand or the brand of our business.  This event surely shows the power of social networking &#8211; that a collection of seemingly unconnected people can unite for a moment and get behind something quickly. That a new voice can be created through the connective tissues of technology. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DREAM Teams – Project Team Principles by Tweets that mention DREAM Teams – Project Team Principles &#124; minding the gaps -- Topsy.com</title>
		<link>http://www.mindingthegaps.com/blog/2011/01/30/dream-teams-project-team-principles/comment-page-1/#comment-7486</link>
		<dc:creator>Tweets that mention DREAM Teams – Project Team Principles &#124; minding the gaps -- Topsy.com</dc:creator>
		<pubDate>Mon, 31 Jan 2011 01:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=2617#comment-7486</guid>
		<description>[...] This post was mentioned on Twitter by Russ Leseberg and Tomas Jonsen, Vivian. Vivian said: RT @rleseberg: DREAM Teams - Project Team Principles http://ow.ly/3MWXd #Team #GAPS #PMM #Project ~Dream Teams are winning teams [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Russ Leseberg and Tomas Jonsen, Vivian. Vivian said: RT @rleseberg: DREAM Teams &#8211; Project Team Principles <a href="http://ow.ly/3MWXd" rel="nofollow">http://ow.ly/3MWXd</a> #Team #GAPS #PMM #Project ~Dream Teams are winning teams [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add FLAVOR &#8211; Project Team Principles by Russ Leseberg</title>
		<link>http://www.mindingthegaps.com/blog/2010/12/31/add-flavor-project-team-principles/comment-page-1/#comment-7467</link>
		<dc:creator>Russ Leseberg</dc:creator>
		<pubDate>Sat, 29 Jan 2011 14:23:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mindingthegaps.com/blog/?p=2582#comment-7467</guid>
		<description>Thanks Michael. Project driven organizations can do more for our economy than traditionally manage companies... if teams leave personal baggage at the curb and focus all energies on team success.</description>
		<content:encoded><![CDATA[<p>Thanks Michael. Project driven organizations can do more for our economy than traditionally manage companies&#8230; if teams leave personal baggage at the curb and focus all energies on team success.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

