<?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>.: van Nuffel's Blog :.</title>
	<atom:link href="http://www.farmer.nu/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.farmer.nu</link>
	<description>Life is to short to don't Blog</description>
	<lastBuildDate>Tue, 26 Jul 2011 09:21:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Copy all files from subdirectories into a target dir</title>
		<link>http://www.farmer.nu/?p=163</link>
		<comments>http://www.farmer.nu/?p=163#comments</comments>
		<pubDate>Tue, 26 Jul 2011 09:20:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=163</guid>
		<description><![CDATA[Nice little Shell line to copy all files from a type recursive from subdirectories in one other Directory $ find DiretoryWithTargetDirs/ -iname &#8216;*.jpg&#8217; -exec cp &#8216;{}&#8217; /my/target/directory/ &#8216;;&#8217;]]></description>
			<content:encoded><![CDATA[<p>Nice little Shell line to copy all files from a type recursive from subdirectories in one other Directory</p>
<p><span>$ find DiretoryWithTargetDirs/ -iname &#8216;*.jpg&#8217; -exec cp &#8216;{}&#8217; /my/target/directory/ &#8216;;&#8217; </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto simple Share iPhoto Libary via Symbolic Link to one or more User(s) on Mac OSX</title>
		<link>http://www.farmer.nu/?p=141</link>
		<comments>http://www.farmer.nu/?p=141#comments</comments>
		<pubDate>Sat, 07 Mar 2009 16:08:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Technologys]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=141</guid>
		<description><![CDATA[There are some Tutorials out there, howto share the iPhoto Libary to different Users over the Share Folder, i not really like them. This Tutorial should explain you how you do this on a UNIX way without moving your Pictures etc just over a simple Symbolic Link. First open a Terminal on your System and [...]]]></description>
			<content:encoded><![CDATA[<p>There are some Tutorials out there, howto share the iPhoto Libary to different Users over the Share Folder, i not really like them. This Tutorial should explain you how you do this on a UNIX way without moving your Pictures etc just over a simple Symbolic Link.</p>
<p>First open a Terminal on your System and set your root Password (Your User should have admin rights) if you havent done that yet (ps. with this User you can anything on your System its like a God Mode) <em>Italic</em> shows the Commands you should execute with a Enter :</p>
<p><em>$  sudo passwd root</em><br />
<span style="color: #c0c0c0;">P<span style="color: #999999;">assword:<br />
Changing password for root.<br />
New password:<br />
Retype new password:</span></span></p>
<p><span style="color: #000000;">N</span>ow Change your Current Terminal User to Root:</p>
<p><em>$ su</em><br />
<span style="color: #999999;">Password:</span></p>
<p>Watch for the Right Users that you want to use :</p>
<p><em>$ ls -la /Users/</em><br />
<span style="color: #999999;">drwxr-xr-x   6 root   admin   204 31 Mai  2008 .<br />
drwxrwxr-t  39 root   admin  1394 14 Jan 21:53 ..<br />
-rw-r&#8211;r&#8211;   1 root   wheel     0 25 Nov  2007 .localized<br />
drwxrwxrwt   6 root   wheel   204 11 Nov 22:16 Shared<br />
drwxr-xr-x+ 37 User1    staff  1258  6 Mär 10:58 User1<br />
drwxr-xr-x+ 15 User2  staff   510 17 Aug  2008 User2</span></p>
<p>Comment out your Old iPhoto Libary from User 2 that should use the Share (Symbolic Link) of the User 1 Folder  (Tipp: Use the TAB Button on the Shell to AutoComplete Paths if they are clearly ):</p>
<p><em>$ mv /Users/User2/Pictures/iPhoto\ Library/ /Users/User2/Pictures/_iPhoto\ Library/</em></p>
<p>Make a Symbolic Link with ln (type <em>man ln</em> if you want to findout more) from User 1 to User 2:</p>
<p><em>$ ln -s /Users/User1/Pictures/iPhoto\ Library/ /Users/User2/Pictures/iPhoto\ Library</em></p>
<p>Set the right permission that User 2 can Read the Folder of User 1</p>
<p><em>$ chmod 770 /Users/User1/Pictures/<br />
</em><em>$ chmod -R 775 /Users/User1/Pictures/iPhoto\ Library/</em></p>
<p>And change Owner that User 2 can use the Symbolic Link that you made with the root User :</p>
<p><em>$ chown -h User2:staff /Users/User2/Pictures/iPhoto\ Library</em></p>
<p>Your Finished !</p>
<p>Thats it so check out the iPhoto of User 2 id should look like the iPhoto of User 1.</p>
<p>If you want to check out how a Symbolic Link  looks like on a Shell :</p>
<p><em>$ ls -la /Users/User2/Pictures/</em><br />
<span style="color: #999999;">lrwxr-xr-x   1 User2   staff   35  7 Mär 16:52 iPhoto Library -&gt; /Users/User1/Pictures/iPhoto Library/</span></p>
<p>Ps. Symbolic Links are one of the coolest Features on a UNIX System ! Defently ! You can even Use them over a Network drive or IP-Tunnel with SSH ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=141</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto use free internet on a Kiosk App like they use in Mc Donalds</title>
		<link>http://www.farmer.nu/?p=129</link>
		<comments>http://www.farmer.nu/?p=129#comments</comments>
		<pubDate>Thu, 19 Feb 2009 13:49:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[Technologys]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=129</guid>
		<description><![CDATA[Type in the IE Browser Adressbar : about:&#60;a href=&#8221;http://www.google.ch/&#8221;&#62;test&#62;&#60;/a&#62; Then click on the link in the IE Browser Titlebar and now Surf for Free !!!  ;-)]]></description>
			<content:encoded><![CDATA[<p>Type in the IE Browser Adressbar :</p>
<p><em>about:&lt;a href=&#8221;http://www.google.ch/&#8221;&gt;test&gt;&lt;/a&gt;</em></p>
<p>Then click on the link in the IE Browser Titlebar and now Surf for Free !!!  ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renew Qmail SSL Server Cert for Mail-Toaster on FreeBSD</title>
		<link>http://www.farmer.nu/?p=118</link>
		<comments>http://www.farmer.nu/?p=118#comments</comments>
		<pubDate>Thu, 08 Jan 2009 08:53:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Technologys]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=118</guid>
		<description><![CDATA[1once per year you should renew your SSL Certificate. I have each year the same problem that i forgot how i did it last year, so i made now a short tutorial and hope i dont forgot it again :-). For my Mail System, i use http://www.mail-toaster.org/ its for my probosal the best system and [...]]]></description>
			<content:encoded><![CDATA[<p>1once per year you should renew your SSL Certificate. I have each year the same problem that i forgot how i did it last year, so i made now a short tutorial and hope i dont forgot it again :-).</p>
<p>For my Mail System, i use <a href="http://www.mail-toaster.org/" target="_blank">http://www.mail-toaster.org/</a> its for my probosal the best system and has a nice install guide, secure ( <a href="http://www.tnpi.net/wiki/MT_Installation" target="_blank">http://www.tnpi.net/wiki/MT_Installation</a> ) and has nice ways to throw spam away.</p>
<p>Here is the short process howto renew the SSL Cert :</p>
<p><em>$ cd /var/qmail/control/<br />
$ mv servercert.pem servercert_old.pem<br />
$ cd /usr/local/src/mail/qmail-1.03<br />
$ make cert</em></p>
<p>always that easy that i LOL each time i did it ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=118</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto easy Download &amp; Install Google Chrome Browser App &amp; Source Code for OSX</title>
		<link>http://www.farmer.nu/?p=111</link>
		<comments>http://www.farmer.nu/?p=111#comments</comments>
		<pubDate>Mon, 15 Dec 2008 22:43:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Technologys]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=111</guid>
		<description><![CDATA[Download OSX App here : http://www.codeweavers.com/services/ports/chromium/ Howto Install Source Code : Open a Shell / Terminal on OSX and Execute the following lines (may you wish todo this as SuperUser &#8211; $ su ) $ svn co http://src.chromium.org/svn/trunk/depot_tools/mac depot_tools $ export PATH=`pwd`/depot_tools:$PATH $ mkdir -p ~/src/trunk $ cd ~/src/trunk $ gclient config http://src.chromium.org/svn/trunk/src $ chmod +x [...]]]></description>
			<content:encoded><![CDATA[<p>Download OSX App here : <a href="http://www.codeweavers.com/services/ports/chromium/" target="_blank">http://www.codeweavers.com/services/ports/chromium/</a></p>
<p>Howto Install Source Code :</p>
<p>Open a Shell / Terminal on OSX and Execute the following lines (may you wish todo this as SuperUser &#8211; $ su )</p>
<p><em>$ svn co http://src.chromium.org/svn/trunk/depot_tools/mac depot_tools<br />
$ export PATH=`pwd`/depot_tools:$PATH<br />
$ mkdir -p ~/src/trunk<br />
$ cd ~/src/trunk<br />
$ gclient config http://src.chromium.org/svn/trunk/src<br />
$ chmod +x ~/src/chromium/src/third_party/WebKit/JavaScriptCore/kjs/create_hash_table</em></p>
<p>Tnx very much for that fast Port Coders @ <a href="http://dev.chromium.org/developers/contributing-code" target="_blank">chromium.org</a> ( Doku &amp; Source ) &amp; <a href="http://www.codeweavers.com/" target="_blank">codeweavers.com</a> they ported the Windows Version in 1 Week !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=111</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Secure Backup Directory with 1 Command line under UNIX</title>
		<link>http://www.farmer.nu/?p=103</link>
		<comments>http://www.farmer.nu/?p=103#comments</comments>
		<pubDate>Tue, 14 Oct 2008 12:24:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Technologys]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=103</guid>
		<description><![CDATA[Made a RSync Backup over SSH tunnel : $ /usr/local/bin/rsync -azv &#8211;delete &#8211;rsh=&#8221;/usr/bin/ssh -l backup&#8221; &#8211;rsync-path=&#8221;sudo /usr/local/bin/rsync&#8221; /home/SourceDestination YourHostOrIP:/home/backupDestination Requirements : SSH, RSync, Sudo Test it on your Command Line or Shell Script If you want to automate it, use the crontab and exchange the ssh keys to overrule the ssh-password.]]></description>
			<content:encoded><![CDATA[<p>Made a RSync Backup over SSH tunnel :</p>
<p><em>$ /usr/local/bin/rsync -azv &#8211;delete &#8211;rsh=&#8221;/usr/bin/ssh -l backup&#8221; &#8211;rsync-path=&#8221;sudo /usr/local/bin/rsync&#8221; /home/SourceDestination YourHostOrIP:/home/backupDestination</em></p>
<p>Requirements : SSH, RSync, Sudo</p>
<p>Test it on your Command Line or Shell Script</p>
<p>If you want to automate it, use the crontab and exchange the ssh keys to overrule the ssh-password.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=103</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Really nice Painted and Programmed FlashGame</title>
		<link>http://www.farmer.nu/?p=95</link>
		<comments>http://www.farmer.nu/?p=95#comments</comments>
		<pubDate>Tue, 14 Oct 2008 12:03:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Games]]></category>
		<category><![CDATA[Technologys]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=95</guid>
		<description><![CDATA[http://www.crappycat.com/ (Tnx to Dani for that Link)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.crappycat.com/" target="_blank">http://www.crappycat.com/</a> (Tnx to Dani for that Link)<a href="http://www.crappycat.com/" target="_blank"><br />
</a></p>
<p><a href="http://www.farmer.nu/wp-content/uploads/2008/10/crappy.jpg" rel="lightbox[95]"><img class="alignnone size-medium wp-image-96" title="crappy" src="http://www.farmer.nu/wp-content/uploads/2008/10/crappy-300x232.jpg" alt="" width="300" height="232" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=95</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Cool Particle System, 3D and Math Stuff.</title>
		<link>http://www.farmer.nu/?p=89</link>
		<comments>http://www.farmer.nu/?p=89#comments</comments>
		<pubDate>Tue, 14 Oct 2008 11:45:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash & Flex]]></category>
		<category><![CDATA[Technologys]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=89</guid>
		<description><![CDATA[http://www.erikhallander.com/ http://www.flashandmath.com/ http://www.lostinactionscript.com/ http://archive.sansumbrella.com/ http://www.rockabit.com/ (very very cool idea !!!)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.erikhallander.com/blog/2008/bitmapvector-into-firefly-particles-as30.html" target="_blank">http://www.erikhallander.com/</a></p>
<p><a href="http://www.flashandmath.com/advanced/particles3d/index.html" target="_blank">http://www.flashandmath.com/</a></p>
<p><a href="http://www.lostinactionscript.com/blog/index.php/2008/08/31/as3-tween-engine-tweensy-preview/" target="_blank">http://www.lostinactionscript.com/</a></p>
<p><a href="http://archive.sansumbrella.com/2008/05_Walking%20Cubes/" target="_blank">http://archive.sansumbrella.com/</a></p>
<p><a href="http://www.rockabit.com/flex/lsystem/" target="_blank">http://www.rockabit.com/</a> (very very cool idea !!!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=89</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Live Video ! .. mit einem Jailbroken Iphone jederzeit und von Irgendwo auf Qik.com</title>
		<link>http://www.farmer.nu/?p=79</link>
		<comments>http://www.farmer.nu/?p=79#comments</comments>
		<pubDate>Tue, 16 Sep 2008 19:29:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash & Flex]]></category>
		<category><![CDATA[IPhone]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=79</guid>
		<description><![CDATA[Ein wirklich geiles Iphone Community Projekt, wir werden ab jetzt alles unzensiert und live sehen können wie zb. Morde, Diebstähle, Liebe, Panties aufm Wc .. http://www.qik.com/ Wer eine Version 2 besitzt dem wird sogar die GPS Position der Aufnahme angezeigt. Hier mein LiveFeed &#38; Archiv (ziemlich Doof und nur zu Testzwecken aber versuche mal noch [...]]]></description>
			<content:encoded><![CDATA[<p>Ein wirklich geiles Iphone Community Projekt, wir werden ab jetzt alles unzensiert und live sehen können wie zb. Morde, Diebstähle, Liebe, Panties aufm Wc .. <a href="http://www.qik.com/" target="_blank">http://www.qik.com/<br />
</a>Wer eine Version 2 besitzt dem wird sogar die GPS Position der Aufnahme angezeigt.</p>
<p>Hier mein LiveFeed &amp; Archiv (ziemlich Doof und nur zu Testzwecken aber versuche mal noch n paar jesse im verlaufe der Zeit aufzunehmen):</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="319" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://qik.com/swfs/qik_player.swf?streamname=5c18e153848b488992d61ad1fd552d91&amp;vid=288770&amp;playback=false&amp;polling=false&amp;user=_nu&amp;displayname=_nu&amp;safelink=_nu&amp;userlock=true&amp;islive=&amp;username=anonymous" /><embed type="application/x-shockwave-flash" width="425" height="319" src="http://qik.com/swfs/qik_player.swf?streamname=5c18e153848b488992d61ad1fd552d91&amp;vid=288770&amp;playback=false&amp;polling=false&amp;user=_nu&amp;displayname=_nu&amp;safelink=_nu&amp;userlock=true&amp;islive=&amp;username=anonymous" allowscriptaccess="always" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=79</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Murphys Law / Murphys Gesetz</title>
		<link>http://www.farmer.nu/?p=76</link>
		<comments>http://www.farmer.nu/?p=76#comments</comments>
		<pubDate>Tue, 16 Sep 2008 19:22:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.farmer.nu/?p=76</guid>
		<description><![CDATA[Viel zitierter Spruch, doch keiner weiss woher &#8230;. ['mə:fis-] ein in allen Lebensbereichen zitierter Ausspruch von Edward A. Murphy jr.: „If anything can go wrong &#8211; it will“ (deutsch „Wenn etwas schief gehen kann, dann wird es schief gehen“). Murphy testete 1949 bei der U. S. Air Force das Verhalten von Piloten bei hoher Beschleunigung; dafür [...]]]></description>
			<content:encoded><![CDATA[<p class="p--postfix">Viel zitierter Spruch, doch keiner weiss woher &#8230;.</p>
<p class="p--postfix">['m<span class="font-name--unicode">ə</span>:fis-]</p>
<p>ein in allen Lebensbereichen zitierter Ausspruch von Edward A. <em>Murphy</em> jr.: „If anything can go wrong &#8211; it will“ (deutsch „Wenn etwas schief gehen kann, dann wird es schief gehen“). Murphy testete 1949 bei der U. S. Air Force das Verhalten von Piloten bei hoher Beschleunigung; dafür waren 16 Sensoren am Körper des Piloten angebracht. Für die Verbindung der Stecker mit den Elektroden am Körper gab es je zwei Möglichkeiten. Die Wahrscheinlichkeit, alle Verbindungsstecker falsch anzubringen, betrug 1 : 65535. Als ein Testpilot dennoch alle Stecker falsch verband, formulierte Murphy seinen Lehrsatz.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.farmer.nu/?feed=rss2&#038;p=76</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

