<?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 on: Macintosh Tips and Tricks</title>
	<atom:link href="http://www.sauria.com/blog/mac-tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sauria.com/blog</link>
	<description>Open Source, Modern Programming Languages, OS X, Photography, and ...</description>
	<lastBuildDate>Thu, 19 Jan 2012 07:08:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Brian Harte</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-21077</link>
		<dc:creator>Brian Harte</dc:creator>
		<pubDate>Thu, 26 May 2011 21:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-21077</guid>
		<description>I definitely give the thumbs up to the NEC 3090WQXi I use it for photography and the gamut is top notch and a great viewing angle to boot.

I think the A5 wacom Intuos is big enough for me...then again I dont have the desk space for a bigger one!</description>
		<content:encoded><![CDATA[<p>I definitely give the thumbs up to the NEC 3090WQXi I use it for photography and the gamut is top notch and a great viewing angle to boot.</p>
<p>I think the A5 wacom Intuos is big enough for me&#8230;then again I dont have the desk space for a bigger one!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macintosh Tips and Tricks by Ted Leung &#171; Lorenz Szabo</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-19172</link>
		<dc:creator>Macintosh Tips and Tricks by Ted Leung &#171; Lorenz Szabo</dc:creator>
		<pubDate>Sun, 02 Jan 2011 08:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-19172</guid>
		<description>[...] http://www.sauria.com/blog/mac-tips-and-tricks/  [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.sauria.com/blog/mac-tips-and-tricks/" rel="nofollow">http://www.sauria.com/blog/mac-tips-and-tricks/</a>  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry Wagendorp</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-19113</link>
		<dc:creator>Harry Wagendorp</dc:creator>
		<pubDate>Wed, 29 Dec 2010 18:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-19113</guid>
		<description>How about this:

(*

Thanks to:

Tweet by Coda Hale &amp; Mike Keen
http://blog.codahale.com/2007/01/15/tweet-twitter-quicksilver/
 
Growlified Tweet by
http://www.sauria.com/blog/2007/01/18/growlified-tweet/

AppleScriptTweet v1.0 ©2010 Jim Mitchell
http://jimmitchell.org/projects/applescripttweet/

The script requires installing the &quot;twurl&quot; rubygem -- a Twitter-friendly version of the Unix curl -- in order to operate properly.
Point your browser to  and carefully follow the directions in the &quot;Read Me&quot; section.

BE ADVISED: I will politely decline all support requests for installing/using twurl since it is not my code...

This script is released under the Creative Commons GPL 2.0 license.
http://creativecommons.org/licenses/GPL/2.0/

*)

property theAccount : &quot;theBlueLion&quot; -- this is the twitter account to use if you have multiple instances of the script in play.
--property theApp : &quot;AppleScriptTweet&quot; -- this should be the same name as what you registered with http://dev.twitter.com/apps/
property theApp : &quot;qucs&quot; -- this is how Quicksilver is registered with http://dev.twitter.com/apps/
using terms from application &quot;Quicksilver&quot;
	on process text tweet
		set charcount_max to 140
		set charcount_tweet to (count characters of tweet)
		-- Check message length
		if charcount_tweet &lt; charcount_max then
			
			set theTweet to quoted form of (&quot;source=&quot; &amp; theApp &amp; &quot;&amp;status=&quot; &amp; tweet)
			set TwitterUpdate to &quot;twurl -d &quot; &amp; theTweet &amp; &quot; /1/statuses/update.xml&quot;
			set TwitterResponse to do shell script TwitterUpdate
			if TwitterResponse contains &quot;&quot; then
				growlNotify(&quot;Fout bij posten Tweet&quot;, &quot;Tweet niet gepost. Twitter geeft moeilijkheden.&quot;)
			else
				growlNotify(&quot;Tweet gepost&quot;, tweet)
			end if
		else
			-- Tweet is too long
			growlNotify(&quot;Tweet te lang&quot;, &quot;Tweet is &quot; &amp; charcount_tweet &amp; &quot; karakters lang. De maximum lengte is &quot; &amp; charcount_max &amp; &quot; karakters.&quot;)
		end if
	end process text
end using terms from

using terms from application &quot;GrowlHelperApp&quot;
	-- Register Growl
	on growlRegister()
		tell application &quot;GrowlHelperApp&quot;
			register as application &quot;Tweet&quot; all notifications {&quot;Alert&quot;} default notifications {&quot;Alert&quot;} icon of application &quot;Script Editor.app&quot;
		end tell
	end growlRegister
	
	-- Notify using Growl
	-- Example: growlNotify(&quot;This is an Alert&quot;,&quot;This is a test of the Growl Alert System&quot;)
	on growlNotify(grrTitle, grrDescription)
		tell application &quot;GrowlHelperApp&quot;
			notify with name &quot;Alert&quot; title grrTitle description grrDescription application name &quot;Tweet&quot;
		end tell
	end growlNotify
end using terms from</description>
		<content:encoded><![CDATA[<p>How about this:</p>
<p>(*</p>
<p>Thanks to:</p>
<p>Tweet by Coda Hale &amp; Mike Keen<br />
<a href="http://blog.codahale.com/2007/01/15/tweet-twitter-quicksilver/" rel="nofollow">http://blog.codahale.com/2007/01/15/tweet-twitter-quicksilver/</a></p>
<p>Growlified Tweet by<br />
<a href="http://www.sauria.com/blog/2007/01/18/growlified-tweet/" rel="nofollow">http://www.sauria.com/blog/2007/01/18/growlified-tweet/</a></p>
<p>AppleScriptTweet v1.0 ©2010 Jim Mitchell<br />
<a href="http://jimmitchell.org/projects/applescripttweet/" rel="nofollow">http://jimmitchell.org/projects/applescripttweet/</a></p>
<p>The script requires installing the &#8220;twurl&#8221; rubygem &#8212; a Twitter-friendly version of the Unix curl &#8212; in order to operate properly.<br />
Point your browser to  and carefully follow the directions in the &#8220;Read Me&#8221; section.</p>
<p>BE ADVISED: I will politely decline all support requests for installing/using twurl since it is not my code&#8230;</p>
<p>This script is released under the Creative Commons GPL 2.0 license.<br />
<a href="http://creativecommons.org/licenses/GPL/2.0/" rel="nofollow">http://creativecommons.org/licenses/GPL/2.0/</a></p>
<p>*)</p>
<p>property theAccount : &#8220;theBlueLion&#8221; &#8212; this is the twitter account to use if you have multiple instances of the script in play.<br />
&#8211;property theApp : &#8220;AppleScriptTweet&#8221; &#8212; this should be the same name as what you registered with <a href="http://dev.twitter.com/apps/" rel="nofollow">http://dev.twitter.com/apps/</a><br />
property theApp : &#8220;qucs&#8221; &#8212; this is how Quicksilver is registered with <a href="http://dev.twitter.com/apps/" rel="nofollow">http://dev.twitter.com/apps/</a><br />
using terms from application &#8220;Quicksilver&#8221;<br />
	on process text tweet<br />
		set charcount_max to 140<br />
		set charcount_tweet to (count characters of tweet)<br />
		&#8211; Check message length<br />
		if charcount_tweet &lt; charcount_max then</p>
<p>			set theTweet to quoted form of (&quot;source=&quot; &amp; theApp &amp; &quot;&amp;status=&quot; &amp; tweet)<br />
			set TwitterUpdate to &quot;twurl -d &quot; &amp; theTweet &amp; &quot; /1/statuses/update.xml&quot;<br />
			set TwitterResponse to do shell script TwitterUpdate<br />
			if TwitterResponse contains &quot;&#8221; then<br />
				growlNotify(&#8220;Fout bij posten Tweet&#8221;, &#8220;Tweet niet gepost. Twitter geeft moeilijkheden.&#8221;)<br />
			else<br />
				growlNotify(&#8220;Tweet gepost&#8221;, tweet)<br />
			end if<br />
		else<br />
			&#8211; Tweet is too long<br />
			growlNotify(&#8220;Tweet te lang&#8221;, &#8220;Tweet is &#8221; &amp; charcount_tweet &amp; &#8221; karakters lang. De maximum lengte is &#8221; &amp; charcount_max &amp; &#8221; karakters.&#8221;)<br />
		end if<br />
	end process text<br />
end using terms from</p>
<p>using terms from application &#8220;GrowlHelperApp&#8221;<br />
	&#8211; Register Growl<br />
	on growlRegister()<br />
		tell application &#8220;GrowlHelperApp&#8221;<br />
			register as application &#8220;Tweet&#8221; all notifications {&#8220;Alert&#8221;} default notifications {&#8220;Alert&#8221;} icon of application &#8220;Script Editor.app&#8221;<br />
		end tell<br />
	end growlRegister</p>
<p>	&#8211; Notify using Growl<br />
	&#8211; Example: growlNotify(&#8220;This is an Alert&#8221;,&#8221;This is a test of the Growl Alert System&#8221;)<br />
	on growlNotify(grrTitle, grrDescription)<br />
		tell application &#8220;GrowlHelperApp&#8221;<br />
			notify with name &#8220;Alert&#8221; title grrTitle description grrDescription application name &#8220;Tweet&#8221;<br />
		end tell<br />
	end growlNotify<br />
end using terms from</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macintosh Tips and Tricks revised at Ted Leung on the Air</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-16814</link>
		<dc:creator>Macintosh Tips and Tricks revised at Ted Leung on the Air</dc:creator>
		<pubDate>Fri, 12 Mar 2010 01:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-16814</guid>
		<description>[...] Macintosh Tips and Tricks [...]</description>
		<content:encoded><![CDATA[<p>[...] Macintosh Tips and Tricks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mac Pro time at Ted Leung on the Air</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-16210</link>
		<dc:creator>Mac Pro time at Ted Leung on the Air</dc:creator>
		<pubDate>Tue, 26 May 2009 06:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-16210</guid>
		<description>[...] Macintosh Tips and Tricks [...]</description>
		<content:encoded><![CDATA[<p>[...] Macintosh Tips and Tricks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joao Barros Â» links for 2007-08-27</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-6386</link>
		<dc:creator>Joao Barros Â» links for 2007-08-27</dc:creator>
		<pubDate>Mon, 27 Aug 2007 01:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-6386</guid>
		<description>[...] Open Source, Modern Programming Languages, OS X, Photography, and &#8230; (tags: mac osx tips software apple Apps photos Photography programming development toread applications blog) [...]</description>
		<content:encoded><![CDATA[<p>[...] Open Source, Modern Programming Languages, OS X, Photography, and &#8230; (tags: mac osx tips software apple Apps photos Photography programming development toread applications blog) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: diskostu sagt&#8230;&#160;links for 2007-06-12</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-6261</link>
		<dc:creator>diskostu sagt&#8230;&#160;links for 2007-06-12</dc:creator>
		<pubDate>Tue, 12 Jun 2007 05:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-6261</guid>
		<description>[...] Macintosh Tips and Tricks - Ted Leung on the Air Nette Liste mit Tipps f&#252;r Software und MacOS im Allgemeinen (tags: artikel software linkliste macos) [...]</description>
		<content:encoded><![CDATA[<p>[...] Macintosh Tips and Tricks &#8211; Ted Leung on the Air Nette Liste mit Tipps f&#252;r Software und MacOS im Allgemeinen (tags: artikel software linkliste macos) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Too many topics, too little time. &#187; Ted Leung on the Air Â» Macintosh Tips and Tricks</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-4078</link>
		<dc:creator>Too many topics, too little time. &#187; Ted Leung on the Air Â» Macintosh Tips and Tricks</dc:creator>
		<pubDate>Sun, 29 Apr 2007 00:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-4078</guid>
		<description>[...] Ted Leung on the Air Â» Macintosh Tips and Tricks: Macintosh Tips and Tricks [...]</description>
		<content:encoded><![CDATA[<p>[...] Ted Leung on the Air Â» Macintosh Tips and Tricks: Macintosh Tips and Tricks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2007-04-12</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-2706</link>
		<dc:creator>links for 2007-04-12</dc:creator>
		<pubDate>Thu, 12 Apr 2007 22:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-2706</guid>
		<description>[...] Ted Leung on the Air Â» Macintosh Tips and Tricks (tags: computer hacks Apple OSX Reference)    Posted by Brandon { article rss }  Trackbacks [...]</description>
		<content:encoded><![CDATA[<p>[...] Ted Leung on the Air Â» Macintosh Tips and Tricks (tags: computer hacks Apple OSX Reference)    Posted by Brandon { article rss }  Trackbacks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rom&#8217;s Blog &#187; Blog Archive &#187; links for 2007-04-12</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-2684</link>
		<dc:creator>Rom&#8217;s Blog &#187; Blog Archive &#187; links for 2007-04-12</dc:creator>
		<pubDate>Thu, 12 Apr 2007 17:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-2684</guid>
		<description>[...] Ted Leung on the Air Â» Macintosh Tips and Tricks (tags: mac tips software) [...]</description>
		<content:encoded><![CDATA[<p>[...] Ted Leung on the Air Â» Macintosh Tips and Tricks (tags: mac tips software) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: On What Is, And What Is Not &#187; GREAT list of OS X tips</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-2591</link>
		<dc:creator>On What Is, And What Is Not &#187; GREAT list of OS X tips</dc:creator>
		<pubDate>Wed, 11 Apr 2007 13:11:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-2591</guid>
		<description>[...] Good Stuff [...]</description>
		<content:encoded><![CDATA[<p>[...] Good Stuff [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macintosh Tips and Tricks</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-2589</link>
		<dc:creator>Macintosh Tips and Tricks</dc:creator>
		<pubDate>Wed, 11 Apr 2007 12:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-2589</guid>
		<description>[...] Leung, technology expert on open source and book author, has posted an extensive list of hardware, software and information he uses on Mac OSX. There are partly very advanced tips for power users, so most of his [...]</description>
		<content:encoded><![CDATA[<p>[...] Leung, technology expert on open source and book author, has posted an extensive list of hardware, software and information he uses on Mac OSX. There are partly very advanced tips for power users, so most of his [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted Leung on the Air &#187; Blog Archive &#187; Macintosh Tips and Tricks revised</title>
		<link>http://www.sauria.com/blog/mac-tips-and-tricks/comment-page-1/#comment-2536</link>
		<dc:creator>Ted Leung on the Air &#187; Blog Archive &#187; Macintosh Tips and Tricks revised</dc:creator>
		<pubDate>Tue, 10 Apr 2007 16:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.sauria.com/blog/mac-tips-and-tricks/#comment-2536</guid>
		<description>[...] without further adieu, the newest revsion of my Macintosh Tips and Tricks. (The old one redirects to the new one [...]</description>
		<content:encoded><![CDATA[<p>[...] without further adieu, the newest revsion of my Macintosh Tips and Tricks. (The old one redirects to the new one [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

