/usr/lib/python2.7/dist-packages/gplugs/buzz.py is in gozerbot 0.99.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61  | # gozerplugs/buzz.py
#
#
__author__ = 'unknown'
from gozerbot.commands import cmnds
from gozerbot.examples import examples
from gozerbot.plughelp import plughelp
from gozerbot.tests import tests
plughelp.add('buzz', 'create a buzz word')
from random import randint
verb = ["implement","utilize","integrate","streamline","optimize",
	"evolve","transform","embrace","enable","orchestrate","leverage",
	"reinvent","aggregate","architect","enhance","incentivize","morph",
	"empower","envisioneer","monetize","harness","facilitate","seize",
	"disintermediate","synergize","strategize","deploy","brand","grow",
	"brand","grow","target","syndicate","synthesize","deliver","mesh",
	"incubate","engage","maximize","benchmark","expedite","reintermediate", 
	"expedite","reintermediate","whiteboard","visualize","repurpose",
	"innovate","scale","unleash","drive","extend","engineer",
	"revolutionize","generate","exploit","transition","e-enable","iterate",
	"cultivate","matrix","productize","redefine","recontextualize"]
adj = ["clicks-and-mortar","value-added","vertical","proactive",
	"robust","revolutionary","scalable","leading-edge","innovative",
	"intuitive","strategic","e-business","mission-critical","sticky",
	"one-to-one","24/7","end-to-end","global","B2B","B2C","granular",
	"frictionless","virtual","viral","dynamic","24/365","best-of-breed",
	"killer","magnetic","bleeding-edge","web-enabled","interactive",
	"dot-com","sexy","back-end","real-time","efficient","front-end",
	"distributed","seamless","extensible","turn-key","world-class",
	"open-source","cross-platform","cross-media","synergistic",
	"bricks-and-clicks","out-of-the-box","enterprise","integrated",
	"impactful","wireless","transparent","next-generation","cutting-edge",
	"user-centric","visionary","customized","ubiquitous","plug-and-play",
	"collaborative","compelling","holistic","rich"]
noun = ["synergies","web-readiness","paradigms","markets","partnerships",
	"infrastructures","platforms", "initiatives","channels","eyeballs",
	"communities","ROI","solutions","e-tailers","e-services","action-items",
	"portals","niches","technologies","content","vortals","supply-chains",
	"convergence","relationships", "architectures","interfaces","e-markets",
	"e-commerce","systems","bandwidth","infomediaries","models","mindshare",
	"deliverables","users","schemas","networks","applications","metrics",
	"e-business","functionalities","experiences","web services",
	"methodologies"]
def rarr(arr):
   return randint(0,len(arr)-1)
def handle_buzz(bot, ievent):
   ievent.reply("%s %s %s" % (verb[rarr(verb)],adj[rarr(adj)],noun[rarr(noun)]))
cmnds.add('buzz', handle_buzz, 'USER')
examples.add('buzz', 'generate buzz', 'buzz')
tests.add('buzz')
 |