Plugins: Simple Plugins to Build - nilakshdas/ThinkUp GitHub Wiki
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;