<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Apps Guy</title>
	
	<link>http://appsguy.com</link>
	<description>More Than You Ever Really Wanted to Know About Google Apps</description>
	<lastBuildDate>Fri, 22 Jul 2011 22:09:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/appsguy" /><feedburner:info uri="appsguy" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Fixing a WordPress MU redirect loop</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/L5IHRhsuypY/</link>
		<comments>http://appsguy.com/2011/07/22/fixing-a-wordpress-mu-redirect-loop/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 22:09:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=183</guid>
		<description><![CDATA[I recently updated my test server running this blog, and appsguy.com (and a few others) were not working.  When going to the front page, Wordpress redirected in an infinite loop trying to create a new blog (wp-signup.php&#8230;..).  It turns out that the wp_blogs table in the MySQL database was corrupt.  The wp_blogs table is what [...]]]></description>
			<content:encoded><![CDATA[<p>I recently updated my test server running this blog, and appsguy.com (and a few others) were not working.  When going to the front page, Wordpress redirected in an infinite loop trying to create a new blog (wp-signup.php&#8230;..).  It turns out that the wp_blogs table in the MySQL database was corrupt.  The wp_blogs table is what identifies which blog should be displayed, and with what settings.</p>
<p>After an initial attempt to repair the table with MySQL failed, I tried a few things.  What ended up working was to create a new blog, copy the table structure, then recreate the table.  To save others the hassle, here is the table structure</p>
<p>Warning, table structure may have changed between Wordpress MU versions, this works for WordPress MU 2.8.1:</p>
<pre>CREATE TABLE `wp_blogs` (
  `blog_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `site_id` bigint(20) NOT NULL DEFAULT '0',
  `domain` varchar(200) NOT NULL DEFAULT '',
  `path` varchar(100) NOT NULL DEFAULT '',
  `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `public` tinyint(2) NOT NULL DEFAULT '1',
  `archived` enum('0','1') NOT NULL DEFAULT '0',
  `mature` tinyint(2) NOT NULL DEFAULT '0',
  `spam` tinyint(2) NOT NULL DEFAULT '0',
  `deleted` tinyint(2) NOT NULL DEFAULT '0',
  `lang_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`blog_id`),
  KEY `domain` (`domain`(50),`path`(5)),
  KEY `lang_id` (`lang_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;</pre>
<p>Then insert the data:</p>
<pre>INSERT INTO `wp_blogs` VALUES (1,1,'appsguy.com','/',
    '2011-07-22 20:24:57','2011-07-22 20:24:57',1,'0',0,0,0,0);</pre>
<p>After reloading the site, the blog came up with the default theme.  Since the theme files were intact, I went into the admin, switched the theme then the blog was back to normal.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/L5IHRhsuypY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2011/07/22/fixing-a-wordpress-mu-redirect-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2011/07/22/fixing-a-wordpress-mu-redirect-loop/</feedburner:origLink></item>
		<item>
		<title>AppsGuy is Certified.  Yay, cloud.</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/jo1vN2HTE4Q/</link>
		<comments>http://appsguy.com/2011/04/05/appsguy-is-certified-yay-cloud/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 18:03:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=180</guid>
		<description><![CDATA[ AppsGuy now has a Google Apps Certified Deployment Specialist on staff.  Now you don&#8217;t have to worry (as much) about trusting some random guy on the Internet.  Did I mention I am also a Nigerian Prince?
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-181" src="http://appsguy.com/files/2011/04/badge_cds_v2_web.png" alt="Apps Guy is Certified." width="125" height="125" /> AppsGuy now has a Google Apps Certified Deployment Specialist on staff.  Now you don&#8217;t have to worry (as much) about trusting some random guy on the Internet.  Did I mention I am also a Nigerian Prince?</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/jo1vN2HTE4Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2011/04/05/appsguy-is-certified-yay-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2011/04/05/appsguy-is-certified-yay-cloud/</feedburner:origLink></item>
		<item>
		<title>Google Apps Certification Exam</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/R8Ox5gZ-PHI/</link>
		<comments>http://appsguy.com/2011/02/23/google-apps-certification-exam/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 19:01:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Partners]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=177</guid>
		<description><![CDATA[Google has just made it public that they now have a Google Apps Certification program.  While I did have the option to participate in the beta exam, I was not able to take the test.  I will take the exam soon, hopefully pass, and show all three readers of this blog that I&#8217;m not just some [...]]]></description>
			<content:encoded><![CDATA[<p>Google has just made it public that they now have a Google Apps Certification program.  While I did have the option to participate in the beta exam, I was not able to take the test.  I will take the exam soon, hopefully pass, and show all three readers of this blog that I&#8217;m not just some random guy that thinks he knows about Google Apps <img src='http://appsguy.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Here is a link to the Certification info:</p>
<p><a href="http://certification.googleapps.com/">http://certification.googleapps.com/</a></p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/R8Ox5gZ-PHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2011/02/23/google-apps-certification-exam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://appsguy.com/2011/02/23/google-apps-certification-exam/</feedburner:origLink></item>
		<item>
		<title>Google API Command Line Tools and UI</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/hDsXIclT7bs/</link>
		<comments>http://appsguy.com/2011/02/15/google-api-command-line-tools-and-ui/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 19:37:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[APIs]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=174</guid>
		<description><![CDATA[Google has recently released a shell interface to its APIs:
http://google-opensource.blogspot.com/2011/02/use-google-apps-apis-without-writing.html
This allows you to access any of the Apps APIs without having to setup your environment or write scripts.  The syntax and overhead in maintaining the user CSV sheet is a little challenging, but still easier than rolling your own scripts
]]></description>
			<content:encoded><![CDATA[<p>Google has recently released a shell interface to its APIs:</p>
<p><a href="http://google-opensource.blogspot.com/2011/02/use-google-apps-apis-without-writing.html">http://google-opensource.blogspot.com/2011/02/use-google-apps-apis-without-writing.html</a></p>
<p>This allows you to access any of the Apps APIs without having to setup your environment or write scripts.  The syntax and overhead in maintaining the user CSV sheet is a little challenging, but still easier than rolling your own scripts</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/hDsXIclT7bs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2011/02/15/google-api-command-line-tools-and-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2011/02/15/google-api-command-line-tools-and-ui/</feedburner:origLink></item>
		<item>
		<title>End User Google Apps Learning Center Online Now.</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/f4VRNxnMB6k/</link>
		<comments>http://appsguy.com/2010/12/14/end-user-google-apps-learning-center-online-now/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 00:40:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Piloting Apps]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=172</guid>
		<description><![CDATA[https://sites.google.com/a/googleapps.com/google-apps-learning-center/
Google has just released a packaged version of all of its End User tutorials, How-To guides, etc.  It should be a good resource in helping your customers or employees get up to speed when making the switch to Google Apps.
]]></description>
			<content:encoded><![CDATA[<p><a href="https://sites.google.com/a/googleapps.com/google-apps-learning-center/">https://sites.google.com/a/googleapps.com/google-apps-learning-center/</a></p>
<p>Google has just released a packaged version of all of its End User tutorials, How-To guides, etc.  It should be a good resource in helping your customers or employees get up to speed when making the switch to Google Apps.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/f4VRNxnMB6k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2010/12/14/end-user-google-apps-learning-center-online-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2010/12/14/end-user-google-apps-learning-center-online-now/</feedburner:origLink></item>
		<item>
		<title>First Time Authentication to Amazon EC2</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/dMThNMq-Tv0/</link>
		<comments>http://appsguy.com/2010/11/19/first-time-authentication-to-amazon-ec2/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 05:47:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=168</guid>
		<description><![CDATA[The documentation for accessing an Amazon EC2 instance after creation actually says &#8220;access the system exactly as you would if it were in your own data center&#8221; in the FAQ for How Do I Access My Systems.  The steps on how to connect to a default image after you&#8217;ve just signed up are not well [...]]]></description>
			<content:encoded><![CDATA[<p>The documentation for accessing an Amazon EC2 instance after creation actually says &#8220;access the system exactly as you would if it were in your own data center&#8221; in the FAQ for How Do I Access My Systems.  The steps on how to connect to a default image after you&#8217;ve just signed up are not well publicized or intuitive.  Here are the basic steps to get into the Linux command line:</p>
<ul>
<li>Setup your instance (a few steps involved, not the point of this post)</li>
<li>Start it running</li>
<li>Generate a Key Pair</li>
<li>Download and save to where you want to access your EC2 (I used default.pem)</li>
<li>View your instance properties and grab the Public DNS Name</li>
<li>Command line SSH into your instance</li>
</ul>
<p><em><strong>ssh -i default.pem ec2-user@[public-dns-name]</strong></em></p>
<p>Depending on how you saved your key, you may need to change the permissions to 400, or SSH will give an error that the file is too open.</p>
<p>Edit: You can get these steps by checking your instance in the AWS management console, then clicking on Instance Actions -&gt; Connect.  It does give the root user, but if you try to log in as root, you will get an error telling you to use ec2-user.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/dMThNMq-Tv0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2010/11/19/first-time-authentication-to-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2010/11/19/first-time-authentication-to-amazon-ec2/</feedburner:origLink></item>
		<item>
		<title>Hybrid Cloud with OpenOffice Extensions</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/NrCoVYavfGM/</link>
		<comments>http://appsguy.com/2010/10/19/hybrid-cloud-with-openoffice-extensions/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 17:55:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Docs]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=165</guid>
		<description><![CDATA[If you listen to corporate marketing for each of the Cloud vendors, then you will hear very different definitions for Cloud Computing.  Microsoft in particular, is pushing their definition of Cloud Computing, which they say is a hybrid approach with services in the data center, as well as desktop software.  My personal opinion [...]]]></description>
			<content:encoded><![CDATA[<p>If you listen to corporate marketing for each of the Cloud vendors, then you will hear very different definitions for Cloud Computing.  Microsoft in particular, is pushing their definition of Cloud Computing, which they say is a hybrid approach with services in the data center, as well as desktop software.  My personal opinion on Microsoft&#8217;s definition, is that it&#8217;s trying desperately to hold onto its outdated client software model so they don&#8217;t start hemorrhaging customers and money.</p>
<p>One thing I will give to them is that I have not yet seen a customer that can live 100% in the cloud yet.  Cloud based applications and services are getting better very quickly, but most vendors will still admit that they are not yet at the level of all desktop software, which is why people still buy Microsoft Office.  MS is trying to push Office 2010 as a way to collaborate in the cloud, but it still relies heavily on desktop software.  If your organization is at the point where desktop software is still necessary, there are cheaper options.  One way to leverage both online and offline capabilities would be to use Open Office Extensions:</p>
<p><a href="http://extensions.services.openoffice.org/project/ooo2gd">http://extensions.services.openoffice.org/project/ooo2gd</a></p>
<p>Open Office Extensions will allow you to connect to Google Docs, collaborate, then download an edit locally for the features that either aren&#8217;t available yet or need to be used offline.  Hopefully Google will soon make its recently acquired <a href="http://docverse.com/">DocVerse</a> service available, which should make collaborating on existing offline content much simpler.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/NrCoVYavfGM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2010/10/19/hybrid-cloud-with-openoffice-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2010/10/19/hybrid-cloud-with-openoffice-extensions/</feedburner:origLink></item>
		<item>
		<title>Updated: Code for Email Settings API for Gmail</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/c6sKcqEMD4k/</link>
		<comments>http://appsguy.com/2010/07/16/updated-code-for-email-settings-api-for-gmail/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 17:18:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=144</guid>
		<description><![CDATA[http://code.google.com/p/apps-deployments/source/browse/#svn/trunk/perl/email-settings
I&#8217;ve added code to add a &#8220;send as&#8221; address to users in bulk.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/apps-deployments/source/browse/#svn/trunk/perl/email-settings">http://code.google.com/p/apps-deployments/source/browse/#svn/trunk/perl/email-settings</a></p>
<p>I&#8217;ve added code to add a &#8220;send as&#8221; address to users in bulk.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/c6sKcqEMD4k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2010/07/16/updated-code-for-email-settings-api-for-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2010/07/16/updated-code-for-email-settings-api-for-gmail/</feedburner:origLink></item>
		<item>
		<title>Restricting Remote Access with Google Apps</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/kJn-PBmo5v8/</link>
		<comments>http://appsguy.com/2010/06/03/restricting-remote-access-with-google-apps/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 02:12:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[User Management]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=139</guid>
		<description><![CDATA[While the ability to access Gmail, Calendar, etc is one of the major selling points of Google Apps, there are business cases where an admin would want to restrict remote access to services.  The following methods require Web Based Single Sign On (SSO) to be configured, which will currently only work in Google Apps [...]]]></description>
			<content:encoded><![CDATA[<p>While the ability to access Gmail, Calendar, etc is one of the major selling points of Google Apps, there are business cases where an admin would want to restrict remote access to services.  The following methods require <a href="http://code.google.com/googleapps/domain/sso/saml_reference_implementation.html">Web Based Single Sign On (SSO)</a> to be configured, which will currently only work in Google Apps Premier Edition or Education Edition.  Because admins have complete control over the SSO system, they have many more options for authentication, including the ability to deny access based on any factor they can detect/enforce.</p>
<p>Denying remote access to everyone is the easiest to accomplish with SSO.  The simple solution is to host it on a corporate intranet, without any remote access.  Configuring SSO that can only be accessed internally will effectively lock everyone out of web based services.  To be clear, there are some services that do not currently support SSO, like the Talk external client, POP/IMAP, and other non-web based services.  POP/IMAP can be disabled at the domain, but some of the others cannot be disabled for remote users without turning them off completely.  The way to lock these services down is to not sync passwords into Google Apps.  If users do not know their password in Apps, then they cannot authenticate directly.</p>
<p>By controlling who knows their password in Apps, an admin can control who has access remotely.  If SSO is only available internally, but you would like to selectively allow users to log in, then the <a href="http://www.google.com/support/a/bin/answer.py?hl=en&amp;answer=60224">netmask</a> of your organization can be entered into the SSO configurations.  If access comes from one of those IP addresses, then SSO will be advertised.  If not, then the standard login form for Apps will be displayed.  From there, users with their passwords can authenticate.</p>
<p>Another method to selectively control remote access, would be to host SSO in the DMZ and advertise for all IPs.  Depending on the IP address that the end user is accessing SSO from, the SSO system could be configured to allow or deny access.  Because SSO is flexible, additional factors can be used, like the user+IP or even things like One Time Passwords (OTP).</p>
<p>By using SSO, a domain admin has a lot of options for authentication, including locking access down for remote users.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/kJn-PBmo5v8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2010/06/03/restricting-remote-access-with-google-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2010/06/03/restricting-remote-access-with-google-apps/</feedburner:origLink></item>
		<item>
		<title>Useful Tools on the Google Apps Marketplace</title>
		<link>http://feedproxy.google.com/~r/appsguy/~3/a2bVwzw4zcQ/</link>
		<comments>http://appsguy.com/2010/05/29/useful-tools-on-the-google-apps-marketplace/#comments</comments>
		<pubDate>Sat, 29 May 2010 05:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Partners]]></category>

		<guid isPermaLink="false">http://appsguy.com/?p=137</guid>
		<description><![CDATA[
Since the launch of the Google Apps Marketplace, we have seen some pretty impressive apps added.  There are some very complex tools like:  Manymoon, which is a fully baked project management tool; SlideRocket, a pretty impressive web based presentation tool; Aviary, a web based image editor; and a lot more.
One of the great things about [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img class="aligncenter size-full wp-image-141" src="http://appsguy.com/files/2010/05/marketplace.png" alt="Google Apps Marketplace" width="557" height="287" /></p>
<p>Since the launch of the <a href="http://www.google.com/enterprise/marketplace/">Google Apps Marketplace</a>, we have seen some pretty impressive apps added.  There are some very complex tools like:  <a href="http://www.google.com/enterprise/marketplace/viewListing?productListingId=3539+9922984539899306906">Manymoon</a>, which is a fully baked project management tool; <a href="http://www.google.com/enterprise/marketplace/viewListing?productListingId=3516+10270883102489836602">SlideRocket</a>, a pretty impressive web based presentation tool; <a href="http://www.google.com/enterprise/marketplace/viewListing?productListingId=3442+17116012818275486668">Aviary</a>, a web based image editor; and a lot more.</p>
<p>One of the great things about the Marketplace is that a lot of very useful web apps that already existed can easily be integrated with Google Apps.  There are also quite a few apps that are smaller in scope, but are very useful.  One simple, but useful tool that I want to call out is <a href="http://www.google.com/enterprise/marketplace/viewListing?productListingId=142+17560572133792753109">Dito Directory</a>.  Contacts in Google Apps are not very easily browsable.  A user can only browse personal contacts, but not the corporate directory.  I&#8217;ve had a chance to work with <a href="http://ditoweb.com/">Dito</a> on a major project recently (they rock, BTW), which is where I first saw their directory.  There are a lot of Shared Contacts tools on the Marketplace, but this one also has an end user interface for browsing.  If you&#8217;re in the market for a directory, it&#8217;s worth checking out.</p>
<p>Another useful tool I stumbled upon is called <a href="http://www.google.com/enterprise/marketplace/viewListing?productListingId=3474+13294612818670686585">Survs</a>, for creating surveys.  Survey tools are never glamorous, but they are incredibly useful.  I use <a href="http://docs.google.com/support/bin/answer.py?hl=en&amp;answer=87809">Google Spreadsheets Forms</a> for surveys at least every month, but functionality is still limited.  Survs was easy to configure, it was easy to create a new survey, and it&#8217;s definitely prettier than Spreadsheet Forms.</p>
<p>If you&#8217;re a domain admin, or just run your own business on Google Apps, the Marketplace is worth a look.</p>
<img src="http://feeds.feedburner.com/~r/appsguy/~4/a2bVwzw4zcQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://appsguy.com/2010/05/29/useful-tools-on-the-google-apps-marketplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://appsguy.com/2010/05/29/useful-tools-on-the-google-apps-marketplace/</feedburner:origLink></item>
	</channel>
</rss>

