<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: 7 Ways to a Unified Clipboard</title>
	<atom:link href="http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/feed/" rel="self" type="application/rss+xml" />
	<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/</link>
	<description>Rebooting the workforce</description>
	<lastBuildDate>Wed, 25 Nov 2009 20:13:20 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Torsten Uhlmann</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-323530</link>
		<dc:creator>Torsten Uhlmann</dc:creator>
		<pubDate>Sat, 22 Aug 2009 17:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-323530</guid>
		<description>I&#039;m the author if Simidude, a cross platform clipboard and personal file sharing application.

Simidude runs on Windows, Mac and Unix. It makes it easy to synchronize your machines clipboards, keep a clipboard history or share files and whole directories between machines.

Simidude is available at http://www.simidude.com

Kind Regards, Torsten Uhlmann</description>
		<content:encoded><![CDATA[<p>I&#8217;m the author if Simidude, a cross platform clipboard and personal file sharing application.</p>
<p>Simidude runs on Windows, Mac and Unix. It makes it easy to synchronize your machines clipboards, keep a clipboard history or share files and whole directories between machines.</p>
<p>Simidude is available at <a href="http://www.simidude.com" rel="nofollow">http://www.simidude.com</a></p>
<p>Kind Regards, Torsten Uhlmann</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim d</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-298402</link>
		<dc:creator>tim d</dc:creator>
		<pubDate>Tue, 08 Jul 2008 12:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-298402</guid>
		<description>Thanks for the post -- serves as a great starting point for Google searchers.  However, most of these solutions seem like overkill for my simple cross platform copy/paste needs, so I&#039;ve instead arranged some command line puzzle pieces to accomplish the core task.  Data transfer is left as an exercise, but stashing the data in a shared folder textfile works fine for me.  I have Kubuntu and Windows snippets so far:

Kubuntu - Set clipboard data:
#!/bin/sh
dcop klipper klipper setClipboardContents &quot;$*&quot;
Kubuntu -- Get clipboard data:
#!/bin/sh
#get/echo:
dcop klipper klipper getClipboardContents

Windows XP/WSH -- Set clipboard data .vbs:
&#039; adapted from Frank-Peter Schultze http://www.fpschultze.de/smartfaq+faq.faqid+53.htm
If WScript.Arguments.Count Then
  t = WScript.Arguments(0)
  With WScript.CreateObject(&quot;InternetExplorer.Application&quot;)
    .Navigate &quot;about:blank&quot;
    Do Until .ReadyState = 4 : WScript.Sleep 50 : Loop
    .document.ParentWindow.ClipboardData.SetData &quot;text&quot;, t
  End With
End If

Windows XP/WSH -- Get clipboard data .vbs:
&#039; adapted from Frank-Peter Schultze http://www.fpschultze.de/smartfaq+faq.faqid+53.htm
With WScript.CreateObject(&quot;InternetExplorer.Application&quot;)
  .Navigate &quot;about:blank&quot;
   Do Until .ReadyState = 4 : WScript.Sleep 50 : Loop
   WScript.echo .document.ParentWindow.ClipboardData.GetData(&quot;text&quot;)
End With

These .vbs load up a hidden IE in the background in order to access the clipboard, so take a few seconds to run, but this is the only transparent (non-binary, no software install, source available) way I&#039;ve found so far.

Now I just need OS X scripts and the subsequent key bindings to finish off my DIY clipboard tool! ;)</description>
		<content:encoded><![CDATA[<p>Thanks for the post &#8212; serves as a great starting point for Google searchers.  However, most of these solutions seem like overkill for my simple cross platform copy/paste needs, so I&#8217;ve instead arranged some command line puzzle pieces to accomplish the core task.  Data transfer is left as an exercise, but stashing the data in a shared folder textfile works fine for me.  I have Kubuntu and Windows snippets so far:</p>
<p>Kubuntu &#8211; Set clipboard data:<br />
#!/bin/sh<br />
dcop klipper klipper setClipboardContents &#8220;$*&#8221;<br />
Kubuntu &#8212; Get clipboard data:<br />
#!/bin/sh<br />
#get/echo:<br />
dcop klipper klipper getClipboardContents</p>
<p>Windows XP/WSH &#8212; Set clipboard data .vbs:<br />
&#8216; adapted from Frank-Peter Schultze <a href="http://www.fpschultze.de/smartfaq+faq.faqid+53.htm" rel="nofollow">http://www.fpschultze.de/smartfaq+faq.faqid+53.htm</a><br />
If WScript.Arguments.Count Then<br />
  t = WScript.Arguments(0)<br />
  With WScript.CreateObject(&#8220;InternetExplorer.Application&#8221;)<br />
    .Navigate &#8220;about:blank&#8221;<br />
    Do Until .ReadyState = 4 : WScript.Sleep 50 : Loop<br />
    .document.ParentWindow.ClipboardData.SetData &#8220;text&#8221;, t<br />
  End With<br />
End If</p>
<p>Windows XP/WSH &#8212; Get clipboard data .vbs:<br />
&#8216; adapted from Frank-Peter Schultze <a href="http://www.fpschultze.de/smartfaq+faq.faqid+53.htm" rel="nofollow">http://www.fpschultze.de/smartfaq+faq.faqid+53.htm</a><br />
With WScript.CreateObject(&#8220;InternetExplorer.Application&#8221;)<br />
  .Navigate &#8220;about:blank&#8221;<br />
   Do Until .ReadyState = 4 : WScript.Sleep 50 : Loop<br />
   WScript.echo .document.ParentWindow.ClipboardData.GetData(&#8220;text&#8221;)<br />
End With</p>
<p>These .vbs load up a hidden IE in the background in order to access the clipboard, so take a few seconds to run, but this is the only transparent (non-binary, no software install, source available) way I&#8217;ve found so far.</p>
<p>Now I just need OS X scripts and the subsequent key bindings to finish off my DIY clipboard tool! ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avran</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-297682</link>
		<dc:creator>Avran</dc:creator>
		<pubDate>Wed, 25 Jun 2008 22:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-297682</guid>
		<description>Synergy stopped devl in 2006 as per sourceforge.</description>
		<content:encoded><![CDATA[<p>Synergy stopped devl in 2006 as per sourceforge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295820</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 30 May 2008 21:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295820</guid>
		<description>My bad, completely missed that you already covered it..</description>
		<content:encoded><![CDATA[<p>My bad, completely missed that you already covered it..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295819</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 30 May 2008 21:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295819</guid>
		<description>Synergy (synergy.sf.net) takes this one step further - you can share the mouse, keyboard and clipboard between workstations.</description>
		<content:encoded><![CDATA[<p>Synergy (synergy.sf.net) takes this one step further &#8211; you can share the mouse, keyboard and clipboard between workstations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hervé S.</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295776</link>
		<dc:creator>Hervé S.</dc:creator>
		<pubDate>Fri, 30 May 2008 11:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295776</guid>
		<description>We are intensely using DropCopy at family level on (i. e. daily on a 5-macintosh network), it&#039;s extremely user-friendly and handles both clipboard sharing and file exchange
http://10base-t.com/macintosh-software/dropcopy/</description>
		<content:encoded><![CDATA[<p>We are intensely using DropCopy at family level on (i. e. daily on a 5-macintosh network), it&#8217;s extremely user-friendly and handles both clipboard sharing and file exchange<br />
<a href="http://10base-t.com/macintosh-software/dropcopy/" rel="nofollow">http://10base-t.com/macintosh-software/dropcopy/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295758</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 30 May 2008 05:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295758</guid>
		<description>You should also try it online: 

http://tuu.fi/notepad/

Try creating your own private pad.</description>
		<content:encoded><![CDATA[<p>You should also try it online: </p>
<p><a href="http://tuu.fi/notepad/" rel="nofollow">http://tuu.fi/notepad/</a></p>
<p>Try creating your own private pad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295744</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 30 May 2008 00:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295744</guid>
		<description>I did a lot of searching for a remote clipboard a while back. I didn&#039;t have much luck until I came across a freebie called &lt;a href=&quot;http://www.inspectmygadget.com/2007/10/15/windows-software-beyondcopy-124/&quot; rel=&quot;nofollow&quot;&gt;BeyondCopy.&lt;/a&gt; A client is required to be installed on each computer, but it works a treat.

Ditto also looks good. Hadn&#039;t come across that one.</description>
		<content:encoded><![CDATA[<p>I did a lot of searching for a remote clipboard a while back. I didn&#8217;t have much luck until I came across a freebie called <a href="http://www.inspectmygadget.com/2007/10/15/windows-software-beyondcopy-124/" rel="nofollow">BeyondCopy.</a> A client is required to be installed on each computer, but it works a treat.</p>
<p>Ditto also looks good. Hadn&#8217;t come across that one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295738</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 29 May 2008 22:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295738</guid>
		<description>It&#039;s way more then a clipboard tool (and priced to match), but I like Timbuktu Pro on the Mac, it is a remote control solution, and also lets you optionally share clipboard with the various computers you are controlling. I used it to control a dozen different Macs and it works really well.</description>
		<content:encoded><![CDATA[<p>It&#8217;s way more then a clipboard tool (and priced to match), but I like Timbuktu Pro on the Mac, it is a remote control solution, and also lets you optionally share clipboard with the various computers you are controlling. I used it to control a dozen different Macs and it works really well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jane</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295732</link>
		<dc:creator>jane</dc:creator>
		<pubDate>Thu, 29 May 2008 20:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295732</guid>
		<description>textsnip.com is pretty good too</description>
		<content:encoded><![CDATA[<p>textsnip.com is pretty good too</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295722</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Thu, 29 May 2008 19:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295722</guid>
		<description>You forgot the best one for windows: Ditto.</description>
		<content:encoded><![CDATA[<p>You forgot the best one for windows: Ditto.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barney</title>
		<link>http://webworkerdaily.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-295721</link>
		<dc:creator>Barney</dc:creator>
		<pubDate>Thu, 29 May 2008 19:18:44 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-295721</guid>
		<description>cl1p.net is also worth looking at for a cross platform solution.</description>
		<content:encoded><![CDATA[<p>cl1p.net is also worth looking at for a cross platform solution.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
