Skip to content

Instantly share code, notes, and snippets.

@mashiro
Created November 5, 2009 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mashiro/226885 to your computer and use it in GitHub Desktop.
Save mashiro/226885 to your computer and use it in GitHub Desktop.
ジャッジメントですの!
import sys
from Misuzilla.Applications.TwitterIrcGateway.AddIns.DLRIntegration import DLRIntegrationAddIn
def OnPreSendMessageTimelineStatus(sender, e):
e.Text = e.Text + "\tジャッジメントですの!"
def OnBeforeUnload(sender, e):
Session.PreSendMessageTimelineStatus -= OnPreSendMessageTimelineStatus
Session.PreSendMessageTimelineStatus += OnPreSendMessageTimelineStatus
CurrentSession.AddInManager.GetAddIn(DLRIntegrationAddIn).BeforeUnload += OnBeforeUnload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment