<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Jay Knight</title>
	<atom:link href="http://jk3.us/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jk3.us</link>
	<description>...or something along those lines</description>
	<lastBuildDate>Mon, 23 Jan 2012 15:52:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Pasting images in tinymce by Jay</title>
		<link>http://jk3.us/2011/10/31/pasting-images-in-tinymce/#comment-230</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Mon, 23 Jan 2012 15:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=198#comment-230</guid>
		<description>Great idea for resizing the image based on the width/height attributes.  That would prevent the 200 pixel image taking 30 seconds to download :)  I&#039;ll try to update my gist with some of your suggestions.  Thanks!</description>
		<content:encoded><![CDATA[<p>Great idea for resizing the image based on the width/height attributes.  That would prevent the 200 pixel image taking 30 seconds to download <img src='http://jk3.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I&#8217;ll try to update my gist with some of your suggestions.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pasting images in tinymce by Matt</title>
		<link>http://jk3.us/2011/10/31/pasting-images-in-tinymce/#comment-229</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 23 Jan 2012 15:34:56 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=198#comment-229</guid>
		<description>Also, you can add the following after line 59 if you want the width and height attributes to be set based on the actual size of the image:

$imgEl-&gt;setAttribute(&#039;width&#039;, imagesx($imgDataFromClipboard));
$imgEl-&gt;setAttribute(&#039;height&#039;, imagesy($imgDataFromClipboard));

An if statement could be added to first check if the width/height were already set, but keep in mind that the image itself wouldn&#039;t be resized...perhaps that could be added to the script too, in case someone resizes the image in TinyMCE.</description>
		<content:encoded><![CDATA[<p>Also, you can add the following after line 59 if you want the width and height attributes to be set based on the actual size of the image:</p>
<p>$imgEl-&gt;setAttribute(&#8216;width&#8217;, imagesx($imgDataFromClipboard));<br />
$imgEl-&gt;setAttribute(&#8216;height&#8217;, imagesy($imgDataFromClipboard));</p>
<p>An if statement could be added to first check if the width/height were already set, but keep in mind that the image itself wouldn&#8217;t be resized&#8230;perhaps that could be added to the script too, in case someone resizes the image in TinyMCE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pasting images in tinymce by Matt</title>
		<link>http://jk3.us/2011/10/31/pasting-images-in-tinymce/#comment-228</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 20 Jan 2012 17:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=198#comment-228</guid>
		<description>Great little script, thanks! I changed it so that it saves the image as a jpeg, since on my Mac at least, when you copy an image to the clipboard it&#039;s always in png format.

I also made it generate the image filename from the alt attribute if it was filled in, and added an $overwrite option if you want it to always overwrite existing images.

Here it is:
https://gist.github.com/1648519</description>
		<content:encoded><![CDATA[<p>Great little script, thanks! I changed it so that it saves the image as a jpeg, since on my Mac at least, when you copy an image to the clipboard it&#8217;s always in png format.</p>
<p>I also made it generate the image filename from the alt attribute if it was filled in, and added an $overwrite option if you want it to always overwrite existing images.</p>
<p>Here it is:<br />
<a href="https://gist.github.com/1648519" rel="nofollow">https://gist.github.com/1648519</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using vim as a pager (in gentoo) by Less Colors For Man Pages &#171; Helpful Linux Tidbits</title>
		<link>http://jk3.us/2007/02/01/vim-as-pager/#comment-113</link>
		<dc:creator>Less Colors For Man Pages &#171; Helpful Linux Tidbits</dc:creator>
		<pubDate>Fri, 22 Jan 2010 19:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2007/02/01/vim-as-pager/#comment-113</guid>
		<description>[...] 23, 2009 at 7:32 am (Linux)  Man pages by default use less for displaying. I&#8217;ve used vim before to for colored text in man pages but something got bjorked in an update. You can color man pages [...]</description>
		<content:encoded><![CDATA[<p>[...] 23, 2009 at 7:32 am (Linux)  Man pages by default use less for displaying. I&#8217;ve used vim before to for colored text in man pages but something got bjorked in an update. You can color man pages [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-only select elements in HTML by Code Pug</title>
		<link>http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-86</link>
		<dc:creator>Code Pug</dc:creator>
		<pubDate>Wed, 30 Sep 2009 05:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-86</guid>
		<description>I have created a JavaScript snippet that will allow you to make your HTML select controls read-only simply by giving them an ID attribute and calling the script available on my site at http://www.codepug.com/readonlySelect.html

Happy coding!
--X
.</description>
		<content:encoded><![CDATA[<p>I have created a JavaScript snippet that will allow you to make your HTML select controls read-only simply by giving them an ID attribute and calling the script available on my site at <a href="http://www.codepug.com/readonlySelect.html" rel="nofollow">http://www.codepug.com/readonlySelect.html</a></p>
<p>Happy coding!<br />
&#8211;X<br />
.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gizmo&#039;s Jabber server by Ed Jolanski</title>
		<link>http://jk3.us/2005/09/16/gizmos-jabber-server/#comment-63</link>
		<dc:creator>Ed Jolanski</dc:creator>
		<pubDate>Tue, 01 Sep 2009 13:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=23#comment-63</guid>
		<description>Sorry for reviving a *really* old thread, but I discovered that Gizmo Project supports SSL using the old method (not inline) on port 5223.</description>
		<content:encoded><![CDATA[<p>Sorry for reviving a *really* old thread, but I discovered that Gizmo Project supports SSL using the old method (not inline) on port 5223.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deposit checks with your scanner by Jami</title>
		<link>http://jk3.us/2007/03/22/deposit-checks-with-your-scanner/#comment-128</link>
		<dc:creator>Jami</dc:creator>
		<pubDate>Thu, 20 Aug 2009 13:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2007/03/22/deposit-checks-with-your-scanner/#comment-128</guid>
		<description>Who offers this for business accounts?</description>
		<content:encoded><![CDATA[<p>Who offers this for business accounts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using vim as a pager (in gentoo) by Marc</title>
		<link>http://jk3.us/2007/02/01/vim-as-pager/#comment-112</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Mon, 09 Feb 2009 21:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2007/02/01/vim-as-pager/#comment-112</guid>
		<description>There&#039;s also Most... This is a very good pager, with color support.</description>
		<content:encoded><![CDATA[<p>There&#8217;s also Most&#8230; This is a very good pager, with color support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-only select elements in HTML by igo</title>
		<link>http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-85</link>
		<dc:creator>igo</dc:creator>
		<pubDate>Mon, 29 Dec 2008 13:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-85</guid>
		<description>josh++

this approch is very useful in lots of situations. for example - read only checkboxes (if checkbox is marked readonly you can still check/uncheck it - value of control IS read only, but UI state not :D ).</description>
		<content:encoded><![CDATA[<p>josh++</p>
<p>this approch is very useful in lots of situations. for example &#8211; read only checkboxes (if checkbox is marked readonly you can still check/uncheck it &#8211; value of control IS read only, but UI state not <img src='http://jk3.us/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Violin? or Fiddle? by Eeuccuso</title>
		<link>http://jk3.us/2005/08/16/violin-or-fiddle/#comment-49</link>
		<dc:creator>Eeuccuso</dc:creator>
		<pubDate>Sat, 13 Dec 2008 17:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=18#comment-49</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

