<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Muxtaster | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/29763</link>
    <description>Recent comments on userscript: Muxtaster</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by jstn</title>
      <description>&lt;p&gt;script stopped working&lt;/p&gt;</description>
      <pubDate>Wed, 01 Oct 2008 19:04:51 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64893</guid>
      <author>jstn</author>
      <link>http://userscripts.org/posts/64893</link>
    </item>
    <item>
      <title>Archived Comments, replied by MartinJo</title>
      <description>&lt;p&gt;@Casanova: Excellent scripts. They work great. &lt;/p&gt;

&lt;p&gt;Though, for security reasons I would advise to hardcode the download directory in the AppleScript and strip &quot;../&quot; from the filename. Otherwise every rogue website would be able to replace arbitrary files on your hard disc with content of their choosing, e.g.,  by loading the URL &lt;/p&gt;

&lt;p&gt;&lt;code&gt;muxtapedownloader://com.apple.AppleScript.muxtapedownloader?SOMEURL@/etc/passwd&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;in a hidden iframe (this probably would not work due to file permissions, but you get the picture).&lt;/p&gt;</description>
      <pubDate>Thu, 14 Aug 2008 12:12:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64894</guid>
      <author>MartinJo</author>
      <link>http://userscripts.org/posts/64894</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bjorn Stromberg</title>
      <description>&lt;p&gt;Sorry about that, it should be fixed now.&lt;/p&gt;</description>
      <pubDate>Wed, 13 Aug 2008 08:50:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64895</guid>
      <author>Bjorn Stromberg</author>
      <link>http://userscripts.org/posts/64895</link>
    </item>
    <item>
      <title>Archived Comments, replied by rolands</title>
      <description>&lt;p&gt;Links to download dont seem to show up and i dont get a alert saying muxtaster is loaded in the newest version...&lt;/p&gt;</description>
      <pubDate>Wed, 13 Aug 2008 03:14:44 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64896</guid>
      <author>rolands</author>
      <link>http://userscripts.org/posts/64896</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bjorn Stromberg</title>
      <description>&lt;p&gt;Some great additions to this script, I'm so happy to see everyone working together to build great things off of Muxtape. I added the changes Rezo suggested, but I can't test them as I don't have a mac. I'd really appreciate it if someone could try out the new script and let me know if it works.&lt;/p&gt;

&lt;p&gt;Thanks :)&lt;/p&gt;</description>
      <pubDate>Tue, 12 Aug 2008 23:21:46 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64897</guid>
      <author>Bjorn Stromberg</author>
      <link>http://userscripts.org/posts/64897</link>
    </item>
    <item>
      <title>Archived Comments, replied by Casanova</title>
      <description>&lt;p&gt;In order to fix the downloading to automatically have the right name and automatically start as soon as you click, I made an AppleScript app that registers its own protocol (which we use to communicate through from our SSB) and wgets the file in the way we want. I thought others might be interested. To do this, open Script Editor and make a new script as follows:
&lt;br /&gt;&lt;pre&gt;on open location this_URL
	set x to the offset of &quot;?&quot; in this_URL
	set y to the offset of &quot;@&quot; in this_URL
	set mp3URL to text (x + 1) thru (y - 1) of this_URL
	set filename to (do shell script (&quot;echo \&quot;&quot; &amp;amp; (text from (y + 1) to -1 of this_URL) &amp;amp; &quot;\&quot; | sed 's/%20/\\\\ /g'&quot;))
	tell application &quot;Terminal&quot; to do script (&quot;wget -O &quot; &amp;amp; filename &amp;amp; &quot; \&quot;&quot; &amp;amp; mp3URL &amp;amp; &quot;\&quot; &amp;amp;&amp;amp; exit&quot;)
end open location

on run_scriptfile(this_scriptfile)
	try
		set the script_file to path to resource this_scriptfile
		return (run script script_file)
	on error
		return false
	end try
end run_scriptfile

