<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: GMail random signatures</title>
	<atom:link href="http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures</link>
	<description>scratched tallies on the prison wall</description>
	<pubDate>Tue, 02 Dec 2008 15:34:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Johan Sundström</title>
		<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-13510</link>
		<dc:creator>Johan Sundström</dc:creator>
		<pubDate>Fri, 28 Jul 2006 07:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-13510</guid>
		<description>I'm not suggesting that it's a way of adding value to the script for yourself, only to your readership, who'd get a tool ready to just install and use right away without chasing down an editor and doing the roundabout manouver involved in installing user scripts from your local file system.

Replacing the '' bit above with your own preference would give you a default choice to just okay on first use with every new computer, though that would of course also not be an improvement on your script when used by yourself.

Just a compromise to improve sharability, reader worth, diggability or what have you -- a useful cheap technique for flirting with readers.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not suggesting that it&#8217;s a way of adding value to the script for yourself, only to your readership, who&#8217;d get a tool ready to just install and use right away without chasing down an editor and doing the roundabout manouver involved in installing user scripts from your local file system.</p>
<p>Replacing the &#8221; bit above with your own preference would give you a default choice to just okay on first use with every new computer, though that would of course also not be an improvement on your script when used by yourself.</p>
<p>Just a compromise to improve sharability, reader worth, diggability or what have you &#8212; a useful cheap technique for flirting with readers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sparkes</title>
		<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12970</link>
		<dc:creator>sparkes</dc:creator>
		<pubDate>Sat, 15 Jul 2006 11:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12970</guid>
		<description>Fucking hell, that's weird.  When I had a play with greasemonkey after lugradio live last year the one and only thing I did with it was this same thing.</description>
		<content:encoded><![CDATA[<p>Fucking hell, that&#8217;s weird.  When I had a play with greasemonkey after lugradio live last year the one and only thing I did with it was this same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sil</title>
		<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12853</link>
		<dc:creator>sil</dc:creator>
		<pubDate>Tue, 11 Jul 2006 15:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12853</guid>
		<description>Yes, if I want it to be configurable, which I don't; I have one fortune URL, which is in my copy of the script. Having to configure it on all the machines I use is daft. Nonetheless, anyone who uses this script should definitely feel free to add Johan's customisation to it if you'd like fortune URL configurability.</description>
		<content:encoded><![CDATA[<p>Yes, if I want it to be configurable, which I don&#8217;t; I have one fortune URL, which is in my copy of the script. Having to configure it on all the machines I use is daft. Nonetheless, anyone who uses this script should definitely feel free to add Johan&#8217;s customisation to it if you&#8217;d like fortune URL configurability.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Sundström</title>
		<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12851</link>
		<dc:creator>Johan Sundström</dc:creator>
		<pubDate>Tue, 11 Jul 2006 15:06:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12851</guid>
		<description>User script configurability is easy, especially when you use GM_setValue; cookies are less convenient.

function configure()
{
  var u=GM_getValue('url');
  u=prompt( 'Fortune URL?', u&#124;&#124;'' );
  GM_setValue('url',u);
  return u;
}

GM_registerMenuCommand('Set fortune URL', configure);

function get_fortune_url()
{
  return GM_getValue('url') &#124;&#124; configure();
}</description>
		<content:encoded><![CDATA[<p>User script configurability is easy, especially when you use GM_setValue; cookies are less convenient.</p>
<p>function configure()<br />
{<br />
  var u=GM_getValue(&#8217;url&#8217;);<br />
  u=prompt( &#8216;Fortune URL?&#8217;, u||&#8221; );<br />
  GM_setValue(&#8217;url&#8217;,u);<br />
  return u;<br />
}</p>
<p>GM_registerMenuCommand(&#8217;Set fortune URL&#8217;, configure);</p>
<p>function get_fortune_url()<br />
{<br />
  return GM_getValue(&#8217;url&#8217;) || configure();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sil</title>
		<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12838</link>
		<dc:creator>sil</dc:creator>
		<pubDate>Tue, 11 Jul 2006 06:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12838</guid>
		<description>Roberto: then I'd have to fill it in on all my machines. I see the theory, though; that wouldn't be too onerous :)</description>
		<content:encoded><![CDATA[<p>Roberto: then I&#8217;d have to fill it in on all my machines. I see the theory, though; that wouldn&#8217;t be too onerous :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roberto</title>
		<link>http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12832</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Tue, 11 Jul 2006 00:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/days/2006/07/11/gmail-random-signatures#comment-12832</guid>
		<description>It would be nice if the script stored the URL in a cookie. The first time you ran it, it would look for the cookie and ask the user if none was found.</description>
		<content:encoded><![CDATA[<p>It would be nice if the script stored the URL in a cookie. The first time you ran it, it would look for the cookie and ask the user if none was found.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
