My new project: Tact, a simple chat app.

Generic reposter code now available — repost your Twitter timelines with pictures

April 20, 2007

Vacation is the best time to write code, isn’t it :)

I got my act together and somewhat cleaned up the generic reposter code that powers miscrandom.com. You can now immerse yourself in its wikipage with links to downloads and all that. And I made this fancy pic for it too that tries to explain a bit of reposter’s modus operandi.

reposterDiagram.png

So… if I had to sum it up in one sentence, I would say that reposter aggregates feeds and lets you build your own meta-blogs with much more versatility and customization than you could ever get from online aggregator services like FeedBurner.

A word of warning

It’s not really for the faint of heart and it’s not really friendly. It’s optimized for running from your crontab, say daily. So the commandline UI won’t say anything if all is OK, and only complains if things are wrong. (And if you were to run it from cron like I do, you would of course receive these cries as email.)

Why, oh why do you bother with such stuff…

I think it’s both interesting and important. The mechanics of feeds and API-s are interesting. And as time goes by, we’ll surely need more solutions for collecting, dissecting, transforming, archiving and reposting information.

But wait, there’s more

Reposter pretty much does what I said in the original motivation post. One thing that’s got a bit more specific since then is what I call entry transformers. I call them like this because it’s a cool name and the movie is coming out soon. And the transformers do exactly that – they transform the feed entries.

Allow me to try to explain. So let’s say you’ve got this Twitter feed from yourself or from your friends. By default, it’s not very interesting because it only has text. But Twitter has these fun little profile pictures. And if you’ve already got an URL for a twit from anyone, you can go and pull the picture out of there, and also repost it on your own site to make things a bit more, as they say, “interactive” and “entertaining”. I’m a big fan of pictures so this is why I did this Twitter pictures thing.

Or, if you have a Youtube feed, you have a bunch of URL-s and titles. If you only posted that on your site, it wouldn’t be so interesting because you’d still have to go to Youtube to play the video. But since all the info needed to construct the embedded video is already in the URL, you can have a little transformer that recreates the embedded video player code right then and there. And it’s much simpler than Twitter because it doesn’t need to fetch anything from anywhere. One thing that’s currently missing from the Youtube transformer, though, is more metainfo, like the description and post date and author and all that. I didn’t think it was necessary so I didn’t include it in my own transformer.

I branched out this entryTransformer stuff into a separate class because it’s useful on its own and in other projects, too. You may need to repost things in various settings and if you find entryTransformer useful for it, you’re welcome to use it. I’m using it from my Reposter as you could do from any other script.

What’s next.

You could do many more things with this. Here’s what I’m thinking of…