on load_run(this_scriptfile, this_property_value)
	try
		set the script_file to path to resource this_scriptfile
		set this_script to load script script_file
		tell script this_script
			set some_script_property to this_property_value
		end tell
		return (run script this_script)
	on error
		return false
	end try
end load_run&lt;/pre&gt;
&lt;br /&gt;Then save as an &quot;Application Bundle&quot; (in File Format; all options unchecked) called muxtapedownloader.app. You'll need wget; it doesn't come with Leopard so get it with macports. Here, I use tell application &quot;Terminal&quot; to do script instead of do shell script because I want to see the wget progress. Because we &amp;amp;&amp;amp;exit the terminal window will close as long as wget completed successfully. Now, show the contents of the new .app and open Info.plist. Overwrite it with the following:
&lt;br /&gt;&lt;pre&gt;&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
&amp;lt;!DOCTYPE plist PUBLIC &quot;-//Apple//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&amp;gt;
&amp;lt;plist version=&quot;1.0&quot;&amp;gt;
&amp;lt;dict&amp;gt;
	&amp;lt;key&amp;gt;CFBundleAllowMixedLocalizations&amp;lt;/key&amp;gt;
	&amp;lt;true/&amp;gt;
	&amp;lt;key&amp;gt;CFBundleDevelopmentRegion&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;English&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleExecutable&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;applet&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleIconFile&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;applet&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleIdentifier&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;com.apple.AppleScript.muxtapedownloader&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleInfoDictionaryVersion&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;6.0&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleName&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;muxtapedownloader&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundlePackageType&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;APPL&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleSignature&amp;lt;/key&amp;gt;
	&amp;lt;string&amp;gt;aplt&amp;lt;/string&amp;gt;
	&amp;lt;key&amp;gt;CFBundleURLTypes&amp;lt;/key&amp;gt;
	&amp;lt;array&amp;gt;
		&amp;lt;dict&amp;gt;
			&amp;lt;key&amp;gt;CFBundleURLName&amp;lt;/key&amp;gt;
			&amp;lt;string&amp;gt;muxtape Downloader&amp;lt;/string&amp;gt;
			&amp;lt;key&amp;gt;CFBundleURLSchemes&amp;lt;/key&amp;gt;
			&amp;lt;array&amp;gt;
				&amp;lt;string&amp;gt;muxtapedownloader&amp;lt;/string&amp;gt;
			&amp;lt;/array&amp;gt;
		&amp;lt;/dict&amp;gt;
	&amp;lt;/array&amp;gt;
	&amp;lt;key&amp;gt;LSRequiresCarbon&amp;lt;/key&amp;gt;
	&amp;lt;true/&amp;gt;
	&amp;lt;key&amp;gt;WindowState&amp;lt;/key&amp;gt;
	&amp;lt;dict&amp;gt;
		&amp;lt;key&amp;gt;name&amp;lt;/key&amp;gt;
		&amp;lt;string&amp;gt;ScriptWindowState&amp;lt;/string&amp;gt;
		&amp;lt;key&amp;gt;positionOfDivider&amp;lt;/key&amp;gt;
		&amp;lt;real&amp;gt;294&amp;lt;/real&amp;gt;
		&amp;lt;key&amp;gt;savedFrame&amp;lt;/key&amp;gt;
		&amp;lt;string&amp;gt;94 356 696 496 0 0 1440 878 &amp;lt;/string&amp;gt;
		&amp;lt;key&amp;gt;selectedTabView&amp;lt;/key&amp;gt;
		&amp;lt;string&amp;gt;result&amp;lt;/string&amp;gt;
	&amp;lt;/dict&amp;gt;
