December 13th, 2010 § § permalink
This is a little something I found on accident recently. For 80% vanity and 20% link longevity, I decided I set up my own URL shortener for Philoking.com at pking.me. There is a nice free URL shortener called YOURLS that runs on PHP/MySQL (basically the same setup that will run WordPress.)
Setting this tool up is very simple, only a bit more technical than setting up WordPress itself and once you are in business, you can set up other tools to use it.
This weekend I set everything up and was excited to see cute little pking.me links running around. That, as it turns out, was only a small part of the fun.
I use Tweetdeck to follow Twitter and decided to look into making my own shortener the default for Tweetdeck. It was very simple to do, and once I had, I saw something very interesting.

I had just posted this tweet and then checked my YOURLS admin page to see there had already been 25 clicks on my shortened URL, that’s feedback you can’t get from Google Analytics, at least not right away. It’s pretty interesting to be able to see.
With a little bit of creative querying, you should be able to tell what times your most viewed tweets are, and what URLS or tags draw the most attention. Talk about adding some fuel to your Tweeting intelligently. Nice!
October 28th, 2009 § § permalink
We talk about a lot of blog topics around here. How to write great posts, how to write compelling titles and how to deal with Search Engine Optimization issues. There is one thing that is often overlooked, old blog posts.
Search engines never forget. If your blog post already has a good bit of traction you could stay highly ranked for a topic for ages. Take a look at my traffic example:
Top Blog Posts 10/19/2009 – 10/26/2009
- 2/19/08 Holy World of Warcraft Batman, 64-bit WoW 596 views
- 1/11/09 Is Windows 7’s Aero Peek a copy of Apple’s Expose 519 views
- 6/25/07 TVersity, PS3 Perfect Streaming Media Player 427 views
- 1/28/07 World of Warcraft, Poor Frame Rates on Vista 294 views
- 5/18/09 How to make a bootable Windows 7 Install Flash Drive 202 views
That is pretty interesting. For the last week, 3 out of the 5 most popular posts on my blogs were written before 2009, a year that is nearly over. Several are a few years old and still getting hundreds of page views a week.
What Does This Mean?
It actually means a few things. Without pandering, these are probably topics you should be writing about more, and linking to through updates to these posts. They obviously have the “Google Juice” so to speak, so why not take advantage of it.
Second is the less obvious, update these posts! Information changes, blogs are live and dynamic, do not write and forget. These posts have the potential to hurt your blog if you do not keep them current. Google and Bing are telling these people that you are an authority on this subject. Several years is a very long time to let technology information sit still. If the user reads your posts and finds the information to be irrelevant or even worse inaccurate, that hurts your reputation.
Use Them or Lose Them
Obviously my first advice is to update these posts and get the maximum value out of them. The last advice is that if you can’t or don’t want to, get rid of them. Make sure you have a compelling 404 page, preferably one that searches your blog for articles related to the query term, and try to convert that user to a reader.
As a blogger, your credibility is the only thing you have. Bad articles and inaccurate information will turn that 30 second page view away. Good information and quality content will turn that same fly by into a subscriber. Don’t let these old posts kill you. Use Google Analytics, keep track of which old posts are being regularly visited, visit them yourself, and make sure they still stand up several years later.
June 24th, 2009 § § permalink
Ok, maybe that doesn’t make a whole lot of sense, but work with me here. In the software development world, a lot of times we talk about who our customers are. Not what kind of pancakes they like, or what they think about rainbows, but what set of characteristics makes them a unique user type.
With almost any software, there are multiple ways it can be used. To help us decide how well a feature fits in a particular product, many times we will develop a persona of who our target user is and how we think they might use our product.
What Exactly Is a Persona?
The almighty Wikipedia says:
Personas are fictitious characters created to represent the different user types within a targeted demographic that might use a site or product. Personas are useful in considering the goals, desires and limitations of the users in order to help to guide decisions about a product, such as features, interactions, and visual design.
We deal with personas in my work life all the time, but as I deal with many amateur developers and web designers, I thought it might be valuable to share this technique and maybe get some feedback from readers that have their own unique perspective.
How Do You Build One
The obvious answer is first get to know your customers or users. Who are these people and what do they want and need to do? Watch people use your product. Learn the tendencies and habits of these people. A good place to start would be by reading The Inmates are Running the Asylum by Alan Cooper. This book will explain the great detail of some of the ideas I will share next.
The basic concept is this, you imagine. Of course you can back your imagination up with statistics, usability studies and all manner of scientific data, but they key to creating them and using them is imagination. You have to be able to imagine using your product through they eyes of someone else. Someone that might have more limited knowledge or capabilities. Sometimes you might have to imagine someone with much more capability. (for example designing an SDK) The key is being able to suspend what you know, or what you think you know, and imagine your products and ideas through the eyes of who will potentially buy, use and hopefully love your software.
The Benefit
In our work place, the obvious benefit is it allows everyone on the team to know who we are talking about as a user when we say “Bob would definitely want to do this.” We speak of personas as people all of the time where I work. We have all studied and understood who the character is, so we are able to communicate with each other as if the person was a real user. The benefit is that the fake person IS a real person, or better yet in our case, millions of real persons.
Personas are particularly useful at diffusing disagreements about product designs. When you have a group of intelligent, strong willed people, who all believe passionately about what they are working on, sometimes passion overrides logic. Even when someone is very loyal to their particular design idea, it’s easy to explain the negatives through the use of a persona, hopefully without offending the person in the process.
More Practice (Scenarios)
Once you have established strong personas, the next step is to write compelling user scenarios through the eyes of your personas, but that’s a blog for another day.
More Reading:
Persona Development
Scenario Development
May 18th, 2009 § § permalink
Alex King’s Twitter Tools Plugin is a must if you are a WordPress Blogger and Twitter user. It’s most compelling feature is that it can automatically post a Tweet when you post a new blog post. This also works for time delayed posts, it Tweets when the post is published. One of the things I didn’t like about it was that it prefixed every blog post with “New Blog Post: “ which is a sure fire way to make sure more than half your followers don’t click it.
The thing is, you have already said what you want to say in your title hopefully, so how about we just Tweet the title and a link? Changing this code comes with one dire warning, you have to keep something in the prefix, that’s how the plugin finds Tweets to create the digest post, so instead of “New Blog Post: “, I am going to change mine to just “BP “.
Editing The Code
There is one class in the source code that defines the settings you can’t change in the UI, that class is called “twitter_tools.” Lines 18-27 define UI items, and 29-36 are supposed to not be end user editable, but we aren’t going to let that stop us.
1: class twitter_tools {
2: function twitter_tools() {
3: $this->options = array(
4: 'twitter_username'
5: , 'twitter_password'
6: , 'create_blog_posts'
7: , 'create_digest'
8: , 'digest_title'
9: , 'blog_post_category'
10: , 'notify_twitter'
11: , 'sidebar_tweet_count'
12: , 'tweet_from_sidebar'
13: , 'give_tt_credit'
14: , 'last_tweet_download'
15: , 'doing_tweet_download'
16: , 'doing_digest_post'
17: );
18: $this->twitter_username = '';
19: $this->twitter_password = '';
20: $this->create_blog_posts = '0';
21: $this->create_digest = '0';
22: $this->digest_title = __("Twitter Updates for %s", 'twitter-tools');
23: $this->blog_post_category = '1';
24: $this->notify_twitter = '0';
25: $this->sidebar_tweet_count = '3';
26: $this->tweet_from_sidebar = '1';
27: $this->give_tt_credit = '1';
28: // not included in options
29: $this->update_hash = '';
30: $this->tweet_prefix = 'New blog post';
31: $this->tweet_format = $this->tweet_prefix.': %s %s';
32: $this->last_digest_post = '';
33: $this->last_tweet_download = '';
34: $this->doing_tweet_download = '0';
35: $this->doing_digest_post = '0';
36: $this->version = '1.0';
37: }
Lines 30 and 31 are what we are concerned with. Line 30 defines the Tweet Prefix. On my blog I changed this to just ‘BP’ to shorten it and get me back some characters. Line 31 defines the format string for the post, I also wanted to get rid of the colon, so I changed it to read:
$this->tweet_format = $this->tweet_prefix.' %s %s';
That’s it, now when your blog publishes, it will post a Tweet that’s a bit more concise and looks more like you wrote it rather than an automation.
April 23rd, 2009 § § permalink
Sometimes we find ourselves using several computers regularly. Many times bloggers will find inspiration for a great article, but run out of time before it can be finished. If you use Windows Live Writer to compose blog posts, and you should, you might have run into this little problem. Luckily Windows Live Mesh comes to the rescue.
Windows Live Mesh
Installing Windows Live Mesh is a breeze. Go to https://www.mesh.com/ and sign in with your Windows Live ID, if you don’t have one, set it up real quick. Once you install Windows Live Mesh, you will have a little taskbar icon that looks like a blue ball. After it’s all set up on both machines, start the following tutorial:
Step 1: The Source Machine
Browse to the folder that you want to sync, in my case on Windows 7 it is Libraries > Documents > My Weblog Posts > Drafts and right-click the folder. Select “Add folder to Live Mesh.” Leave all settings default, and choose OK.
Your folder may vary if you use Windows Vista or Windows XP, be sure to browse to the correct folder. Also keep in mind that this approach will work even if the destination folder is on a different version of Windows.
Once you have shared this folder, it will be available for you to sync on any machine you have Mesh installed on, as well as available online through the web interface at www.mesh.com if you need to access it from a machine that does not have Mesh installed.
Now let’s set up the destination machine.
Step 2: The Destination Machine
We are assuming you have Mesh already installed and the desktop on the destination machine should have a light blue folder shortcut that has the same name as the folder you shared in step one. Double-click that folder and it will show the folder name in the first text box, and the location on your desktop in the second text box.
Click browse to the right of the second text box, and browse to the Drafts folder on this machine. If you are on the same version of Windows it should be in the same place, if the versions are different it might be in a slightly different location. On either machine it should be inside your Documents folder somewhere.
Once you have completed this step, a dialog will come up confirming that you want to sync the folder to this location and asking if you want to merge to this location, you want to merge, that way drafts has a two way connection and anything you start on one machine, will be available on the other.
Considerations
There are a couple of things you want to take note of. The drafts that you start on one machine, will not show up on the recent list on the second machine. The recent documents list is stored in the registry so it is not synced. The drafts will still be easy to access, just click open in Windows Live Writer and they should be right there under “Drafts.”
The other thing to consider is publishing. When you publish something you will get a unique publish ID assigned by the system. If you open a published draft on the second machine and attempt to republish, you will have unexpected results. Instead of updating, it will publish again as the second machine will assign a new publish ID. This technique is best reserved for sharing unpublished drafts.