<?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>Mac Geeks &#187; Geeky</title>
	<atom:link href="http://www.mac-geeks.de/category/geeky/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mac-geeks.de</link>
	<description>Design is how it works.</description>
	<lastBuildDate>Thu, 22 Dec 2011 07:34:09 +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>poor man&#8217;s TimeMachine backup</title>
		<link>http://www.mac-geeks.de/2009/01/07/poor-mans-timemachine-backup/</link>
		<comments>http://www.mac-geeks.de/2009/01/07/poor-mans-timemachine-backup/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 13:02:54 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/?p=418</guid>
		<description><![CDATA[I wrote a little shell script to do regular backup an older MacOS X system (pre Leopard) or users who don't like TimeMaschine.]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t have MacOS X 10.5 (Leopard) but as well starving for a nice and easy backup then try this shell script. MacOS X provides some simple command line tools for doing a convinient backup out of the box. I wrote a little shell script which sports RSYNC to do regular backups and even archive deleted files for a certain time.</p>
<p>Simply modify your source and destination folder in this script and call it regularly. This can be done with cron. Your contrab entry should look something like this:</p>
<p><code><br />
0 */2 * * * /Users/youraccount/pmt.sh &gt; /dev/null 2&gt;&amp;1<br />
</code></p>
<p>This will start the script every full 2 hours. Should be sufficient.</p>
<p><code></p>
<pre>
#!/bin/bash
# poor man's timemachine backup script
# Author:
# $Date: 2009-01-07 13:46:08 +0100 (Wed, 07 Jan 2009) $
# $Author: fzurell $
# $Revision: 93 $
# $HeadURL: http://fzurell@svn.explain-it.org/trunk/tools/pmt.sh $

# this is where your backup will go
# hence the special character " " ... must be quoted with \
BACKUPDIR=/Volumes/Time\ Machine/pmt

# This is the folder where the Backup should start from
# it will be backed up recursivly
SOURCE=/Users/fzurell/Music

####################################################################
LANG=de_DE.UTF-8
WDAY=`date +%A`
MDAY=`date +%d`

# if you call this script without any parameter
# then deleted files will be archived for one week
# you can optionally choose to keep them one month

case $1 in
	"woche")
		BDAY=$WDAY
		;;
	"monat")
		BDAY=$MDAY
		;;
	"--help")
		echo "Usage: $0 [woche | monat]"
		exit 10
		;;
	*)
		BDAY=$WDAY
		;;
esac

if [ ! -d "$BACKUPDIR" ]; then
		exit 1
fi

/usr/bin/rsync -a -q --delete -b --backup-dir="$BACKUPDIR/$BDAY" "$SOURCE" "$BACKUPDIR/BACKUP"

if [ $? -eq 0 ]; then
	say "Your Backup finished successfully."
else
	say "Sorry, there went something wrong with your Backup."