&amp;lt;/dict&amp;gt;
&amp;lt;/plist&amp;gt;&lt;/pre&gt;
&lt;br /&gt;Now, run the .app and it will register our protocol. Now we need to modify the muxtaster script. Change the downloadMP3 function signature to &lt;code&gt;function (song_key, name, tdelay)&lt;/code&gt;. Change the true clause of the if in the onload handler to set the location so: &lt;code&gt;window.location.href = &quot;muxtapedownloader://com.apple.AppleScript.muxtapedownloader?&quot;+responseDetails.responseText+&quot;@~/Downloads/muxtape/&quot;+name+&quot;.mp3&quot;;&lt;/code&gt;. Here is where you would select where you want to save muxtape mp3s to. I have them download to ~/Downloads/muxtape. You can change it. Make sure to create the directory. Now change &lt;code&gt;setAttribute('href', &quot;javascript:downloadMP3('&quot;+song_key+&quot;');&quot;);&lt;/code&gt; to &lt;code&gt;setAttribute('href', &quot;javascript:downloadMP3('&quot;+song_key+&quot;','&quot;+trackname+&quot;');&quot;);&lt;/code&gt;. You're done.&lt;/p&gt;

&lt;p&gt;I also changed the script so that instead of adding that annoying large li after each track, it changes the buy link to be the download link and relabels it so. To do this, I replace everything starting with &lt;code&gt;var header_color = '#333333';&lt;/code&gt; to the end of the script with simply &lt;pre&gt;var stripes = document.getElementsByTagName('li');

window.setTimeout(function() {
	for(var i=0; i&amp;lt;stripes&gt;= 0) {
			var song_key = stripes[i].id.replace('stripe','');		

			var stripe = stripes[i];
			var tname = stripe.getElementsByTagName('div');
			var trackname = tname[0].innerHTML;

			trackname = trackname.replace(/^\s+|\s+$/g, '');
			trackname = trackname.replace(/(&amp;lt;([^&gt;]+)&gt;)/ig, '');

			var buylink = ((tname[1].getElementsByTagName('span'))[1].getElementsByTagName('a'))[0];
			buylink.innerHTML=&quot;Download&quot;;
			buylink.setAttribute('href', &quot;javascript:downloadMP3('&quot;+song_key+&quot;','&quot;+trackname+&quot;');&quot;);
		}
	}
}, 0);&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Hope this helps someone.&lt;/p&gt;</description>
      <pubDate>Tue, 12 Aug 2008 16:49:39 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64898</guid>
      <author>Casanova</author>
      <link>http://userscripts.org/posts/64898</link>
    </item>
    <item>
      <title>Archived Comments, replied by rezo</title>
      <description>&lt;p&gt;actually yes,&lt;/p&gt;

&lt;p&gt;the following 2 things are needed in the source in order to make it &lt;/p&gt;

