Google Project Name Generator


#/usr/bin/env python
#
# This python script will take any idea and create an official Google name for it.
#

import sys
print ‘ ‘.join([’Open’] + sys.argv[1:] + [’Alliance’])

$ python foo.py Social
Open Social Alliance
$ python foo.py Mobile
Open Mobile Alliance
$ python foo.py Google Project Name Generator
Open Google Project Name Generator Alliance

Try making some of your own!


About this entry