<?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>Confessions of a Guru &#187; javascript</title>
	<atom:link href="http://www.guru.net.nz/blog/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.guru.net.nz/blog</link>
	<description>Random stuff from a Dunedin (NZ) based web developer, beer drinker and dad</description>
	<lastBuildDate>Wed, 14 Dec 2011 09:18:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cc and Bcc field size in Gmail</title>
		<link>http://www.guru.net.nz/blog/2010/08/cc-and-bcc-field-size-in-gmail.html</link>
		<comments>http://www.guru.net.nz/blog/2010/08/cc-and-bcc-field-size-in-gmail.html#comments</comments>
		<pubDate>Mon, 30 Aug 2010 10:13:34 +0000</pubDate>
		<dc:creator>GuruBob</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.guru.net.nz/blog/?p=343</guid>
		<description><![CDATA[The Cc and Bcc field sizes in Gmail are too small to work with if you&#8217;re sending to more than about 20 email addresses. The following bookmarklet will increase their height when used: javascript:&#40;function&#40;&#41;&#123;var%20e=window.frames&#91;3&#93;.document.getElementsByTagName&#40;'textarea'&#41;;%20for&#40;i=0;i&#38;lt;e.length;i++&#41;&#123;%20if&#40;e&#91;i&#93;.name=='cc'%20or%20e&#91;i&#93;.name=='bcc'&#41;%20&#123;%20e&#91;i&#93;.style.height='150px';%20&#125;%20&#125;;&#125;&#41;&#40;&#41;; To install (in Firefox). Right click on your Bookmarks toolbar and choose &#8220;New Bookmark&#8221; Enter a name for the Bookmark, e.g. [...]]]></description>
			<content:encoded><![CDATA[<p>The Cc and Bcc field sizes in Gmail are too small to work with if you&#8217;re sending to more than about 20 email addresses.  The following bookmarklet will increase their height when used:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>var<span style="color: #339933;">%</span>20e<span style="color: #339933;">=</span>window.<span style="color: #660066;">frames</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">3</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">document</span>.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'textarea'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;%</span>20for<span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>e.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #339933;">%</span>20if<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #000066;">name</span><span style="color: #339933;">==</span><span style="color: #3366CC;">'cc'</span><span style="color: #339933;">%</span>20or<span style="color: #339933;">%</span>20e<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #000066;">name</span><span style="color: #339933;">==</span><span style="color: #3366CC;">'bcc'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">%</span>20<span style="color: #009900;">&#123;</span><span style="color: #339933;">%</span>20e<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">style</span>.<span style="color: #660066;">height</span><span style="color: #339933;">=</span><span style="color: #3366CC;">'150px'</span><span style="color: #339933;">;%</span>20<span style="color: #009900;">&#125;</span><span style="color: #339933;">%</span>20<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>To install (in Firefox).</p>
<ol>
<li>Right click on your Bookmarks toolbar and choose &#8220;New Bookmark&#8221;</li>
<li>Enter a name for the Bookmark, e.g. &#8220;Big Cc Field&#8221;</li>
<li>Into the location, paste the above code</li>
<li>Save the bookmark</li>
</ol>
<p>Now when at Gmail and you can see the Cc or Bcc fields you can click the new Bookmark link to make them bigger.</p>
<p>To find out more about Bookmarklets, check out the <a href="http://en.wikipedia.org/wiki/Bookmarklet">Bookmarklet page on Wikipedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guru.net.nz/blog/2010/08/cc-and-bcc-field-size-in-gmail.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Referencizer</title>
		<link>http://www.guru.net.nz/blog/2007/12/the-referencizer.html</link>
		<comments>http://www.guru.net.nz/blog/2007/12/the-referencizer.html#comments</comments>
		<pubDate>Mon, 03 Dec 2007 10:46:00 +0000</pubDate>
		<dc:creator>GuruBob</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.guru.net.nz/newblog/?p=162</guid>
		<description><![CDATA[You may have seen posts on newsgroups, in email etc where the poster references links in-line with numbers in square brackets, and then at the end of the post provides a list of URL&#8217;s referenced above. This serves to keep the links out of the main body of the message the content of the message, [...]]]></description>
			<content:encoded><![CDATA[<p>You may have seen posts on newsgroups, in email etc where the poster references links in-line with numbers in square brackets, and then at the end of the post provides a list of URL&#8217;s referenced above. This serves to keep the links out of the main body of the message the content of the message, making it easier to read. I got bored one night and thus &#8220;The Referencizer&#8221; was born.  All you have to do is type in your URL&#8217;s and watch your content get &#8220;referencized&#8221; as you go.</p>
<p>Check it out here: <a href="http://labs.guru.net.nz/ref.html">The Referencizer</a> <small>(powered by JavaScript)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guru.net.nz/blog/2007/12/the-referencizer.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

