Skip to content

Instantly share code, notes, and snippets.

@himerzi
Last active December 28, 2015 18:39
Show Gist options
  • Save himerzi/7544317 to your computer and use it in GitHub Desktop.
Save himerzi/7544317 to your computer and use it in GitHub Desktop.
Different E.F. marketing thingies.
(cond
(>= ambition 90) (apply-to entrepreneurFirst)
(>= ambition 80) "something else"
(>= ambition 70) "something else"
(>= ambition 60) "etc..."
:else "F")
(case careerPath
"Founder" (apply-to entrepreneurFirst)
"Banker" (#Something else?#))
(case careerPath
"Founder" ((partial str "Entrepreneur First Startup Founder:"))
"Banker" (#Something else?#))
(apply-entrepreneur-first (filter (partial = "Hacker")
["Hacker" "Banker" "Something else...."]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment