Post Shared Google Reader items in Wordpress

July 3rd, 2008 at 05:00pm

You might be wondering what these “Shared” posts are. Most of my web surfing consists of reading my RSS subscriptions in Google Reader, all 146 of them. On a given day I might find one or two things that I think other people would want to read. Google Reader lets you share items with your “friends”, but there’s no way to have a discussion about the content.

A while back I was trying to figure out a way to share those “shared” items with a wider audience. I stuck a link in the sidebar to my shared item page, but I doubt anybody uses it. What I really wanted to do was have Wordpress automatically create posts with a link to the content I mark in Google Reader. The WP-o-matic plugin does exactly what I want.

Setting up the plugin involves creating a CRON job on the server and setting up a feed to check periodically. You can customize the content of the post that gets created; I opted for a little blurb and a link to the content. I wanted to modify the title that gets created which isn’t an available option so I modified the plugin to do that for me. I also set it to save posts as drafts so I can assign a category and tags and maybe some of my thoughts before Google Reader gets a hold of it and caches it forever.

So these shared posts are really the cream of the crop of my subscriptions and I’d love to have people share things they find. I like the fact that whenever shared items show up in Google Reader from my friends they are of high quality and worth the read even though it might be outside my immediate area of interest.

Tagged with: , , , , ,
Posted under: Geek Stuff

2 comments »


Web host migration complete

May 30th, 2008 at 05:00pm

Finished moving myself, The Blarg and Mike over to the new host. We’ve got lots of space and bandwidth so just have to find something to do with it. If anyone is getting tired of their Blogger or Wordpress.com blogs and wants more flexibility I can hook you up. Blogger’s commenting system sucks so I would be happy to help migrate any converts.

Tagged with: , ,
Posted under: Geek Stuff

4 comments »


Tags and Categories

May 7th, 2008 at 05:02pm

Tags have become a big part of Wordpress. Back in the day we had categories and that’s it. A user could search the site for keywords, but categorizing a post couldn’t be accomplished without a ton of categories. Recently I added a bunch of categories, reassigned my posts into them and ended up with a lot of categories with only a few posts in them. I had been resisting the movement towards tagging and wanted to hold onto my categories. In WP 2.5 tags have been integrated into the core and it is clear there is a role for tagging.

The main issue I was having with categories is that I was using them to say what a post is about. For example, if I had a post about our wedding, it went in the Wedding category. But once our wedding was over I had like 10 posts sitting in a category that would never be added to. With tags I can place those posts into “Life Stuff” and tag it with wedding. The category becomes a general bucket and the tags describe exactly what the post is about.

I’ve made some theme changes and added a list of tags on each post. I went back through all my posts, recategorized them into my core categories and added tags. Now I have 8 categories and over 100 tags which will be much easier to manage and will keep me from trying to stuff my posts into overly specific categories.

Tagged with: , , ,
Posted under: Geek Stuff

2 comments »


I Banish Thee Category “Uncategorized”

January 3rd, 2008 at 05:00pm

I went through my posts and found that more than half of them were simply dumped in the “Uncategorized” category that comes with Wordpress. I realized that I didn’t like my categories and they were actually obstacles to me posting. I went through and added categories for what I had posted and want to post about in the future. I ditched a few and added catchall categories like “Life” and “Geek” to cover some of those miscellaneous posts. Also any post with a picture I took got stuck in “Photography”. I guess my New Year’s resolution for 2008 is to make my blog more interesting and cover more topics that I enjoy. For example, I love movies, but it seems I haven’t posted once about them. The Movies category is empty and having it there will encourage me to post on that specific topic.

Tagged with: , ,
Posted under: Geek Stuff

Add comment »


Sorry if my blog thought you were a spammer

December 7th, 2007 at 05:14pm

I use the plugin Bad Behavior on top of Aksimet to stop spam on my blog and something went strange with the old version I have; a blacklist started coming back with false positives but it has been fixed. So if you couldn’t post a comment try again.

Tagged with: , ,
Posted under: Geek Stuff

3 comments »


Blog Activity

November 30th, 2007 at 04:02pm

I’m impressed, I couldn’t keep up with everyone’s blog posts and comments and ended up with a good list of about 80 items to go through from the past 3 days. Got busy upgrading my computer and getting ready to build a media server/HTPC. With so much activity it is definitely important to use an RSS reader like Google Reader which I outlined here.

Tagged with: ,
Posted under: Geek Stuff

5 comments »


Stopping Wordpress Comment Spam Before It Starts

January 14th, 2007 at 11:05am

My blog isn’t terribly popular but I do have a good number of links to my plugins which has made me a more visible target for comment spammers. The built-in Wordpress spam filter does a pretty good job but it does nothing to stop bots from hammering my blog and eating up bandwith. One of my friends in my extended blog network had a post that tipped me off to a more active method of spam prevention, Bad Behavior.

Bad Behavior works by analyzing the HTTP requests made by clients and running them through a set of tests like checking the user agent description. Before installing the script I was receiving about 200 spam comments per day and maybe 1 or 2 would slip through per week. Now I’ll get maybe 1 a day in my spam queue. Not sure how much this affects the bandwith the spammers are using but it will definetely save a little on database.

Tagged with: , ,
Posted under: Geek Stuff

2 comments »


Blog facelift

September 9th, 2006 at 04:32pm

Things were getting a little old around the blog so I spruced things up a bit. Ditched the nav bar across the top, it was a bit of a pain to work with. Put login stuff in the sidebar like Nathan has on the Blarg, RSS buttons down at the bottom (which you should use, if you don’t know how or why please ask) and a thing for my flickr account. There should be more changes and more posts coming.

Tagged with: , ,
Posted under: Geek Stuff

6 comments »


Wordpress - Sidebar Static Page Order

March 15th, 2006 at 06:20pm

I got an e-mail today from someone who found my My Link Order plugin but wanted to order his pages instead. At first I wasn’t completely sure if you could but a quick look at the core files, database, and WP site answered that question.

Yes, you can set the order in which pages show up in your sidebar, but it is a little clunky. When you edit a page, there is an option to set the “Page Order” to a certain number (in WP 2.0 this is one the collapsable boxes). Now follow these steps:

  1. Set the Page Order on each page in your desired order.
  2. Check if that changes the order, if not you will need to make a change to your template to tell it to sort on that order instead of by name.
  3. Go to Presentation->Theme Editor and select the Sidebar page (I’m assuming this is where your list of pages is being displayed). Find the line that is using a function named wp_list_pages, the whole line should look something like this:<?php wp_list_pages(’title_li=<h2>Pages</h2>’ ); ?>

    A parameter to tell it to sort by your order needs to be added:

    <?php wp_list_pages(’title_li=<h2>Pages</h2>&sort_column=menu_order’ ); ?>

With that added your pages should now be sorted. I might create a plugin similar to My Link Order to handle the setting of orders because the current way is annoying and very very very user-unfriendly.

Tagged with: ,
Posted under: Geek Stuff

5 comments »


Modified the Blix template

November 10th, 2005 at 01:08am

Well if you have visited my site sometime before this evening, you should notice a very different layout and color scheme. I spent a good part of the night getting it put together and there is still lots of work to do. The comments page is still using the old color scheme but that will be fixed eventually. I’m going to hopefully get this template cleaned up real nice and polished and release for others to download and use.

Tagged with: ,
Posted under: Geek Stuff

6 comments »

Previous Posts


RSS Feed of Posts RSS Feed of Comments Get Firefox Wordpress