<?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 on: Essential Web Development Software: DigitalColor Meter</title>
	<atom:link href="http://www.leftcolumn.net/2009/01/26/essential-web-development-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leftcolumn.net/2009/01/26/essential-web-development-software/</link>
	<description>Covering Mac OS X, Mac Software, and other stuff</description>
	<lastBuildDate>Mon, 12 Jul 2010 12:35:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: admin</title>
		<link>http://www.leftcolumn.net/2009/01/26/essential-web-development-software/comment-page-1/#comment-114</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 09 Feb 2009 22:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.leftcolumn.net/?p=48#comment-114</guid>
		<description>Hmm, that&#039;s interesting... On my mac, running Tiger, Cmd Shift C copies a value like &quot;#B2693A&quot; to the clipboard.  A click  + drag from the swatch area copies a value like #B2693A (in other words, no quotes) to the clipboard. 

Given a value like &quot;AA AA AA&quot;, I&#039;d do this: copy it to the clipboard, then run a shell script that filters it and pipes it back to the keyboard, then simply paste it where you want it. Here&#039;s an example script:

#!/bin/sh
pbpaste &#124; sed s/\&quot;//g &#124; sed s/\ //g &#124; pbcopy

...you need to save that as a shell script and make it executable, and you need to invoke it somehow; I&#039;d suggest a keystroke utility for that, Quicksilver or something like that.

And if the value was &quot;#aaaaaa&quot; like the ones I see, use a script that does this instead:

#!/bin/sh
pbpaste &#124; sed s/\&quot;//g &#124; sed s/#//g &#124; pbcopy

...hope that helps. I&#039;m going to set this up on my mac too as typing in those hex values is annoying!</description>
		<content:encoded><![CDATA[<p>Hmm, that&#8217;s interesting&#8230; On my mac, running Tiger, Cmd Shift C copies a value like &#8220;#B2693A&#8221; to the clipboard.  A click  + drag from the swatch area copies a value like #B2693A (in other words, no quotes) to the clipboard. </p>
<p>Given a value like &#8220;AA AA AA&#8221;, I&#8217;d do this: copy it to the clipboard, then run a shell script that filters it and pipes it back to the keyboard, then simply paste it where you want it. Here&#8217;s an example script:</p>
<p>#!/bin/sh<br />
pbpaste | sed s/\&#8221;//g | sed s/\ //g | pbcopy</p>
<p>&#8230;you need to save that as a shell script and make it executable, and you need to invoke it somehow; I&#8217;d suggest a keystroke utility for that, Quicksilver or something like that.</p>
<p>And if the value was &#8220;#aaaaaa&#8221; like the ones I see, use a script that does this instead:</p>
<p>#!/bin/sh<br />
pbpaste | sed s/\&#8221;//g | sed s/#//g | pbcopy</p>
<p>&#8230;hope that helps. I&#8217;m going to set this up on my mac too as typing in those hex values is annoying!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Goens</title>
		<link>http://www.leftcolumn.net/2009/01/26/essential-web-development-software/comment-page-1/#comment-113</link>
		<dc:creator>Erik Goens</dc:creator>
		<pubDate>Mon, 09 Feb 2009 16:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.leftcolumn.net/?p=48#comment-113</guid>
		<description>Does anyone have any suggestions on how to remove the quotes and extra spaces inserted into the copied color values? I would love to use the rgb value and paste it directly into an Adobe app, but the copied string values are too long. ex: (&quot;AA AA AA&quot;).

What I would like is a simple (AAAAAA). No extra spaces or quotes. Any suggestions would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Does anyone have any suggestions on how to remove the quotes and extra spaces inserted into the copied color values? I would love to use the rgb value and paste it directly into an Adobe app, but the copied string values are too long. ex: (&#8220;AA AA AA&#8221;).</p>
<p>What I would like is a simple (AAAAAA). No extra spaces or quotes. Any suggestions would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miranda V</title>
		<link>http://www.leftcolumn.net/2009/01/26/essential-web-development-software/comment-page-1/#comment-108</link>
		<dc:creator>Miranda V</dc:creator>
		<pubDate>Mon, 02 Feb 2009 11:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.leftcolumn.net/?p=48#comment-108</guid>
		<description>well written post...thank you</description>
		<content:encoded><![CDATA[<p>well written post&#8230;thank you</p>
]]></content:encoded>
	</item>
</channel>
</rss>
