<?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>wheresitworking?</title>
	
	<link>http://www.wheresitworking.com</link>
	<description>adam ware's reviews and reflections of all things digital</description>
	<lastBuildDate>Sun, 27 Jun 2010 19:32:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/wheresitworking" /><feedburner:info uri="wheresitworking" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Migrating to Google Analytics Async Tracking Code</title>
		<link>http://feedproxy.google.com/~r/wheresitworking/~3/fk-QcozDM6Y/</link>
		<comments>http://www.wheresitworking.com/2010/06/06/migrating-to-google-analytics-async-tracking-code/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 20:37:37 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[asynchronous tracking code]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Google Analytics Event Tracking]]></category>
		<category><![CDATA[Google Analytics Tracking Code]]></category>

		<guid isPermaLink="false">http://www.wheresitworking.com/?p=343</guid>
		<description><![CDATA[Recently Google Analytics moved the asynchronous JavaScript version of their tracking code out of beta; it is now the standard version of the code you will see when you visit your settings in Google Analytics. This is great, as it enhances the speed at which the analytics tracking code is loaded. If you haven&#8217;t done [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; padding: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F06%2F06%2Fmigrating-to-google-analytics-async-tracking-code%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F06%2F06%2Fmigrating-to-google-analytics-async-tracking-code%2F&amp;source=wheresitworking&amp;style=normal&amp;service=bit.ly&amp;service_api=R_cbbb31a267beeccc715a1020a42add1b" height="61" width="50" /><br />
			</a>
		</div>
<p><p class="flickrTag_container"><a href="http://farm5.static.flickr.com/4044/4676266824_e2591ebfab.jpg" class="flickr" title="From a blog post I wrote that contains a brief tutorial and examples on migrating Google Analytics tracking code from the old version to the new asynchronous version. &lt;a href=&quot;http://www.wheresitworking.com/2010/06/06/migrating-to-google-analytics-async-tracking-code&quot; rel=&quot;nofollow&quot;&gt;www.wheresitworking.com/2010/06/06/migrating-to-google-an...&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/28244848@N05/4676266824/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox"><img src="http://farm5.static.flickr.com/4044/4676266824_e2591ebfab_m.jpg" alt="Array" class="flickr small photo" /></a></p>Recently Google Analytics moved the asynchronous JavaScript version of their tracking code out of beta; it is now the standard version of the code you will see when you visit your settings in Google Analytics. This is great, as it enhances the speed at which the analytics tracking code is loaded. If you haven&#8217;t done any customization to your tracking code, and you don&#8217;t have any &#8220;advanced&#8221; tagging on your site, migrating is as simple as getting the new version of the code from your profile settings page in Google Analytics (see screenshot), placing it in the &lt;head&gt; of your site, and removing your existing code. If you do have customizations, or you are tracking downloads, AJAX or Flash, off-site links, using Event Tracking or Custom Variables, then migration requires some additional work. This post is intended to direct you to right resources for these additional needs.</p>
<h2>Customized Tracking Code</h2>
<p>Customizations to tracking code can be as simple as modifying your code to track visitors across domains, or as complicated as setting custom variables or sending event tracking requests within the &#8220;tag&#8221;. Here is a text file displaying the <a title="Google Analytics Async Migration Tracking Code Example" href="http://www.wheresitworking.com/Google-Analytics-Async-Migration-Tracking-Code-Example.txt" target="_blank">migration of Google Analytics tracking code from the old version to the async version</a>, using the code from this site as the example. In a nutshell, any function that previously was called with the &#8220;pageTracker.&#8221; prefix, is now wrapped in _gaqPush[] . The code on this site has been modified to trigger an event for every post viewed, to track who the author was. Read this post on <a title="Tracking WP Authors with Google Analytics" href="http://www.wheresitworking.com/2010/02/08/tracking-authors-in-wordpress-with-google-analytics-event-tracking/" target="_blank">tracking authors in WordPress with Google Analytics</a> if you need clarification on the intended functionality. In the example script, you can see that I had to take the code that identifies and records the author, and modify it to use <em>_gaqPush['_trackEvent']</em> instead of <em>pageTracker._trackEvent()</em>. You&#8217;ll also notice that the rest of the code is updated to the new async standards.</p>
<h2>Downloads &amp; Off-Site Links</h2>
<p>Downloads and off-site links are typically tracked by using an onclick event to call pageTracker._trackPageview. Here is an example of how this has now changed.  The following HTML/JavaScript:</p>
<p><em>&lt;a target=&#8221;_blank” href=&#8221;http://www.linkedin.com/in/adamware” onClick=&#8221;pageTracker._trackPageview(&#8216;http://www.linkedin.com/in/adamware&#8217;);&#8221;&gt;connect with me on LinkedIn&lt;/a&gt;</em></p>
<p>Would need to be modified to:</p>
<p><em>&lt;a target=&#8221;_blank” href=&#8221;http://www.linkedin.com/in/adamware” onClick=&#8221;_gaq.push(['_trackPageview', 'http://www.linkedin.com/in/adamware’]);&#8221;&gt;connect with me on LinkedIn&lt;/a&gt;</em></p>
<p>Notice again the the pageTracker code is ditched, and the attributes are now tucked into the gaqPush function with trackPageview.</p>
<h2>Flash &amp; AJAX</h2>
<p>For requests made in Flash and AJAX, the change is essentially the same. Wrap any function calls (_trackPageview, _trackEvent, _setCustomVar) in the gaqPush function.</p>
<h2>Events &amp; Custom Variables</h2>
<p>This is probably starting to sound like a broken record: take the existing function call and wrap it in the new gaqPush[] function. Here is an example of code that would be used to designate a visitor as registered using custom variables. It would have been:</p>
<p><em>trackPageview._setCustomVar(2, ‘RegisteredUser’, ’True’, 1);</em></p>
<p>but is now:</p>
<p><em>_gaq.push([‘_setCustomVar’, 2, ‘RegisteredUser’, ’True’, 1]);</em></p>
<p>Pretty basic modifications here.The important thing is just remembering where all the locations on your site are where you are using custom modifications. Most of our clients are at least using download tracking and off-site link tracking in some way, and many are using events and custom variables. The migration process won&#8217;t be immediate for some of them, but hopefully everyone will be using the async code within a couple months. I&#8217;d love to hear thoughts on any ways to make this process easier, and certainly on any details I may have left out.  Here is <a title="Tracking Sites with the Asynchronous Snippet" href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html" target="_blank">Google Analytics&#8217; official Google Code page on migration</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wheresitworking.com/2010/06/06/migrating-to-google-analytics-async-tracking-code/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.wheresitworking.com/2010/06/06/migrating-to-google-analytics-async-tracking-code/</feedburner:origLink></item>
		<item>
		<title>HotGloo Versus OmniGraffle for Wireframing</title>
		<link>http://feedproxy.google.com/~r/wheresitworking/~3/H6q8PK4JMbc/</link>
		<comments>http://www.wheresitworking.com/2010/03/13/hotgloo-versus-omnigraffle-for-wireframing/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 03:50:59 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[diagramming]]></category>
		<category><![CDATA[flow charts]]></category>
		<category><![CDATA[wireframing]]></category>

		<guid isPermaLink="false">http://www.wheresitworking.com/?p=338</guid>
		<description><![CDATA[I tooled around with online wireframing/diagramming apps about 18 months ago, and kind of put the whole subject to bed. If you&#8217;re used to OmniGraffle, Balsamiq, or Visio, using an online app is a bit rough. I had played around with LucidChart the most, and made the simple conclusion: a Flash powered online app will [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; padding: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F03%2F13%2Fhotgloo-versus-omnigraffle-for-wireframing%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F03%2F13%2Fhotgloo-versus-omnigraffle-for-wireframing%2F&amp;source=wheresitworking&amp;style=normal&amp;service=bit.ly&amp;service_api=R_cbbb31a267beeccc715a1020a42add1b" height="61" width="50" /><br />
			</a>
		</div>
<p>I tooled around with online wireframing/diagramming apps about 18 months ago, and kind of put the whole subject to bed. If you&#8217;re used to OmniGraffle, Balsamiq, or Visio, using an online app is a bit rough. I had played around with <a title="LucidChart - online diagraming and process flow application" href="http://lucidchart.com/" target="_blank">LucidChart</a> the most, and made the simple conclusion: a Flash powered online app will not compare to an installed application (at least in the near future). If you read my blog, you know I&#8217;m all about web apps, but I felt like this is a use case where they still just aren&#8217;t an option.</p>
<p><p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2692/4432562264_903dca7066.jpg" class="flickr" title="From a blog post review of HotGloo: &lt;a href=&quot;http://www.wheresitworking.com/2010/03/13/hotgloo-versus-omnigraffle-for-wireframing/&quot; rel=&quot;nofollow&quot;&gt;www.wheresitworking.com/2010/03/13/hotgloo-versus-omnigra...&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/28244848@N05/4432562264/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox"><img src="http://farm3.static.flickr.com/2692/4432562264_903dca7066_m.jpg" alt="Array" class="flickr small photo" /></a></p>But recently, I was urged to give <a title="HotGloo - Online Wireframing Application" href="http://www.hotgloo.com" target="_blank">HotGloo</a> a shot by my partner at SwellPath, <a title="John Koenig on Twitter" href="http://twitter.com/johnpkoenig" target="_blank">@johnpkoenig</a> &#8211; somewhat reluctantly, I agreed. I wanted to give the whole web app thing another shot, and I like the collaboration opportunities that a web app provides, and a tool like OmniGraffle doesn&#8217;t provide. I had to put together wireframes for a project we&#8217;re working on; about 5 templates total. John had already been using it for the project, so it made sense for me to give it a go.</p>
<p>It really is incredibly impressive. It is one of the most impressive Flash/Flex applications I have ever used from a functionality standpoint. <a title="HotGloo Beta is Over" href="http://blog.hotgloo.com/2010/02/15/hotgloo-has-launched-beta-is-over-you-cant-login-to-a-beta-account-need-to-sign-up-again/" target="_blank">HotGloo just came out of Beta</a>, and it is obvious they mean business &#8211; from a pricing and functionality standpoint. After spending a day working intimately with it, I would definitely recommend giving it a shot, and it definitely warranted a review.</p>
<p>I&#8217;m going to break this review down into key elements of using this type of application:</p>
<ol>
<li><strong>Time to Learn</strong><br />
How long did it take me to get up to speed and feel comfortable using the app? Pretty quick. Some initial grunts and complaints, but I got it all down within less than an hour. This includes figuring out how to handle administrative tasks (adding users, setting roles, etc.) and how to actually wireframe.</li>
<li><strong>Speed</strong><br />
If you use Salesforce.com, you know how you have to sometimes &#8220;stop&#8221; and wait for a popup to complete a desired action; that happens a bit with HotGloo. It is one of those web apps where you learn when to wait &#8211; mostly I&#8217;m referring to when you upload an image. But once you learn when to have patience, you get a bit more efficient. I was able to complete the bulk of my work in one day. I would say it took me about 20-25% more time to do it in HotGloo, and that includes the time spent &#8220;learning&#8221; the app.</li>
<li><strong>Collaboration Aspects<br />
</strong>Ok, this is where web apps like this can crush it. HotGloo does, simply by letting you add users to a project, who can login and review or edit your templates, and in a more complicated way by allowing users to chat while viewing templates. You don&#8217;t pay for users (see more below) so you can add any number of folks to a project. It would be cool to see some other hooks built in (Basecamp tie-in, maybe Gtalk or other chat hooks, etc.). But it looks like there are some new collaboration features coming in May, so it&#8217;ll be interesting to see what those are.</li>
<li><strong>Overall Impression &amp; Pricing Considerations</strong><br />
Come on, it is a web app that lets you wireframe as-good-or-better than you could with an installed app a few years ago, that is awesome! That being said, it is still kind of constrained by Flash, browsers and bandwidth, and as a result, it isn&#8217;t quite as fast as using installed apps. But there is loads of promise for HotGloo, and I will probably continue to use it for certain projects. You can view <a title="HotGloo Roadmap" href="http://blog.hotgloo.com/wp-content/roadmap_reworked_800_600.001.png" target="_blank" rel="lightbox[338]">the HotGloo roadmap</a> here and see what features and enhancements are coming. Pricing is fair, you pay for projects (2 for $14/month to start, $5/month for each additional, $2/month for an archived project), and their are constraints on bandwidth, but they are large enough that I don&#8217;t see those being hit. I like that you don&#8217;t pay for users; you can add as many people as needed.</li>
</ol>
<p>I personally would be interested in how an Adobe Air install would work in conjunction with a setup like HotGloo. But Air apps are resource hogs, and I don&#8217;t see this on HotGloo&#8217;s roadmap, so it isn&#8217;t something we&#8217;re likely to see. Anyway, give HotGloo a shot and see what you think, you might just find that OmniGraffle and other installs are now a thing of the past for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wheresitworking.com/2010/03/13/hotgloo-versus-omnigraffle-for-wireframing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wheresitworking.com/2010/03/13/hotgloo-versus-omnigraffle-for-wireframing/</feedburner:origLink></item>
		<item>
		<title>Tracking Authors in WordPress with Google Analytics Event Tracking</title>
		<link>http://feedproxy.google.com/~r/wheresitworking/~3/0qiv3yqBwN0/</link>
		<comments>http://www.wheresitworking.com/2010/02/08/tracking-authors-in-wordpress-with-google-analytics-event-tracking/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:12:56 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[WordPress analytics]]></category>

		<guid isPermaLink="false">http://www.wheresitworking.com/?p=333</guid>
		<description><![CDATA[Here is a script for tracking authors in WordPress using Google Analytics Event Tracking. I threw this together in response to a blog post by Douglas Karr on tracking authors in WordPress. Doug presents a way to do this using spoofed pageviews and a separate profile. I could see a use case for that method [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; padding: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F02%2F08%2Ftracking-authors-in-wordpress-with-google-analytics-event-tracking%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F02%2F08%2Ftracking-authors-in-wordpress-with-google-analytics-event-tracking%2F&amp;source=wheresitworking&amp;style=normal&amp;service=bit.ly&amp;service_api=R_cbbb31a267beeccc715a1020a42add1b" height="61" width="50" /><br />
			</a>
		</div>
<p>Here is a <a title="Modified GATC for Tracking Authors in WordPress" href="http://www.wheresitworking.com/Tracking-Authors-in-WordPress.txt" target="_self">script for tracking authors in WordPress using Google Analytics Event Tracking</a>. I threw this together in response to <a title="Tracking Authors in WordPress Using Google Analtyics" href="http://marketingtechblog.com/wordpress/tracking-multiple-authors-google-analytics-wordpress/" target="_blank">a blog post by Douglas Karr on tracking authors in WordPress</a>. Doug presents a way to do this using spoofed pageviews and a separate profile. I could see a use case for that method also.</p>
<p>If you aren&#8217;t familiar with Doug&#8217;s blog, I highly recommend it. A great resource for digital marketers, with frequent posts on SEO, analytics, social media and a variety of other subjects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wheresitworking.com/2010/02/08/tracking-authors-in-wordpress-with-google-analytics-event-tracking/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://www.wheresitworking.com/2010/02/08/tracking-authors-in-wordpress-with-google-analytics-event-tracking/</feedburner:origLink></item>
		<item>
		<title>How to Create a Custom Advanced Segment in Google Analytics</title>
		<link>http://feedproxy.google.com/~r/wheresitworking/~3/xV7yVtUXwdY/</link>
		<comments>http://www.wheresitworking.com/2010/02/06/how-to-create-a-custom-advanced-segment-in-google-analytics/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:12:13 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[custom segments]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[segmentation]]></category>
		<category><![CDATA[web analytics]]></category>

		<guid isPermaLink="false">http://www.wheresitworking.com/?p=324</guid>
		<description><![CDATA[Ev]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; padding: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F02%2F06%2Fhow-to-create-a-custom-advanced-segment-in-google-analytics%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F02%2F06%2Fhow-to-create-a-custom-advanced-segment-in-google-analytics%2F&amp;source=wheresitworking&amp;style=normal&amp;service=bit.ly&amp;service_api=R_cbbb31a267beeccc715a1020a42add1b" height="61" width="50" /><br />
			</a>
		</div>
<p>I put this together for a <a title="SwellPath Interactive Clients" href="http://www.swellpath.com/clients" target="_blank">SwellPath client</a> the other day, so I thought I would share it here, since it is a bit too 101 for the <a title="SwellPath Interactive Blog" href="http://www.swellpath.com/blog" target="_blank">SwellPath blog</a>.</p>
<h2>Overview of Advanced Segments in GA</h2>
<p><p class="flickrTag_container"><a href="http://farm5.static.flickr.com/4057/4335096411_e343923182.jpg" class="flickr" title="Selecting segments to isolate data in Google Analytics. Read more: &lt;a href=&quot;http://www.wheresitworking.com/2010/02/06/how-to-create-a-custom-advanced-segment-in-google-analytics/&quot; rel=&quot;nofollow&quot;&gt;www.wheresitworking.com/2010/02/06/how-to-create-a-custom...&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/28244848@N05/4335096411/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox"><img src="http://farm5.static.flickr.com/4057/4335096411_e343923182_m.jpg" alt="Array" class="flickr small photo" /></a></p>By default Google provides several advanced segments that you can use out-of-the-box. If you look into the upper right corner when you are viewing reports, you’ll see the Advanced Segments link and dropdown option. If you open it, you’ll see the option to check a variety of segments in the Default Segments section, ranging form Paid Search Traffic, to visits from iPhones. You can check up to 3 at a time, to evaluate next to the All Visits segment. If you want to compare 2 or more segments, All Visits can’t be unchecked. If you just want to view a single segment in isolation, you can uncheck the All Visits option. Play around with these a bit, and navigate the reporting with various segments checked. It will give you an idea of how this works, and some insight into how the data can be much different for certain segments.</p>
<h2>Creating a Custom Segment</h2>
<p>Once you’ve had some time to get accustomed to using advanced segments, you should walk through creating one. An easy “beginner” segment is one created to view only visitor in a specific geographic area. Let’s say North America. Here are the steps to create it.</p>
<p>1. Click the Advanced Segments dropdown, and look for the link on the left side that says “Create a new advanced segment”.<br />
<p class="flickrTag_container"><a href="http://farm5.static.flickr.com/4041/4335839948_d0ddecb29a.jpg" class="flickr" title="Creating a segment in Google Analytics. Read more: &lt;a href=&quot;http://www.wheresitworking.com/2010/02/06/how-to-create-a-custom-advanced-segment-in-google-analytics/&quot; rel=&quot;nofollow&quot;&gt;www.wheresitworking.com/2010/02/06/how-to-create-a-custom...&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/28244848@N05/4335839948/&quot;&gt;view&amp;nbsp;on&amp;nbsp;flickr&amp;raquo;&lt;/a&gt;" rel="lightbox"><img src="http://farm5.static.flickr.com/4041/4335839948_d0ddecb29a_m.jpg" alt="Array" class="flickr small photo" /></a></p>2. The creation interface is drag-n-drop. You have the ability to choose between dimensions and metrics for segmentation. For this segment, you’ll go into Dimensions &gt; Visitor and choose Sub-Continent Region, and drag it over to the creation interface. Choose “Matches exactly” for the condition, and then chose Northern America for the value.</p>
<p>3. Name your segment something appropriate like “North American Visitors” and click the Create Segment button. You should be taken back into the reporting.</p>
<p>4. Dropdown the Advanced Segments, check your new segment, it will be in the Custom Segments section. Then peruse your reporting and look at them metrics of your North American visitors compared to your visitors as a whole.</p>
<h2>Viewing Custom Advanced Segment Data</h2>
<p>Now viewing these segments might not be that meaningful to you; you might want to go create a segment for your European visitors and compare that to your North American visitors. But just follow these steps. As far as I know there isn’t a limit to the number of custom segments you can have, at least I haven’t hit that limit. Custom segments are now organized at the profile and user level, so you will only see your own segments in your account, and those segments will be profile specific. You can hide certain segments from profiles. You can share segments with other users by sending them a link; it is accessible from the custom segment management interface.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wheresitworking.com/2010/02/06/how-to-create-a-custom-advanced-segment-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wheresitworking.com/2010/02/06/how-to-create-a-custom-advanced-segment-in-google-analytics/</feedburner:origLink></item>
		<item>
		<title>Web Analytics Wednesday at eROI</title>
		<link>http://feedproxy.google.com/~r/wheresitworking/~3/X7FejLFnGUE/</link>
		<comments>http://www.wheresitworking.com/2010/01/23/web-analytics-wednesday-at-eroi/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 18:30:57 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[real-time web analtyics]]></category>
		<category><![CDATA[Web Analytics Wednesday]]></category>

		<guid isPermaLink="false">http://www.wheresitworking.com/?p=322</guid>
		<description><![CDATA[Just a quick post to promote the first Web Analtyics Wednesday of 2010 in Portland. It&#8217;s this upcoming Wednesday, January 27th, at eROI.  I&#8217;ll be giving a short presentation on real-time web analytics reporting; an overview tools available for tracking and reporting, some simple use examples, and considerations for those looking to implement real-time tracking [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; padding: 5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F01%2F23%2Fweb-analytics-wednesday-at-eroi%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wheresitworking.com%2F2010%2F01%2F23%2Fweb-analytics-wednesday-at-eroi%2F&amp;source=wheresitworking&amp;style=normal&amp;service=bit.ly&amp;service_api=R_cbbb31a267beeccc715a1020a42add1b" height="61" width="50" /><br />
			</a>
		</div>
<p>Just a quick post to promote the <a title="Web Analtytics Wednesday - January 2010" href="http://upcoming.yahoo.com/event/5215256/OR/Portland/Web-Analytics-Wednesday-at-eROI/eROI/OR/Portland/Web-Analytics-Wednesday-at-eROI" target="_blank">first Web Analtyics Wednesday of 2010</a> in Portland. It&#8217;s this upcoming Wednesday, January 27th, at eROI.  I&#8217;ll be giving a short presentation on real-time web analytics reporting; an overview tools available for tracking and reporting, some simple use examples, and considerations for those looking to implement real-time tracking and analyze the data. Please come by if you&#8217;re in Portland. Oh, did I mention the free beer and food (pizza probably)? Hope to see you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wheresitworking.com/2010/01/23/web-analytics-wednesday-at-eroi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wheresitworking.com/2010/01/23/web-analytics-wednesday-at-eroi/</feedburner:origLink></item>
	</channel>
</rss>
