Posts Tagged “google”

We recently showed you how to incorporate directions in your snail mail with an envelope folded from a Google Map. Now it’s easier to do with web site MapEnvelope, which prints your map onto a fold-friendly envelope template.

There’s no doubt the map-turned-evelope trick is a neat one, but some of us are all thumbs when it comes to folding up the paper so it resembles an actual envelope and not a castoff from our trash bin. MapEnvelope overlays dotted lines onto the Google map before you print it, so all you’ll need to do is grab some scissors, cut out the template, and fold it up on the lines.

Using MapEnvelope really couldn’t be any easier. Enter an address, city, state, or landmark, then include an optional personal message. The web app instantly churns out your printable template, complete with a satellite view of the location, the address, and your message.

If you liked the idea of making an envelope out of a printed map but didn’t want to fumble around trying to figure out how to fold it, this web app is for you. Check out MapEnvelope for yourself and let us know what you think.


Tags: google

Possibly Related posts

Comments Comments Off

(Cross posted on the Google Docs Blog)

We all want important life moments — like graduating from school, getting married or having your first baby — to be perfect. For many couples, your wedding is a chance to celebrate with everyone you care about; it’s also the largest, most complicated party you’ll ever host. From tracking guest RSVPs, to picking the right florist, DJ and caterer, to coordinating every last detail with your wedding party, it’s no surprise that the process can become overwhelming and expensive.

After proposing to the woman of my dreams with 100 red roses, six months ago I started planning my own wedding. My fiancee and I decided to use Google Docs to manage every aspect of our wedding, starting with shared budget, guest list, to-do list and venue-tracking spreadsheets and keeping all our docs in our “Wedding” shared folder. I ended up talking to other couples who planned their weddings using Google Docs and discovered I wasn’t alone in thinking that it helped save time and avoid headaches.

Today, I’m happy to share this knowledge in the form of over 20 wedding templates available in the Google Docs template gallery. These tools make it easy to estimate and track your wedding budget, collect addresses for invitations, compare vendors and much more. For example, take a look at the address book template below. Instead of emailing hundreds of guests and copy/pasting hundreds of addresses into a spreadsheet, you can send a Google form and collect addresses in a spreadsheet automatically:


Because these documents, spreadsheets and forms live online in the cloud, you can easily get help by sharing them with your parents or bridal party, and you can access them from the bakery, bridal shop or anywhere around town using your smartphone. Plus, you never have to worry about versions and email attachments, because everything is always up to date.

Having the tools to plan a wedding is a good start, but you also need to know what questions to ask when interviewing vendors and which factors to consider when inviting guests or choosing music. To give you a leg up, we’ve teamed up with StyleMePretty.com, a popular wedding blog, to add tips from wedding experts to each template. StyleMePretty is also hosting a sweepstakes and asking engaged couples to share their wedding planning experiences. One randomly selected winner will receive free consultation with celebrity event planner Michelle Rago and a $500 gift certificate to Wedding Paper Divas.

We’re excited to give more engaged couples tools to make the wedding planning process easier and more fun. To learn more about simplifying wedding planning with Google Docs and Style Me Pretty, check out docs.google.com/wedding.

Posted by Peter Harbison, Product Marketing Manager, Google Docs

Tags: dreams, google

Possibly Related posts

Comments Comments Off

Posted by Sam Niccolls

Google News The analytics ninja is not dead, but with Avinash talking more about SEO analytics and SEOs like Rand talking more about web analytics, 2010 has brought with it increased cross-pollination between analytics experts and SEOs.

This blog post is for the analytics driven, SEO savvy, search samurai looking to implement tracking code best practices and take advantage of some useful Google Analytics plugins.

The focus of this post is on Google Analytics, but many of the concepts are also applicable more generally, no matter what web analytics platform you’re using.

Tracking Code Basics

Asynchronous Tracking Code – Even before the asynchronous tracking code was rolled out, I was a believer in putting the GA tracking code in the header, rather than before the closing body tag, which is where Google recommends placing the tracking code. With the announcement of asynchronous tracking code, which loads in conjunction with the page as opposed to sequentially, however, you can now have your cake and eat it too. You can get the benefit of your data not being compromised by slow page load times and also keep from getting push back from the developer that implements your tracking codes.

<script type="text/javascript">

  var _gaq = _gaq || [];  _gaq.push(['_setAccount', 'UA-XXXXX-X']);  _gaq.push(['_trackPageview']);

  (function() {    var ga = document.createElement('script');    ga.src = ('https:' == document.location.protocol ? 'https://ssl' :         'http://www') + '.google-analytics.com/ga.js';    ga.setAttribute('async', 'true');    document.documentElement.firstChild.appendChild(ga);  })();

</script>

Expanding Goal Limitations – Without setting up goals, your GA account is a glorified hit counter. So it’s imperative that you set up goal or eCommerce tracking (if not both). When setting up your GA goals in your analytics settings, you can either use the expanded goals, which allow you to track up to 20 different URLs or engagement metrics per profile. It’s important to realize, however, that you can also set your goals up so you can track hundreds or even thousands of goals. All you have to do is set up a logical hierarchy where the root of your goal URLs trigger your goal events. For us at SEOmoz, this might mean we have a tool run goal event triggered with /goal/tool-run – yet we also have the added granularity down to the individual tool level should we ever want to see which tools are being run the most or to segment traffic based on visitors who ran a particular tool.

eCommerce Tracking – Justin Cutroni did a great job with his series of blog posts that walk through how eCommerce tracking works, installing & setting up eCommerce tracking, explaining why everyone should use eCommerce tracking, & tracking lead gen forms. In addition to eCommerce tracking, not to be forgotten is using SetVar or a custom variable to segment repeat or premium buyers. For example, say your site gets 5 sales from keyword #1 and 5 sales from keyword #2. If sales for keyword #1 are each $800 and sales from keyword #2 are $10 each, you're going to want to segment that traffic and make on-page optimizations by looking at the on-site behavior of your premium buyers who converted on keyword #1, rather than from keyword #2.  

Custom Variables for Registered & Non-Registered – One of the most powerful aspects of GA is the ability to set custom variable. Custom variables can be set at any of three levels (visitor, session, & page). The Google Analytics help documentation is particularly great, but EpikOne also has a worthwhile description on how custom variables work. The most powerful of these is the visitor level custom variable which allows you to cookie a visitor across multiple sessions. At SEOmoz, we use this to track three different member types: free members, PRO members, & canceled members. We also use custom variables to cookie at the session level.

 
Campaign Tagging & SetAllowAnchor – From widgets to newsletters to signature links in personal e-mails, campaign links should be tagged using the GA URL builder, which gives you tracking parameters that includes multiple, including required _utm values for source, medium, & campaign. In action this looks something like this:

http://www.seomoz.org/?utm_source=newsletter&utm_medium=email&utm_campaign=march-6-2010

When tagging your campaigns be aware that by default GA will only recognize tracking parameters if the string is kicked off by a question mark, which from an SEO standpoint can lead to diffusion of link juice and duplicate content issues. To avoid these issues, we you can kick off campaign parameters with the hash tag and modify your GA tracking code using the SetAllowAnchor attribute, so GA recognizes the hash tag as way to kick off a campaign tracking URLs. To do this, add — pageTracker._setAllowAnchor(true); — to your main GA tracking code between the var pageTracker and pageTracker attributes. Or, for additional documentation, read LunaMetrics’ blog post on using SetAllowAnchor, but the code should look something like this:

<script type="text/javascript">
  try {
    var pageTracker = _gat._getTracker("UA-0000000-1");
    pageTracker._setAllowAnchor(true);
    pageTracker._trackPageview();
  } catch(err) {}

Tagging Email – One of the most important areas you can apply campaign tagging is e-mail. And though you can get fancy and create a filter that combines email sources you should not have to do this because your campaigns should be tagged to begin with. So definitely follow what the experts say about tagging email campaigns, but I am a huge fan of bucketing your reports by segment and grouping based on conversion goal. For example, at SEOmoz we’re rolling out a number of e-mails ranging from a customer lifecycle welcome series to newsletters to follow up emails after PRO members cancel. Rather than doing one off tracking, our GA tracking is set up in a way that we can aggregate by visitor type. This allows management to quickly look at the all up numbers and see how e-mail is driving each goal area of the business: activation, retention, and re-activation.

