msgbartop
and his Coffee-Break Brain-Dump
msgbarbottom

19 Feb 10 What’s the #BUZZ about Google Buzz? Oh look, the Emperor has got no clothes on

You have come across Google Buzz or maybe you haven’t. Anyway it is Google’s answer to Twitter, Facebook and other social media platforms, although, I wonder what the question was if Buzz is the answer.

It launched recently to a bit of a viral fanfare and all of us social media maniacs and Twitter pimps toddled on over to check it out. It seems that lots of people are going absolutely unnecessary about it. It will apparently kill off Twitter, Facebook and change the world as we know it. I say ‘apparently’ for a reason.

The problem is that I am still trying to work how Buzz accommodates any need I have. I keep coming back looking at it and thinking, ‘I must be missing something’.

I understand Blogs, LinkedIn, FaceBook and Twitter and they have somehow seamlessly slotted into the way I do things personally and professionally. I can write once on any of them and publish everywhere. I can use things like TweetDeck to get multiple views of Twitter based on friends, interest topics or back-chat. Others use aggregators like FriendFeed or Posterous but they all do variations on a theme – they collect all this etherlution (© Dave Yates, meaning rubbish deposited all over the web) and collates in into a single, manageable distribution and collection point for all you want to cherry pick from these platforms.

So while I detest e.g. FB, I do understand why it is there and I can interact with my contacts on it without having to go on it very often. Similarly with LinkedIn. I quite like it, but I don’t feel compelled to ‘live’ on it. I use it from time to time, but can update it remotely with a range of tools, mainly my Blog and Twitter account.

But again today, I returned to Buzz, looking at it this way and that and concluding that I must be missing something, because lots of people are saying it is great and everything else will now become obsolete. I repeat, I really must be missing something because, for the life of me, I don’t get it, I don’t know what to do with it and I don’t know why everyone else is raving about it.

Oh Look – the emperor’s just gone by without any clothes on.

30 Dec 09 Goodbye CorporateMag Theme

About a year ago I found and liked the look of the CorporateMag Theme and so decided to use it for this blog. But having done so, I found it was broken in places and the developers had pretty much abandoned it and its users to their own devices. Fortunately I have some devices and I was able to fix all that I needed to fix to make it work properly. I was happy to post my repair work back on the theme’s web page and ever since I have  been running a kind of clinic for other users who cannot work out how to fix the broken bits. And yesterday morning another of these arrived:

Hey Dave, I was hoping you could help me out on using the corporatemag theme. There doesn’t seem to be documentation anywhere on how to use it. I figured out that I need to use the custom field of “thumbnail” on posts to get the featured posts images loading on the homepage. But how do you get the content previews showing for your Pages on the homepage? And how do you get the image carousel to work? I can’t seem to figure out how to get either of them working. I’m assuming it’s with the simple use of other custom fields similar to “thumbnail”. Can you share what custom fields you use please? I would really appreciate it!

So I had a quick look and lo-and-behold it all broke again.

So to cut to the chase, but I am giving up on CorporateMag Theme and no longer able to help out others with it any more. I am instead installing the beautifully pared down Google Chrome Theme from Smashing WordPress Themes

09 Jun 09 Interesting times

Can’t spill all the beans right now, but have a great new idea for something. watch this space

06 May 09 corporatemag Theme code fix

For those still having some difficulty with the Corporatemag theme, namely getting links to work on an archive/category list. Try this:

Go to the Theme editor and select the archive.php file. Replace the content with the code in red below:

<?php get_header(); ?>

