<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Userscripts.org Tag Fixes and Styles | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/34758</link>
    <description>Recent comments on userscript: Userscripts.org Tag Fixes and Styles</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by ScroogeMcPump</title>
      <description>&lt;p&gt;1) If you're interested in keeping your scripts compatible with Opera, don't use CDATA.&lt;/p&gt;

&lt;p&gt;2) You should consider using data: URLs for your background images, so the script doesn't have to keep checking TinyPic all the time.&lt;/p&gt;</description>
      <pubDate>Fri, 31 Oct 2008 17:00:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36782</guid>
      <author>ScroogeMcPump</author>
      <link>http://userscripts.org/posts/36782</link>
    </item>
    <item>
      <title>Archived Comments, replied by JoeSimmons</title>
      <description>&lt;p&gt;&lt;blockquote&gt;you ever used the CDATA tags?&lt;/blockquote&gt;
&lt;br /&gt;Nope. But that's pretty cool.&lt;/p&gt;</description>
      <pubDate>Tue, 21 Oct 2008 21:36:35 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36783</guid>
      <author>JoeSimmons</author>
      <link>http://userscripts.org/posts/36783</link>
    </item>
    <item>
      <title>Archived Comments, replied by Avindra V.G.</title>
      <description>&lt;p&gt;you ever used the CDATA tags? I've used it before in HTML, but I didn't even know it can be used in JavaScript. Basically, it tells the interpreter that you're giving it &quot;character data&quot;, so you don't have to escape new lines or backslashes or anything funny like that. Here's a silly little example:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
GM_addStyle(&amp;lt;&gt;&amp;lt;![CDATA[

a:before {
content:&quot; THIS IS A LINK ==&gt; &quot;;
}

a:hover {
background:#FFFFCC;
}

 ]&gt;&amp;lt;/&gt;)
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 21 Oct 2008 05:43:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36784</guid>
      <author>Avindra V.G.</author>
      <link>http://userscripts.org/posts/36784</link>
    </item>
    <item>
      <title>Archived Comments, replied by dkhal</title>
      <description>&lt;p&gt;hey Joe
&lt;br /&gt;i noticed you play the guitar too! lol i kinda predicted that
&lt;br /&gt;nice pic 
&lt;br /&gt;and i love the fact that you and AVG work together 
&lt;br /&gt;i have a bit of a thing that i'm worried about
&lt;br /&gt;here is an decrypt function that i unmasked from a site:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;function decrypt(U){
&lt;br /&gt;	var R=&quot;&quot;;
&lt;br /&gt;	var T=U.split(/;/);
&lt;br /&gt;	for(var S=0;S&amp;lt;t&gt;&lt;br /&gt;		if(T[S].match(/^([0-9]+)$/)===null){
&lt;br /&gt;			R+=String.fromCharCode(unescape(T[S]).charCodeAt(0)-23);
&lt;br /&gt;		}
&lt;br /&gt;		else{
&lt;br /&gt;			R+=String.fromCharCode(T[S]);
&lt;br /&gt;		}
&lt;br /&gt;	}
&lt;br /&gt;	return R;
&lt;br /&gt;}
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;try &lt;code&gt;alert(decrypt(&quot;d;%80;z;%89;%86;%8A;%86;%7D;%8B;E;o;d;c;_;k;k;g&quot;));&lt;/code&gt;
&lt;br /&gt;and you should get &lt;code&gt;Microsoft.XMLHTTP&lt;/code&gt; for example
&lt;br /&gt;now what i need to do is get the Encrypt function that writes these encodings
&lt;br /&gt;how do i get it?
&lt;br /&gt;bcoz i need to remove it from a site and replace it with another one&lt;/p&gt;

&lt;p&gt;plz reply anywhere you want but notify me on any of my scripts thanks&lt;/p&gt;</description>
      <pubDate>Thu, 02 Oct 2008 08:33:41 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36785</guid>
      <author>dkhal</author>
      <link>http://userscripts.org/posts/36785</link>
    </item>
    <item>
      <title>Archived Comments, replied by Avindra V.G.</title>
      <description>&lt;p&gt;Hey joe, check out &lt;a href=&quot;http://userscripts.org/scripts/show/34094&quot;&gt;my updated script&lt;/a&gt; and please tell me if it's good/neeeds new features. thanks&lt;/p&gt;</description>
      <pubDate>Wed, 01 Oct 2008 03:40:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36786</guid>
      <author>Avindra V.G.</author>
      <link>http://userscripts.org/posts/36786</link>
    </item>
    <item>
      <title>Archived Comments, replied by JoeSimmons</title>
      <description>&lt;p&gt;Don't want it squashed.&lt;/p&gt;</description>
      <pubDate>Tue, 30 Sep 2008 22:13:47 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36787</guid>
      <author>JoeSimmons</author>
      <link>http://userscripts.org/posts/36787</link>
    </item>
    <item>
      <title>Archived Comments, replied by Avindra V.G.</title>
      <description>&lt;p&gt;&lt;pre&gt;
    head = document.evaluate('//head',document,null,7,null).snapshotItem(0);&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;to&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
    head = document.evaluate('/html/head',document,null,9,null).singleNodeValue;
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;?&lt;/p&gt;

&lt;p&gt;and here's your css squashed:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
pre {color:#000;font-size:9pt;max-width:640px;background:transparent url('http://i34.tinypic.com/2j5ylo9.png');border-color:#D2D2D2;border-style:solid;border-width:1px;}code {color:#000;font-size:8pt;max-width:640px;background:#EAEAEA;border-width:0px;}blockquote {color:#000;font-size:9pt;font-family:arial verdana monospace;max-width:640px;background:#ffead5;border-color:#FFAC59;border-style:solid;border-width:1px;padding:.1em;}.posts .post .body {font-size:9pt;font-family:arial verdana monospace;padding:0px 4px;}#content {border-width:0 2px 0 0;}td {padding:.2em;}a {font-size:8pt;}
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 30 Sep 2008 22:10:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36788</guid>
      <author>Avindra V.G.</author>
      <link>http://userscripts.org/posts/36788</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12590:36781</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/36781</link>
    </item>
  </channel>
</rss>
