<?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>MacLovin &#187; mac</title>
	<atom:link href="http://www.maclovin.de/tag/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maclovin.de</link>
	<description>An Apple a day keeps the Windows away</description>
	<lastBuildDate>Thu, 25 Feb 2010 20:57:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Access OS X keychain from Terminal</title>
		<link>http://www.maclovin.de/2010/02/access-os-x-keychain-from-terminal/</link>
		<comments>http://www.maclovin.de/2010/02/access-os-x-keychain-from-terminal/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:57:44 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=526</guid>
		<description><![CDATA[At everyday scripting, you often need to access sensible information like passwords. A common practice is to just write them plain text into your script, but at least on a Mac, we can do better.
OS X ships with a tool called keychain. It is a central database where tools can store sensitive information like logins. [...]]]></description>
			<content:encoded><![CDATA[<p>At everyday scripting, you often need to access sensible information like passwords. A common practice is to just write them plain text into your script, but at least on a Mac, we can do better.</p>
<p>OS X ships with a tool called keychain. It is a central database where tools can store sensitive information like logins. Luckily, it is accessible from shell scripts with the command line utility <strong>security</strong>.</p>
<p>Let&#8217;s say you want to securely access an FTP server&#8217;s username and password. First of all, add a new Internet password to your keychain. To do so, just fire it up, select <em>New password</em> and enter the credentials. Remember to add the prefix http:// or ftp:// to your service name to create an Internet password.</p>
<div id="_mcePaste"><a href="http://www.maclovin.de/wp-content/uploads/2010/02/keychain-internet-password.png" title="Keychain Internet Password" rel="lightbox[526]"><img class="aligncenter size-full wp-image-532" title="Keychain Internet Password" src="http://www.maclovin.de/wp-content/uploads/2010/02/keychain-internet-password.png" alt="" width="425" height="394" /></a></div>
<p>Now you read the username like this from the command line</p>
<div id="_mcePaste">
<pre class="brush: bash;light: true">security find-internet-password -s ftp.home.com | grep "acct" | cut -d '"' -f 4</pre>
</div>
<p>The service is what you entered in keychain, but without the prefix. And finally your password</p>
<div id="_mcePaste">
<pre class="brush: bash;light: true">security 2&gt;&amp;1 &gt;/dev/null find-internet-password -gs ftp.home.com | cut -d '"' -f 2</pre>
</div>
<div id="_mcePaste">That&#8217;s all. No more plain text passwords in your script.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2010/02/access-os-x-keychain-from-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launchbar: Dialing phone numbers with Fritz!Box Part 2</title>
		<link>http://www.maclovin.de/2010/02/launchbar-dialing-phone-numbers-with-fritzbox-part-2/</link>
		<comments>http://www.maclovin.de/2010/02/launchbar-dialing-phone-numbers-with-fritzbox-part-2/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:25:46 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[launchbar]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=458</guid>
		<description><![CDATA[This is a follow-up article of Launchbar: Dialing phone numbers with Fritz!Box, where I explained how to use Launchbar for dialing phone numbers via FritzBox.
Meanwhile, AVM has changed the login procedure and the original script no longer works. With the help of this example, it&#8217;s finally doing its job again.
Special thanks go to Christopher Füseschi [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow-up article of <a href="http://www.maclovin.de/2009/05/launchbox-dialing-phone-numbers-with-fritzbox-applescript/" target="_self">Launchbar: Dialing phone numbers with Fritz!Box</a>, where I explained how to use Launchbar for dialing phone numbers via FritzBox.</p>
<p>Meanwhile, AVM has changed the login procedure and the original script no longer works. With the help of <a href="http://wehavemorefun.de/fritzbox/Hilfsprogramme_/_Tipps_&amp;_Tricks#Anrufliste_von_der_Box_holen_.28Beispiel_f.C3.BCr_neues_Loginverfahren_mit_SID.29" target="_blank">this example</a>, it&#8217;s finally doing its job again.</p>
<p>Special thanks go to Christopher Füseschi (ICQ 40520202) for pointing me to this issue and also for doing final tests.</p>
<p>You can download the updated script <a href="http://www.maclovin.de/wp-content/uploads/2010/02/dial-with-fritzbox.scpt">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2010/02/launchbar-dialing-phone-numbers-with-fritzbox-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Make Time Machine backups bootable</title>
		<link>http://www.maclovin.de/2009/09/make-time-machine-backups-bootable/</link>
		<comments>http://www.maclovin.de/2009/09/make-time-machine-backups-bootable/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:06:58 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=400</guid>
		<description><![CDATA[Time Machine is a great backup application shipped with Mac OS X Leopard and Snow Leopard. You can either restore single files in your running OS X or do a full system restore by booting the OS X install DVD. Using the latter method, it would be nice to boot directly from your backup drive [...]]]></description>
			<content:encoded><![CDATA[<p>Time Machine is a great backup application shipped with Mac OS X Leopard and Snow Leopard. You can either restore single files in your running OS X or do a full system restore by booting the OS X install DVD. Using the latter method, it would be nice to boot directly from your backup drive and not to be dependent on the install DVD. Here is a short guide how to achieve this.</p>
<p>We will first create a new partition on the backup drive, then clone the install DVD to this partition and finally boot from the external hard disk.</p>
<p><span id="more-400"></span></p>
<h5>Add new partition</h5>
<p>First of all, we need a new partition on the backup drive to boot from. Thanks to the OS X disk utility, this is quite easy. I use an SATA drive with 1 TB capacity living in a <a title="Sharkoon Quickport Pro" href="http://www.sharkoon.com/html/produkte/externe_gehaeuse/sata_quickport_pro/index_en.html?id=11" target="_blank">Sharkoon Quickport Pro</a> connected via USB. So fire up disk utility, select your backup drive and open the Partition tab.</p>
<p><a href="http://www.maclovin.de/wp-content/uploads/2009/09/Disk-utility-partition-tab.png" title="Disk utility partition tab" rel="lightbox[400]"><img class="aligncenter size-medium wp-image-401" title="Disk utility partition tab" src="http://www.maclovin.de/wp-content/uploads/2009/09/Disk-utility-partition-tab-500x391.png" alt="Disk utility partition tab" width="500" height="391" /></a></p>
<p>As you can see, there is already plenty of space used on the drive, but that&#8217;s no problem at all, as disk utility can resize partitions. Just drag the lower right corner of the partition upwards until it frees the space you need. I set up a 10 GB partition. Finally apply the changes.</p>
<p><a href="http://www.maclovin.de/wp-content/uploads/2009/09/Disk-utility-create-partition.png" title="Disk utility create partition" rel="lightbox[400]"><img class="aligncenter size-medium wp-image-402" title="Disk utility create partition" src="http://www.maclovin.de/wp-content/uploads/2009/09/Disk-utility-create-partition-500x394.png" alt="Disk utility create partition" width="500" height="394" /></a></p>
<h5>Clone Install DVD to new partition</h5>
<p>Next we clone the install DVD (Snow Leopard in my case) to the new partition. Insert the DVD, select your new partition in disk utility and go to <em>Restore</em>. Drag the <em>Mac OS X Install DVD</em> to source and your new partition on the backup drive to target. Then click on restore and wait.</p>
<p><a href="http://www.maclovin.de/wp-content/uploads/2009/09/Disk-utility-restore-from-image.png" title="Disk utility restore from image" rel="lightbox[400]"><img class="aligncenter size-medium wp-image-403" title="Disk utility restore from image" src="http://www.maclovin.de/wp-content/uploads/2009/09/Disk-utility-restore-from-image-500x394.png" alt="Disk utility restore from image" width="500" height="394" /></a></p>
<p>That&#8217;s all you need to do. Let&#8217;s try to boot.</p>
<h5>Boot from the backup drive</h5>
<p>Finally, reboot your Mac and hold down <em>option key</em> on startup. If everything went well, the new partition appears in the list of bootable devices. Select it and be amazed how fast you enter the OS X setup.</p>
<h4><span style="font-weight: normal;"><strong><br />
</strong></span></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/09/make-time-machine-backups-bootable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logitech G5 Laser mouse on Mac OS X (updated)</title>
		<link>http://www.maclovin.de/2009/08/logitech-g5-laser-mouse-on-mac-os-x/</link>
		<comments>http://www.maclovin.de/2009/08/logitech-g5-laser-mouse-on-mac-os-x/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 15:56:46 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=348</guid>
		<description><![CDATA[I recently bought Logitech&#8217;s G5 Laser mouse. It&#8217;s meant to be a gamer mouse but is also great for daily work. The only problem for us OSX users is that Logitech in contrast to most of its devices doesn&#8217;t offer drivers. The mouse works just fine out of the box without any proprietary driver, but [...]]]></description>
			<content:encoded><![CDATA[<p>I recently bought <a title="Logitech G5 Laser mouse" href="http://www.logitech.com/index.cfm/mice_pointers/mice/devices/359" target="_blank">Logitech&#8217;s G5 Laser mouse</a>. It&#8217;s meant to be a gamer mouse but is also great for daily work. The only problem for us OSX users is that Logitech in contrast to most of its devices doesn&#8217;t offer drivers. The mouse works just fine out of the box without any proprietary driver, but you can&#8217;t reassign buttons. Luckily, there is third party software addressing this issue.</p>
<h5><span id="more-348"></span>SteerMouse</h5>
<p>First I tried <a title="SteerMouse" href="http://plentycom.jp/en/steermouse/" target="_blank">SteerMouse</a> from Plentycom-Systems. It&#8217;s a solid and stable piece of Software with a fair price of $20. You can easily reassign mouse buttons, fine-tune tracking speed and much more. But there is a major drawback: the mouse sensibility can no longer be changed on the device. Because I like this feature very much, the search went on.</p>
<h5>USB Overdrive</h5>
<p>The second tool was <a title="USB Overdrive" href="http://www.usboverdrive.com/USBOverdrive/" target="_blank">USB Overdrive</a> by Alessandro Levi Montalcini, also priced at $20. This tool is equally easy to use, offers reassignment of mouse buttons, but without disabling the sensibility adjustments. So that&#8217;s the way I go.</p>
<h5>Summary</h5>
<p>Both tools, SteerMouse and USB Overdrive let you reassign buttons on the Logitech G5. They work equally stable (that&#8217;s at least my impression) and cost exactly the same. While SteerMouse has the nicer interface and was updated more recently, USB Overdrive let&#8217;s you still change the sensibility on the mouse. So it really depends if you want to use the later feature or not. If so, you have to use USB Overdrive, choose SteerMouse otherwise.</p>
<p><strong>Update:</strong> USB Overdrive also works in Snow Leopard, even without updating to version 3.0</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/08/logitech-g5-laser-mouse-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Top 3 Finder Toolbar Scripts</title>
		<link>http://www.maclovin.de/2009/07/my-top-3-finder-toolbar-scripts/</link>
		<comments>http://www.maclovin.de/2009/07/my-top-3-finder-toolbar-scripts/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 19:37:32 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[finder]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=326</guid>
		<description><![CDATA[With Leopard&#8217;s Finder, you can not only add applications to the toolbar, but also scripts. That&#8217;s an extremely useful feature I use every day and so I put together an introduction to my favorite three.

But let&#8217;s first talk about the installation. That&#8217;s pretty easy. Just extract the downloaded archive, copy the script to an arbitrary [...]]]></description>
			<content:encoded><![CDATA[<p>With Leopard&#8217;s Finder, you can not only add applications to the toolbar, but also scripts. That&#8217;s an extremely useful feature I use every day and so I put together an introduction to my favorite three.</p>
<p><a href="http://www.maclovin.de/wp-content/uploads/2009/07/finder-toolbar.png" title="Finder with toolbar scripts" rel="lightbox[326]"><img class="aligncenter size-medium wp-image-327" title="Finder with toolbar scripts" src="http://www.maclovin.de/wp-content/uploads/2009/07/finder-toolbar-500x71.png" alt="Finder with toolbar scripts" width="500" height="71" /></a></p>
<p>But let&#8217;s first talk about the installation. That&#8217;s pretty easy. Just extract the downloaded archive, copy the script to an arbitrary location and then drag it to Finder&#8217;s toolbar. That&#8217;s all. Now let the fun begin.</p>
<p><span id="more-326"></span></p>
<h5>Open in Textmate</h5>
<p><a title="Textmate" href="http://macromates.com/" target="_blank">Textmate</a> is my favorite text editor. I use it a lot and so the <a title="Open in Textmate" href="http://henrik.nyh.se/2007/10/open-in-textmate-from-leopard-finder" target="_blank">Open in Textmate</a> script comes in handy. It allows you to open the selected file directly in Textmate or if none is selected, open the whole directory for tabbed browsing.</p>
<h5>Enhanced Open in Terminal Here</h5>
<p>This <a title="Enhanced Open in Terminal" href="http://maururu.net/2007/enhanced-open-terminal-here-for-leopard/" target="_blank">script</a> opens a Terminal window and changes to the directory shown in Finder. Very useful, but because it&#8217;s enhanced, it can do even more. Holding the Command-Key while clicking on the button opens a new tab instead of a new Terminal window. The Option-Key tries to recylcle an already running Terminal session and just changes to the directory. However, if this fails because the session is busy executing a program, a new window is created instead.</p>
<h5>LSelect</h5>
<p>Last but not least: <a title="LSelect" href="http://anoved.net/software/lselect/" target="_blank">LSelect</a>. This script opens a dialog box where you can enter a globbing pattern like &#8220;*.jpg&#8221; and hitting enter selects all files with extension JPG. I think, you got the idea. It&#8217;s extremely useful for moving or deleting multiple files.</p>
<p>These were my top 3 Finder toolbar scripts making my daily work so much easier. If you happen to know scripts worth mentioning, then please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/07/my-top-3-finder-toolbar-scripts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Launchbar: Dialing phone numbers with Fritz!Box (Applescript)</title>
		<link>http://www.maclovin.de/2009/05/launchbox-dialing-phone-numbers-with-fritzbox-applescript/</link>
		<comments>http://www.maclovin.de/2009/05/launchbox-dialing-phone-numbers-with-fritzbox-applescript/#comments</comments>
		<pubDate>Sun, 17 May 2009 19:20:55 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[launchbar]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=245</guid>
		<description><![CDATA[Update: The script on this page no longer works. Please refer to this one.
Launchbar is a very convenient application launcher for Mac OS X. Among other great features like instant send, it can execute a script when invoking a phone number from your address book. I own a Fritz!Box 7170, which is one of the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update: The script on this page no longer works. Please refer to </strong><a href="http://www.maclovin.de/2010/02/launchbar-dialing-phone-numbers-with-fritzbox-part-2/"><strong>this one</strong></a><strong>.</strong></p>
<p><a title="Launchbox" href="http://www.obdev.at/products/launchbar/" target="_blank">Launchbar</a> is a very convenient application launcher for Mac OS X. Among other great features like instant send, it can execute a script when invoking a phone number from your address book. I own a Fritz!Box 7170, which is one of the most famous combination of WLAN router and telephone system in Germany. By sending special HTTP POST-requests to the Fritz!Box, you can dial phone numbers from your computer. I wrote a <a href="http://www.maclovin.de/wp-content/uploads/2009/05/dial-with-fritzbox.scpt">small Applescript</a> which glues both features together.<span id="more-245"></span></p>
<p>The installation is pretty simple. First of all, open the script in Apple&#8217;s script editor and adjust the parameters. The password and the phone port are very likely to change. Save it to <em>Library/Application Support/Launchbar/Actions</em> under your Home folder. The script assumes that you are using Launchbar 5, which currently is in public Beta. Now open Launchbares preferences, choose <em>Actions</em> and select the script for phone numbers.</p>
<p><a href="http://www.maclovin.de/wp-content/uploads/2009/05/dial-with-fritzbox-setup.png" title="Dial with Fritzbox (Setup)" rel="lightbox[245]"><img class="aligncenter size-full wp-image-250" title="Dial with Fritzbox (Setup)" src="http://www.maclovin.de/wp-content/uploads/2009/05/dial-with-fritzbox-setup.png" alt="Dial with Fritzbox (Setup)" width="430" height="312" /></a></p>
<p>That&#8217;s all. Now fire up Launchbar, navigate to an entry from your address book, select a number and hit enter. The script immediately tries to call the number and prints a message in large print on the screen. After the specified delay (25 seconds by default), the script gives up reaching the number.</p>
<p><a href="http://www.maclovin.de/wp-content/uploads/2009/05/dialing-fritzbox.png" title="Dialing with Frit!Box" rel="lightbox[245]"><img class="aligncenter size-full wp-image-249" title="Dialing with Frit!Box" src="http://www.maclovin.de/wp-content/uploads/2009/05/dialing-fritzbox.png" alt="Dialing with Frit!Box" width="502" height="60" /></a></p>
<p>The script is based on a shell script by Christian Felder posted <a href="http://www.cybton.com/view_thread,FritzBox+_+lwp_request,26152,1.html" target="_blank">here</a> and an expample script for dialing with Skype from Launchbar found in its help.</p>
<p>You can download the script here <a href="http://www.maclovin.de/wp-content/uploads/2009/05/dial-with-fritzbox.scpt">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/05/launchbox-dialing-phone-numbers-with-fritzbox-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Include website&#8217;s title in Tweetie&#8217;s bookmarklet</title>
		<link>http://www.maclovin.de/2009/05/include-websites-title-in-tweeties-bookmarklet/</link>
		<comments>http://www.maclovin.de/2009/05/include-websites-title-in-tweeties-bookmarklet/#comments</comments>
		<pubDate>Sun, 10 May 2009 13:01:29 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=231</guid>
		<description><![CDATA[Tweetie is the most hyped twitter client for Mac OS X at the moment. It offers a bookmarklet for simple tweeting of websites opening its quick post dialog and showing the URL.
But the usual format of my tweets when posting websites is the title of the page, followed by the URL in parenthesis. So I [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Tweetie" href="http://www.atebits.com/tweetie-mac/" target="_blank">Tweetie</a> is the most hyped twitter client for Mac OS X at the moment. It offers a bookmarklet for simple tweeting of websites opening its quick post dialog and showing the URL.</p>
<p>But the usual format of my tweets when posting websites is the title of the page, followed by the URL in parenthesis. So I adjusted the bookmarklet to use this format.<a href="http://www.maclovin.de/wp-content/uploads/2009/05/tweetie.png" title="Tweetie post" rel="lightbox[231]"><img class="aligncenter size-full wp-image-233" title="Tweetie post" src="http://www.maclovin.de/wp-content/uploads/2009/05/tweetie.png" alt="Tweetie post" width="480" height="236" /></a>Just drag this link <a title="Post with Tweetie" href="javascript:window.location='tweetie:'+document.title+'%20('+window.location+')'">Post with Tweetie</a> to your bookmarks bar. Tested with Safari 4 Beta and Firefox 3.0.7.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/05/include-websites-title-in-tweeties-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manual duplex printing with OSX presets</title>
		<link>http://www.maclovin.de/2009/03/manual-duplex-printing-with-osx-presets/</link>
		<comments>http://www.maclovin.de/2009/03/manual-duplex-printing-with-osx-presets/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 21:20:53 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=120</guid>
		<description><![CDATA[Duplex printing means printing on both sides of a sheet of paper. There are many printers supporting automatic duplex, so the printer takes care of printing on the front- and on the backside without user interaction. But especially low-cost printers don&#8217;t support this very useful feature that not only saves paper but also space. That&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Duplex printing means printing on both sides of a sheet of paper. There are many printers supporting automatic duplex, so the printer takes care of printing on the front- and on the backside without user interaction. But especially low-cost printers don&#8217;t support this very useful feature that not only saves paper but also space. That&#8217;s where manual duplex comes into play: print odd and even pages in two passes, using the backsides of the first pass as input for the second one. I set up two print presets in OS X that help me printing the pages in the right order.</p>
<p>The short story: <em>Pass 1</em> prints only <em>even</em> pages and in <em>reverse order </em>(see Paper Handling), <em>Pass 2</em> <em>odd</em> pages in <em>normal order</em>.</p>
<p><span id="more-120"></span></p>
<p>If you&#8217;re lucky, this setup works for your printer, but here&#8217;s some more background information. There are some pitfalls we have to take care of. First of all, what happens if the second pass prints more pages than the first one? Then the additional page needs to be the last one of the document, as that&#8217;s the one without a backside. As a consequence, Pass 2 needs to print in normal order. And because this can only happen if the total number of pages is odd, we print only odd pages.</p>
<p>Now let&#8217;s have a look at Pass 1. Even pages are still missing, so select them. The order is highly depending on your printer, especially the way and the order it pulls in the sheets of paper in the second pass. My printer first selects the top most sheet, expecting the white side heading to top. Remember, Pass 2 prints page 2 first, so make sure page 1 is put on the other side. In my case that means using reverse order.</p>
<p>That&#8217;s the way it works for a Samsung ML-2010R, but I think you got the idea. After some test prints, your manual duplex is ready to go. As soon as you finished your setup, chose your document, print using Pass 1 preset, then put the stack of paper back into your printer and print again, this time using Pass 2. Done! Manual duplex the easy way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/03/manual-duplex-printing-with-osx-presets/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy file sharing using dropbox</title>
		<link>http://www.maclovin.de/2009/03/easy-file-sharing-using-dropbox/</link>
		<comments>http://www.maclovin.de/2009/03/easy-file-sharing-using-dropbox/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 10:50:40 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=89</guid>
		<description><![CDATA[Dropbox is an easy way to synchronise your files across computers. First of all, it offers a web based interface where you upload files and store them in your account. Additionally you can install client software on Mac OS X, Linux or Windows, that creates a special dropbox folder on your computer. As soon as you [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Dropbox" href="http://getdropbox.com" target="_blank">Dropbox</a> is an easy way to synchronise your files across computers. First of all, it offers a web based interface where you upload files and store them in your account. Additionally you can install client software on Mac OS X, Linux or Windows, that creates a special dropbox folder on your computer. As soon as you copy a file into that folder, it gets automatically synced with your web account or if you upload something from another PC (other PC or OS, but same account) or via web, it magically appears in your local dropbox folder.</p>
<p style="text-align: center;"><a href="http://www.maclovin.de/wp-content/uploads/2009/03/dropbox_folder.png" title="Dropbox folder" rel="lightbox[89]"><img class="size-medium wp-image-96 aligncenter" title="Dropbox folder" src="http://www.maclovin.de/wp-content/uploads/2009/03/dropbox_folder-300x236.png" alt="Dropbox folder" width="300" height="236" /></a></p>
<p>Imagine you&#8217;re at work an realise that you need some files at home. No problem at all, just log in at dropbox&#8217;s web interface, upload the data. At home, dropbox automatically downloads it to your local folder. Could it be any easier? </p>
<p>You might say now, you don&#8217;t need it at all because you always keep an USB stick in your pocket just in case of emergency. And that&#8217;s not only faster but also does not need an Internet connection. Well, keep reading! It gets even better.</p>
<p><span id="more-89"></span></p>
<p>Using dropbox, you can easily share files with other people like friends or family. There are 2 prossibilities. Your dropbox folder has a special folder named <em>Public</em>. Anything that goes in there can be shared with other people. Just right-click on the file and select <em>Dropbox - </em><em>Copy public link</em>. As the name suggests, <em> </em>a link is copied to your clipboard heading to the file. Anybody can access the file via that link, even without being a dropbox user at all.</p>
<p>If you often share file with the same people, always copying public link is annoying. Luckily, there&#8217;s a second possibility. Just create a new directory somewhere in you local dropbox folder, right-click on it an select <em>Dropbox &#8211; Share</em>. You&#8217;re headed to a website where you enter mail addresses of other dropbox users. After accepting your invitation, the folder appears in their dopbox as well. Anybody in that group can add or remove content and changes are immediately reflected in all the other user&#8217;s dropboxes. How cool is that.</p>
<p>People quite often ask me for help with their computer problems. Dropbox in combination with <a title="Skitch" href="http://plasq.com/skitch" target="_blank">Sktich</a> makes this a lot easier. If you want them to have a screenshot, just fire up skitch, take the screenshot and drag it in the shared dropbox folder.</p>
<p>If you&#8217;re not yet a dropbox user, create an account right now! It&#8217;s easy and it&#8217;s free. It would be very nice if you would use <a title="Get dropbox" href="https://www.getdropbox.com/referrals/NTI2NDAzNDk" target="_blank">this link</a> for registration, containing a referral that offers extra 250MB for both of us. Now happy dropboxing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/03/easy-file-sharing-using-dropbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Applescript: add document currently shown in Safari to Delicious</title>
		<link>http://www.maclovin.de/2009/01/applescript-add-document-currently-shown-in-safari-to-delicious/</link>
		<comments>http://www.maclovin.de/2009/01/applescript-add-document-currently-shown-in-safari-to-delicious/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 21:21:42 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[quicksilver]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.maclovin.de/?p=42</guid>
		<description><![CDATA[ 
I just switched from Firefox to Safari and was looking for a nice way to add the website currently shown in Safari to my Delicious bookmarks. Delicious itself offers a bookmarklet for that purpose, but I prefer leaving the bookmark bar hidden. So I came up with a litte Applescript&#8230;
 
 
It does nothing more than telling Safari [...]]]></description>
			<content:encoded><![CDATA[<p> <br />
I just switched from Firefox to Safari and was looking for a nice way to add the website currently shown in Safari to <a href="http://delicious.com/frommi">my Delicious bookmarks</a>. Delicious itself offers a bookmarklet for that purpose, but I prefer leaving the bookmark bar hidden. So I came up with a litte <a href="http://www.maclovin.de/wp-content/uploads/2009/01/delicious_add_from_safari.scpt">Applescript</a>&#8230;</p>
<p> </p>
<div id="attachment_51" class="wp-caption aligncenter" style="width: 283px"><a href="http://www.maclovin.de/wp-content/uploads/2009/01/save-a-bookmark-on-delicious.png" title="Save a Bookmark on Delicious" rel="lightbox[42]"><img class="size-medium wp-image-51" title="Save a Bookmark on Delicious" src="http://www.maclovin.de/wp-content/uploads/2009/01/save-a-bookmark-on-delicious-273x299.png" alt="Save a Bookmark on Delicious" width="273" height="299" /></a><p class="wp-caption-text">Dialog shown after execution of script</p></div>
<p> </p>
<p>It does nothing more than telling Safari to execute the same Javascript as the bookmarklet would do. Calling it from within an Applescript has one huge advantage called Quicksilver. I set up a trigger to execute this script with the scope of Safari (scopes seem to be broken in Leopard) and assigned the hotkey CMD-D.</p>
<p>This trigger in combination with Quicksilver&#8217;s &#8220;Social bookmarks&#8221; plugin is a great way use delicious with Safari.</p>
<p>Download the script: <a href="http://www.maclovin.de/wp-content/uploads/2009/01/delicious_add_from_safari.scpt">delicious_add_from_safari</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maclovin.de/2009/01/applescript-add-document-currently-shown-in-safari-to-delicious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
