<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5883145092047399093</id><updated>2011-11-21T00:58:38.475-08:00</updated><category term='prize'/><category term='web analytics'/><category term='spotify'/><category term='market share'/><category term='tools'/><category term='MySQL'/><category term='linkpulse'/><category term='golden tag'/><category term='remoteless'/><category term='encoding'/><category term='availability'/><category term='remote'/><category term='content producers'/><category term='hjemmet mortensen'/><category term='iphone app'/><category term='Perl'/><category term='DBI'/><category term='experts'/><category term='beta'/><category term='MongoDB'/><category term='clickthrough'/><category term='diploma'/><category term='online presence'/><category term='agile'/><category term='gulltaggen'/><category term='klikk.no'/><category term='traffic increase'/><category term='O2'/><category term='access'/><category term='character set'/><category term='frustration'/><category term='revolution'/><category term='nettavisen'/><category term='agile journalism'/><category term='journalism'/><category term='online vs print'/><title type='text'>OnSite Blog</title><subtitle type='html'>The people at OnSite Solutions blogs about technology, web, analytics, media, our products LinkPulse and O2. And of course; ruling the world.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Vibeke</name><uri>http://www.blogger.com/profile/01090181847179734568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://4.bp.blogspot.com/-RWkxVCpTAUs/TaSVDQMoUcI/AAAAAAAAAAM/fapfxtn9clQ/s220/avatar.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-8373145797311373842</id><published>2011-10-08T04:00:00.000-07:00</published><updated>2011-10-10T01:07:45.334-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='Perl'/><category scheme='http://www.blogger.com/atom/ns#' term='encoding'/><category scheme='http://www.blogger.com/atom/ns#' term='frustration'/><category scheme='http://www.blogger.com/atom/ns#' term='DBI'/><category scheme='http://www.blogger.com/atom/ns#' term='character set'/><title type='text'>Perl, MySQL and character sets</title><content type='html'>If you've never had to work with a combination of these three things, consider yourself lucky, because this can be really frustrating stuff.&lt;br /&gt;&lt;br /&gt;When data enters a Perl program, the data should be decoded to Perl's internal format (encoding/character set). When data leaves Perl, the data should be encoded to the encoding that the external system expects. So when I am using the DBI module and its MySQL driver, I expect that those modules will handle the necessary character set conversions since they are closer to the external system (the database) than my code is. The data I send to DBI should be in Perl's internal format, DBI's MySQL driver should check which encoding the database uses to store the data, and the driver should convert the data to that character set. Similarly the other way; the MySQL driver knows which character set the database uses and should decode the data coming from the database to Perl's internal format. If this had been the case, I wouldn't have had to think about character sets in my own code.&lt;br /&gt;&lt;br /&gt;Sadly, though, this is not how things work. So when I tried to fix the encoding problems that arose a couple of years ago, I did some improvising. I encoded data going into the database to utf-8 and decoded the data from utf-8 when fetching it from the database. It has worked without problems, but the data has been stored in the database with the wrong encoding. The database was set up to store data as latin1, and I think the MySQL driver expected to receive latin1-encoded data as well, so utf-8 data ended up in latin1 tables. And if some of the tables were set up to hold utf-8 data, the utf-8 data would have been encoded from latin1 to utf-8, so we would have ended up with data twice encoded to utf-8 (double-encoded). In both cases the data was encoded from latin1 to utf-8 one too many times.&lt;br /&gt;&lt;br /&gt;We had known for a while that the data in the database had the wrong encoding, but everything worked, so we didn't do anything about it - until this week.&lt;br /&gt;&lt;br /&gt;One of the things we had to figure out was how we should encode data going into the database and how to decode it coming back. As I already said, the MySQL driver should ideally handle the encoding and decoding, but this is not an ideal world, obviously. In &lt;a href="http://search.cpan.org/%7Etimb/DBI-1.616/DBI.pm"&gt;the documentation for DBI&lt;/a&gt; (which is a database API for Perl) we can read the following:&lt;br /&gt;&lt;blockquote&gt;Perl supports two kinds of strings: Unicode (utf-8 internally) and non-Unicode (defaults to iso-8859-1 if forced to assume an encoding). Drivers should accept both kinds of strings and, if required, convert them to the character set of the database being used. Similarly, when fetching from the database character data that isn't iso-8859-1 the driver should convert it into utf8.&lt;/blockquote&gt;To me, this is a little bit hard to understand, but since Perl can use either latin1 (iso-8859-1) or utf-8 to store data internally, I interpret it to mean that we can use Perl's internal format, both when sending data to and fetching it from the database. That would have been good, but it doesn't work. One thing that does work, on the other hand, is to connect to the database with the mysql_enable_utf8 option and then utf-8-encode data when storing it in the database. The data we get back from the database seems to be in Perl's internal format, so the documentation seems to be correct regarding that last part.&lt;br /&gt;&lt;br /&gt;Making these changes, we can now store data correctly in the database and get it out correctly. But it still remains to convert existing database data. We first tried the following approach:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Dump the database with mysqldump.&lt;/li&gt;&lt;li&gt;Go through the lines in the dump file and encode each line from utf-8 to latin1.&lt;/li&gt;&lt;li&gt;Import the modified dump (replacing the original database).&lt;/li&gt;&lt;/ol&gt;This approach worked for most, but not all characters. We didn't specify the character set we wanted the dump file to be in, so perhaps the content was encoded as Windows-1252 or something, but we haven't tried to verify that. Before we came up with that theory, we found &lt;a href="http://blog.hno3.org/2010/04/22/fixing-double-encoded-utf-8-data-in-mysql/"&gt;a possible solution&lt;/a&gt; on the web, namely to store the database file as latin1, meaning that the character set of the file actually will be utf-8, since the character set of the database was incorrect. Then we could just reimport that utf-8 file without modifications, only making sure to tell MySQL that it is utf-8-encoded. (Well, actually, we did make some changes, we changed the encoding of the tables from latin1 to utf-8 in the table definitions, since we want to be able to store more characters than just those found in the latin1 character set.)&lt;br /&gt;&lt;br /&gt;Amazingly, it worked, at least on our development server. Unamazingly, it did &lt;span style="font-style: italic;"&gt;not&lt;/span&gt; work on the test server. It is extremely annoying when things don't behave the same way on all servers. We had three different theories for the difference in behavior.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;For some reason the data in the database (after conversion) was not in the correct format even though it looked the same on both servers.&lt;/li&gt;&lt;li&gt;Difference in configuration of MySQL, the web server or some other system on the two servers.&lt;/li&gt;&lt;li&gt;Both Perl, MySQL, DBI and DBI's MySQL driver (DBD::mysql) had  different version numbers on the two servers, so upgrading some of those  on the test server could potentially solve the problem.&lt;/li&gt;&lt;/ul&gt;Long story short, the solution was to upgrade DBD::mysql on the test server. It turns out that the mysql_enable_utf8 option didn't work or hadn't been implemented in older versions of DBD::mysql, and one of those older versions was installed on the test server.&lt;br /&gt;&lt;br /&gt;The last problem was resolved around 4pm on Friday, after about four days working on the whole database character set issue, and we were actually quite close to giving up. So it was a great relief when everything finally worked as it should at the end of the week. Let's just hope there aren't any hidden bugs we haven't found yet..!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-8373145797311373842?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/8373145797311373842/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2011/10/perl-mysql-and-character-sets.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/8373145797311373842'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/8373145797311373842'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2011/10/perl-mysql-and-character-sets.html' title='Perl, MySQL and character sets'/><author><name>Håkon Skaarud Karlsen</name><uri>http://www.blogger.com/profile/16658919159502810293</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://1.bp.blogspot.com/-DgJFBVAy_gc/TamuRF2R-WI/AAAAAAAAAB4/zWu4ocsvnPE/s220/meg3.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-1749880392810084327</id><published>2011-04-16T07:18:00.000-07:00</published><updated>2011-04-16T07:34:20.311-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MongoDB'/><category scheme='http://www.blogger.com/atom/ns#' term='O2'/><title type='text'>MongoDB - usable for O2?</title><content type='html'>Most programmers are familiar with relational database management systems such as mysql, mssql, postgresql or oracle. In these systems the tables we create expect its data to be in a very specific format and an object is normally stored not in just one table; rather, its data are usually distributed across several database tables. For example, in O2, a Member object uses four tables for its data: O2_OBJ_OBJECT, O2_OBJ_PERSON, O2_OBJ_MEMBER and O2_OBJ_OBJECT_VARCHAR.&lt;br /&gt;&lt;br /&gt;MongoDB is a so-called object oriented database management system, and it is supposed to be faster than relational database management systems and scale better. But it doesn't have all the functionality of the relational database management systems; most importantly it doesn't support joins.&lt;br /&gt;&lt;br /&gt;MongoDB doesn't have tables or rows like "normal" databases. Instead it has something called collections and documents, but you can think of a collection as sort of a table, and of a document as a row.&lt;br /&gt;&lt;br /&gt;When using Perl, as we do, a document is a hash ref. It has lots of keys and corresponding values. A value doesn't have to be a scalar, it can also be a reference to another hash, or a reference to an array. And MongoDB doesn't care about how that structure looks. You are free to insert data structures with totally different keys into the same collection. Whether this is a smart thing to do is another matter... We would probably store similar data structures in each separate collection ("table"). If we should start using MongoDB in O2, one object would likely correspond to one document in the collection which represents that object's class.&lt;br /&gt;&lt;br /&gt;Objects in O2 can be related to each other. The way to do this is to set the type of a field to a class name - the class name of objects that can be stored in that field. In the database it is only the ID of those objects that is stored in the "main" object. This means that when we search for objects through related objects using relational databases, we have to join some tables in the search query, which can have a severe impact on performance, especially when we have to join more than a couple of tables, which sometimes happens in O2. MongoDB has something called DBRef, which is a reference to another object. I first thought it would be possible to search for fields in the related object through the main object and the DBRef, but it turns out that's not possible after all. Anyway, it might not have been that efficient either, if it were possible.&lt;br /&gt;&lt;br /&gt;I believe the main reason why O2 is sometimes slow is that searches in related objects can take a long time, due to several joins, and because mysql sometimes doesn't execute the joins in the most efficient order. One way to mitigate this using MongoDB could be to store whole serialized objects instead of just object IDs in the database. This, however, has two challenges: 1) Duplication of data, and 2) How to update all the serialized objects when the actual object is updated.&lt;br /&gt;&lt;br /&gt;We have to choose between fast response times and no duplication - we can't have both. At least not without (other forms of) caching. But caching makes things harder to debug, so the less caching we need, I think, the better.&lt;br /&gt;&lt;br /&gt;When it comes to updating all serialized objects, I think this is possible if we store in the actual object the IDs of the objects that contain serialized copies of itself. And when the object is saved, we go through all of these other objects and update them, as well. This will make saving objects slower than today, but the question is by how much. If it is very slow, it might be possible to do it asynchronously, so that the user doesn't have to wait for it.&lt;br /&gt;&lt;br /&gt;If we were going to represent Member and Person objects in MongoDB, we would probably create a Person collection and a Member collection. A Member inherits from Person, so the question is whether we should insert data into both the Person collection and the Member collection, or whether a Member object should be inserted only into Member. And if we decide to insert into Person as well, do we insert the entire Member object or just the part that's relevant for Persons?&lt;br /&gt;&lt;br /&gt;My intuition tells me it would be best to insert Member objects only into Member, not Person. Which means that searching for Persons must search through both Person and Member.&lt;br /&gt;&lt;br /&gt;In conclusion, MongoDB is a more natural data storage for O2 than relational database management systems, and, I think, better. And it might be possible to make searching really fast in MongoDB if we can tolerate duplication in the database and longer saving times.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-1749880392810084327?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/1749880392810084327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2011/04/mongodb-usable-for-o2.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/1749880392810084327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/1749880392810084327'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2011/04/mongodb-usable-for-o2.html' title='MongoDB - usable for O2?'/><author><name>Håkon Skaarud Karlsen</name><uri>http://www.blogger.com/profile/16658919159502810293</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://1.bp.blogspot.com/-DgJFBVAy_gc/TamuRF2R-WI/AAAAAAAAAB4/zWu4ocsvnPE/s220/meg3.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-3989290335426328242</id><published>2010-03-18T05:34:00.000-07:00</published><updated>2010-03-18T05:36:22.612-07:00</updated><title type='text'>Exceptionally cool things you can do with LinkPulse: The Red Box</title><content type='html'>We already knew that our customers are cool innovators with great ideas. That's why they use LinkPulse. But we were nonetheless struck by awe when we found out one of them had created&lt;a href="http://strm.se/2010/03/16/bonnierhackday-den-roda-ladan/"&gt; this red box click counter with data from LinkPulse&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Per Åstrøm is Technical Manager New Platforms at Tv4.se and together with David Hall he made this during a "hack day" at Bonnier (owner company of Tv4).&lt;br /&gt;&lt;br /&gt;Basically, it shows a number known in LP as "State Now", based on traffic the past 15 minutes, in addition to an up or down pointing arrow indicating whether traffic is going up or down.&lt;br /&gt;&lt;br /&gt;Data is fed by an XML feed from the LinkPulse application.&lt;br /&gt;&lt;br /&gt;We love it!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-3989290335426328242?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/3989290335426328242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2010/03/exceptionally-cool-things-you-can-do.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/3989290335426328242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/3989290335426328242'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2010/03/exceptionally-cool-things-you-can-do.html' title='Exceptionally cool things you can do with LinkPulse: The Red Box'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-7632862224128034266</id><published>2010-01-26T05:36:00.000-08:00</published><updated>2010-01-26T05:42:16.486-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linkpulse'/><category scheme='http://www.blogger.com/atom/ns#' term='traffic increase'/><category scheme='http://www.blogger.com/atom/ns#' term='nettavisen'/><category scheme='http://www.blogger.com/atom/ns#' term='clickthrough'/><title type='text'>Nettavisen increases traffic after changing the frontpage</title><content type='html'>The Norwegian news outlet and &lt;a href="http://linkpulse.com/"&gt;LinkPulse&lt;/a&gt; customer,&amp;nbsp;&lt;a href="http://nettavisen.no/"&gt;Nettavisen&lt;/a&gt;, yesterday announced &lt;a href="http://www.nettavisen.no/nyheter/article2811771.ece"&gt;a 14% increase in pageviews and 40% increase in clickthrough after changing their frontpage layout.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Clickthrough is basically the conversion of page views to clicks; i.e. if you go to the front page, do you click on an article?&lt;br /&gt;&lt;br /&gt;We believe that such a dramatic change could only come as a result of a dedicated effort to see what users do and what users don't do on their frontpage.&lt;br /&gt;&lt;br /&gt;We are happily convinced that LinkPulse was an important part of the project and send our warmest congratulations to the staff over at Nettavisen.&lt;br /&gt;&lt;br /&gt;Cheers!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-7632862224128034266?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/7632862224128034266/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2010/01/nettavisen-increases-traffic-after.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/7632862224128034266'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/7632862224128034266'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2010/01/nettavisen-increases-traffic-after.html' title='Nettavisen increases traffic after changing the frontpage'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-3503044301340376143</id><published>2010-01-21T02:35:00.000-08:00</published><updated>2010-01-26T05:30:18.853-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='prize'/><category scheme='http://www.blogger.com/atom/ns#' term='gulltaggen'/><category scheme='http://www.blogger.com/atom/ns#' term='linkpulse'/><category scheme='http://www.blogger.com/atom/ns#' term='diploma'/><category scheme='http://www.blogger.com/atom/ns#' term='hjemmet mortensen'/><category scheme='http://www.blogger.com/atom/ns#' term='golden tag'/><category scheme='http://www.blogger.com/atom/ns#' term='klikk.no'/><title type='text'>klikk.no receives a Golden Tag for 2009</title><content type='html'>Our congratulations go to our customer &lt;a href="http://klikk.no/"&gt;klikk.no&lt;/a&gt; (&lt;a href="http://hm-media.no/"&gt;Hjemmet Mortensen&lt;/a&gt;) who received a diploma for best website in the &lt;a href="http://www.gulltaggen.no/?nid=21841#20102"&gt;2009 Golden Tag Awards&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Klikk.no is one of the fastest growing internet magazines in Norway, and we are pleased to know that LinkPulse is used every day to make that happen.&lt;br /&gt;&lt;br /&gt;For instance, we are grateful to klikk.no for beta-testing our new browser Toolbar, which will surely change everyone's lives when we release it this spring!&lt;br /&gt;&lt;br /&gt;Keep up the good work!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-3503044301340376143?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/3503044301340376143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2010/01/linkpulse-klikkno-receives-golden-tag.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/3503044301340376143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/3503044301340376143'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2010/01/linkpulse-klikkno-receives-golden-tag.html' title='klikk.no receives a Golden Tag for 2009'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-2877991936088754161</id><published>2010-01-19T05:59:00.000-08:00</published><updated>2010-01-19T05:59:45.261-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='remoteless'/><category scheme='http://www.blogger.com/atom/ns#' term='remote'/><category scheme='http://www.blogger.com/atom/ns#' term='iphone app'/><category scheme='http://www.blogger.com/atom/ns#' term='spotify'/><title type='text'>Remoteless: Remote control for Spotify and Iphone - I tested it.</title><content type='html'>&lt;i&gt;Disclaimer: My friend is on the development team of Remoteless.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Last night I participated in a very exciting informal user test of an upcoming Iphone app called &lt;a href="http://remoteless.no/"&gt;Remoteless&lt;/a&gt;, scheduled to arrive in App Store around March 1, 2010. It's a remote control for &lt;a href="http://www.spotify.com/en/"&gt;Spotify&lt;/a&gt; (on Windows).&lt;br /&gt;&lt;br /&gt;First of all, I must say I'm impressed by the job done, since Spotify offers no open API to control it they had to use image processing and interaction simulation to communicate with the Spotify client.&amp;nbsp;It requires you to install a little program on your Windows computer, and for now, that's the only platform they support.&lt;br /&gt;&lt;br /&gt;Since I am a Mac user I don't reckon I will buy the app, but having tried I would certainly recommend it to Windows users out there who need an easy way to switch music playing on your computer without getting out of the couch.&lt;br /&gt;&lt;br /&gt;As opposed to other apps that let you control the computer remotely, this app here actually communicates with the public metadata API of Spotify to search for artists, albums and songs, and when you are ready to play a song, its URI is sent to Spotify along with some double-click events and some such.&lt;br /&gt;&lt;br /&gt;It even sports the ability to save tracks, albums and even artists as favorites, something I've been missing from Spotify!&lt;br /&gt;&lt;br /&gt;Scheduled for release around the same time as Spotify's arrival in the US, I suppose this app will do well, and I think it deserves it!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-2877991936088754161?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/2877991936088754161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2010/01/remoteless-remote-control-for-spotify.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/2877991936088754161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/2877991936088754161'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2010/01/remoteless-remote-control-for-spotify.html' title='Remoteless: Remote control for Spotify and Iphone - I tested it.'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-8800771694110113373</id><published>2009-11-18T10:43:00.000-08:00</published><updated>2009-11-18T10:46:32.269-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web analytics'/><category scheme='http://www.blogger.com/atom/ns#' term='tools'/><category scheme='http://www.blogger.com/atom/ns#' term='beta'/><category scheme='http://www.blogger.com/atom/ns#' term='market share'/><title type='text'>In beta: Web analytics tools market share in Nordic news outlets</title><content type='html'>I was inspired by &lt;a href="http://www.kaizen-analytics.com/2009/11/automotive-web-analytics-in-europe-one.html?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+KaizenAnalytics+%28KAIZEN+Analytics%29"&gt;KAIZEN Analytics recent post on web analytics tools market shares in the automotive industry&lt;/a&gt;, to do a similar study on online news outlets in the Nordic countries, specifically Norway, Sweden, Denmark and Finland.&lt;br /&gt;&lt;br /&gt;Just as Kaizen, I will use &lt;a href="http://webanalyticssolutionprofiler.com/"&gt;WASP&lt;/a&gt; to inquire each web site what tools they use. Moreover, I only care about core web analytics, not ad trackers etc. I also took the liberty to add the &lt;a href="http://www.onsite.no/linkpulse"&gt;LinkPulse&lt;/a&gt; numbers (as &lt;a href="http://webanalyticssolutionprofiler.com/"&gt;WASP&lt;/a&gt; does not recognize it, but I know who they are).&lt;br /&gt;&lt;br /&gt;I would like to emphasize at this point that this is a research project in the making, and I'm publishing preliminary results to see if there's interest in these numbers out there. For now, I have far more data for Norway than for the other countries because it's much easier for me to decide which ones to count and which ones not to count. Basically I've tried to include web sites that correspond to daily news papers, as well as online only sites which center around dissemination of news, may be portals or niche sites such as sports or economics. Another criteria I've been considering is amount of traffic according to official metrics, but haven't followed this strictly so far.&lt;br /&gt;&lt;br /&gt;Further work on this research will include establishing more rigid selection criteria and gathering more data from the other Nordic countries. Other considerations to make are groups of sites that buy tools collectively because of common ownership, as well as using the fact that most sites have more than one tool.&lt;br /&gt;&lt;br /&gt;Another interesting possibility is to factor in each sites' official traffic numbers. Thereby we could see something about what tools account for the most traffic, or some such.&lt;br /&gt;&lt;br /&gt;As of now, I have counted the tools on 66 sites, of which a little under half are Norwegian.&lt;br /&gt;&lt;br /&gt;One difficulty is to account for at least two "disturbing" factors in the data. One being that one of the tools, &lt;a href="http://www.google.com/analytics"&gt;Google Analytics&lt;/a&gt;, is free and therefore has a far lower threshold for use than the other tools. The other disturbance is that all the Nordic countries have one tool that is used across the board due to common agreement to provide official metrics.&lt;br /&gt;&lt;br /&gt;I haven't decided how to account for some of these issues and therefore present the data with a big juicy footnote to consider it largely incomplete. I think, nonetheless they give an interesting view of what is being used generally in news sites.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;b&gt;Nordic countries&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;a href="http://4.bp.blogspot.com/_-nLUT2yTLLU/SwQ48VPsfZI/AAAAAAAAAJg/EZCi4Ds3AdQ/s1600/Screen+shot+2009-11-18+at+19.11.32+.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_-nLUT2yTLLU/SwQ48VPsfZI/AAAAAAAAAJg/EZCi4Ds3AdQ/s640/Screen+shot+2009-11-18+at+19.11.32+.png" /&gt;&lt;/a&gt;The first pie shows the usage of web analytics tools in Norway, Sweden, Denmark and Finland, weighted so that it totals to 100% even though some sites use more than one tool. These numbers are schewed by the fact that almost half the data are from Norwegian sites. Another difficulty is that &lt;a href="http://www.tns-gallup.no/?did=9076832"&gt;TNS metrix&lt;/a&gt; and &lt;a href="http://www.gemius.com/pl/main"&gt;Gemius&lt;/a&gt; are "forced" tools in some countries, but also used voluntarily in other countries. This is an issue that I will work to solve.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Norway only&lt;/b&gt;&lt;br /&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;/div&gt;&lt;a href="http://1.bp.blogspot.com/_-nLUT2yTLLU/SwQ5fbk1hYI/AAAAAAAAAJo/d1KDLj1186E/s1600/Screen+shot+2009-11-18+at+19.14.10+.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_-nLUT2yTLLU/SwQ5fbk1hYI/AAAAAAAAAJo/d1KDLj1186E/s400/Screen+shot+2009-11-18+at+19.14.10+.png" /&gt;&lt;/a&gt;The second pie focuses on the Norwegian data only. Also I have removed both &lt;a href="http://www.google.com/analytics"&gt;Google Analytics&lt;/a&gt; and TNS Metrix. &lt;a href="http://www.google.com/analytics"&gt;Google Analytics&lt;/a&gt; is free and therefore used by virtually everyone and &lt;a href="http://www.tns-gallup.no/?did=9076832"&gt;TNS Metrix&lt;/a&gt; is the official tool in Norway, therefore used by literally everyone (at least all the sites that I gathered data about). The usage of these may be interesting in and of itself, but may overshadow interesting facts about usage of the other tools.&lt;br /&gt;&lt;div class="zemanta-pixie"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;span style="font-size: large;"&gt;&amp;nbsp;No conclusions &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;Since this endeavor has just started, and since there are yet so many issues to be resolve, I refrain from making any sort of conclusions about the data so far. I just let the pies stand as they are.&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;What I would like to get comments on is if these sorts of numbers are interesting for anyone out there to follow, as well as suggestions on how to resolve some of the issues I have raised that may schew the data.&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;Also, if you know of anyone else doing similar research, I'd love to know about it, especially if it's related to online news media.&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie"&gt;Of course, if there's anything else you have on your mind about any of this, feel free to leave a note.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-8800771694110113373?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/8800771694110113373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2009/11/in-beta-web-analytics-tools-market.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/8800771694110113373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/8800771694110113373'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2009/11/in-beta-web-analytics-tools-market.html' title='In beta: Web analytics tools market share in Nordic news outlets'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_-nLUT2yTLLU/SwQ48VPsfZI/AAAAAAAAAJg/EZCi4Ds3AdQ/s72-c/Screen+shot+2009-11-18+at+19.11.32+.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-9124860824341426276</id><published>2009-11-07T18:11:00.000-08:00</published><updated>2009-11-08T02:42:06.388-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='journalism'/><category scheme='http://www.blogger.com/atom/ns#' term='web analytics'/><category scheme='http://www.blogger.com/atom/ns#' term='agile'/><category scheme='http://www.blogger.com/atom/ns#' term='online vs print'/><category scheme='http://www.blogger.com/atom/ns#' term='revolution'/><category scheme='http://www.blogger.com/atom/ns#' term='agile journalism'/><title type='text'>Agile journalism and Web analytics are friends</title><content type='html'>&lt;div xmlns='http://www.w3.org/1999/xhtml'&gt;&lt;a style='clear: right; float: right; margin-bottom: 1em; margin-left: 1em;' imageanchor='1' href='http://4.bp.blogspot.com/_-nLUT2yTLLU/SvYmql7xcdI/AAAAAAAAAJY/TzPcMqfuRrY/s1600-h/462px-Helleu_-_Madame_Helleu_SurSonYachtLetoile.jpg'&gt;&lt;img border='0' src='http://4.bp.blogspot.com/_-nLUT2yTLLU/SvYmql7xcdI/AAAAAAAAAJY/TzPcMqfuRrY/s320/462px-Helleu_-_Madame_Helleu_SurSonYachtLetoile.jpg'/&gt;&lt;/a&gt;I had been thinking about different ways to approach web analytics for news publishers, and specifically journalists, for a while when I came over Eric T. Petersons white paper "&lt;a href='http://blog.webanalyticsdemystified.com/weblog/2009/10/are-you-ready-for-the-coming-revolution.html'&gt;The Coming Revolution in Web Analytics&lt;/a&gt;" where he discusses what the future holds for web analytics, and what third-generation tools need to do to make it happen.&lt;br/&gt;&lt;br/&gt;Peterson's emphasis on making decisions in real time is one that resonates highly with the agile software development methodology. Iterative processes, high information saturation and high degree of freedom have proven successful catalysts of creativity in this domain.&lt;br/&gt;&lt;br/&gt;I wanted to check if anyone had written about the parallels of agile methods in software development with the new working environment of journalists. Google is my friend, so I entered 'agile journalism' and got about a thousand hits. So, it's not an entirely new idea.&lt;br/&gt;&lt;br/&gt;Actually, the first use of the term 'agile journalism' that I can find (on Google) is in Arthur Symons "&lt;a href='http://books.google.no/books?id=bwAW1x6t9ckC&amp;amp;pg=PA55&amp;amp;lpg=PA55&amp;amp;dq=%22agile+journalism%22&amp;amp;source=bl&amp;amp;ots=7W-CNCHlg-&amp;amp;sig=0-lOdrCUEBbPj_5l97BRbG65e3A&amp;amp;hl=no&amp;amp;ei=cxj2Ss6lKMfm-Qac_rX6DQ&amp;amp;sa=X&amp;amp;oi=book_result&amp;amp;ct=result&amp;amp;resnum=4&amp;amp;ved=0CBcQ6AEwAzgK#v=onepage&amp;amp;q=%22agile%20journalism%22&amp;amp;f=false'&gt;Studies on modern painters&lt;/a&gt;" where he describes the style of Helleu as "superficial draughtmanship", but at least "far more alive", "chic in all its hasty expressiveness a wholly Parisian art, hardly more serious than agile journalism, but how clever of its kind!" Symons recognizes, perhaps somewhat prematurely, the value of agility in reporting from a scene.&lt;br/&gt;&lt;br/&gt;Several bloggers have also commented on the similarities of the shift towards agile methods in software development with media's "shift" from print to online publishing. Newspapers have "&lt;a href='http://www.mathewingram.com/work/2007/11/11/of-media-and-software-design/'&gt;a gigantic machine with many small cogs, devoted to producing something that is frozen in time&lt;/a&gt;"  but enter the web and journalists must "&lt;a href='http://www.articlesbase.com/journalism-articles/essential-skills-for-a-digital-journalist-1358406.html'&gt;change their way of thinking&lt;/a&gt;" .&lt;br/&gt;&lt;br/&gt;Florin Duroiu recently even pointed out his epiphany that "&lt;a href='http://ellinbessnersblog.blogspot.com/2009/05/future-of-journalism-is-agile-small.html'&gt;process journalism really is agile journalism&lt;/a&gt;".&lt;br/&gt;&lt;br/&gt;Others feel, more bluntly, that "&lt;a href='http://ellinbessnersblog.blogspot.com/2009/05/future-of-journalism-is-agile-small.html'&gt;the future of journalism is agile&lt;/a&gt;", but is anyone linking 'agile journalism' to web analytics? Googling 'agile journalism + 'web analytics' gave me no hits, and a quick scan of the initial search result didn't seem to include any discussions about how web analytics can help journalists be agile. &lt;br/&gt;&lt;br/&gt;I have come to appreciate that journalists and front page editors really can benefit from having access to certain metrics if it enables them to react fast and see the response. The focus is not on the tool, but on the questions that arise instantly from looking at data that, for instance, don't make sense compared to the past. Can I change the picture, or the headline to drive more traffic? Are there any related articles I can link to in my text to drive down the bounce rate?&lt;br/&gt;&lt;br/&gt;Of course, web analytics can't tell you about people's emotional response. But it can tell you that you're doing something wrong, and enable you to make up for it fast. I think the revolution in web analytics will come, at least for journalists and editors, when they get &lt;a href='http://onsitesolutions.blogspot.com/2009/10/chief-editors-content-producers-should.html'&gt;easy access&lt;/a&gt; to reports that are tailored for them and an assurance that &lt;a href='http://onsitesolutions.blogspot.com/2009/10/why-cant-everyone-be-web-analytics.html'&gt;anyone can be an analytics expert&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;Agility comes with the willingness to experiment, and web analytics may just be the safeguard to allow that to happen. &lt;br/&gt;&lt;i&gt;&lt;br/&gt;&lt;/i&gt;&lt;br/&gt;&lt;i&gt;Image: Wikimedia Commons - Paul Helleu "Madame Helleu Sur Son Yacht Letoile" 1898-1900&lt;/i&gt;&lt;br/&gt;&lt;br/&gt;&lt;div class='zemanta-pixie'&gt;&lt;img src='http://img.zemanta.com/pixy.gif?x-id=8dd4bbca-933e-84f6-8a6d-9a86b0a876fb' alt='' class='zemanta-pixie-img'/&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-9124860824341426276?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/9124860824341426276/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2009/11/agile-journalism-and-web-analytics-are.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/9124860824341426276'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/9124860824341426276'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2009/11/agile-journalism-and-web-analytics-are.html' title='Agile journalism and Web analytics are friends'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_-nLUT2yTLLU/SvYmql7xcdI/AAAAAAAAAJY/TzPcMqfuRrY/s72-c/462px-Helleu_-_Madame_Helleu_SurSonYachtLetoile.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-1587657729389239532</id><published>2009-10-30T17:35:00.000-07:00</published><updated>2009-10-31T16:11:57.737-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='journalism'/><category scheme='http://www.blogger.com/atom/ns#' term='content producers'/><category scheme='http://www.blogger.com/atom/ns#' term='web analytics'/><category scheme='http://www.blogger.com/atom/ns#' term='online vs print'/><category scheme='http://www.blogger.com/atom/ns#' term='access'/><title type='text'>Chief editors: Content producers should have access to performance data</title><content type='html'>I've spoken to a handful of people lately who seem to be skeptical about letting content producers have access to data about their stories and front pages. Some chief editors may fear that their reporters will spend too much time looking at numbers while they should be out there catching the good stories. Some web analytics experts may be afraid of their jobs. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_-nLUT2yTLLU/SuuFfldWI9I/AAAAAAAAAIw/8FMvsunLoVs/s1600-h/200px-Pink_happy.svg.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_-nLUT2yTLLU/SuuFfldWI9I/AAAAAAAAAIw/8FMvsunLoVs/s320/200px-Pink_happy.svg.png" /&gt;&lt;/a&gt;Web analytics departments in news corporations focus on ad optimizing and long-term conversion analysis. In many cases, that's money well spent too (&lt;a href="http://www.ojr.org/ojr/people/nikkiusher/200907/1762/"&gt;if they can convince advertisers that they are measuring useful stuff&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;And of course, news media executives love to use metrics to &lt;a href="http://rorybrown.wordpress.com/2008/12/08/the-value-of-website-traffic/"&gt;brag about traffic increase, while still lacking a way to monetize it&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;Not even journalists themselves seem to care about using web analytics to perform better. For example, &lt;a href="http://www.journalism.co.uk/5/articles/533071.php"&gt;in this article at journalism.co.uk about using web analytics to improve the web&lt;/a&gt;, there's no mention of anything remotely relevant for a journalist.&lt;br /&gt;&lt;br /&gt;Bloggers have long realized they can use &lt;a href="http://beatblogging.org/2008/08/18/improving-content-with-web-data-and-analytics/"&gt;web analytics to improve their blog&lt;/a&gt;. The news media should follow up. It's well-know that &lt;a href="http://www.useit.com/alertbox/whyscanning.html"&gt;web users scan instead of read&lt;/a&gt;, which is the first reason you should not just go ahead and publish online at midnight whatever you have in print the next day. Since online readers are impatient, they scan for important keywords, links and actionable items such as videos, that make their reading easier.&lt;br /&gt;&lt;br /&gt;If they don't find what they're looking for, they will search elsewhere -- oh no -- at a competing site.&lt;br /&gt;&lt;br /&gt;Of course, online you have an advantage over print; you can change stuff -- at no cost! As often as you want! And you should - right now!&lt;br /&gt;&lt;br /&gt;Because if you do, your next reader will stay instead of going to your competitor's site.&lt;br /&gt;&lt;br /&gt;For frontpage editors, this may involve changing the headline, or picture, to see abrupt increases in popularity of a particular story. For reporters, it might involve adding linked related content or multimedia&lt;br /&gt;&lt;br /&gt;Fortunately, &lt;a href="http://onsitesolutions.blogspot.com/2009/10/why-cant-everyone-be-web-analytics.html"&gt;everyone can be a web analytics expert&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;And while you're at it. Don't just send the reporters an email with the performance data. Let them look it up in the analytics tool themselves. And don't forget to display all the snacksy key data on a big screen in the desk room!&lt;br /&gt;&lt;br /&gt;So this is a pledge to all chief editors: make performance data available to content producers, and your front-page editors and journalists will soar by actually knowing how the users respond. Depending on what &lt;a href="http://www.onsite.no/linkpulse"&gt;tool&lt;/a&gt; you have, they may even get the relevant data in time to make cool changes, and make your users happy enough to stay and read on.&lt;br /&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;&lt;i&gt;Image: Creative Commons&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-1587657729389239532?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/1587657729389239532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2009/10/chief-editors-content-producers-should.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/1587657729389239532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/1587657729389239532'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2009/10/chief-editors-content-producers-should.html' title='Chief editors: Content producers should have access to performance data'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_-nLUT2yTLLU/SuuFfldWI9I/AAAAAAAAAIw/8FMvsunLoVs/s72-c/200px-Pink_happy.svg.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5883145092047399093.post-408588742200401872</id><published>2009-10-27T13:41:00.000-07:00</published><updated>2009-11-02T05:34:51.537-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='experts'/><category scheme='http://www.blogger.com/atom/ns#' term='web analytics'/><category scheme='http://www.blogger.com/atom/ns#' term='online presence'/><category scheme='http://www.blogger.com/atom/ns#' term='availability'/><title type='text'>Why can't everyone be web analytics experts?</title><content type='html'>The trend is easy to identify: Web analytics is a becoming profession, and a lot of people want to call themselves &lt;a href="http://www.ga-experts.com/"&gt;experts&lt;/a&gt; in the field. Particularly, the big three, Google Analytics, Omniture SiteCatalyst and Webtrends, boost the self-confidence of these people by certifying them as professional users of their tool. Latest: What is your &lt;a href="http://analytics.blogspot.com/2009/10/google-analytics-iq-proof-of.html"&gt;Google Analytics IQ&lt;/a&gt;?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_-nLUT2yTLLU/Suxw1FNE_zI/AAAAAAAAAI4/FFRduohSxAY/s1600-h/200px-Face-grin_expert.svg.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_-nLUT2yTLLU/Suxw1FNE_zI/AAAAAAAAAI4/FFRduohSxAY/s320/200px-Face-grin_expert.svg.png" /&gt;&lt;/a&gt;Obviously a good marketing move---if you want your customers to think that you need a bachelor's to use your product effectively. I've seen SiteCatalyst's user manual: it's thicker than the bible, the Qur'an and the vedic scriptures combined.&lt;br /&gt;&lt;br /&gt;I have no intention of bashing would-be competitors of &lt;a href="http://www.onsite.no/linkpulse"&gt;our product LinkPulse&lt;/a&gt; (&lt;a href="http://nerdificationofshira.wordpress.com/2008/03/25/omnify-this/"&gt;others do it for me&lt;/a&gt;). I find their strategy a bit strange, that's all. And I have to admit that it begs the question: "Why can't everyone be web analytics experts?". The answer, of course, is that they can. And they don't have to work very hard either.&lt;br /&gt;&lt;br /&gt;Occam's Razor's recent post "&lt;a href="http://www.kaushik.net/avinash/2009/10/analytics-intelligent-insights.html" rel="bookmark" title="Permanent Link: Analytics Becomes Intelligent. Hello Insights!"&gt;Analytics Becomes Intelligent. Hello Insights!&lt;/a&gt;" had a heart-warming introductory remark saying that&lt;br /&gt;&lt;blockquote&gt;"&lt;i&gt;web analytics tools like Site Catalyst, Yahoo! Web Analytics, WebTrends, and yes even Google Analytics, are mostly glorified data pukers. Each tries to outdo the other in trying to collect ever more data and regurgitating it. For all the math they do, it is astonishing how little intelligence they have, how little actual smarts are applied.&lt;/i&gt;"&lt;br /&gt;&lt;/blockquote&gt;He then goes on two demonstrate a couple of &lt;a href="http://searchengineland.com/google-analytics-new-features-analytics-intelligence-custom-alerts-28048"&gt;new features in Google Analytics&lt;/a&gt; that are more goal-oriented. And with that, Google Analytics is on the right track. Unfortunately, it seems to be a side-track, just another way to do it, while it should be the focus. It is hidden in the plethora of other data-oriented mashups, and I wouldn't be surprised if GA ends up like SiteCatalyst, and endless list of specialized reports (that all have to be set up individually and manually).&lt;br /&gt;&lt;br /&gt;Really, "&lt;a href="http://blogoscoped.com/archive/2006-11-28-n34.html"&gt;do web stats necessarily need to be made this complicated&lt;/a&gt;"? I think lack of accessible knowledge and familiar terms is what frightens non-experts the most, and therefore perhaps are more willing to spend their happy dollars at the certified experts, to help them "interpret" the numbers. As if the numbers themselves contained some sort of magic secret about all the potential buyers in the world and their uncle.&lt;br /&gt;&lt;a href="http://www.blogger.com/goog_1256667532338"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.webinknow.com/"&gt;David Meerman Scott&lt;/a&gt;, I think, is right when he says that "&lt;a href="http://www.tcbreview.com/clicking-with-customers.php"&gt;there’s a difference between an online presence and online marketing&lt;/a&gt;". If what you do online is marketing, then hire an expert to churn the numbers for you. You're already wasting money so why not waste some more.&lt;br /&gt;&lt;br /&gt;If your focus is online &lt;i&gt;presence&lt;/i&gt;, (&lt;a href="http://www.webproworld.com/marketing-strategies-discussion-forum/68494-anyone-using-omniture.html"&gt;unlike Omniture&lt;/a&gt;) then you already know what to look for. Numbers will only aid you in confirming or rejecting your theories. Your presence will force you to look for tools that put you in the driver's seat. Soon, the tool will become an exo-cortical element of your mental web analytics department. And your boss will love you for disproving that it takes "&lt;a href="http://judah.webanalyticsdemystified.com/category/web-analytics-tools"&gt;a village of analysts — and maybe even a city of supporting functions — to get the job done right&lt;/a&gt;", and he won't have to post a &lt;a href="http://www.webanalyticsassociation.org/en/jobs/search.asp"&gt;job listing on WAA&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;And who are you? Anyone! Reporter, editor, designer, UX, programmer, administrator or CEO. Get in the driver's seat of your web presence. Choose whatever tool you want, but make sure it actually fits your needs. The big ones may be big, but they also need to cater to everyone. Resulting in a lot of stuff you don't need.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Image: Wikimedia Commons &lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5883145092047399093-408588742200401872?l=onsitesolutions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://onsitesolutions.blogspot.com/feeds/408588742200401872/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://onsitesolutions.blogspot.com/2009/10/why-cant-everyone-be-web-analytics.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/408588742200401872'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5883145092047399093/posts/default/408588742200401872'/><link rel='alternate' type='text/html' href='http://onsitesolutions.blogspot.com/2009/10/why-cant-everyone-be-web-analytics.html' title='Why can&apos;t everyone be web analytics experts?'/><author><name>Tom Erik Støwer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://static.flickr.com/23/34150509_1f89a8015f_m.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_-nLUT2yTLLU/Suxw1FNE_zI/AAAAAAAAAI4/FFRduohSxAY/s72-c/200px-Face-grin_expert.svg.png' height='72' width='72'/><thr:total>1</thr:total></entry></feed>
