Hey there, I'm Wynn!
I'm a front-end designer & developer, CSS & JavaScript framework fanboy Razorback living in Texas.
Featured
-
Recently
Archives
Links
The Changelog – Open Source moves fast. Keep up.- cartagen - Client side framework for creating vector maps in HTML5
- NoRM - Bringing MongoDB to .NET, LINQ, and Mono
- Episode 0.1.6 - Ajax.org frameworks with Ruben Daniels and Rik Arends
- Git clone some nostalgia - NCSA Mosiac
- Ghost means never having to touch /etc/hosts again
- Prism - command line and Ruby library parser for Microformats
- Pull! Skeet - Twitter Extension for Google Chrome
- QR - Easy Redis queues with Python
- Faye - dirt simple pub/sub for Rack and Node.js
- FOWA 2010: David Recordon on Facebook Open Source Projects






New in the Twitter gem: Lists!
I believe Twitter’s new list feature is big. In fact, I like the idea so much we built our own list of US congressfolk last year. Now, opportunities abound for everyone to share their favorite tweeters in topical lists.
While the Lists API is still in
alphadraft status, I couldn’t resist baking in some of these new features into the Twitter gem from John Nunemaker.What’s new
New in version 0.7.0 is the ability to:
Some examples
# authenticate via basic auth httpauth = Twitter::HTTPAuth.new('username', 'password') client = Twitter::Base.new(httpauth) # get all my lists client.lists('pengwynn') # get list info list = client.list('pengwynn', 'rubyists') pp list.member_count # => 2 # view all the members for a list client.list_members('pengwynn', 'rubyists')So if you’ve got plans of incorporating Twitter lists into your Ruby app,
gem install twitterand get busy!Related posts: