me, 2.0: jose nazario
beauty and the street

#!/usr/bin/env python
# a mission statement Phrase-O-Matic generator, in python # based on http://headrush.typepad.com/creating_passionate_users/2005/03/do_your_users_k.html
import random r = random.Random()
s1 = ["24/7", "multi-Tier", "30,000 foot", "B-to-B", "win-win", "front-end", "web-based", "pervasive", "smart", "six-sigma", "critical-path", "mission-critical", "dynamic", "synergistic", "proprietary", "heterogeneous", "scalable", "change-capable"] s2 = ["empowered", "sticky", "valued-added", "oriented", "centric", "distributed", "clustered", "branded","outside-the-box", "positioned", "networked", "harnessed", "focused", "leveraged", "aligned", "targeted", "shared", "cooperative", "accelerated", "best-of-breed","fault-tolerant"] s3 = ["process", "tipping point", "solution", "architecture", "core competency", "strategy", "mindshare", "portal", "space", "vision", "paradigm", "mission","thought leadership", "infrastructure", "life-cycle"]
x = r.randint(0, len(s1) - 1) y = r.randint(0, len(s2) - 1) z = r.randint(0, len(s3) - 1)
print "What we need is a %s %s %s" % (s1[x], s2[y], s3[z])
next Tuesday, Mar 22, 2005 @ 06:59am | previous Sunday, Mar 20, 2005 @ 12:53pm | archives
| Last modified: Monday, Mar 21, 2005 @ 07:06am |
copyright © 2002-2005 jose nazario, all rights reserved.