Skip to content

Instantly share code, notes, and snippets.

@gardnervickers
Created June 25, 2015 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gardnervickers/a6f326e04c26597e8f0f to your computer and use it in GitHub Desktop.
Save gardnervickers/a6f326e04c26597e8f0f to your computer and use it in GitHub Desktop.
(defn gen-contact-table
[size]
(mapv (fn [i]
{:name (str (rand-nth ["Gardner" "Mike" "Matt" "Jordan" "Vinny" "Jacob"])
" "
(rand-nth ["Vickers" "Heskie" "Dawson" "Carol" "Stark"]))
:email (rand-nth ["gardner@vickers.me" "test@test.com" "fakemail@inva.lid"])
:position (rand-nth ["floor-sweeper" "cart-pusher" "president"])
:company (rand-nth ["mcdonalds" "carousel" "medlyfe" "YoloCorp"])
:expertise [(rand-nth ["avaya" "nortel" "cisco" "alarmtraq"])
(rand-nth ["avaya" "nortel" "cisco" "solarwinds"])
(rand-nth ["avaya" "nortel" "cisco" "extreme"])]
:rate (rand-nth ["100" "200" "300" "400" "1000000"])
:title "Software Engineer"
:location (rand-nth ["9 Browning S.T. Wakefield RI 02879"
"695 South County Trail, Exeter RI"])
:pin {:lat nil
:lng nil}
:rating (rand-nth [1 2 3 4 5])
:phone "555-555-5555"
:motto "Whatever"
:background "aurora.jpg"
:picture "person.jpg"})
(range 1 (inc size))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment