Login

Who's helping a lot in IRC

Author:
akaihola
Posted:
April 19, 2008
Language:
JavaScript
Version:
Not specified
Score:
0 (after 0 ratings)

We had some fun today on the #django IRC channel searching and counting through past logs for people saying "thanks" to a known very helpful person.

Here's a unix shell script for checking your own score if you're using Pidgin and have logging turned on.

Replace ".purple" with ".gaim" in the script if you're using Gaim (an older version of Pidgin).

1
2
3
4
5
6
7
8
9
#!/bin/sh
#
# django-thanks-score - count how many times someone thanked you
#                       on the #django IRC channel
#
# Usage: ./django-thanks-score <nickname>
#
LOGDIR=$HOME/.purple/logs/irc/*@irc.freenode.net/#django.chat
cat $LOGDIR/*.txt | egrep -ic "\) [^:]+:.*$1.*thank"

More like this

  1. Django Collapsed Stacked Inlines by applecat 1 year, 1 month ago
  2. Django Collapsed Stacked Inlines by mkarajohn 3 years, 3 months ago
  3. Dynamically adding forms to a formset. OOP version. by halfnibble 8 years, 11 months ago
  4. Convert multiple select for m2m to multiple checkboxes in django admin form by abidibo 11 years ago
  5. Django admin inline ordering - javascript only implementation by ojhilt 11 years, 4 months ago

Comments

Please login first before commenting.