fi
</pre>
<p></code></p>
<p><em></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2009%2F01%2F07%2Fpoor-mans-timemachine-backup%2F&amp;title=poor+man%26%238217%3Bs+TimeMachine+backup" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2009/01/07/poor-mans-timemachine-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>you can win a free 1Password license</title>
		<link>http://www.mac-geeks.de/2008/11/26/gewinne-eine-lizenz-fr-1password/</link>
		<comments>http://www.mac-geeks.de/2008/11/26/gewinne-eine-lizenz-fr-1password/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 19:58:55 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/11/26/gewinne-eine-lizenz-fr-1password/</guid>
		<description><![CDATA[     Agile Web Solutions  is giving me a free license of their password management tool 1Password to give away. ...  Please just leave a comment on this posting and we will find a winner by Nov. 29th 2008. ...  It's one central place to store passwords and web forms and these data are accessible in almost any browser on my Mac.   ]]></description>
			<content:encoded><![CDATA[<p><img src="http://m.agile.ws-e3.simplecdn.net/aws/images/email/gift/thanksgiving/turkey-wrapped.png" /></p>
<p><a href="http://agilewebsolutions.com/">Agile Web Solutions</a> is giving me a free license of their password management tool 1Password to give away. So you are invited to apply for this free license.</p>
<p>Please just leave a comment on this posting and we will find a winner by Nov. 29th 2008. Don&#8217;t forget your email address to get notified.</p>
<p>I use 1Password for a while and don&#8217;t wanna miss it. It&#8217;s one central place to store passwords and web forms and these data are accessible in almost any browser on my Mac.<br />
<img src="http://www.mac-geeks.de/wp-content/uploads/2008/11/1password.png" width="199" height="177" alt="1Password.png" /></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F26%2Fgewinne-eine-lizenz-fr-1password%2F&amp;title=you+can+win+a+free+1Password+license" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/11/26/gewinne-eine-lizenz-fr-1password/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Mail to Things Script</title>
		<link>http://www.mac-geeks.de/2008/11/10/mail-to-things-script/</link>
		<comments>http://www.mac-geeks.de/2008/11/10/mail-to-things-script/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 08:22:40 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/11/10/mail-to-things-script/</guid>
		<description><![CDATA[ I used to send me eMails with Tasks when I'm on the run.  ...  You just have to create a rule in Mail.app to filter the eMails you want to send to Things and execute the script. 

... Wenn ich unterwegs bin, dann schicke ich mir immer eMails mit Dingen die ich erledigen will.  ...  Man muss in Mail.app nur eine neue Regel einf&#252;gen, welche die entsprechenden eMails filter und dann das AppleScript ausf&#252;hrt.   Dieses f&#252;gt die eMails dann der Things Inbox hinzu. </lang_de>]]></description>
			<content:encoded><![CDATA[<p>I used to send me eMails with Tasks when I&#8217;m on the run. <a href="http://www.omnigroup.com/omnifocus/">OmniFocus</a> is able to fetch these Mails automatically into it&#8217;s Inbox. But not so <a href="http://www.culturedcode.com/things/">Things</a>. I always missed this feature and looked around for a possible Solution.</p>
<p>Now I found one in the <a href="http://www.culturedcode.com/things/wiki/index.php?title=MailToThings">CulturedCode Wiki to Things</a>. They provide an AppleScript to do exactly this. You just have to create a rule in Mail.app to filter the eMails you want to send to Things and execute the script. Things must be running to work.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F11%2F10%2Fmail-to-things-script%2F&amp;title=Mail+to+Things+Script" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/11/10/mail-to-things-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crtl+Tab add-on for Firefox</title>
		<link>http://www.mac-geeks.de/2008/10/29/crtltab-add-on-fr-firefox/</link>
		<comments>http://www.mac-geeks.de/2008/10/29/crtltab-add-on-fr-firefox/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 14:14:03 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/10/29/crtltab-add-on-fr-firefox/</guid>
		<description><![CDATA[ The  Crtl+Tab  add-on for Firefox enables a CoverFlow like navigation between the tabs of your Firefox3.   It also shows a grid overview of your tabs and lets you search for words in all tabs at once.        CoverFlow like navigation      grid overview </lang_en>]]></description>
			<content:encoded><![CDATA[<p>The <a href="https://addons.mozilla.org/en-US/firefox/addon/5244">Crtl+Tab</a> add-on for Firefox enables a CoverFlow like navigation between the tabs of your Firefox3. It also shows a grid overview of your tabs and lets you search for words in all tabs at once.</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/3318003"><img src="http://u1.ipernity.com/9/80/03/3318003.99c22dd3.500.jpg" width="500" height="312" alt="Crtl+Tab Add On for Firefox" border="0" /></a><br />
CoverFlow like navigation</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/3318002"><img src="http://u1.ipernity.com/9/80/02/3318002.c0b0a0c9.500.jpg" width="500" height="160" alt="Crtl+Tab Add On for Firefox" border="0" /></a><br />
grid overview</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F29%2Fcrtltab-add-on-fr-firefox%2F&amp;title=Crtl%2BTab+add-on+for+Firefox" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/10/29/crtltab-add-on-fr-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Machine annoyances</title>
		<link>http://www.mac-geeks.de/2008/10/07/timemaschine-nervigkeiten/</link>
		<comments>http://www.mac-geeks.de/2008/10/07/timemaschine-nervigkeiten/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 14:56:38 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/10/07/timemaschine-nervigkeiten/</guid>
		<description><![CDATA[Bei der Installation habe ich dann aber bewu&#223;t nicht die Wiederherstellung von einem TimeMaschine-Backup gew&#228;hlt, da ich alle Programme und vor allem Einstellungen eben von Grund auf neu anlegen wollte.  ...  Ich habe dann die Platte mal bei M&#246;llus an einen Tiger-Rechner (MacOS X 10.4) gehangen und dort im Terminal als root nochmal versucht den Ordner zu l&#246;schen. 

...I didn't chose to restore my personal account from a TimeMaschine backup during the installation as I wanted a clean and fresh system with all programs and settings setup up new and manually. ...  But then during manual installation of some programs and copying my backed up files a kernel panic occured with the grey screen of death. ...  But Time Machine told me that it couldn't do a backup of a FileVault secured home folder while the user is logged in.]]></description>
			<content:encoded><![CDATA[<p>Last weekend I reinstalled MacOS X Leopard on my MacBook Pro for it had some strange errors I couldn&#8217;t get rid of. Of course I did a Time Machine backups ahead to have my data safe during reinstallation. I didn&#8217;t chose to restore my personal account from a Time Machine backup during the installation as I wanted a clean and fresh system with all programs and settings setup up new and manually. This time I selected to create FileVault user account. This means my home folder is actually an encrypted image file. This image file will be descrypted and mounted as my home directory during login and gets automatically closed and encrypted when I log out.</p>
<p>This worked very well for the first hours. But then during manual installation of some programs and copying my backed up files a kernel panic occured with the grey screen of death. That&#8217;s the last thing you wanna see when you have a mounted encrypted image.</p>
<p>After reboot I still was able to login and everything looked OK. But my keychain was damaged. This wasn&#8217;t a big problem for the moment as there where only a few apps which made entries there. I repaired the broken keychain and everything was OK.</p>
<p>Then, after finishing my restore I tried to delete the old Time Machine backups from my external disks. This isn&#8217;t as easy as it seems. Just dragging it into the Trash bin and empty the Trash will take hours as the Backup consists of million of files. I tried that before&#8230;.</p>
<p>This time I tried to delete the Backups.backupdb folder from the disk with simple Unix commands (rm -rf ). But this doesn&#8217;t work firsthand. Even as superuser I wasn&#8217;t able to delete the files. Always got a &#8220;no permission&#8221; error message. I then checked the usual suspects mds (Spotlight Metadata Service) and hidden file attributes (xattribs). But that didn&#8217;t helped.</p>
<p>Finally I connected the disk to another MacBook with the old Tiger 10.4 MacOS X and tried to erase the files over there. This worked well. So Tiger doesn&#8217;t care about special settings of these files and did it&#8217;s job.</p>
<p>After that I tried to start a fresh and clean backup with Time Machine again. But Time Machine told me that it couldn&#8217;t do a backup of a FileVault secured home folder while the user is logged in. This is logical but sad. As this is a laptop computer and I&#8217;m the only user I&#8217;m almost always logged in when this machine is on. And to extra log off to have a backup done is not really practical. So I decided to kick FileVault for a convinient Time Machine backup. This took a lot of space on my hard disk during the unencryption and about 2 hours.</p>
<p>But now everything is fresh and clean and even PictureSync is working properly again.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F10%2F07%2Ftimemaschine-nervigkeiten%2F&amp;title=Time+Machine+annoyances" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/10/07/timemaschine-nervigkeiten/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>still using Quicksilver and Visor</title>
		<link>http://www.mac-geeks.de/2008/09/12/quicksilver-bleibt-visor-auch/</link>
		<comments>http://www.mac-geeks.de/2008/09/12/quicksilver-bleibt-visor-auch/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 07:28:57 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/09/12/quicksilver-bleibt-visor-auch/</guid>
		<description><![CDATA[I&#8217;m still using Quicksilver as universal control instance. It has some nice features I was missing in LaunchBar. So I can change my network location profile with Quicksilver easily. It&#8217;s accessible under it&#8217;s name. I also managed to tell Quicksilver to offer .jar files as applications so I can launch them via Quicksilver. I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still using Quicksilver as universal control instance. It has some nice features I was missing in LaunchBar. So I can change my network location profile with Quicksilver easily. It&#8217;s accessible under it&#8217;s name. I also managed to tell Quicksilver to offer .jar files as applications so I can launch them via Quicksilver. I didn&#8217;t manage to get this with LaunchBar either.</p>
<p>I&#8217;m also sticking with Visor the Quake style Terminal. I had some problems starting Terminal in the beginning. A SIMBL error was raised but Visor worked properly after confirming this error message. Now I found out how to avoid this message by disabling Quartz background animations in the Visor preferences.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F09%2F12%2Fquicksilver-bleibt-visor-auch%2F&amp;title=still+using+Quicksilver+and+Visor" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/09/12/quicksilver-bleibt-visor-auch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eye candy for geeks &#8211; Visor and Nocturne</title>
		<link>http://www.mac-geeks.de/2008/08/21/geek-stuff-visor-und-nocturne/</link>
		<comments>http://www.mac-geeks.de/2008/08/21/geek-stuff-visor-und-nocturne/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 13:07:20 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/08/21/geek-stuff-visor-und-nocturne/</guid>
		<description><![CDATA[Today I switched from LaunchBar back to QuickSilver. While crawling the Blacktree website I found some other interesting stuff. First thing is Visor &#8211; an extension for the Terminal.app which offers a so called Quake-style Terminal window. When installed, Visor offers a global keyboard shortcut which opens a Terminal window. The Terminal window will slide [...]]]></description>
			<content:encoded><![CDATA[<p>Today I switched from LaunchBar back to <a href="http://blacktree.com/?quicksilver">QuickSilver</a>. While crawling the <a href="http://blacktree.com/">Blacktree</a> website I found some other interesting stuff.</p>
<p>First thing is <a href="http://blacktree.com/?visor">Visor</a> &#8211; an extension for the Terminal.app which offers a so called Quake-style Terminal window. When installed, Visor offers a global keyboard shortcut which opens a Terminal window. The Terminal window will slide in from the top of the screen. Another hot key stroke will hide this Terminal window again.</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2723774"><img src="http://u1.ipernity.com/7/37/74/2723774.a12d7974.500.jpg" width="500" height="244" alt="Visor Preferences" border="0" /></a></p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2723779"><img src="http://u1.ipernity.com/7/37/79/2723779.c606e198.500.jpg" width="500" height="313" alt="Visor Terminal Extension" border="0" /></a></p>
<p>The second application from Blacktree is <a href="http://blacktree.com/?nocturne">Nocturne</a>. This will change your screen colors to a black/white screen for simulating kind of night vision:</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2723805"><img src="http://u1.ipernity.com/7/38/05/2723805.93190123.500.jpg" width="500" height="313" alt="Nocturne" border="0" /></a></p>
<p>The switch from day to night mode can be done automatically by sense of the light sensors of the MacBook Pros.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F08%2F21%2Fgeek-stuff-visor-und-nocturne%2F&amp;title=eye+candy+for+geeks+%26%238211%3B+Visor+and+Nocturne" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/08/21/geek-stuff-visor-und-nocturne/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Online with Vodafone Websession</title>
		<link>http://www.mac-geeks.de/2008/07/21/online-mit-vodafone-websession/</link>
		<comments>http://www.mac-geeks.de/2008/07/21/online-mit-vodafone-websession/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 07:39:23 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/2008/07/21/online-mit-vodafone-websession/</guid>
		<description><![CDATA[If you need an temporary internet connection on the run and don&#8217;t have a special data rate on your mobile contract then maybe the Vodafone Websession is what you need. This is a special mobile accesss point for session based internet connections. You will be charged on you normal telephon bill our via websession voucher. [...]]]></description>
			<content:encoded><![CDATA[<p>If you need an temporary internet connection on the run and don&#8217;t have a special data rate on your mobile contract then maybe the Vodafone Websession is what you need.</p>
<p>This is a special mobile accesss point for session based internet connections. You will be charged on you normal telephon bill our via websession voucher. All you need is some special settings for the connection</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2462830"><img src="http://u1.ipernity.com/7/28/30/2462830.96b18f68.500.jpg" width="500" height="395" alt="Vodafone Websession Webseite" border="0" /></a></p>
<p>You can choose to get 30 minutes, 1 hour our 24 hour session. For the 30 minutes session you&#8217;ll pay 1,95 EUR which isn&#8217;t quite cheap. But if you don&#8217;t have any data rate booked on your contract you&#8217;ll surely pay about 20 EUR per 1 MByte!!!</p>
<p>Normaly Vodafone is selling the Websession package with special UMTS/3G hardware like an USB-Stick or 3G ExpressCard. But if you got a mobile phone with an UMTS/3G modem which is recognized by your computer you&#8217;re all done. All you need is set up some special connection settings</p>
<p>Here are the &#8220;secret&#8221; settings:</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2462775"><img src="http://u1.ipernity.com/7/27/75/2462775.e501f10d.jpg" width="463" height="374" alt="Settings Vodafone Websession" border="0" /></a><br />
APN: event.vodafone.de<br />
username: my_username<br />
password: mypassword<br />
telephone number: *99***1#</p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2462774"><img src="http://u1.ipernity.com/7/27/74/2462774.a0c3d52c.500.jpg" width="500" height="356" alt="Vodafone Websession Settings" border="0" /></a></p>
<p><a href="http://www.ipernity.com/doc/maxheadroom/2462792"><img src="http://u1.ipernity.com/7/27/92/2462792.dddbfa44.jpg" width="450" height="422" alt="Vodafone Websession Countdown" border="0" /></a></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F07%2F21%2Fonline-mit-vodafone-websession%2F&amp;title=Online+with+Vodafone+Websession" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/07/21/online-mit-vodafone-websession/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getting rid of old Time Maschine backups</title>
		<link>http://www.mac-geeks.de/2008/05/16/selektiv-alte-time-maschine-backups-loschen/</link>
		<comments>http://www.mac-geeks.de/2008/05/16/selektiv-alte-time-maschine-backups-loschen/#comments</comments>
		<pubDate>Fri, 16 May 2008 19:15:46 +0000</pubDate>
		<dc:creator>falko</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/?p=359</guid>
		<description><![CDATA[If your Time Maschine backup volumes filles up you may get a warning message from Time Maschine. It tells you that Time Maschine has deleted the oldest backup set to gain enough space for the actual backup. You can acknowledge the message and even opt to not see it in the future. Time Maschine will [...]]]></description>
			<content:encoded><![CDATA[<p>If your Time Maschine backup volumes filles up you may get a warning message from Time Maschine. It tells you that Time Maschine has deleted the oldest backup set to gain enough space for the actual backup. You can acknowledge the message and even opt to not see it in the future. Time Maschine will then automatically remove oldest backups when needed.<br />
<a href="http://www.ipernity.com/doc/maxheadroom/2002685"><img src="http://u1.ipernity.com/u/5/7B/CE/1887867.886e1b5a1.m.jpg" border="0" alt="TM 1" width="240" height="170" /></a><br />
But the deletion of old backups will take some extra time on almost every backup. So maybe you wanna get rid of some old backups manually. This can easily be achieved by starting Time Maschine, navigating to the backup you want to delete and selecting the little gear icon in the Finder. There is an option &#8220;Delete Backup&#8221;. This will remove this point in time of your backup after asking for your authorization.<br />
<a href="http://www.ipernity.com/doc/maxheadroom/2002689"><img src="http://u1.ipernity.com/u/5/7F/CE/1887871.b28e1c831.m.jpg" border="0" alt="TM 3" width="240" height="150" /></a><br />
<a href="http://www.ipernity.com/doc/maxheadroom/2002688"><img src="http://u1.ipernity.com/u/5/7E/CE/1887870.b2e34dc01.m.jpg" border="0" alt="TM 4" width="240" height="150" /></a><br />
If you removed a couple of backup sets to be removed Time Maschine will need some time to wipe all the files. You will see a progress window like when flushing the trash can.<br />
After the clean up you should have enough space for your next couple of backups. You should not delete any files or folders from the backup volume by your self. Time Maschine is doing an intelligent sparse backup. If you delete files or folders manually you may destroy the consistency of your backup and thus make it useless.</p>
<p><!-- technorati tags start --></p>
<p style="text-align:right;font-size:10px;">Technorati Tags: <a rel="tag" href="http://www.technorati.com/tag/Time Maschine">Time Maschine</a>, <a rel="tag" href="http://www.technorati.com/tag/Backup">Backup</a>, <a rel="tag" href="http://www.technorati.com/tag/MacOS X">MacOS X</a>, <a rel="tag" href="http://www.technorati.com/tag/Leopard">Leopard</a></p>
<p><!-- technorati tags end --></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F05%2F16%2Fselektiv-alte-time-maschine-backups-loschen%2F&amp;title=getting+rid+of+old+Time+Maschine+backups" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/05/16/selektiv-alte-time-maschine-backups-loschen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Stack im Dock</title>
		<link>http://www.mac-geeks.de/2008/04/18/recent-stack-im-dock/</link>
		<comments>http://www.mac-geeks.de/2008/04/18/recent-stack-im-dock/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 15:14:33 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mac-geeks.de/?p=354</guid>
		<description><![CDATA[Heut habe ich eine tolle neue Funktion für die Stacks gefunden, welche nur über die Kommandozeile verfügbar ist, nämlich die Recent Stacks. Hier kann man sich die zuletzt benutzten Programme, Dokumente, Server etc. anzeigen lassen. Einfach defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }' im Terminal [...]]]></description>
			<content:encoded><![CDATA[<p>Heut habe ich eine tolle neue Funktion für die Stacks gefunden, welche nur über die Kommandozeile verfügbar ist, nämlich die Recent Stacks. Hier kann man sich die zuletzt benutzten Programme, Dokumente, Server etc. anzeigen lassen. Einfach <em><tt><a title="Triple-click, copy, then paste into Terminal"></a></tt></em></p>
<pre><code>defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }'</code></pre>
<p>im Terminal ausführen und dann</p>
<pre><code>killall Dock</code></pre>
<p>zum neustarten des Docks. Voilà
<a href='http://www.mac-geeks.de/2008/04/18/recent-stack-im-dock/bild-1/' title='bild-1'><img width="150" height="150" src="http://www.mac-geeks.de/wp-content/uploads/2008/04/bild-1-150x150.png" class="attachment-thumbnail" alt="bild-1" title="bild-1" /></a>
<a href='http://www.mac-geeks.de/2008/04/18/recent-stack-im-dock/bild-2/' title='bild-2'><img width="150" height="150" src="http://www.mac-geeks.de/wp-content/uploads/2008/04/bild-2-150x150.png" class="attachment-thumbnail" alt="bild-2" title="bild-2" /></a>
</p>
<p>Mit der rechten Taste auf den neuen Stack kann man dann die verschiedenen Typen auswählen.<br />
Zum anpassen des Stacks kann man noch</p>
<pre><code>defaults write com.apple.recentitems ABC -dict MaxAmount nn</code></pre>
<p>ausführen, wobei man ABC durch <em>Application</em> oder <em>Documents</em> ersetzten kann und <em>nn</em> durch eine beliebe Zahl.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->


<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mac-geeks.de%2F2008%2F04%2F18%2Frecent-stack-im-dock%2F&amp;title=Recent+Stack+im+Dock" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.mac-geeks.de/2008/04/18/recent-stack-im-dock/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