<div id=”content”>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class=”pagetitle”>Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class=”pagetitle”>Posts Tagged ‘<?php single_tag_title(); ?>’</h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F jS, Y’); ?></h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F, Y’); ?></h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘Y’); ?></h2>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class=”pagetitle”>Author Archive</h2>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h2 class=”pagetitle”>Blog Archives</h2>
<?php } ?>
<?php while(have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h3 class=”title”><a href=”<?php the_permalink() ?>” ><?php the_title(); ?></a></h3>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>
</div>
<?php
endwhile;
$nextPost = get_next_posts_link(‘Next’);
$prevPost = get_previous_posts_link(‘Previous’);
?>
<div id=”post-nav”>
<?php if($nextPost): ?>
<div id=”nav-next-post”><?php echo $nextPost ?></div>
<?php endif ?>
<?php if($prevPost): ?>
<div id=”nav-prev-post”><?php echo $prevPost ?></div>
<?php endif ?>
<div class=”clear”></div>
</div><!– /post-nav –>
<?php else: ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>

Then go to the Theme editor and select the search.php file. Replace the content with the code in green below:

<?php get_header(); ?>

<div id=”content”>
<?php if (have_posts()) : ?>
<h2 class=”pagetitle”>Search Results</h2>
<?php while(have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h3 class=”title”><a href=”<?php the_permalink() ?>” ><?php the_title(); ?></a></h3>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>
</div>
<?php
endwhile;
$nextPost = get_next_posts_link(‘Next’);
$prevPost = get_previous_posts_link(‘Previous’);
?>
<div id=”post-nav”>
<?php if($nextPost): ?>
<div id=”nav-next-post”><?php echo $nextPost ?></div>
<?php endif ?>
<?php if($prevPost): ?>
<div id=”nav-prev-post”><?php echo $prevPost ?></div>
<?php endif ?>
<div class=”clear”></div>
</div><!– /post-nav –>
<?php else: ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>

25 Jan 09 There is a problem with Wordbook

Trying this plugin to publish WordPress posts to Facebook. It is not behaving itself at all.

25 Jan 09 Now if I have this right….

I’ll put this post on my blog and it will automatically appear on Facebook and probably Twitter as well

16 Jan 09 Breakdown of time spent on web development

Courtesy of Jason from Design and Promote 

lq_how_to_pie_2

11 Jan 09 Social Notworking (2009 A MySpace Odyssey)

Sent this to @FiBendall on Twitter when she had writers block over an article she was working on. I don’t think she was so convinced. Anyway, seems a shame to waste it.

- -

You know how sometimes you’re out walking the dog when a bunch of alien interlopers abducts you. Before you know it, you’re warped off to the planet Q’Zog in the Fourth Quadrant, your brains picked clean en route, only to have other vile experiments visited upon your person on arrival.

Yeah I know, it happens all the time. So what’s new? Well this week, during one of these otherworldly episodes, my alien hosts subjected me to experiments based on research into web-based social media patterns on Earth. It turns out that a few millennia back they went through the same thing themselves and were interested to see if we were making a mess of it all yet.

Eventually, I cracked under pressure and told them about spontaneous uptake, web 2.0, multi-channel integration, SEO benefits, corporate blogging, Mobile blah, micro blah, digital blah and so on. They rubbed their chins, nodded sagely and did that thing with the sides of their mouths that universally means “If only they’d bothered to ask us, we’d have told them how to avoid getting everything wrong”.

So I did ask them. “Where did social media go wrong for you guys?” Quickly followed by “…and do you mind if I pick your brains for a change ask your advice”. It seemed to do the trick. The big alien, the one who usually does all the cross-species sexual experimentation (but that’s another story) picked up his MacBook Core DecaQuadro, running OSMXM Sabretooth and fired it up. He pressed a few keys and Hey Presto! They launched qzogblog.com and clicked onto the category entitled ‘Social Notworking’.

And they talked me through the tale of woe that once passed for social media on Q’Zog.

Once upon a time the ordinary aliens of QZog found it fun to keep in touch and cement friendships through social media sites. A load of them sprang up – TrouserBook (they use a different body-part for speech and visual recognition), Twaddle (like us, there are lots of them with nothing important to say and they like to say it a lot), Flockr (they like pictures of sheep) and so on. Eventually people thought they could make money out of these sites with PPC and other propositions. In time, corporates started to notice that they were being cut out of the loop. No one was going to their websites to find out about their products. The alien masses were asking each other and liberating their buying habits. So the corporates moved in to try and find a place in this great new SpaceBook. And for a while all was well on QZog. But it didn’t stay that way.

The first problem was all about money; isn’t it always? Social networking, it seems, was just too difficult to monetize. 
Strangely, back on Earth, this dynamic is now beginning to show its face also. Google has begun to make less than optimistic noises about it. Google Chief Financial Officer George Reyes has said. “We have found that social-networking inventory is not monetizing as well as expected”. Which is Earth-speak for “Oh Shit”.

My alien hosts went on to talk about too many players flooding the market. Particularly white labeled channels (i.e. a site full of pre made functions which can be branded so that people can create their own versions of e.g. Facebook). The more this happens, the more dispersed and fractured the user base becomes. And sure enough, free, open source and plentiful white label options have also made it to earth

It was noticeable that my extraterran hosts were pretty ticked off with corporate intervention in social media. Over commercialization was clearly a killer in the Fourth Quadrant. What started out as a one to many tool, became a corporation to consumer tool and all the people got fed up with being sold at and went somewhere else. I thought about this for a while. Surely as social communities form, Earth’s marketers would not dream of piling in, taking over and crapping all over the experience. Would we?

There was a problem as well with inaccurate member data on sites. This is less important to socialization so users didn’t care. Additionally, identity fraud in the fourth quadrant led to users purposely loading inaccurate data. From a commercial perspective, this began to create problems; CRM is only as good as the data validity. All that effort aimed at the wrong people! Strangely, on earth this seems to be happening. Some say as many as 33% of users load duff info into their profile.

Another issue over in the Fourth Quadrant was the difficulty in measuring the effectiveness of these social media strategies. As with earthly hosting, if you want to deploy a campaign via a social network, you can’t access the host’s server data and logs by automatic right. You can manually monitor the interaction on the site, or measure click through, but it is almost akin to redeploying slate and chalk as a core technology.

Data privacy also started to unravel the network. You may think that this could not happen on Earth, what with all the regulatory concern and cautionary tales. But then again, Facebook had already been caught tracking and releasing user habits back to developers and others involved in advertising initiatives. And what if your average Joe Alien wants to leave. Well have you noticed that no matter how often you opt out or don’t opt in, the level of spam keeps going up? You have to think that the data options are being somehow abused. Surely not on Earth? Well think again, it’s a bit like a religious cult. Once you’re in, they don’t let you leave. These are the very things that eventually dissuaded Q’Zogians from joining social media sites and led to their abandonment followed by collapse of the network platforms.

Here’s a new phrase for all of us on Earth: “Social Network Fatigue”. It started on QZog with people getting fed up with maintaining multiple spaces on multiple platforms. It further manifested itself with people just falling out of love with the whole thing because, like nostalgia, it just wasn’t what it used to be. It might not sound like we have that problem down here, but on closer inspection, there are people writing PhD theses about it.

The QZogians also started to experience a slow-down in the use of social media platforms. It peaked over a few years and then declined. Perhaps because of the tedium of the operation, or something else happened, but it stopped being the next best greatest thing.  And, you guessed it …Earth is seeing the same pattern.

The Q’Zogian saga continued to get played to me out like a Greek tragedy. Networks had inconsistent performance, companies got fed up with employees cyber-sciving, so they started locking social media sites outside firewalls. The sites variously suffered: scaling issues; user overload leading to downtime; hacking and scandal. The social media moguls largely fiddled with their Geek-Up PowerPoint presentations while their empires burned.

“So”, I asked. “If you had your time again, how would you make sure that this didn’t happen?”

“Easy” they answered “We could have kept it all together, increased the marketing value to business, re-enfranchised the users and made a packet on the way.  We’ll drop by next week, pick you up and tell you how you get this entire social media gig right.”

“Oh and by the way…” they said as they dropped me back by my still walking dog, “…  Has anyone talked to HP about their pay-per-post digital camera social media campaign on YouTube. It really sucks”

01 Nov 08 Testing WordPress for iPhone

Just downloaded WordPress for iPhone and making this test post

27 Oct 08 Reaching out to Earthlings

Hello… crackle…come in… is anyone there…. calling Earth…

I am Dave from a plant called Realitus.  We are our own planet very much at the centre of our own universe. You my friends, are just a distant dot in the night sky. You may have burnt out long ago – frankly we don’t care.

On Realitus we are a race of communicators (web, WordPress, Print design and so on). The most sacred thing on our planet, the Holy Grail of communication, is knowing what to say to people at just the right time and in just the right way to be genuinely helpful to them.

To this end, three of our commandments are as follows:

 

  1. If you are the answer, what is my problem?
  2. You’re obviously in it to make money. What’s in it for me?
  3. You can say one thing well, two things half as well and three things badly. This self-penned mantra has served us well over the years.

 

In short, you need to show that you understand my situation and problems; demonstrate that you can supply something of value to me; do it concisely and with impact.

We do a lot of business with the people of Earth. They are very egocentric. The first line of their constitution is

“Enough about me. Let’s talk about you. What do you think about me?”.

They are also constantly short of time and culturally they are all selling something and buying nothing. It is interesting that 71% of businesses on Earth fail within a decade of starting up. Our hypothesis is that they are so obsessed with trying sell their own ideas, that they don’t take the time to learn what people want to buy.

So what is the point of all this. Can all these bloody self-appointed coaches, experts and others stop sending me emails that tell me how bloody great they are. Instead could we have emails from people who can understand that we need money, customers, sales and aspirins and we need them right now. Could those people tell us where we find these things and explain how we do it and show why we can afford to pay them and where the return on that investment will be. And for the love of JC, can they do it in less than 5000 words of self-aggrandising bollocks.

 

Thank you. As the song goes, “Back to Life, back to Realitus”