-
Notifications
You must be signed in to change notification settings - Fork 16
/
people.js
110 lines (110 loc) · 2.23 KB
/
people.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
var people = [
{
firstName: "Adam",
lastName: "Collins",
picture: "Pictures/Adam.png",
githubUsername: "obuadam",
},
{
firstName: "Kimberly",
lastName: "Collins",
picture: "Pictures/Kimberly.jpg",
githubUsername: "kacollins",
},
{
firstName: "Charlie",
lastName: "Rogers",
picture: "Pictures/Charlie.jpg",
githubUsername: "MisterC-Rogers",
},
{
firstName: "Alex",
lastName: "Ayon",
picture: "Pictures/Alex.jpg",
githubUsername: "alex-code4okc",
},
{
firstName: "Tanner",
lastName: "Smith",
picture: "Pictures/Tanner.jpg",
githubUsername: "stephentannersmith",
},
{
firstName: "Chris",
lastName: "Tse",
picture: "Pictures/Chris.jpg",
githubUsername: "chris-tse",
},
{
firstName: "John",
lastName: "Jordan",
picture: "Pictures/JohnJ.jpg",
githubUsername: "john-jordan",
},
{
firstName: "Mandi",
lastName: "Howell",
picture: "Pictures/MandiH.jpg",
githubUsername: "allst896",
},
{
firstName: "Andre",
lastName: "Butler",
picture: "Pictures/Andre.png",
githubUsername: "abutler6588",
},
{
firstName: "Ryan",
lastName: "Johnson",
picture: "Pictures/Ryan.jpg",
githubUsername: "",
},
{
firstName: "Matthew",
lastName: "Lee",
picture: "Pictures/MatthewL.jpg",
githubUsername: "mwlee29",
},
{
firstName: "Michael",
lastName: "Smith",
picture: "Pictures/MichaelSmith.jpg",
githubUsername: "smwa",
},
{
firstName: "Sam",
lastName: "Carlton",
picture: "Pictures/Sam.jpg",
githubUsername: "ThatGuySam",
},
{
firstName: "Cal",
lastName: "Corbin",
picture: "Pictures/Cal.jpg",
githubUsername: "CalCorbin",
},
{
firstName: "Kyle",
lastName: "Enderland",
picture: "Pictures/Kyle.jpg",
githubUsername: "KyleEnderland",
},
{
firstName: "Erich",
lastName: "Keil",
picture: "Pictures/Erich.jpg",
githubUsername: "zenlex",
},
{
firstName: "Anthony",
lastName: "Hudspeth",
picture: "Pictures/Anthony.jpg",
githubUsername: "ahudspeth199",
},
{
firstName: "James",
lastName: "Deaton",
picture: "Pictures/James.jpg",
githubUsername: "okjed",
},
];