Created
June 25, 2015 14:41
-
-
Save gardnervickers/a6f326e04c26597e8f0f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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 ["[email protected]" "[email protected]" "[email protected]"]) | |
: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