And if you use a logical naming convention with your email tagging, such as the one shown below, your marketing team will be able to splice and dice using regular expressions to get a much more granular view of performance for each email format, type, or version:

  • Email Format:  Which types of emails are doing best (i.e. newsletters, promotional emails, system notifications, etc.)
  • Performance by Email Type: Shows the breakdown of which email types have the greatest volume and/or the lowest click through rates. And thus, where you should place your testing and optimization energy. (i.e. emails sent 1 week after sign up, promos sent in December, etc.)
  • Version Number: Allows you to test subject lines and e-mail variants to see which versions are driving the most conversions, engagement, or retention. (i.e. subject line #1, subject line #2, etc.)

Vanity URLs – If you’re running an offline campaign, such as a magazine ad, a business card run or a billboard creative, you’re not going to want to use the long URL builder parameter. You’ll likely be much better off using measuring your offline efforts with a short, easy to remember vanity URL, which, in order to keep your metrics from being skewed as a result of page load times, you’ll want to implement using a 301 redirect, rather than using meta refresh.  

Google Analytics Plugins

Though not on the list of must haves for the search samurai, I’m a sucker for a great browser plugin. And as ROI Revolution blogged about, there are a handful of browser plugins for GA that you might find are worth installing. Three plugins I use with varying degrees of regularity are:

Does a Page Have GA?
If you’re checking a lot of pages on your site to see if they have tracking code installed or if you want quick, at a glance reference as to whether or not a page on another site has GA tracking code, Twistermc’s GA? Firefox plugin is a great way to see if GA is installed without having to view the source code. The way it works it works is simple. If a page has GA installed, the bar chart that appears in the lower right hand corner of your browser is illuminated. If the page does not have GA installed, the bar chart is not illuminated.

Which Referring Sites & Keywords Have Changed?
Similar in concept to a custom alerts, the Better GA plugin by Juice Analytics provides a useful way to drill into your referring sites or referring keyword reports and see which sites or keywords have fluctuated the most over the last few days or week.

Better Google Analytics:
Perhaps the most robust GA plugin of all is VKIs studios’ greasemonkey script based plugin, which offers a number of bells an whistles, including page level social media data from sites like Digg, Reddit, StumbleUpon, and Delicious (see below),as well as added functionality such as a direct entry field to access your top content report from any other report, direct links to export to Google Docs, and a half dozen or so others.  

For more comprehensive information on Google Analytics, I encourage you to read through Google Analytics’ help documentation or tapping into some of the great web analytics resources available such as Google Analytics’ Official Blog, LunaMetrics, EpikOne, & Occam’s Razor – each of which are full of Analytics tips from top-notch experts.

Also, special thanks to David Booth from WebShare Design for his help with our recent implementation of Google Analytics and also for sharing several of the insights included in this post. For more info on GA and GWO, WebShare’s Google sponsored Seminars for Success, which I attended last year, and which the SEOmoz marketing team will be attending here in Seattle on May 12-14th, are among the most educational and best valued around.

Do you like this post? Yes No

Tags: analytics, firefox, google

Possibly Related posts

Comments Comments Off

Google just announced a trial program called Google Fiber for Communities that’s planning to launch an extremely fast, experimental broadband network in at least 50,000 homes that will deliver speeds up to 1Gb per second (”over 100 times faster than what most Americans have access to today”).

Our goal is to experiment with new ways to help make Internet access better and faster for everyone. Here are some specific things that we have in mind:

  • Next generation apps: We want to see what developers and users can do with ultra high-speeds, whether it’s creating new bandwidth-intensive “killer apps” and services, or other uses we can’t yet imagine.
  • New deployment techniques: We’ll test new ways to build fiber networks, and to help inform and support deployments elsewhere, we’ll share key lessons learned with the world.
  • Openness and choice: We’ll operate an “open access” network, giving users the choice of multiple service providers. And consistent with our past advocacy, we’ll manage our network in an open, non-discriminatory and transparent way.

You have my number, right Google? [Google Fiber for Communities via Official Google Blog]


Tags: dreams, google, internet

Possibly Related posts

Comments Comments Off

(Cross-posted from the YouTube Blog)

Diversity of content is one of the great things about YouTube. But we know that some of you want a more controlled experience. That’s why we’re announcing Safety Mode, an opt-in setting that helps screen out potentially objectionable content that you may prefer not to see or don’t want others in your family to stumble across while enjoying YouTube. An example of this type of content might be a newsworthy video that contains graphic violence such as a political protest or war coverage. While no filter is 100% perfect, Safety Mode is another step in our ongoing desire to give you greater control over the content you see on the site.

It’s easy to opt in to Safety Mode: Just click on the link at the bottom of any video page. You can even lock your choice on that browser with your YouTube password. To learn more, check out the video below.

And remember, ALL content must still comply with our Community Guidelines. Safety Mode isn’t fool proof, but it provides a greater degree of control over your YouTube experience. Safety Mode is rolling out to all users through out the day, watch for the new link at the bottom of any YouTube page.

Posted by Jamie Davidson, Associate Product Manager

Tags: family, google

Possibly Related posts

Comments Comments Off