<?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>Thu, 29 Mar 2012 17:20:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Read-only select elements in HTML by MightyPork</title>
		<link>http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-244</link>
		<dc:creator>MightyPork</dc:creator>
		<pubDate>Thu, 29 Mar 2012 17:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-244</guid>
		<description>First post didn&#039;t show the code successful, I hope this will work better:
&lt;div style=&#039;display:inline-block; position:relative;&#039;&gt;
    &lt;div style=&#039;position:absolute;width:100%;height:100%;&#039;&gt;&lt;/div&gt;
    &lt;select.../&gt;
&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>First post didn&#8217;t show the code successful, I hope this will work better:<br />
&lt;div style=&#8217;display:inline-block; position:relative;&#8217;&gt;<br />
    &lt;div style=&#8217;position:absolute;width:100%;height:100%;&#8217;&gt;&lt;/div&gt;<br />
    &lt;select&#8230;/&gt;<br />
&lt;/div&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read-only select elements in HTML by MightyPork</title>
		<link>http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-243</link>
		<dc:creator>MightyPork</dc:creator>
		<pubDate>Thu, 29 Mar 2012 17:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/2006/07/06/read-only-select-elements-in-html/#comment-243</guid>
		<description>What about hiding the Select behind a transparent div?</description>
		<content:encoded><![CDATA[<p>What about hiding the Select behind a transparent div?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pasting images in tinymce by Jay</title>
		<link>http://jk3.us/2011/10/31/pasting-images-in-tinymce/#comment-233</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Tue, 21 Feb 2012 15:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=198#comment-233</guid>
		<description>It would probably need to be tweaked for your specific needs (specifically where the images are stored), but the &lt;code&gt;$string&lt;/code&gt; variable is the value coming from a tinymce textfield that might have images dragged into it (Firefox only).  This function finds images embedded in the string as data: urls and saves the images and replaces the url with the new location.

Hope this helps!</description>
		<content:encoded><![CDATA[<p>It would probably need to be tweaked for your specific needs (specifically where the images are stored), but the <code>$string</code> variable is the value coming from a tinymce textfield that might have images dragged into it (Firefox only).  This function finds images embedded in the string as data: urls and saves the images and replaces the url with the new location.</p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pasting images in tinymce by Minh</title>
		<link>http://jk3.us/2011/10/31/pasting-images-in-tinymce/#comment-232</link>
		<dc:creator>Minh</dc:creator>
		<pubDate>Tue, 21 Feb 2012 10:58:12 +0000</pubDate>
		<guid isPermaLink="false">http://jk3.us/?p=198#comment-232</guid>
		<description>Can you help me with more details how I can use this function?</description>
		<content:encoded><![CDATA[<p>Can you help me with more details how I can use this function?</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

<!-- Dynamic page generated in 0.335 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-02 09:19:36 -->

