<?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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/</link>
	<description></description>
	<lastBuildDate>Sat, 25 May 2013 22:36:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Toshak</title>
		<link>http://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72343</link>
		<dc:creator><![CDATA[Toshak]]></dc:creator>
		<pubDate>Wed, 02 Jun 2010 20:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72343</guid>
		<description><![CDATA[&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;While all these tools are great, my situation I wanted addressed was for a typical corporate network, when it&#039;s not possible to change firewall settings, or install programs, and there&#039;s a real security problem with sharing possibly classified data across the network for the clipboards.&lt;/p&gt;

&lt;p&gt;Therefore I&#039;ve written the little open-source tool called ClipBoardMultiSharer which can be found here:
http://clipboardmshare.sourceforge.net/&lt;/p&gt;

&lt;p&gt;This is quite a low-tech tool with no installer, it relies on Windows file sharing, and supports only text data.&lt;/p&gt;

&lt;p&gt;However, this also means you only need access to a common shared network folder such as a personal space typically provided at a corporate network, and by using such a folder you can safely and securely share clipboard data conveniently.&lt;/p&gt;

&lt;p&gt;Regards,
Toshak&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>While all these tools are great, my situation I wanted addressed was for a typical corporate network, when it&#8217;s not possible to change firewall settings, or install programs, and there&#8217;s a real security problem with sharing possibly classified data across the network for the clipboards.</p>
<p>Therefore I&#8217;ve written the little open-source tool called ClipBoardMultiSharer which can be found here:<br />
<a href="http://clipboardmshare.sourceforge.net/" rel="nofollow">http://clipboardmshare.sourceforge.net/</a></p>
<p>This is quite a low-tech tool with no installer, it relies on Windows file sharing, and supports only text data.</p>
<p>However, this also means you only need access to a common shared network folder such as a personal space typically provided at a corporate network, and by using such a folder you can safely and securely share clipboard data conveniently.</p>
<p>Regards,<br />
Toshak</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torsten Uhlmann</title>
		<link>http://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72342</link>
		<dc:creator><![CDATA[Torsten Uhlmann]]></dc:creator>
		<pubDate>Sat, 22 Aug 2009 17:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72342</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72341</link>
		<dc:creator><![CDATA[tim d]]></dc:creator>
		<pubDate>Tue, 08 Jul 2008 12:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72341</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72340</link>
		<dc:creator><![CDATA[Avran]]></dc:creator>
		<pubDate>Wed, 25 Jun 2008 22:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72340</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72339</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Fri, 30 May 2008 21:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72339</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72338</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Fri, 30 May 2008 21:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72338</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72337</link>
		<dc:creator><![CDATA[Hervé S.]]></dc:creator>
		<pubDate>Fri, 30 May 2008 11:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72337</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72336</link>
		<dc:creator><![CDATA[Jay]]></dc:creator>
		<pubDate>Fri, 30 May 2008 05:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72336</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72335</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Fri, 30 May 2008 00:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72335</guid>
		<description><![CDATA[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://gigaom.com/2008/05/28/7-ways-to-a-unified-clipboard/#comment-72334</link>
		<dc:creator><![CDATA[Joe]]></dc:creator>
		<pubDate>Thu, 29 May 2008 22:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://webworkerdaily.wordpress.com/?p=2441#comment-72334</guid>
		<description><![CDATA[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>
</channel>
</rss>
