<?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>marius &#187; Mail.app</title>
	<atom:link href="http://devilx.net/tag/mail-app/feed/" rel="self" type="application/rss+xml" />
	<link>http://devilx.net</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 07:42:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Automating Things</title>
		<link>http://devilx.net/2010/02/21/automating-things/</link>
		<comments>http://devilx.net/2010/02/21/automating-things/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 14:56:58 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[Chandler]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[iChat]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mail.app]]></category>
		<category><![CDATA[Midnight Inbox]]></category>
		<category><![CDATA[MobileMe]]></category>
		<category><![CDATA[The Hit List]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=1138</guid>
		<description><![CDATA[CulturedCode&#8217;s Things is probably one of the best GTD applications available on the Mac OS X and the iPhone platform. Yet, there really is no alternative that supports managing your tasks in such a big scale like Things does. I &#8230; <a href="http://devilx.net/2010/02/21/automating-things/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Things" href="http://culturedcode.com/things/" target="_blank">CulturedCode&#8217;s Things</a> is probably one of the best GTD applications available on the Mac OS X and the iPhone platform. Yet, there really is no alternative that supports managing your tasks in such a big scale like Things does. I know <a title="The Hit List" href="http://www.potionfactory.com/thehitlist/" target="_blank">Potion Factory&#8217;s The Hit List</a> as well as I know <a title="Chandler Project" href="http://chandlerproject.org/" target="_blank">Chandler</a>, <a title="Midnight Beep Softworks" href="http://www.midnightbeep.com/" target="_blank">Midnight Inbox</a> and others &#8211; but they all kinda lack of specific features or just don&#8217;t integrate that good into one&#8217;s everyday workflow. I would really love to see The Hit List being developed more active and finally provide an <a title="The Hit List Mobile" href="http://www.flickr.com/photos/andypotion/4213848965/" target="_blank">iPhone client</a> that might beat the crap out of CulturedCode&#8217;s Things bundle, which yet still doesn&#8217;t allow me to keep each client in sync via MobileMe/without being in the same network or using <a title="Dropbox" href="http://www.dropbox.com/referrals/NTIxODYyMjk5" target="_blank">Dropbox</a> for desktop-to-desktop sync.</p>
<p>However, since (at least for me) there&#8217;s nothing comparable to Things, I&#8217;m trying to benefit from using it the best I can. One possibility to do so is the automation of task-creation. Wouldn&#8217;t it be cool to have Things automatically pack specific e-mails together as tasks you would only need to get done &#8211; without actually having the trouble of importing the information from Mail.app manually into Things first? I solved this problem for myself by using a feature that Things, Mail.app and Mac OS X provide me by default: AppleScript.</p>
<p>Now, how would this automated task-creation look like. First, a piece of code is needed, which gets the specific information out of an e-mail and tells Things to add those information to its library. The <a title="MailToThings" href="http://culturedcode.com/things/wiki/index.php/MailToThings" target="_blank">CulturedCode Wiki</a> already provides us such a script and first I&#8217;ve tried to use that. Unfortunately, the script seems to be something hacked together with Apple&#8217;s Automator and interferes with the UI, what causes the process of task-creation to be visible to the end-user. I didn&#8217;t want that &#8211; so I just hacked together my own AppleScript using the AppleScript Edior:</p>
<pre>on perform_mail_action(info)
	tell application "Mail"
		set selectedMessages to |SelectedMessages| of info
		set theRule to |Rule| of info
		repeat with eachMessage in selectedMessages
			set theSubject to subject of eachMessage
			set theContent to content of eachMessage
			tell application "Things"
				set newToDo to make new to do with properties {name:theSubject, due date:current date, notes:theContent} at beginning of list "Inbox"
			end tell
			set the (read status) of eachMessage to true
		end repeat
	end tell
end perform_mail_action</pre>
<p>You can simply copy &amp; paste this code into your AppleScript Editor and save it somewhere in your filesystem as AppleScript.</p>
<p>Next, we need this script to be called as soon as a new mail arrives. Let&#8217;s use Mail.app&#8217;s &#8220;Rules&#8221; for doing that!</p>
<div id="attachment_1139" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2010/02/mailtothings.png"><img class="size-medium wp-image-1139" title="Mail to Things" src="http://www.devilx.net/wp-content/uploads/2010/02/mailtothings-300x122.png" alt="Mail to Things Rule" width="300" height="122" /></a><p class="wp-caption-text">Mail.app Rule for Mail to Things</p></div>
<p>As &#8220;Run AppleScript&#8221; the script you&#8217;ve saved before needs to be specified. What rule you use for yourself actually depends on your incoming mails. In this example, I&#8217;m checking the mail&#8217;s subject to contain the string [ToDo]: for the script to act on that e-mail. Of course, you can also add another action *after* the &#8220;Run AppleScript&#8221; for Mail.app to delete the mail afterwards. The only thing my script does is to mark the mails that matched as read.</p>
<p>Now try it out on your own. Write yourself an e-mail containing your match-criteria and you&#8217;ll see that the script will automatically add a new task within your Things&#8217; Inbox, containing all details from within the mail itself. Of course, this script can be enhanced for example by leaving away the match-criteria from the subject (s/matchpattern//g), by cutting off everything after &#8220;&#8211; &#8221; (signature) or maybe even delegating the task to a co-worker or an area of responsibility by parsing the mail&#8217;s body. Feel free to extend it the way you need it. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':)' class='wp-smiley' /> </p>
<p><em>PS: You can make the Inbox entries not being due by today by simply removing the &#8220;due date:current date&#8221; parameter from the script.</em></p>
<p><strong>//UPDATE:</strong></p>
<p>Because this whole automation topic is so much fun, I&#8217;ve just written an AppleScript that automatically adds every conversation-line you receive that starts with the pattern &#8220;task: &#8221; to your Things Inbox. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s the AppleScript:</p>
<pre>using terms from application "iChat"
	on message received theMessage from theBuddy for textChat
		set theBuddy to full name of theBuddy

		if theMessage starts with "task: " then
			tell application "Things"
				set newToDo to make new to do with properties {name:theBuddy &amp; ": " &amp; my LeetReplacer((get theMessage), "task: ", "")} at beginning of list "Inbox"
			end tell
		end if
	end message received
end using terms from

on LeetReplacer(strng, srch, replc)
	tell (a reference to my text item delimiters)
		set {old, contents} to {contents, srch}
		set {strng, contents} to {strng's text items, replc}
		set {strng, contents} to {strng as Unicode text, old}
	end tell
	return strng
end LeetReplacer</pre>
<p>And here&#8217;s how you can include it into iChat:</p>
<div id="attachment_1142" class="wp-caption alignnone" style="width: 310px"><a href="http://www.devilx.net/wp-content/uploads/2010/02/ichattothings.png"><img class="size-medium wp-image-1142" title="iChat to Things" src="http://www.devilx.net/wp-content/uploads/2010/02/ichattothings-300x192.png" alt="iChat to Things" width="300" height="192" /></a><p class="wp-caption-text">iChat to Things</p></div>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2010/02/21/automating-things/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iUse on OS X (Updated)</title>
		<link>http://devilx.net/2009/11/15/iuse-on-os-x/</link>
		<comments>http://devilx.net/2009/11/15/iuse-on-os-x/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 11:09:47 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[Life itself]]></category>
		<category><![CDATA[Mac and stuff ...]]></category>
		<category><![CDATA[New & Cool]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[Address Book]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[CandyBar]]></category>
		<category><![CDATA[Colloquy]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Echofon]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhoto]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Last.fm]]></category>
		<category><![CDATA[LaunchBar]]></category>
		<category><![CDATA[LittleSnapper]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mail.app]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Pixelmator]]></category>
		<category><![CDATA[Quiet Read]]></category>
		<category><![CDATA[Shovebox]]></category>
		<category><![CDATA[Telephone]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[TextMate]]></category>
		<category><![CDATA[Things]]></category>
		<category><![CDATA[Times]]></category>
		<category><![CDATA[Versions]]></category>
		<category><![CDATA[Viscosity]]></category>
		<category><![CDATA[Wallet]]></category>

		<guid isPermaLink="false">http://www.devilx.net/?p=984</guid>
		<description><![CDATA[After now already several people asked me, what different kind of software/applications I use on my Macs, I&#8217;d like to sum up a list with the most essential software in my everyday work. CandyBar makes OS X appear even more &#8230; <a href="http://devilx.net/2009/11/15/iuse-on-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After now already several people asked me, what different kind of software/applications I use on my Macs, I&#8217;d like to sum up a list with the most essential software in my everyday work.</p>
<p><span id="more-984"></span></p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/CandyBar.png"><img class="alignleft size-full wp-image-1095" title="CandyBar" src="http://www.devilx.net/wp-content/uploads/2009/09/CandyBar.png" alt="CandyBar" width="64" height="64" /></a><a title="CandyBar" href="http://www.panic.com/candybar/" target="_blank">CandyBar</a> makes OS X appear even more lickable than it already is. It allows to simply change each application&#8217;s icon and provides a cool management of all the available icon-sets. Besides, also the Dock appearance can be tweaked and managed. It would be really nice, if CandyBar would provide a way to sync the collection from one Mac to another, since now, I need to keep my collections on my iMac and my MacBook manually in sync, what&#8217;s pretty meh. However,  although it&#8217;s pretty pricy, it&#8217;s worth to have it.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Colloquy.png"><img class="alignleft size-full wp-image-986" title="Colloquy" src="http://www.devilx.net/wp-content/uploads/2009/09/Colloquy.png" alt="Colloquy" width="64" height="64" /></a><a title="Colloquy" href="http://colloquy.info/" target="_blank">Colloquy</a> is the most advanced, free IRC client I&#8217;ve found yet. Its feature-list is pretty good and there&#8217;s a similar <a title="Colloquy iPhone App" href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302000478&amp;mt=8" target="_blank">iPhone client</a> available, too. I used this client already in 2006, when I still had my PowerBook and have to say, that it&#8217;s pretty bloated and slow on older hardware. But on the current generation of MacBooks, iMacs and MacPros it should be running like a charm.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Dropbox.png"><img class="alignleft size-full wp-image-1096" title="Dropbox" src="http://www.devilx.net/wp-content/uploads/2009/09/Dropbox.png" alt="Dropbox" width="64" height="64" /></a> Width <a title="Dropbox" href="http://www.dropbox.com/referrals/NTIxODYyMjk5" target="_blank">Dropbox</a> you can easily keep your files in sync over two or more different devices, regardless if it&#8217;s a PC, a Mac, a Linux or even an iPhone &#8211; all your data is always up-to-date. Besides, you can share files with friends and receive shared folder invitations yourself. 2GB of space is being provided for free, more is affordable for some cash. Though, I&#8217;d never put sensitive data &#8220;into the cloud&#8221;.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Echofon.png"><img class="alignleft size-full wp-image-1097" title="Echofon" src="http://www.devilx.net/wp-content/uploads/2009/09/Echofon.png" alt="Echofon" width="64" height="64" /></a> <a title="Echofon" href="http://echofon.com/" target="_blank">Echofon</a> is probably the best Twitter-suite available on the Mac and the iPhone. Thanks to their Sync- and Push-Notification-Service it&#8217;s a pleasure to use Twitter, even with multiple accounts and on multiple devices. Thanks to the intelligent Sync-Service, Echofon notices when you&#8217;re not on your desktop anymore, and starts pushing notifications to your iPhone client when you get mentioned by someone else &#8211; very cool! Yet, the notifications will be pushed only every 15 minutes, but from what I&#8217;ve heard, the Echofon guys are already working on shrinking this interval. If you haven&#8217;t tried out yet &#8211; be sure to do soon!</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/iPhoto.png"><img class="alignleft size-full wp-image-987" title="iPhoto" src="http://www.devilx.net/wp-content/uploads/2009/09/iPhoto.png" alt="iPhoto" width="64" height="64" /></a>Is there much to say about <a title="iPhoto" href="http://www.apple.com/ilife/iphoto/" target="_blank">iPhoto</a>? I think you can call it <strong>the</strong> image-management application on OS X. Since &#8217;09 it also supports Faces &amp; Places, what makes everything even more sexy. In combination with the photos shot on a GPS-able camera (like the iPhone) it even detects automatically, what place you&#8217;ve taken the photo. Although, yet the face-recognition doesn&#8217;t work as I would expect it to. You need high quality pictures with much contrast to get iPhoto recognize the people.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/LastFM.png"><img class="alignleft size-full wp-image-988" title="LastFM" src="http://www.devilx.net/wp-content/uploads/2009/09/LastFM.png" alt="LastFM" width="64" height="64" /></a>I used to be registered on <a title="Last.fm" href="http://www.last.fm/" target="_blank">Last.fm</a> since I was using Linux with its Media-Players with Audioscrobbler plugin, so I&#8217;ve just continued using this pretty cool service. It let&#8217;s me tag the music I listen and discover new tracks I might like. I never tried out Pandora or similar services, so I can&#8217;t say whether Last.fm is better or not &#8211; I&#8217;m just used to it. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/LaunchBar.png"><img class="alignleft size-full wp-image-1098" title="LaunchBar" src="http://www.devilx.net/wp-content/uploads/2009/09/LaunchBar.png" alt="LaunchBar" width="64" height="64" /></a> After discovering and trying out <a title="LaunchBar" href="http://www.obdev.at/products/launchbar/index.html" target="_blank">LaunchBar</a> there was no way around it anymore &#8211; not even by using QuickSilver, what I did quite some time. LaunchBar is extremely fast, supports a ton of different Applications and even provides an easy way to write and include your own plugins. I wouldn&#8217;t want to miss it again in my daily work.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/LittleSnapperIcon.png"><img class="alignleft size-full wp-image-989" title="LittleSnapperIcon" src="http://www.devilx.net/wp-content/uploads/2009/09/LittleSnapperIcon.png" alt="LittleSnapperIcon" width="64" height="64" /></a><a title="LittleSnapper" href="http://www.realmacsoftware.com/littlesnapper/" target="_blank">LittleSnapper</a> in combination with its web-service (former QuickSnapper, now <a title="Ember" href="http://emberapp.com/" target="_blank">Ember</a>) is a very nice enhancement to the OS X desktop, since it provides a very quick and easy way to share screenshots with others, without having to use &#8220;Grab&#8221; and manually upload the images to some service like ImageShack. In addition to the Desktop client, I also use the <a title="LittleSnapper iPhone App" href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=310591640&amp;mt=8" target="_blank">iPhone app</a> to share camera-snapshots with others.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Money.png"><img class="alignleft size-full wp-image-1099" title="Money" src="http://www.devilx.net/wp-content/uploads/2009/09/Money.png" alt="Money" width="64" height="64" /></a> With <a title="Money" href="http://www.jumsoft.com/money/" target="_blank">Money</a> managing finances became as easy as a finger-snip. I bought my license on a MacUpdate Promo for 20% less and have to say that it&#8217;s worth every penny, especially when there&#8217;s such a <a title="Getting Jumsoft's Money working..." href="http://www.devilx.net/2009/11/10/getting-jumsofts-money-working-with-my-ing-diba-csv-exports/" target="_self">friendly and helpful company like Jumsoft</a> behind. Money supports backing up the whole database to MobileMe and by that even synchronization of two Macs with each other. The iPhone client yet only supports sync over WiFi from what I&#8217;ve seen, but hopefully there will be MobileMe support in future, too.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Pixelmator.png"><img class="alignleft size-full wp-image-990" title="Pixelmator" src="http://www.devilx.net/wp-content/uploads/2009/09/Pixelmator.png" alt="Pixelmator" width="64" height="64" /></a>Let me just call it &#8220;Poor man&#8217;s Photoshop&#8221; &#8211; in an excellent way! <a title="Pixelmator" href="http://www.pixelmator.com/" target="_blank">Pixelmator</a> is, what GIMP is to the GNOME Desktop. It let&#8217;s me create/edit images in an easy and smooth way, without much knowledge of the actual application itself. Pixelmator provides me a light and intuitive application with a feature-list that fits my needs perfectly without being over-bloated.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/QuietRead.png"><img class="alignleft size-full wp-image-1100" title="QuietRead" src="http://www.devilx.net/wp-content/uploads/2009/09/QuietRead.png" alt="QuietRead" width="64" height="64" /></a>As the name already says, <a title="Quiet Read" href="http://bambooapps.com/free-stuff/" target="_blank">Quiet Read</a> provides you a way to temporary bookmark for example web-pages and read it later, when there&#8217;s more time for it. It&#8217;s actually the similar concept Instapaper follows, although it doesn&#8217;t really extract your site&#8217;s content for any mobile platform, nor does it have any web-service in the background to which you can sync multiple installations. MobileMe support would be a great feature, maybe Bamboo Apps will implement it some day. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Shovebox.png"><img class="alignleft size-full wp-image-1101" title="Shovebox" src="http://www.devilx.net/wp-content/uploads/2009/09/Shovebox.png" alt="Shovebox" width="64" height="64" /></a> <a title="Shovebox" href="http://www.wonderwarp.com/shovebox/" target="_blank">Shovebox</a> is a great companion for Things and Quiet Read which also provides a pretty cool iPhone client that&#8217;s for free. I got the App itself from within a MacHeist Bundle, where I didn&#8217;t need to pay anything for it &#8211; and maybe that&#8217;s the reason I&#8217;m actually using it. Yet, I would not really pay money on this App, since its yet pretty &#8220;small&#8221; (regarding its features) and I have most things already managed by Things and Quiet Read/Instapaper (free).</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Telephone.png"><img class="alignleft size-full wp-image-991" title="Telephone" src="http://www.devilx.net/wp-content/uploads/2009/09/Telephone.png" alt="Telephone" width="64" height="64" /></a>Yes, it&#8217;s <a title="Telephone" href="http://code.google.com/p/telephone/" target="_blank">Telephone</a>! And yes! It&#8217;s OpenSource! This application allows you to use your VoIP account provided by your ISP directly on your Mac. At the moment, several ISP are supported and the list gets longer and longer. Telephone makes it easy to dial and receive calls on a VoIP account without much hassle.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/TextMate.png"><img class="alignleft size-full wp-image-992" title="TextMate" src="http://www.devilx.net/wp-content/uploads/2009/09/TextMate.png" alt="TextMate" width="64" height="64" /></a><a title="TextMate" href="http://macromates.com/" target="_blank">TextMate</a> &#8211; <strong>THE</strong> Editor. I think, there&#8217;s nothing better for writing any kind of code under OS X. This editor is light, fast and provides hell of a feature-set you&#8217;ll probably never finish to explore. MacroMates did an excellent job with this application and I know of many tries (especially on Linux) to re-create something similar, but yet no other (GUI-)editor reached TextMate.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Things.png"><img class="alignleft size-full wp-image-1102" title="Things" src="http://www.devilx.net/wp-content/uploads/2009/09/Things.png" alt="Things" width="64" height="64" /></a><a title="Things" href="http://culturedcode.com/things/" target="_blank">Things</a> is probably one of the most amazing task management applications for OS X available today. It provides all you need for successfully managing all your ToDos and even syncs them up to your iPhone client. Two big cons of Things are the yet still not available MobileMe sync (today, it does sync only over WiFi, without even using an encrypted connection) and the pricing on both, the desktop and the iPhone app. Still, the App is just lo-ve-ly and a must of everyone who&#8217;s really into task management.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Times.png"><img class="alignleft size-full wp-image-993" title="Times" src="http://www.devilx.net/wp-content/uploads/2009/09/Times.png" alt="Times" width="64" height="64" /></a>A very nice newsfeed reader with excellent graphical user interface. <a title="Times" href="http://www.acrylicapps.com/times/" target="_blank">Times</a> provides you all basic-features you would expect form an RSS-reader plus the possibility to read the whole articles within the application itself. Very nice idea, and pretty cool implementation, though I&#8217;d wish it to be faster and not that bloated.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Versions.png"><img class="alignleft size-full wp-image-994" title="Versions" src="http://www.devilx.net/wp-content/uploads/2009/09/Versions.png" alt="Versions" width="64" height="64" /></a><a href="http://www.versionsapp.com/" target="_blank">Versions</a> &#8211; and you&#8217;ll never need to look up <em>svn &#8211;help</em> again. Since the last version of Version (ough, what a sentence) it even supports the latest SVN 1.6.x and provides you to work with several different SVN repositories at a time without much practice. Although, with $39 it this application is very pricy.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Viscosity.png"><img class="alignleft size-full wp-image-995" title="Viscosity" src="http://www.devilx.net/wp-content/uploads/2009/09/Viscosity.png" alt="Viscosity" width="64" height="64" /></a><a title="Viscosity" href="http://www.viscosityvpn.com/" target="_blank">Viscosity</a> is yet the best user interface for OpenVPN available on OS X, in my opinion. It lets you import your OpenVPN config-files and edit them within a very nice preference-window. Also, it shows you statistics about your running connections and makes OpenVPN easier than it already is &#8211; and with $9 it&#8217;s quite a fair deal.</p>
<p><a href="http://www.devilx.net/wp-content/uploads/2009/09/Wallet.png"><img class="alignleft size-full wp-image-996" title="Wallet" src="http://www.devilx.net/wp-content/uploads/2009/09/Wallet.png" alt="Wallet" width="64" height="64" /></a>Storing passwords, credit-card information and other sensitive data. <a title="Wallet" href="http://www.acrylicapps.com/wallet/" target="_blank">Wallet</a> allows me to manage all my logins and other passwords in a very nice and fast way, it provides me an add-on for Safari and Firefox and it allows me to sync my Wallet-database via MobileMe and even browse it on my iPhone with its <a title="Wallet iPhone App" href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=297540008&amp;mt=8" target="_blank">iPhone app</a> &#8211; although it took years until the iPhone pendant was available here in germany.</p>
<p>I think, that&#8217;s it so far. Besides those application, of course I use the regular tools like Mail.app, iCal, the Address Book, iTunes, the Terminal and all the other not-worth-mentioning programs that come with OS X. <img src='http://devilx.net/wp-content/plugins/smilies-themer/Riceballs/smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://devilx.net/2009/11/15/iuse-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

