-
Notifications
You must be signed in to change notification settings - Fork 700
/
data.js
332 lines (327 loc) · 7.1 KB
/
data.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
var numbers = [10, 7, 2, 4, 6, 14, 5, 82, 25, 30, 100, 246];
var fruits = [
'apple',
'banana',
'strawberry',
'starfruit',
'pear',
'lemon',
'lime',
'blueberry',
'cherry',
'apricot',
'blackberry',
'coconut',
'grape',
'orange',
'pineapple',
'peach',
'papaya'
];
var desserts = [
{
name: 'Chocolate Cake',
ingredients: ['cocoa', 'flour', 'sugar', 'eggs', 'milk', 'butter' ],
type: 'cake'
},
{
name: 'Snickerdoodles',
ingredients: ['flour', 'milk', 'butter', 'eggs', 'sugar', 'cinnamon', 'cream of tartar'],
type: 'cookie'
},
{
name: 'Strawberry-Rhubarb Pie',
ingredients: ['flour', 'water', 'eggs', 'sugar', 'strawberries', 'rhubarb'],
type: 'pie'
},
{
name: 'Lemonade',
ingredients: ['water', 'sugar', 'lemons'],
type: 'drink'
},
{
name: 'Chocolate Chip Cookies',
ingredients: ['flour', 'butter', 'sugar', 'eggs', 'chocolate chips'],
type: 'cookie'
},
{
name: 'Apple Pie',
ingredients: ['flour', 'water', 'cinnamon', 'apples', 'sugar'],
type: 'pie'
},
{
name: 'Apple Pie',
ingredients: ['flour', 'water', 'cinnamon', 'apples', 'sugar'],
type: 'pie'
},
{
name: 'Angel Food Cake',
ingredients: ['flour', 'eggs', 'sugar', 'cream of tartar'],
type: 'cake'
}
];
var groceries = [
{
id: 1,
product: 'Olive Oil',
price: '$' + 12.1
},
{
id: 2,
product: 'Tomato Soup',
price: '$' + 3.48
},
{
id: 3,
product: 'Cheesecake',
price: '$' + 17.36
},
{
id: 4,
product: 'Sirloin Steak',
price: '$' + 14.8
},
{
id: 5,
product: 'Brie Cheese',
price: '$' + 23.28
},
{
id: 6,
product: 'Ground Beef',
price: '$' + 1.44
},
{
id: 7,
product: 'Tofu',
price: '$' + 11.11
},
{
id: 8,
product: 'Lentils',
price: '$' + 21.77
},
{
id: 9,
product: 'Cola, 12pk',
price: '$' + 22.58
},
{
id: 10,
product: 'Skittles',
price: '$' + 3.79
},
{
id: 11,
product: 'Flour - White',
price: '$' + 5.59
},
{
id: 12,
product: 'Sauce - Pizza',
price: '$' + 9.23
},
{
id: 13,
product: 'Whole Milk, Gallon',
price: '$' + 6.43
},
{
id: 14,
product: 'Butter',
price: '$' + 5.11
},
{
id: 15,
product: 'Bread - Wheat',
price: '$' + 15.91
},
];
var movies = [
{
title: 'Back to the Future',
releaseYear: 1985,
rating: 8.5,
genre: ['Adventure', 'Comedy', 'Sci-fi'],
runtime: 116
},
{
title: 'Star Wars',
releaseYear: 1977,
rating: 8.6,
genre: ['Action', 'Adventure', 'Fantasy'],
runtime: 121
},
{
title: 'Titanic',
releaseYear: 1997,
rating: 7.8,
genre: ['Drama', 'Romance'],
runtime: 194
},
{
title: 'The Wizard of Oz',
releaseYear: 1939,
rating: 8.0,
genre: ['Adventure', 'Family', 'Fantasy'],
runtime: 102
},
{
title: 'Casablanca',
releaseYear: 1942,
rating: 8.5,
genre: ['Drama', 'Romance', 'War'],
runtime: 102
},
{
title: 'Pulp Fiction',
releaseYear: 1994,
rating: 8.9,
genre: ['Crime', 'Drama'],
runtime: 154
},
{
title: 'The Shining',
releaseYear: 1980,
rating: 8.4,
genre: ['Horror', 'Drama'],
runtime: 146
},
{
title: 'The Avengers',
releaseYear: 2012,
rating: 8.0,
genre: ['Action', 'Adventure', 'Sci-fi'],
runtime: 143
},
{
title: 'Toy Story',
releaseYear: 1995,
rating: 8.3,
genres: ['Animation', 'Adventure', 'Comedy'],
runtime: 81
},
{
title: 'The Dark Knight',
releaseYear: 2008,
rating: 9.0,
genres: ['Action', 'Crime', 'Drama'],
runtime: 152
},
];
var tweets = [
{
"user": "douglascalhoun",
"message": "that wizard overhauled this worm #techlife",
"createdAt": "2022-09-05T21:39:19.281Z",
"profilePhotoURL": "./assets/img/user-3.png"
},
{
"user": "douglascalhoun",
"message": "completely overhauled this security system #sxsw",
"createdAt": "2022-09-06T02:39:19.281Z",
"profilePhotoURL": "./assets/img/user-3.png"
},
{
"user": "mracus",
"message": " formulated that cat ",
"createdAt": "2022-09-06T07:39:19.281Z",
"profilePhotoURL": "./assets/img/user-2.png"
},
{
"user": "douglascalhoun",
"message": "productively deployed my koolaid for real",
"createdAt": "2022-09-06T12:39:19.281Z",
"profilePhotoURL": "./assets/img/user-3.png"
},
{
"user": "mracus",
"message": " delegated your belief system #burningman",
"createdAt": "2022-09-06T17:39:19.281Z",
"profilePhotoURL": "./assets/img/user-2.png"
},
{
"user": "shawndrost",
"message": "completely enjoyed the way of life ",
"createdAt": "2022-09-06T22:39:19.281Z",
"profilePhotoURL": "./assets/img/user-0.png"
},
{
"user": "shawndrost",
"message": " aided my worm ",
"createdAt": "2022-09-07T03:39:19.281Z",
"profilePhotoURL": "./assets/img/user-0.png"
},
{
"user": "sharksforcheap",
"message": " experienced the bad decision but only i know how",
"createdAt": "2022-09-07T08:39:19.281Z",
"profilePhotoURL": "./assets/img/user-1.png"
},
{
"user": "douglascalhoun",
"message": "efficiently installed an entire koolaid #sf",
"createdAt": "2022-09-07T13:39:19.281Z",
"profilePhotoURL": "./assets/img/user-3.png"
},
{
"user": "shawndrost",
"message": "the president automated the big system but only i know how",
"createdAt": "2022-09-07T18:39:19.281Z",
"profilePhotoURL": "./assets/img/user-0.png"
},
{
"user": "douglascalhoun",
"message": "a seedy old man invented my city #yolo",
"createdAt": "2022-09-07T23:39:19.281Z",
"profilePhotoURL": "./assets/img/user-3.png"
},
{
"user": "sharksforcheap",
"message": " interfaced the big potato ",
"createdAt": "2022-09-07T23:39:20.431Z",
"profilePhotoURL": "./assets/img/user-1.png"
},
{
"user": "mracus",
"message": "ask me how i systematized the big mind #techlife",
"createdAt": "2022-09-07T23:39:20.977Z",
"profilePhotoURL": "./assets/img/user-2.png"
},
{
"user": "sharksforcheap",
"message": " debugged the big life #sf",
"createdAt": "2022-09-07T23:39:21.416Z",
"profilePhotoURL": "./assets/img/user-1.png"
},
{
"user": "shawndrost",
"message": " downloaded the money #burningman",
"createdAt": "2022-09-07T23:39:22.259Z",
"profilePhotoURL": "./assets/img/user-0.png"
},
{
"user": "mracus",
"message": "just navigated your koolaid ",
"createdAt": "2022-09-07T23:39:23.233Z",
"profilePhotoURL": "./assets/img/user-2.png"
},
{
"user": "mracus",
"message": "just enjoyed the big cloud for real",
"createdAt": "2022-09-07T23:39:24.329Z",
"profilePhotoURL": "./assets/img/user-2.png"
},
{
"user": "mracus",
"message": "last night i delegated the worm ",
"createdAt": "2022-09-07T23:39:24.645Z",
"profilePhotoURL": "./assets/img/user-2.png"
},
{
"user": "shawndrost",
"message": " developed the cloud ",
"createdAt": "2022-09-07T23:39:25.694Z",
"profilePhotoURL": "./assets/img/user-0.png"
},
];