Category Archives: wordpress

WordPrss – Subscribing to feeds is done

I’ve been plugging away at WordPrss on hacknights and subway rides and I have some progress to show for it.

I can show a feed, and shortcut keys help you navigate backwards and forwards through them. Clicking on a feed marks it as read. By default we hide read items, but you can always show them if you want.

You can manage the details of individual feeds – you can rename them etc.

Adding new feeds works and while I was at it I put in feed autodiscovery. Say you want to subscribe to a site but you just have the URL for the site.

Wordprss will do its best to figure out what feeds the site offers.

Choose one and away you go!

Now that this bit is done I’ll be working on getting the updating to work properly. Soon I’ll be ready to install it up on a server. Just got to sort through security and make sure the upgrade process is sorted…

WordpRSS Status Update: pretty sweet

Current image of wordprssI’ve been using my kaizen hack time to work on a social feed reader for WordPress. Right now, here’s what it can do:

  • Install itself and set up database tables
  • Put in a few sample feeds
  • Pull feed entries down into the database.
  • Display the list of feeds
  • When you select a feed, display the items

Continue reading WordpRSS Status Update: pretty sweet

Read feeds, when you see something you want to share, hit blog

A few Wireframes for Wordprss

I had an idea a while back that WordPress is missing  a good built in feed reader.  Seems to me that Blog+Microblog+Image Gallery + feedreader + email – Freedom = Facebook.  WordPress has built up the ability to do a blog, a microblog, and post your pictures.  Everybody already has email, Facebook just has your contact list more than everything else does.  What you need is a good feed reader where your write – for inspiration, and because the web is a conversation, natch.

Here’s a quick mockup, mainly coming from my experiences with TT-RSS and Google Reader. Now, I’d really appreciate some help here – the idea is that this would something for more than just me. So, if you want, you can download Pencil Sketching – the wireframe app that I’ve used to make these wireframes. It is free and open source! You can then open up this file with all the sketch information – or clone it on github!

Read feeds, when you see something you want to share, hit blog

Tags? Folders? All at once?

Project Idea: Context Free or Processing Header Plugin for WordPress

An iteration or so of the website ago I hacked in a random art generator into the background of the title of my website using ContextFree.js by Aza Raskin.  It was a cool little hack, but what would be really nice is to make it shareable.

I’d like a WordPress Plugin that finds the heading of your website and inserts a little Canvas element, includes either processing.js or contextfree.js and picks a sketch, then plops it in the background of your website’s title.  How cool would that be?

How to show WordPress page hierarchies

Got a request for help from some the Eyebeam list. 1 The folks organizing the Urban Wilderness Action Center for the international Electrosmog festival 2 wanted some usability help.  Navigating between subpages of their projects was too confusing.

If you like the way the sub pages are listed out on, say, the Berlin Micro-Turf Expedition – here you go.

<?php
// Does this even have a parent?
if($post->post_parent) {
$parent_title = get_the_title($post->post_parent);
?>
<a href="<?php echo get_permalink($post->post_parent) ?>"><?php echo $parent_title;?></a>:
<?php } ?>
<?php
//ok let's find our sibling pages, but we don't need to list the current page
if ( ($post->post_parent) && (get_post($post->post_parent)->post_parent) )
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&exclude=".$post->ID."&echo=0");
else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children) { ?>
<ul style="display:inline">
<?php echo $children; ?>
</ul>
<?php } ?>
  1. The Eyebeam folks are doing a cool skillshare on how “Tools and Models for Online Collaboration”  (back)
  2. It starts March 20th!  It’s completely free!  Go!   (back)

Project Idea: AutoThemer

Blame Carly for bringing this up. 1

I’m terrible at color schemes.   I have a coder’s idea of color.  Sure, people have written careful articles explaining how to pick a color scheme.  Sure there’s even a website that helps you pick color schemes.

But why not make it easier, and have a wordpress plugin that does it for me? Continue reading Project Idea: AutoThemer

  1. Not on identi.ca?  You should be.   (back)