<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; collaboration</title>
	<atom:link href="http://www.ghacks.net/tag/collaboration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 22:02:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Install OpenGoo for in house collaboration tools</title>
		<link>http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/</link>
		<comments>http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 19:42:26 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[google documents]]></category>
		<category><![CDATA[mobile office]]></category>
		<category><![CDATA[office suite]]></category>
		<category><![CDATA[online office]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18315</guid>
		<description><![CDATA[Do you use Google for your collaboration tools? Gmail? Google Documents? Contacts? Although the Google suite is a very nice suite of tools that has grown exponentially in popularity, there is something to be said about keeping your collaboration tools in-house. There are plenty of tools that will allow you to set up such a [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use Google for your collaboration tools? <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a>? Google Documents? Contacts? Although the Google suite is a very nice suite of tools that has grown exponentially in popularity, there is something to be said about keeping your collaboration tools in-house. There are plenty of tools that will allow you to set up such a collaboration suite. Some of these tools are costly, some of them are overly-complex to use or install, and some of them just don&#8217;t offer all of the tools you need.</p>
<p>And then there&#8217;s <a title="OpenGoo" href="http://www.opengoo.org" target="_blank">OpenGoo</a>. OpenGoo is an open source collaboration tool that is fully web-based, easy to use, simple to install, and free to use. But is OpenGoo for you and your company? This tutorial will show you how to get an OpenGoo installation up and running so you can kick the tires and find out if it is exactly what you need.</p>
<p><span id="more-18315"></span><strong>Features</strong></p>
<p>OpenGoo offers all of the standard features of a business-level collaboration suite:</p>
<ul>
<li>Text documents</li>
<li>Spreadsheets (coming soon)</li>
<li>Presentations</li>
<li>Task Lists</li>
<li>E-mails</li>
<li>Calendars</li>
<li>Web Links</li>
<li>Contacts</li>
</ul>
<p>All you need to install an OpenGoo server is:</p>
<ul>
<li><span style="background-color: #ffffff">Apache &gt;= 2.0</span></li>
<li><span style="background-color: #ffffff">MySQL &gt;= 5.0 (5.2 recommended)</span></li>
<li><span style="background-color: #ffffff">MySQL &gt;= 4.1 with InnoDB support</span></li>
</ul>
<p>Now, let&#8217;s get on with that installation.</p>
<p><strong>Install</strong></p>
<p>This installation will be done on a Ubuntu 9.10 setup. I have installed this on both desktop and server installation, but regardless of which you have installed, you will need a LAMP server running.</p>
<p>The first thing you need to do is to download the zip file from the <a title="OpenGoo download" href="http://sourceforge.net/projects/opengoo/files/" target="_blank">OpenGoo download page</a>. I downloaded and installed the 1.6 beta version which works nicely.</p>
<p>Once that file is downloaded, move that file to <strong>/var/www. </strong>Now, change to the <strong>/var/www/</strong> directory and then unzip it with the command:<span style="background-color: #ffffff"> </span></p>
<p><span style="background-color: #ffffff"><em>sudo unzip opengoo_1.6.beta-2.zip</em></span></p>
<p><span style="background-color: #ffffff">NOTE: If you downloaded a different release, edit that command to reflect the release number.</span></p>
<p><span style="background-color: #ffffff">Once that files is unzipped rename the directory with the command:</span></p>
<p><span style="background-color: #ffffff"><em>sudo mv opengoo_1.6.beta-2.zip opengoo</em></span></p>
<p><span style="background-color: #ffffff">Now change into the <strong>/var/www/opengoo</strong> directory and issue the following commands:</span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/config</em></span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/cache</em></span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/upload</em></span></p>
<p><span style="background-color: #ffffff"><em>sudo chmod -R ugo+w /var/www/opengoo/tmp</em></span></p>
<p><span style="background-color: #ffffff">With all the right permissions in play, it is time to create the database. I like to use PhpMyAdmin to make database creation simple. For more information about installing this tool check out my article &#8220;<a title="Install phpmyadmin for easy MySQL administration" href="http://www.ghacks.net/2008/12/20/install-phpmyadmin-for-easy-mysql-administration/" target="_blank">Install PhpMyAdmin for easy MySQL administration</a>&#8220;. Use this tool to create a database called &#8220;opengoo&#8221; (No quotes).</span></p>
<p><span style="background-color: #ffffff">Time to begin the web-based installation.</span></p>
<p><span style="background-color: #ffffff">Fire up your browser and point it to:</span></p>
<p><span style="background-color: #ffffff"><em>http://IP_TO_SERVER/opengoo</em></span></p>
<p><span style="background-color: #ffffff">Where IP_TO_SERVER is the actual IP Address of your OpenGoo server. You will be greeted with usual welcome screen that will tell you exactly what is going to happen during the installation. Click the Next button to continue on.</span></p>
<p><span style="background-color: #ffffff">The second screen will run the environment checks. If everything gets and OK (and it should be if your LAMP server is up and running and you&#8217;ve taken care of all the permissions) click the Next button to continue on.</span></p>
<p><span style="background-color: #ffffff"> </span></p>
<div id="attachment_18316" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18316" href="http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/opengoo_install_3/"><img class="size-thumbnail wp-image-18316 " src="http://www.ghacks.net/wp-content/uploads/2009/11/opengoo_install_3-300x300.png" alt="Figure 1" width="180" height="180" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>The third page of the installation (see Figure 1) is the first step that should require you to input any data.</p>
<p>The information should be fairly self explanatory. There is one point of note: If you plan on allowing access to your local LAN you will need to change the Absolute script URL to reflect the proper IP address (or domain).</p>
<p>Once you have all of this information in place, click the Next button which will take you to the congratulations screen where you only need click the Finish button to assume you&#8217;ve completed the installation.</p>
<div id="attachment_18317" class="wp-caption alignright" style="width: 190px"><a rel="attachment wp-att-18317" href="http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/opengoo_install_5/"><img class="size-thumbnail wp-image-18317 " src="http://www.ghacks.net/wp-content/uploads/2009/11/opengoo_install_5-300x300.png" alt="Figure 2" width="180" height="180" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Ah, but there is one more step. Figure 2 shows the final step for the installation. Here you need to create an administrator for your installation.</p>
<p>Setup your administrative user and click Submit. You can now log in to your OpenGoo server with your administrative user.</p>
<p><strong>The basic interface</strong></p>
<p>You will log into your OpenGoo server by entering the same address you did for the installation. When you log in you will be at the OpenGoo Getting Started Page (see Figure 3).</p>
<div id="attachment_18318" class="wp-caption alignleft" style="width: 310px"><a rel="attachment wp-att-18318" href="http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/opengoo_main_page/"><img class="size-thumbnail wp-image-18318" src="http://www.ghacks.net/wp-content/uploads/2009/11/opengoo_main_page-300x300.png" alt="Figure 3" width="300" height="300" /></a><p class="wp-caption-text">Figure 3</p></div>
<p>The OpenGoo installation will offer a very simple information page that will help you get started on your decision. But as you can see, the interface is laid out quite well. The tools are accessible and very user-friendly.</p>
<p>After using OpenGoo for a while I can assure you if you like Google&#8217;s suite of tools, you will like OpenGoo.</p>
<p><strong>Final thoughts</strong></p>
<p>If you are looking for a very cost effect collaboration solution look no further than the open source OpenGoo suite of tools. Not only is it easy to use, it&#8217;s simple to install, and free of charge.</p>

	Tags: <a href="http://www.ghacks.net/tag/collaboration/" title="collaboration" rel="tag">collaboration</a>, <a href="http://www.ghacks.net/tag/google-documents/" title="google documents" rel="tag">google documents</a>, <a href="http://www.ghacks.net/tag/mobile-office/" title="mobile office" rel="tag">mobile office</a>, <a href="http://www.ghacks.net/tag/office-suite/" title="office suite" rel="tag">office suite</a>, <a href="http://www.ghacks.net/tag/online-office/" title="online office" rel="tag">online office</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/05/05/open-office-31/" title="Open Office 3.1 (May 5, 2009)">Open Office 3.1</a> (17)</li>
	<li><a href="http://www.ghacks.net/2008/10/10/open-office-3-final/" title="Open Office 3 Final (October 10, 2008)">Open Office 3 Final</a> (21)</li>
	<li><a href="http://www.ghacks.net/2009/05/12/microsoft-sharedview/" title="Microsoft SharedView (May 12, 2009)">Microsoft SharedView</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/09/02/microsoft-office-migration-planning-manager/" title="Microsoft Office Migration Planning Manager (September 2, 2008)">Microsoft Office Migration Planning Manager</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/02/26/konolive-getting-things-done-software/" title="KonoLive Getting Things Done Software (February 26, 2009)">KonoLive Getting Things Done Software</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/08/install-opengoo-for-in-house-collaboration-tools/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Google Fusion Tables Offers Data Management In The Cloud</title>
		<link>http://www.ghacks.net/2009/06/11/google-fusion-tables-offers-data-management-in-the-cloud/</link>
		<comments>http://www.ghacks.net/2009/06/11/google-fusion-tables-offers-data-management-in-the-cloud/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 18:07:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[data management]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google fusion]]></category>
		<category><![CDATA[google fusion tables]]></category>
		<category><![CDATA[spreadsheets]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13461</guid>
		<description><![CDATA[Google today announced the public alpha release of their new data management product Google Fusion Tables that focuses on fusing data management and collaboration by offering means to merge multiple data sources and to query, visualize, discuss and publish the data on the Internet.
Users with a Google account, for example one from a Gmail account, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/google_fusion_tables.jpg" alt="google fusion tables" title="google fusion tables" width="265" height="52" class="alignleft size-full wp-image-13462" />Google <a href="http://googleresearch.blogspot.com/2009/06/google-fusion-tables.html">today</a> announced the public alpha release of their new data management product Google Fusion Tables that focuses on fusing data management and collaboration by offering means to merge multiple data sources and to query, visualize, discuss and publish the data on the Internet.</p>
<p>Users with a Google account, for example one from a <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a> account, can access Google Fusion Tables right away. Each user gets 250 Megabytes of storage space on the Google servers and the ability to upload data that cannot exceed 100 Megabytes per data set. Currently only Microsoft Excel (xls) and comma separated value (csv) files are supported by the Google data management product. Uploaded data can then be shared with collaborators with the additional option to share only part of the data with different collaborators. </p>
<p><span id="more-13461"></span>The data can be visualized by the user in various ways including the default table form, pie charts, bars or intensity maps among other forms of visualization.</p>
<p><a href="http://www.ghacks.net/wp-content/uploads/2009/06/google1.jpg"><img src="http://www.ghacks.net/wp-content/uploads/2009/06/google1-499x231.jpg" alt="google" title="google" width="499" height="231" class="alignnone size-medium wp-image-13465" /></a></p>
<p><a href="http://www.ghacks.net/wp-content/uploads/2009/06/data_management.jpg"><img src="http://www.ghacks.net/wp-content/uploads/2009/06/data_management-500x198.jpg" alt="data management" title="data management" width="500" height="198" class="alignnone size-medium wp-image-13466" /></a></p>
<p>It is furthermore possible to edit the data at hand or to merge it with another set of data. Merging tables could not be easier. All that needs to be done is to select the two spreadsheets that should be merged and which columns to use for matching data across the two tables.</p>
<p><a href="http://www.ghacks.net/wp-content/uploads/2009/06/merging_tables.jpg"><img src="http://www.ghacks.net/wp-content/uploads/2009/06/merging_tables-500x488.jpg" alt="merging tables" title="merging tables" width="500" height="488" class="alignnone size-medium wp-image-13467" /></a></p>
<p><a href="http://tables.googlelabs.com/Home">Google Fusion Tables</a> is an easy to use data management service that comes with an interesting set of features that the developers plan to expand in the future based on user feedback.</p>

	Tags: <a href="http://www.ghacks.net/tag/collaboration/" title="collaboration" rel="tag">collaboration</a>, <a href="http://www.ghacks.net/tag/data-management/" title="data management" rel="tag">data management</a>, <a href="http://www.ghacks.net/tag/google/" title="Google" rel="tag">Google</a>, <a href="http://www.ghacks.net/tag/google-fusion/" title="google fusion" rel="tag">google fusion</a>, <a href="http://www.ghacks.net/tag/google-fusion-tables/" title="google fusion tables" rel="tag">google fusion tables</a>, <a href="http://www.ghacks.net/tag/spreadsheets/" title="spreadsheets" rel="tag">spreadsheets</a>, <a href="http://www.ghacks.net/tag/tables/" title="tables" rel="tag">tables</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/20/youtube-videos-get-automatic-captions-1080p-videos-roll-out/" title="Youtube Videos Get Automatic Captions. 1080p Videos Roll-Out (November 20, 2009)">Youtube Videos Get Automatic Captions. 1080p Videos Roll-Out</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/08/21/youtube-insight-find-out-who-is-embedding-your-youtube-videos/" title="Youtube Insight: Find Out Who Is Embedding Your Youtube Videos (August 21, 2009)">Youtube Insight: Find Out Who Is Embedding Your Youtube Videos</a> (0)</li>
	<li><a href="http://www.ghacks.net/2005/10/14/yahoo-vs-google-vs-msn-search-commands-compared/" title="Yahoo vs. Google vs. Msn, Search commands compared (October 14, 2005)">Yahoo vs. Google vs. Msn, Search commands compared</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/10/05/xoopit-to-become-yahoo-mail-exclusive/" title="Xoopit To Become Yahoo Mail Exclusive (October 5, 2009)">Xoopit To Become Yahoo Mail Exclusive</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/06/15/x-ways-to-manipulate-websites-in-firefox/" title="x Ways To Manipulate Websites In Firefox (June 15, 2009)">x Ways To Manipulate Websites In Firefox</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/11/google-fusion-tables-offers-data-management-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft SharedView</title>
		<link>http://www.ghacks.net/2009/05/12/microsoft-sharedview/</link>
		<comments>http://www.ghacks.net/2009/05/12/microsoft-sharedview/#comments</comments>
		<pubDate>Tue, 12 May 2009 20:38:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[collaboration software]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Microsoft SharedView]]></category>
		<category><![CDATA[sharedview]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/05/12/microsoft-sharedview/</guid>
		<description><![CDATA[Microsoft SharedView has been designed to share an application or computer desktop with a small group of people. The only requirement for Microsoft SharedView is a Windows Live ID to start a session in the program. The invited users on the other hand do not need their own ID only the ID of the session [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />Microsoft SharedView has been designed to share an application or computer desktop with a small group of people. The only requirement for Microsoft SharedView is a Windows Live ID to start a session in the program. The invited users on the other hand do not need their own ID only the ID of the session starter which is needed to join the session. A typical work scenario would look like the following. One user starts the Microsoft SharedView software and creates a new session after logging in with a Windows Live ID. An auto-generated email can be dispatched to invite users to join the session. </p>
<p><span id="more-12771"></span>The session starter selects an application to share, for example a Microsoft Excel spreadsheet. The shared document will be displayed brighter in this case than the parts of the desktop that are not shared. It is furthermore possible to post additional files that every user can access. Lastly it is possible to preview the desktop how users who join would see it.</p>
<p>Several options are available:</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/05/general_options.jpg" alt="general options" title="general options" width="441" height="331" class="alignnone size-full wp-image-12768" /><br />
<img src="http://www.ghacks.net/wp-content/uploads/2009/05/privacy.jpg" alt="privacy" title="privacy" width="441" height="331" class="alignnone size-full wp-image-12769" /><br />
<img src="http://www.ghacks.net/wp-content/uploads/2009/05/sharing.jpg" alt="sharing" title="sharing" width="442" height="332" class="alignnone size-full wp-image-12770" /></p>
<p>A toolbar will be displayed on the top of the screen that can be used to start and join sessions and to access the options. An option to share documents is offered in selected Microsoft applications after installation of the software. Invited users can take control of a session to work on the document. Changes are automatically tracked and logged so that everyone can identify which user made the changes to the document.</p>
<p><a href="http://www.connect.microsoft.com/content/content.aspx?ContentID=6415&#038;SiteID=94">Microsoft SharedView</a> offers a way to quickly share and work together with multiple users on documents.</p>

	Tags: <a href="http://www.ghacks.net/tag/collaboration/" title="collaboration" rel="tag">collaboration</a>, <a href="http://www.ghacks.net/tag/collaboration-software/" title="collaboration software" rel="tag">collaboration software</a>, <a href="http://www.ghacks.net/tag/microsoft/" title="microsoft" rel="tag">microsoft</a>, <a href="http://www.ghacks.net/tag/microsoft-sharedview/" title="Microsoft SharedView" rel="tag">Microsoft SharedView</a>, <a href="http://www.ghacks.net/tag/sharedview/" title="sharedview" rel="tag">sharedview</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/11/20/thumbwin-minimize-windows-to-thumbnails/" title="Thumbwin: minimize windows to thumbnails (November 20, 2007)">Thumbwin: minimize windows to thumbnails</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/04/10/snap-windows-together/" title="Snap Windows together (April 10, 2008)">Snap Windows together</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/10/06/quickly-access-your-windows-with-win-flip/" title="Quickly Access your Windows with Win Flip (October 6, 2007)">Quickly Access your Windows with Win Flip</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/01/31/map-a-key-to-another-key-or-no-function/" title="Map a key to another key (or no function) (January 31, 2008)">Map a key to another key (or no function)</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/12/16/autocomplete-for-all-applications/" title="Autocomplete for all applications (December 16, 2007)">Autocomplete for all applications</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/05/12/microsoft-sharedview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KonoLive Getting Things Done Software</title>
		<link>http://www.ghacks.net/2009/02/26/konolive-getting-things-done-software/</link>
		<comments>http://www.ghacks.net/2009/02/26/konolive-getting-things-done-software/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 20:07:48 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[adobe software]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[desktop software]]></category>
		<category><![CDATA[getting things done]]></category>
		<category><![CDATA[getting things done software]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[gtd software]]></category>
		<category><![CDATA[konolive]]></category>
		<category><![CDATA[software program]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10793</guid>
		<description><![CDATA[Konolive is a free group collaboration software for the Adobe Air platform. It has many similarities to Instant Messengers at first glance like the IM-like interface or the ability to add and manage contacts in the application. Everything centers around contacts and activities in the Getting Things Done software. Activities are are tasks at hand [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.konolive.com/">Konolive</a> is a free group collaboration software for the Adobe Air platform. It has many similarities to Instant Messengers at first glance like the IM-like interface or the ability to add and manage contacts in the application. Everything centers around contacts and activities in the Getting Things Done software. Activities are are tasks at hand that can be defined loosely or in detail depending on the requirements. It takes for example only two clicks and a short test to create a new task in the software. The task can be filled with information at a later time but after its creation it is simply having a name and owner.</p>
<p>A complex activity on the other hand adds due dates, reminders, tags, context, additional users and contents to the basic information. Each activity can be made up of sub-activities. </p>
<p>Contacts can be invited from various sources including Konolive accounts but also external sources like <a href="http://www.ghacks.net/2009/02/09/gmail-90-tools-and-tips-to-make-you-a-gmail-pro/">Gmail</a>, Yahoo, Hotmail, MSN or Plaxo. Keep in mind that the login credentials have to be supplied to be able to do so.</p>
<p><span id="more-10793"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/02/konolive_tool-258x500.jpg" alt="konolive tool" title="konolive tool" width="258" height="500" class="alignnone size-medium wp-image-10794" /></p>
<p>KonoLive can be an interesting alternative to other GTD software programs if the users do not mind the use of Adobe Air. The software has been designed with ease and mind and it is indeed easy and comfortable to work with other users in KonoLive. </p>

	Tags: <a href="http://www.ghacks.net/tag/adobe-air/" title="adobe air" rel="tag">adobe air</a>, <a href="http://www.ghacks.net/tag/adobe-software/" title="adobe software" rel="tag">adobe software</a>, <a href="http://www.ghacks.net/tag/collaboration/" title="collaboration" rel="tag">collaboration</a>, <a href="http://www.ghacks.net/tag/desktop-software/" title="desktop software" rel="tag">desktop software</a>, <a href="http://www.ghacks.net/tag/getting-things-done/" title="getting things done" rel="tag">getting things done</a>, <a href="http://www.ghacks.net/tag/getting-things-done-software/" title="getting things done software" rel="tag">getting things done software</a>, <a href="http://www.ghacks.net/tag/gtd/" title="gtd" rel="tag">gtd</a>, <a href="http://www.ghacks.net/tag/gtd-software/" title="gtd software" rel="tag">gtd software</a>, <a href="http://www.ghacks.net/tag/konolive/" title="konolive" rel="tag">konolive</a>, <a href="http://www.ghacks.net/tag/software-program/" title="software program" rel="tag">software program</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/12/zflick-adobe-air-flickr-photo-viewer/" title="ZFlick Adobe Air Flickr Photo Viewer (November 12, 2009)">ZFlick Adobe Air Flickr Photo Viewer</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/10/06/windows-extractor/" title="Windows Extractor (October 6, 2008)">Windows Extractor</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/01/18/windows-application-monitor-kiwi/" title="Windows Application Monitor Kiwi (January 18, 2009)">Windows Application Monitor Kiwi</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/05/13/use-twhirl-for-adobe-air-to-twitter/" title="Use Twhirl for Adobe Air to twitter (May 13, 2008)">Use Twhirl for Adobe Air to twitter</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/11/23/unpack-installers-with-universal-extractor/" title="Unpack Installers With Universal Extractor (November 23, 2008)">Unpack Installers With Universal Extractor</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/26/konolive-getting-things-done-software/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Collaborate in Real Time with Gobby</title>
		<link>http://www.ghacks.net/2009/01/01/collaborate-in-real-time-with-gobby/</link>
		<comments>http://www.ghacks.net/2009/01/01/collaborate-in-real-time-with-gobby/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 15:53:49 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[gobby]]></category>
		<category><![CDATA[real time]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9488</guid>
		<description><![CDATA[If you do any collaborative work you know how difficult some collaboration tools can be. With both MS Office and OpenOffice you can collaborate with notes and track changes. But what about collaborating in real time? What if you are wanting to quickly collaborate on a simple text document with multiple editors? Fortunately there is [...]]]></description>
			<content:encoded><![CDATA[<p>If you do any collaborative work you know how difficult some collaboration tools can be. With both MS Office and OpenOffice you can collaborate with notes and track changes. But what about collaborating in real time? What if you are wanting to quickly collaborate on a simple text document with multiple editors? Fortunately there is a simple to use collaboration tool that is cross platform and very user friendly. The tool? Gobby.</p>
<p>Gobby was released in 2005 by the Ox539 developer group and features a client/server architecture that allows for easy remote connection between two peers. Gobby contains its own server (Sobby) so there&#8217;s no secondary installation or configuration.</p>
<p><span id="more-9488"></span></p>
<p><strong>Getting and Installing</strong></p>
<p>As Gobby is very common, it is generally in repositories for every distribution. This makes installing Gobby simple. Open up your distributions&#8217; Add/Remove Software application and do a search for &#8220;gobby&#8221; (no quotes). Once you find Gobby, select it and click Apply.</p>
<p>Once Gobby is installed you should find the executable entry in the Internet menu.</p>
<p><strong>Starting a Gobby Session</strong></p>
<p>When you first start Gobby you will see an empty Gobby window. From this window you can either &#8220;Create session&#8221; (become a host for a session) or &#8220;Join Session&#8221; (join a remote Gobby host).  Click on the &#8220;Create Session&#8221; button which will open up a session configuration window.</p>
<div id="attachment_9507" class="wp-caption alignnone" style="width: 427px"><img class="size-full wp-image-9507" src="http://www.ghacks.net/wp-content/uploads/2009/01/gobby_create_session1.png" alt="Create Session" width="417" height="309" /><p class="wp-caption-text">Create Session</p></div>
<p>If you don&#8217;t enter a password anyone starting up Gobby can join your session. If this is a &#8220;private&#8221; collaboration, it&#8217;s best to set up a password.</p>
<p>Now for those wishing to join an already running click on the Join Session button and the Join Gobby Session window will open.</p>
<div id="attachment_9508" class="wp-caption alignnone" style="width: 289px"><img class="size-full wp-image-9508" src="http://www.ghacks.net/wp-content/uploads/2009/01/gobby_join_session.png" alt="Join Session" width="279" height="351" /><p class="wp-caption-text">Join Session</p></div>
<p>You can select your Gobby server from the list or you can enter the Host manually. Once you have entered the correct information click OK and you will join the session.</p>
<p>Once you have joined the session you will want to open up two extra windows: Document List and User List. The Document List window will show you all available Gobby documents available to you. If you are not the creator of a document you can click on a document and subscribe to that document. When you subcribe to a document a new tab for that document will open in your Gobby window.</p>
<div id="attachment_9509" class="wp-caption alignnone" style="width: 513px"><a href="http://www.ghacks.net/wp-content/uploads/2009/01/gobby_tabs.png"><img class="size-full wp-image-9509" src="http://www.ghacks.net/wp-content/uploads/2009/01/gobby_tabs.png" alt="Gobby Session" width="503" height="328" /></a><p class="wp-caption-text">Gobby Session</p></div>
<p>As you can, in the image above, Gobby does syntax highlighting. If you click on the Edit menu you will see a Syntax submenu. From that submenu you can select from any of the 65 different types of syntax highlighting.</p>
<p>Another nice feature of Gobby is that it includes a chat window. With a chat window you can actually communicate as you collaborate.</p>
<div id="attachment_9510" class="wp-caption alignnone" style="width: 513px"><a href="http://www.ghacks.net/wp-content/uploads/2009/01/gobby_chat.png"><img class="size-full wp-image-9510" src="http://www.ghacks.net/wp-content/uploads/2009/01/gobby_chat.png" alt="Gobby Chat" width="503" height="326" /></a><p class="wp-caption-text">Gobby Chat</p></div>
<p>After you have done all of your work you have to  save  each document individually and, if you want, you can save the chat session. To save a single document just click on the tab of the document to save, go to the Session menu entry, and click Save Document. To save the chat session go to the Gobby menu entry and select Save Session.</p>
<p><strong>Final Thoughts</strong></p>
<p>Gobby has a number of possible applications from development collaboration to document collaboration. If you have a need for an easy to use, free collaboration software, this is what you want.</p>

	Tags: <a href="http://www.ghacks.net/tag/chat/" title="chat" rel="tag">chat</a>, <a href="http://www.ghacks.net/tag/collaboration/" title="collaboration" rel="tag">collaboration</a>, <a href="http://www.ghacks.net/tag/gobby/" title="gobby" rel="tag">gobby</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/real-time/" title="real time" rel="tag">real time</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/01/01/collaborate-in-real-time-with-gobby/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
