A little over a year ago I built ronin.tehcrowd.com as a way of learning python/django.
Tehcrowd aggregates status updates for groups. Read more at tehcrowd.com/secret/. Here's an example crowd: http://ronin.tehcrowd.com/crowd/top-rubyists/. I never really launched this site because:
a) Similar sites have recently launched and
b) It's yet another twitter app.
I'm sure there's something cool that could be done with this project. I'd love to see tehcrowd go live. So here's the deal: Post why you should get the project and I'll give the domain and code (no strings attached) to the highest rated submission.
No trolls please.
=======
EDIT: The neatest part of this site was my algorithm for filtering tweets. Each tweet was ranked based on several variables: user follower/following ratio, number of tweets by that user, number of "relevant" terms in the tweet, whether that user is tweeting at another member in the crowd.
I.e: A user with a high follower/following ratio and a low number of total tweets is less spammy and their tweets were ranked higher. Or if a user tweeted at another twitter user that's also in the crowd the tweet was deemded to be relevant and also ranked higher.
As more feeds were added to a crowd this filter became more strict thereby increasing the quality of the crowd.
There is a higher level problem - reading only certain kinds of tweets from certain groups of people. For e.g. I am interested only in tweets about Ruby from the Ruby people. Put this way, the solution is to simply filter on words related to ruby. But this is not powerful enough for the user to be able to say I am interested in any tweets about technology from the Ruby people. Now your dictionary will run into hundreds/thousands of words per group.
We are building a solution to this problem. In fact we don't have any twitter api code yet since we are focusing on the core logic first. This would be really useful to us.
Edit: plus we use django as well!
Re-edit: Your ranking algorithm for tweets is pretty cool. You asked why we should get the project. Here are the specific reasons:
1) We are building something useful that adds to your solution, something that (we believe) people want.
2) I have a strong background in text analysis and classification - it has been my bread and butter for almost 4 years now. (I'd be happy to go into specifics over email) My partner is a talented programmer, also from GaTech with a background in AI (among other things).
3) We use the same framework (python/django) so integration should be easy
4) Our weak point is a UI - our current UI is pure HTML, only functional not pretty, although we have a very good idea of how we want it to look. You have a better UI for twitter (which we will improve upon)