Skip to content

Plugins: Simple Plugins to Build

ginatrapani edited this page Sep 13, 2010 · 1 revision

Some simple plugin ideas worth implementing.

  • Data view plugin – See people you’ve gotten the most replies from in the last XXX months (use date of oldest reply)

SQL pseudo-code: select author_username, count(author_user_id) as total_replies from reply group by author_user_id order by total_replies desc limit 5;

  • Data view plugin – See people you reply to the most since (date of oldest tweet)

SQL pseudo-code: select u.user_name, count(t.in_reply_to_user_id) as total_replies from tweet t inner join user u on u.user_id = t.in_reply_to_user_id group by in_reply_to_user_id order by total_replies desc limit 10;

Clone this wiki locally