Last active
August 29, 2015 14:06
Revisions
-
deanrad revised this gist
Sep 29, 2014 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,20 +2,20 @@ if(Meteor.isServer){ _.each(["Angelo Paramo", "Demarcus Drouin", "Suzie Magwood", "Caron Wilcoxo", "Orville Manns", "Tashia Taber", "Nickie Buchman", "Scotty Monette", "Clare Murillo", "Avis Adkisson", "Kizzie Delucia", "Onie Pettitt", "Maxie Copas", "Guillermo Vernon", "Wes Guardiola", "Pasty Poole", "Tammi Widger", "Alta Whisenhunt", "Millie Cronk", "Ashlee Hartgrove"], function(u){ -
deanrad revised this gist
Sep 26, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ if(Meteor.isServer){ _.each(["Angelo Paramo", "Demarcus Drouin", "Suzie Magwood", @@ -24,7 +24,7 @@ if(false && Meteor.isServer){ var email = uname + "@example.com"; var pwd = "password"; var uid = Accounts.createUser({ username: uname, email: email, password: pwd, -
deanrad created this gist
Sep 26, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,36 @@ if(false && Meteor.isServer){ _.each(["Angelo Paramo", "Demarcus Drouin", "Suzie Magwood", "Caron Wilcoxo", "Orville Manns", "Tashia Taber", "Nickie Buchman", "Scotty Monette", "Clare Murillo", "Avis Adkisson", "Kizzie Delucia", "Onie Pettitt", "Maxie Copas", "Guillermo Vernon", "Wes Guardiola", "Pasty Poole", "Tammi Widger", "Alta Whisenhunt", "Millie Cronk", "Ashlee Hartgrove"], function(u){ var uname = u.split(" ")[0][0] + u.split(" ")[1]; var dname = u.split(" ")[0][0] + " " + u.split(" ")[1]; var email = uname + "@example.com"; var pwd = "password"; Accounts.createUser({ username: uname, email: email, password: pwd, profile: { name: dname } }); }); }