I just added a few small enhancements to my FriendFeed iPhone app. It now shows only 10 items per page and lets you view more items a page at a time. It also now remembers the login cookie for 30 days or until you log out.
I’ve added some major enhancements to my FriendFeed web app (http://iphone-apps.net/ff). You can now add comments or like an item.
Clicking the ‘>’ at the bottom of an entry opens the comment form. Clicking the ‘+’ at the top of an entry marks that you like it. If you already like an entry, it will show [...]
I’ve added a few enhancements to my FriendFeed App for iPhone. It now makes links clickable and shows comments.
I’ve been getting really annoyed with FriendFeed on the iPhone, so I decided to whip up a quick web app. You can see the result at http://iphone-apps.net/ff. It only has minimal functionality - you can log in and view your friends, your items, or the public timeline.
Uploaded with plasq’s Skitch!
My FriendFeed cocoa classes are now fully functional except including media enclosures in posts. I ended up rewriting it to use NSXMLDocument rather than PSFeed, which doesn’t involve any more code and eliminates the dependence on PubSub.
Now that that’s done, I’m digging into the Pownce API. Pownce isn’t much more complemented, but it requires an [...]
Wednesday, April 23, 2008
I’ve implemented posting in my Cocoa FriendFeed class, and I ended up rewriting the fetch methods to use a NSURLConnection rather than PubSub. I’m now using a temporary PSFeed object to parse the received data rather than maintaining PSFeed objects for all requested feeds. I could probably use a NSXMLDocument, but PSFeed seems cleaner.
Here’s [...]
I’ve been playing with the FriendFeed API in Objective C, although I don’t have anything ready for public consumption yet.
Since the fetch methods basically work like RSS feeds, they can be handled easily using PubSub. Most of the code I had to write was to decode the entries returned into something more useful. The methods [...]