&lt;p&gt;1. use window instead of unsafewindow in fluid:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;var win = typeof unsafeWindow != &quot;undefined&quot; ? unsafeWindow : window;
&lt;br /&gt;win.downloadMP3 = function (song_key, tdelay) {
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;2. greasekit lacks the GM_xmlhttprequest:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
&lt;br /&gt;if(typeof GM_xmlhttpRequest === &quot;undefined&quot;) {
&lt;br /&gt;	GM_xmlhttpRequest = function(/* object */ details) {
&lt;br /&gt;		details.method = details.method.toUpperCase() || &quot;GET&quot;;
&lt;br /&gt;		
&lt;br /&gt;		if(!details.url) {
&lt;br /&gt;			throw(&quot;GM_xmlhttpRequest requires an URL.&quot;);
&lt;br /&gt;			return;
&lt;br /&gt;		}
&lt;br /&gt;		
&lt;br /&gt;		// build XMLHttpRequest object
&lt;br /&gt;		var oXhr, aAjaxes = [];
&lt;br /&gt;		if(typeof ActiveXObject !== &quot;undefined&quot;) {
&lt;br /&gt;			var oCls = ActiveXObject;
&lt;br /&gt;			aAjaxes[aAjaxes.length] = {cls:oCls, arg:&quot;Microsoft.XMLHTTP&quot;};
&lt;br /&gt;			aAjaxes[aAjaxes.length] = {cls:oCls, arg:&quot;Msxml2.XMLHTTP&quot;};
&lt;br /&gt;			aAjaxes[aAjaxes.length] = {cls:oCls, arg:&quot;Msxml2.XMLHTTP.3.0&quot;};
&lt;br /&gt;		}
&lt;br /&gt;		if(typeof XMLHttpRequest !== &quot;undefined&quot;)
&lt;br /&gt;			 aAjaxes[aAjaxes.length] = {cls:XMLHttpRequest, arg:undefined};
&lt;br /&gt;	
&lt;br /&gt;		for(var i=aAjaxes.length; i--; )
&lt;br /&gt;			try{
&lt;br /&gt;				oXhr = new aAjaxes[i].cls(aAjaxes[i].arg);
&lt;br /&gt;				if(oXhr) break;
&lt;br /&gt;			} catch(e) {}
&lt;br /&gt;		
&lt;br /&gt;		// run it
&lt;br /&gt;		if(oXhr) {
&lt;br /&gt;			if(&quot;onreadystatechange&quot; in details)
&lt;br /&gt;				oXhr.onreadystatechange = function() { details.onreadystatechange(oXhr) };
&lt;br /&gt;			if(&quot;onload&quot; in details)
&lt;br /&gt;				oXhr.onload = function() { details.onload(oXhr) };
&lt;br /&gt;			if(&quot;onerror&quot; in details)
&lt;br /&gt;				oXhr.onerror = function() { details.onerror(oXhr) };
&lt;br /&gt;			
&lt;br /&gt;			oXhr.open(details.method, details.url, true);
&lt;br /&gt;			
&lt;br /&gt;			if(&quot;headers&quot; in details)
&lt;br /&gt;				for(var header in details.headers)
&lt;br /&gt;					oXhr.setRequestHeader(header, details.headers[header]);
&lt;br /&gt;			
&lt;br /&gt;			if(&quot;data&quot; in details)
&lt;br /&gt;				oXhr.send(details.data);
&lt;br /&gt;			else
&lt;br /&gt;				oXhr.send();
&lt;br /&gt;		} else
&lt;br /&gt;			throw (&quot;This Browser is not supported, please upgrade.&quot;)
&lt;br /&gt;	}
&lt;br /&gt;}
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;enjoy,&lt;/p&gt;

&lt;p&gt;reza&lt;/p&gt;</description>
      <pubDate>Mon, 11 Aug 2008 22:33:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64899</guid>
      <author>rezo</author>
      <link>http://userscripts.org/posts/64899</link>
    </item>
    <item>
      <title>Archived Comments, replied by Saachi Purcell</title>
      <description>&lt;p&gt;Anyone got any pointers on getting this going in Fluid (&lt;a href=&quot;http://www.fluidapp.com&quot;&gt;www.fluidapp.com&lt;/a&gt;)?&lt;/p&gt;</description>
      <pubDate>Thu, 31 Jul 2008 12:29:54 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64900</guid>
      <author>Saachi Purcell</author>
      <link>http://userscripts.org/posts/64900</link>
    </item>
    <item>
      <title>Archived Comments, replied by gingerbeardman</title>
      <description>&lt;p&gt;I understand that. I was wondering if it was possible to push the file download through an external script that could force the file to be downloaded?&lt;/p&gt;

&lt;p&gt;Meanwhile, I am using this at line 280: &lt;code&gt;window.open(responseDetails.responseText, song_key);&lt;/code&gt; which opens each mp3 in it's own window.&lt;/p&gt;</description>
      <pubDate>Mon, 28 Jul 2008 12:29:55 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64901</guid>
      <author>gingerbeardman</author>
      <link>http://userscripts.org/posts/64901</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bjorn Stromberg</title>
      <description>&lt;p&gt;Your browser decides what it does with mp3 files, not this script.&lt;/p&gt;</description>
      <pubDate>Sun, 27 Jul 2008 16:52:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64902</guid>
      <author>Bjorn Stromberg</author>
      <link>http://userscripts.org/posts/64902</link>
    </item>
    <item>
      <title>Archived Comments, replied by gingerbeardman</title>
      <description>&lt;p&gt;Any chance you can force the mp3 to download rather than opening in a browser window? Can you send a different mime type for it? Thanks!&lt;/p&gt;</description>
      <pubDate>Sun, 27 Jul 2008 00:58:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64903</guid>
      <author>gingerbeardman</author>
      <link>http://userscripts.org/posts/64903</link>
    </item>
    <item>
      <title>Archived Comments, replied by no0n</title>
      <description>&lt;p&gt;I prefer it not interrupting my songplay and replaced line 280 with &lt;code&gt;window.open(responseDetails.responseText, &quot;muxdownload&quot;);&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Of course you'd have to allow popups from muxtape.com which might be annoying for 5seconds until you open your popup settings.  Just a thought&lt;/p&gt;</description>
      <pubDate>Wed, 16 Jul 2008 12:21:13 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64904</guid>
      <author>no0n</author>
      <link>http://userscripts.org/posts/64904</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bjorn Stromberg</title>
      <description>&lt;p&gt;If you turn them into FLV's it will just make it easier to download them with proper song titles and extensions, you'd be doing us all a favor. Except of course that it will take time to process the files before they're available.&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 23:10:01 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64905</guid>
      <author>Bjorn Stromberg</author>
      <link>http://userscripts.org/posts/64905</link>
    </item>
    <item>
      <title>Archived Comments, replied by jstn</title>
      <description>&lt;p&gt;MP3s will always go in.  What comes out?&lt;/p&gt;</description>
      <pubDate>Tue, 15 Jul 2008 16:53:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64906</guid>
      <author>jstn</author>
      <link>http://userscripts.org/posts/64906</link>
    </item>
    <item>
      <title>Archived Comments, replied by greedy_genius</title>
      <description>&lt;p&gt;Umm, just use the FF ext. downloadhelper.  it works perfect every time.  these muxtape scripts always give me problems.&lt;/p&gt;</description>
      <pubDate>Mon, 14 Jul 2008 01:36:45 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64907</guid>
      <author>greedy_genius</author>
      <link>http://userscripts.org/posts/64907</link>
    </item>
    <item>
      <title>Archived Comments, replied by mika22</title>
      <description>&lt;p&gt;You're disallowing mp3s at all now? ROFL. Why don't you just close the site permanently while you're at it.&lt;/p&gt;

&lt;p&gt;Good while it lasted I suppose.&lt;/p&gt;</description>
      <pubDate>Sat, 12 Jul 2008 21:50:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64908</guid>
      <author>mika22</author>
      <link>http://userscripts.org/posts/64908</link>
    </item>
    <item>
      <title>Archived Comments, replied by jstn</title>
      <description>&lt;p&gt;The point of Muxtape is putting things in S3?  Think bigger, guys!&lt;/p&gt;</description>
      <pubDate>Sat, 12 Jul 2008 15:46:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64909</guid>
      <author>jstn</author>
      <link>http://userscripts.org/posts/64909</link>
    </item>
    <item>
      <title>Archived Comments, replied by nathaniel_higgins</title>
      <description>&lt;p&gt;stop using muxtape? 
&lt;br /&gt;i'm confused...isn't that the whole point of muxtape? let users submit mp3s which are then hosted by you on S3 (with the option of buying said song)&lt;/p&gt;

&lt;p&gt;if you go the imeem route, you can still grab the music..it's not any more secure than anything else. it seems like you'd cut off your nose to spite the rest of your face.&lt;/p&gt;

&lt;p&gt;but uh, cool? i guess now we'll just see what you mean soon right? &lt;/p&gt;

&lt;p&gt;and i'm sure you realize, but at the most basic if it came down to it, there's ways to save audio outside of directly grabbing the file. if someone really wants it, they'll grab it. valiant efforts and all...shrug...&lt;/p&gt;</description>
      <pubDate>Sat, 12 Jul 2008 13:32:10 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64910</guid>
      <author>nathaniel_higgins</author>
      <link>http://userscripts.org/posts/64910</link>
    </item>
    <item>
      <title>Archived Comments, replied by jstn</title>
      <description>&lt;p&gt;What are you guys going to do when the site stops using mp3s?&lt;/p&gt;</description>
      <pubDate>Sat, 12 Jul 2008 07:35:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64911</guid>
      <author>jstn</author>
      <link>http://userscripts.org/posts/64911</link>
    </item>
    <item>
      <title>Archived Comments, replied by nathaniel_higgins</title>
      <description>&lt;p&gt;i guess this is like the coders version of a mexican standoff&lt;/p&gt;

&lt;p&gt;he takes the site down, updates the salt in various wacky ways&lt;/p&gt;

&lt;p&gt;this breaks your script&lt;/p&gt;

&lt;p&gt;you update your script to the new salt&lt;/p&gt;

&lt;p&gt;wash, rinse, repeat. &lt;/p&gt;

&lt;p&gt;i'd say eventually he'd get tired of this, but it's probably the back end dude he hired doing it, so you know, back and forth we go. &lt;/p&gt;

&lt;p&gt;you should just put up how you decompile the cutter so it's more then just you updating this thing...just a suggestion&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 21:59:00 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64912</guid>
      <author>nathaniel_higgins</author>
      <link>http://userscripts.org/posts/64912</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bjorn Stromberg</title>
      <description>&lt;p&gt;This time the salt was hexcode, I guess Justin thought it would blend in?&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 20:49:35 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64913</guid>
      <author>Bjorn Stromberg</author>
      <link>http://userscripts.org/posts/64913</link>
    </item>
    <item>
      <title>Archived Comments, replied by Nemanja Stefanovic</title>
      <description>&lt;p&gt;It's his site, Mika. He can do whatever he wants with it to try to stop things he doesn't like. Everyone knows his entire concept is on shaky legal grounds. Even if little scripts like this that make direct links are gone, it's only slightly more effort to download with things like Firebug. Not too big of a deal I think.&lt;/p&gt;

&lt;p&gt;As for muxtape search engines, &lt;a href=&quot;http://muxtapestumbler.com/&quot;&gt;http://muxtapestumbler.com/&lt;/a&gt; has been around for a while and doesn't seem like it's going to stop, good site.&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 14:03:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64914</guid>
      <author>Nemanja Stefanovic</author>
      <link>http://userscripts.org/posts/64914</link>
    </item>
    <item>
      <title>Archived Comments, replied by mika22</title>
      <description>&lt;p&gt;I just dont understand why the guy is so interested on continously blocking the script when streaming is not precisely legal. What does he care what a few of us want to do with it. I understand why would he be paranoid regarding the mp3s but he never provided any download links in the first place, he has no responsability on this at all. Must have way too much free time. If he's really that paranoid he should be saving his money and time on looking for good lawyers or buying a ticket to Norway. &lt;/p&gt;

&lt;p&gt;He even took down mux search engines as if that would make any fucking difference. It really pisses me off, I see the trouble with mp3s but even following his only seeing not touching rules if I want to go back to a forgotten muxtape I liked and that I only remember by an artist's song I can't.&lt;/p&gt;

&lt;p&gt;Anyways. I'm sure both of you can outsmart them, you've done beautifully so far. Thank you.&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 08:42:45 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64915</guid>
      <author>mika22</author>
      <link>http://userscripts.org/posts/64915</link>
    </item>
    <item>
      <title>Archived Comments, replied by Nemanja Stefanovic</title>
      <description>&lt;p&gt;haha. oh man. any ideas on this one Bjorn?&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:31:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64916</guid>
      <author>Nemanja Stefanovic</author>
      <link>http://userscripts.org/posts/64916</link>
    </item>
    <item>
      <title>Archived Comments, replied by ashgromnies</title>
      <description>&lt;p&gt;They just changed the key, I'm not seeing it in the hex in the same spot it was before. Has anyone had luck getting flasm to decompile their swf?&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jul 2008 05:03:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15551:64917</guid>
      <author>ashgromnies</author>
      <link>http://userscripts.org/posts/64917</link>
    </item>
  </channel>
</rss>
