A Django site.
July 15, 2008

Phil Windley
pjw
Phil Windley's Technometria
» Using bit.ly with MovableType

I've been using the mt-twitter plugin to automatically publish blog articles to Twitter. I find that I get more readers that way than RSS or my newsletter at this point. One problem is that you don't get any good stats that way. I've modified the mt-twitter plugin to use bit.ly now to solve that problem. With bit.ly you can click on the "info" link and get good stats about who clicked from where.

This is the code I added to the _update_twitter function:

 my $bitly = LWP::UserAgent->new;
 my $url_response = 
       $bitly->get("http://bit.ly/api?url=" . $obj->permalink);
 my $small_url;
 if($url_response->is_success) {
    $small_url = $url_response->content;
} else {
   $small_url = $obj->permalink;
}

Of course, you also have to change the line that creates the twitter message to use the new shortened URL ($small_url) instead of the permalink directly.

Tags: blogging perl movabletype

February 27, 2008

Kevin Kubasik
nonic
For Once I Oneder
» Failed Movable Type Experiment

So I attempted to migrate my blog from Wordpress to Movable Type Open Source. I’ll go into specifics later, but suffice to say that it was a miserable failure. Problems with planets, constant admin interface crashes, extremely spamable, and most of all, just unusable.

As a result of my reversion back to Wordpress, I have lost a few posts, I will try to migrate them back, but its possible I’ll just do a major ‘things that we have missed’ post in a bit. Anyway, more updates coming soon.

February 2, 2008

Phil Windley
pjw
Phil Windley's Technometria
» ActionStreams: Follow Me Around the Net

Adding your IT Conversations profile to Action Streams
Adding your IT Conversations profile to Action Streams
(click to enlarge)

The more you use sites on the Web for keeping track of our online lives and sharing things with friends, the more you'd like to have a place on your blog to gather them all together. I've had my del.icio.us feeds on my blog for a long time. I also used to put my tweets on my blog. I experimented with a Flickr widget and gave it up.

Now Mark Paschal has released a plugin for Movable Type called Action Streams that does that all nicely. There are dozens of services that you can add. I've included all that I use. You can see the result on the right side of this page under the "What I'm Doing" heading.

I also created a page about what I'm doing around the net that's an expanded version of the sidebar.

Mark has made it easy to add services. I created a plugin to add my personal program queue from IT Conversations in about 15 minutes. If you'd like to do the same, I've made a tarball and some instructions. Now whenever I add a program to my personal program queue, it will show up on my homepage automatically. I like automatic.

Tags: blogging movabletype itconversations

December 28, 2007

Phil Windley
pjw
Phil Windley's Technometria
» Upgrading to MT4.01

I'm in the processing of upgrading this blog to run on Movabletype 4.0, so there will be some things broken while I get it right. Thanks for your patience.

Tags: blogging movabletype

» Upgrading to MT4.01

I'm in the processing of upgrading this blog to run on Movabletype 4.0, so there will be some things broken while I get it right. Thanks for your patience.

Tags: blogging movabletype

December 14, 2007

Kevin Kubasik
nonic
For Once I Oneder
» The Move to Movable Type

Ok, as many of you may have heard, Movable Type just recently announced an open source edition. After playing around with it for a few hours, I was already sold. The templating system is just awesome, and while being forced to rebuild the blog to publish is a pain, the performance tradeoff is incredible.

Anyways, after getting about half of my stuff migrated successfully, I made the switch just a little bit ago. If there are issues on the planets or readers (or broken links) please let me know, I'll try to fix it ASAP.