做一个Paul Graham机器人
如果你看过Y Combinator创业孵化班全景揭秘,或者从其他什么渠道了解过,你就知道YC在接受创业公司面试时,时间是10分钟,并且一般都不到10分钟,在这期间,Paul Graham会问一些几乎每个创业者都会被问到的经典问题。
今天有人写了一个测试版的机器人程序,让机器人代替Paul Graham来问这些问题:
(defparameter *phrases*
'("Who needs it?"
"Who uses it?"
"Who *really* needs it?"
"What problem does this solve?"
"Does that problem *really* need to be solved?"
"What is the worst problem in your life?"
"In any given day, how many people use it? Do they return?"
"What do you do for them once they get to your site?"
"Why do they need you? What's special about you?"
"Beat a chicken and egg problem with a tiny subset of the market that's small but *driven*."
"No, who *needs* it?"))
(defun random-elt (seq)
(elt seq (random (length seq))))
(defun answer (prompt)
(declare (ignorable prompt))
(random-elt *phrases*))
但是我想每个创业者都应该用这些问题问问自己:
谁需要它?
谁使用它?
谁“真的”需要它?
它解决了什么问题?
这个问题“真的”需要被解决么?
你生命中最坏的问题是什么?
平时有多少人使用它?他们会成为回头客么?
他们到你的网站上之后你能为他们做什么?
为什么他们需要你?你有什么特别的?
事情没有绝对的,除了这些问题,你可能还有5个问题会被问到。
Good Luck!
您可能也喜欢: |
Paul Graham在寻找什么样的人? |
Paul Graham 与 Joel Spolsky 的10个不同点 |
机器人产业的里程碑:PR2上市销售 |
Paul Graham:我们需要这样的创业者 |
新版“吸油”记:MIT开发出自动清理水面浮油的机器人 |
无觅 |