Skip to content

Instantly share code, notes, and snippets.

@hpoggie
Last active May 25, 2018 00:52
Show Gist options
  • Save hpoggie/b0cb43a0100ec04fc2c37f2e7d0b7f8a to your computer and use it in GitHub Desktop.
Save hpoggie/b0cb43a0100ec04fc2c37f2e7d0b7f8a to your computer and use it in GitHub Desktop.
Python script for generating tech project ideas
import random
"""
Generic project idea generator
"""
buzzwords = [
'cryptocurrency',
'blockchain',
'functional programming',
'cloud computing',
'big data',
'machine learning',
'deep learning',
'neural networks',
'uberization of %s',
'like google',
'exponential growth',
'startup',
'social engineering',
'gamification',
'virtual reality',
'open source',
'social justice',
'social good',
'revolutionary',
'nodejs',
'mongodb',
'distributed computing',
'drones',
'self driving %s',
'social network',
'agile',
'scrum',
'automation',
'3d printing',
'quantum computing',
]
print(" + ".join(
[buzzwords[random.randint(0, len(buzzwords)-1)] for i in range(2)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment