<?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>Manuel Studer &#187; Links</title>
	<atom:link href="http://www.manuelstuder.ch/category/links/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.manuelstuder.ch</link>
	<description></description>
	<lastBuildDate>Thu, 03 Nov 2011 23:09:07 +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>How to automatically open .torrent and other files in Safari.</title>
		<link>http://www.manuelstuder.ch/2008/03/14/how-to-automatically-open-torrent-and-other-files-in-safari/</link>
		<comments>http://www.manuelstuder.ch/2008/03/14/how-to-automatically-open-torrent-and-other-files-in-safari/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 16:28:46 +0000</pubDate>
		<dc:creator>Manuel</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://manuelstuder.ch/2008/03/14/how-to-automatically-open-torrent-and-other-files-in-safari/</guid>
		<description><![CDATA[This an upgrade of the previous post, now much simpler and works with Snow Leopard too.

 First, you have to modify what Safari considers as a &#8220;safe&#8221; file. Check the option Open &#8220;safe&#8221; files after downloading in Safari&#8217;s Preferences panel.
Download this plist and put it in the folder &#60;your-username&#62;/Library/Preferences.
Finally restart Safari, that&#8217;s it!

If you want [...]]]></description>
			<content:encoded><![CDATA[<p>This an upgrade of the previous post, now much simpler and works with Snow Leopard too.</p>
<ol>
<li> First, you have to modify what Safari considers as a &#8220;safe&#8221; file. Check the option <strong>Open &#8220;safe&#8221; files after downloading</strong> in Safari&#8217;s Preferences panel.</li>
<li>Download this <a title="plist" href="http://manuelstuder.ch/Safari-safe-files-example.zip">plist</a> and put it in the folder <strong>&lt;your-username&gt;/Library/Preferences</strong>.</li>
<li>Finally restart Safari, that&#8217;s it!</li>
</ol>

<a href='http://www.manuelstuder.ch/2008/03/14/how-to-automatically-open-torrent-and-other-files-in-safari/safari-preferences-panel/' title='Safari-Preferences-Panel'><img width="150" height="150" src="http://www.manuelstuder.ch/wp-content/uploads/2008/03/safari-preferences-panel-150x150.jpg" class="attachment-thumbnail" alt="" title="Safari-Preferences-Panel" /></a>
<a href='http://www.manuelstuder.ch/2008/03/14/how-to-automatically-open-torrent-and-other-files-in-safari/library-preferences/' title='Library-Preferences'><img width="150" height="150" src="http://www.manuelstuder.ch/wp-content/uploads/2008/03/library-preferences-150x150.jpg" class="attachment-thumbnail" alt="" title="Library-Preferences" /></a>

<p><span style="text-decoration: underline;">If you want to digg deeper down: follow this guide.</span></p>
<ol>
<li>Create the file <strong>com.apple.DownloadAssessment.plist</strong> (if it doesn&#8217;t already exist) in the folder<strong> &lt;your-username&gt;/Library/Preferences</strong>.</li>
<li>Then copy &amp; paste the xml code stated below in the file. In this example for a .torrent file.</li>
<li>Save it, <strong>restart Safari</strong> &#8230; and voilà!</li>
</ol>
<p>&lt;!DOCTYPE plist PUBLIC &#8220;-//Apple Computer//DTD PLIST 1.0//EN&#8221; &#8220;http://www.apple.com-PropertyList-1.0.dtd&#8221;&gt;<br />
&lt;plist version=&#8221;1.0&#8243;&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;LSRiskCategorySafe&lt;/key&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;LSRiskCategoryExtensions&lt;/key&gt;<br />
&lt;array&gt;<br />
<span style="color: #ff0000;"> &lt;string&gt;torrent&lt;/string&gt;</span><br />
&lt;/array&gt;<br />
&lt;/dict&gt;<br />
&lt;/dict&gt;<br />
&lt;/plist&gt;</p>
<p><span style="text-decoration: underline;">Added on december 26th 2009. Thanks to Pan Maselko for this notice.</span></p>
<p>The most important part of the XML above is the <span style="color: #008000;"><span style="color: #ff0000;">&lt;string&gt;torrent&lt;/string</span><span style="color: #ff0000;">&gt;</span></span> part. This describes the extension (.torrent) which is considered as safe for safari. So that, you can do this for almost any type of file, for example for <strong>.psd</strong> files. And of course you can have more than one extension to be safe at the same time. This can be done like this:</p>
<p>&lt;!DOCTYPE plist PUBLIC &#8220;-//Apple Computer//DTD PLIST 1.0//EN&#8221; &#8220;http://www.apple.com-PropertyList-1.0.dtd&#8221;&gt;<br />
&lt;plist version=&#8221;1.0&#8243;&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;LSRiskCategorySafe&lt;/key&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;LSRiskCategoryExtensions&lt;/key&gt;<br />
&lt;array&gt;<br />
<span style="color: #ff0000;"> &lt;string&gt;torrent&lt;/string&gt;</span><br />
<span style="color: #ff0000;"> &lt;string&gt;psd&lt;/string&gt;<br />
&lt;string&gt;xyz&lt;/string&gt;</span><br />
&lt;/array&gt;<br />
&lt;/dict&gt;<br />
&lt;/dict&gt;<br />
&lt;/plist&gt;</p>
<p><span style="color: #ff0000;"><strong>Update:</strong></span></p>
<p>For .rar files, thanks to dsuddya</p>
<p>&lt;!DOCTYPE plist PUBLIC &#8220;-//Apple Computer//DTD PLIST 1.0//EN&#8221; &#8220;http://www.apple.com-PropertyList-1.0.dtd&#8221;&gt;<br />
&lt;plist version=&#8221;1.0&#8243;&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;LSRiskCategorySafe&lt;/key&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;LSRiskCategory<span style="color: #0000ff;">ContentTypes</span>&lt;/key&gt;<br />
&lt;array&gt;<br />
&lt;string&gt;public.archive&lt;/string&gt;<br />
&lt;/array&gt;<br />
&lt;key&gt;LSRiskCategoryExtensions&lt;/key&gt;<br />
&lt;array&gt;<br />
&lt;string&gt;rar&lt;/string&gt;<br />
&lt;/array&gt;<br />
&lt;/dict&gt;<br />
&lt;/dict&gt;<br />
&lt;/plist&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manuelstuder.ch/2008/03/14/how-to-automatically-open-torrent-and-other-files-in-safari/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Solving CAPI_Worker Module crashes of Sony Ericsson&#8217;s PC Suite</title>
		<link>http://www.manuelstuder.ch/2007/11/23/solving-capi_worker-module-errors-in-sony-ericcsons-pc-suite/</link>
		<comments>http://www.manuelstuder.ch/2007/11/23/solving-capi_worker-module-errors-in-sony-ericcsons-pc-suite/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 16:03:32 +0000</pubDate>
		<dc:creator>Manuel</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://manuelstuder.ch/2007/11/23/solving-capi_worker-module-errors-in-sony-ericcsons-pc-suite/</guid>
		<description><![CDATA[If you encounter permanent crashes on the CAPI_Worker Module while booting Windows, then you might solve the problem with the following guide:
Goto &#8220;Control Panel&#8221; =&#62; &#8220;Add Hardware&#8221;
Select &#8220;Yes, I have already connected the hardware&#8221;
Click &#8220;Next&#8221;
Select &#8220;Add New Hardware Device&#8221; (at the bottom of the list)
Click &#8220;Next&#8221;
Select &#8220;Install the hardware that i manually select from a [...]]]></description>
			<content:encoded><![CDATA[<p>If you encounter permanent crashes on the <strong>CAPI_Worker Module</strong> while booting Windows, then you might solve the problem with the following guide:</p>
<p><strong>Goto &#8220;Control Panel&#8221; =&gt; &#8220;Add Hardware&#8221;<br />
Select &#8220;Yes, I have already connected the hardware&#8221;<br />
Click &#8220;Next&#8221;<br />
Select &#8220;Add New Hardware Device&#8221; (at the bottom of the list)<br />
Click &#8220;Next&#8221;<br />
Select &#8220;Install the hardware that i manually select from a list (Advanced)&#8221;<br />
Click &#8220;Next&#8221;<br />
Select &#8220;Ports (COM &amp; LPT)<br />
Click &#8220;Next&#8221;<br />
Select &#8220;(Standard port types)&#8221; &#8211; In left side<br />
Select &#8220;Communications Port&#8221; &#8211; in right side<br />
Click &#8220;Next&#8221;<br />
Click &#8220;Next&#8221;<br />
Click &#8220;Finish&#8221;</strong></p>
<p>You should now be able to reboot and the CAPI_Worker module should no longer crash on startup. This guide solved my problem with my old Sony Ericsson W810i and the Sony Ericsson Suite. I used Windows XP on the Parallels environment so that I could upgrade the firmware of my cellphone.<br />
The original discussion thread can be found <a href="http://developer.sonyericsson.com/thread.jspa?threadID=39461&amp;start=0&amp;tstart=0">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manuelstuder.ch/2007/11/23/solving-capi_worker-module-errors-in-sony-ericcsons-pc-suite/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>Ripping Real Media, Windows Media and Quicktime streams (.rm, .ra, .ram, .wmv, .mov)  with OS X.</title>
		<link>http://www.manuelstuder.ch/2007/08/30/ripping-real-media-windows-media-and-quicktime-streams-rm-ra-ram-wmv-mov-with-os-x/</link>
		<comments>http://www.manuelstuder.ch/2007/08/30/ripping-real-media-windows-media-and-quicktime-streams-rm-ra-ram-wmv-mov-with-os-x/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 17:54:53 +0000</pubDate>
		<dc:creator>Manuel</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://manuelstuder.ch/2007/08/30/ripping-real-media-windows-media-and-quicktime-streams-rm-ra-ram-wmv-mov-with-os-x/</guid>
		<description><![CDATA[So here&#8217;s the guide for ripping streams with Mac OS X:

Download and install Macports (open source)
Fire up a Mac OS X terminal window
Type: sudo port selfupdate and give your password so that you are up to date
Then type: sudo port install mplayer and wait some minutes&#8230; (Mplayer is open source too)
Then you can rip your [...]]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s the guide for ripping streams with Mac OS X:</p>
<ol>
<li>Download and install <a href="http://www.macports.org/">Macports</a> (open source)</li>
<li>Fire up a Mac OS X terminal window</li>
<li>Type: <strong>sudo port selfupdate</strong> and give your password so that you are up to date</li>
<li>Then type: <strong>sudo port install mplayer</strong> and wait some minutes&#8230; (Mplayer is open source too)</li>
<li>Then you can rip your favorite stream with the following command:<br />
<strong> mplayer -dumpstream &#8220;&lt;url&gt;&#8221; -dumpfile &lt;file&gt;</strong></li>
</ol>
<p>If it does not work, try with the playlist option:<br />
<strong>mplayer -playlist &#8220;&lt;url&gt;&#8221; -dumpstream  -dumpfile &lt;file&gt;</strong></p>
<p>An example command:<br />
<strong>mplayer -dumpstream &#8220;http://xydom.com/ram/v/heroes.rm&#8221; -dumpfile heroes.rm</strong></p>
<p>Remarks:<br />
i)  If you can choose between a rtsp:// and pnm:// stream, take the rtsp stream.<br />
ii) Don&#8217;t forget the <strong>&#8220;&#8221;</strong> which embraces the url.</p>
<p>For additional information you can check <a href="http://gentoo-wiki.com/HOWTO_Rip_Streams_With_MPlayer">Gentoo&#8217;s wiki on Mplayer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manuelstuder.ch/2007/08/30/ripping-real-media-windows-media-and-quicktime-streams-rm-ra-ram-wmv-mov-with-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working Mac OS X Driver for Samsung Laserprinter ML-1750</title>
		<link>http://www.manuelstuder.ch/2007/08/06/working-mac-os-x-driver-for-samsung-laserprinter-ml-1750/</link>
		<comments>http://www.manuelstuder.ch/2007/08/06/working-mac-os-x-driver-for-samsung-laserprinter-ml-1750/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 18:34:58 +0000</pubDate>
		<dc:creator>Manuel</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://manuelstuder.ch/2007/08/06/working-mac-os-x-driver-for-samsung-laserprinter-ml-1750/</guid>
		<description><![CDATA[I&#8217;ve finally found a working driver for my old Samsung ML-1750 Laserprinter. It is based on CUPS. It is in beta state but works like a charm! It has been working perfectly since many years!
You can download it right here from my website: Samsung  SPL2 Installer
Or as an alternative you can use the HPIJS driver.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally found a working driver for my old Samsung ML-1750 Laserprinter. It is based on CUPS.<span style="text-decoration: line-through;"> It </span><span style="text-decoration: line-through;">is in beta state but</span><span style="text-decoration: line-through;"> works like a charm!</span> <strong>It has been working perfectly since many years!</strong><br />
You can download it right here from my website: <a href="http://www.manuelstuder.ch/20040714091107375_SPL2.dmg">Samsung  SPL2 Installer</a></p>
<p>Or as an alternative you can use the <a href="http://www.linux-foundation.org/en/OpenPrinting/MacOSX/hpijs">HPIJS driver</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manuelstuder.ch/2007/08/06/working-mac-os-x-driver-for-samsung-laserprinter-ml-1750/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Web 2.0 … The Machine is Us/ing Us</title>
		<link>http://www.manuelstuder.ch/2007/07/22/web-20-%e2%80%a6-the-machine-is-using-us/</link>
		<comments>http://www.manuelstuder.ch/2007/07/22/web-20-%e2%80%a6-the-machine-is-using-us/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 11:17:52 +0000</pubDate>
		<dc:creator>Manuel</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Must see]]></category>

		<guid isPermaLink="false">http://manuelstuder.ch/2007/07/22/web-20-%e2%80%a6-the-machine-is-using-us/</guid>
		<description><![CDATA[Excellent video about _Web 2.0_.
(Please open the article to see the flash file or player.)
]]></description>
			<content:encoded><![CDATA[<p>Excellent video about _Web 2.0_.</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/NLlGopyXT_g&amp;fs=1" width="425" height="355" class="embedflash"><param name="movie" value="http://www.youtube.com/v/NLlGopyXT_g&amp;fs=1" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><small>(Please open the article to see the flash file or player.)</small></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.manuelstuder.ch/2007/07/22/web-20-%e2%80%a6-the-machine-is-using-us/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

