File size: 25,504 Bytes
7a479d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
[
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "d&d",
        "modifier": 0,
        "message": "IMPORTANT ADDITION:  You do NOT need ANY experience or knowledge of D&D to join the one-shot campaign. R2 will walk you through everything you need to know. Don't be shy and join us! (edited)",
        "person": "Keri W",
        "postId": 2,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "availability",
        "modifier": 0,
        "message": "After the summer, then I will be more available.",
        "person": "Brad Merrell",
        "postId": 3,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "lunch and learn",
        "modifier": 0,
        "message": "@here L&L starting in 5 mins. If you are in the office, Feel free to come to RICE. AI Tutoring: Paving the Way to Better Tomorrows in Education\nhttps://teams.microsoft.com/l/meetup-join/19%3ameeting_MTg2OWRkYzgtYTdmOS00NTk4LWE4MmQ[\u2026]2c%22Oid%22%3a%22bca811aa-1982-4f3b-b602-bca1a89180dc%22%7d",
        "person": "Jay Patel",
        "postId": 4,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "anniversary",
        "modifier": 0,
        "message": "It's @Sam \u2019s 2 year Slalomversary. Sam, it's been a pleasure to be on a team with you and thanks for everything you do at _build, especially around the ERGs. Congratulations!",
        "person": "Manik",
        "postId": 5,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "anniversary",
        "modifier": 0,
        "message": "@Sam happy Slalomversary!",
        "person": "Naeem",
        "postId": 6,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "anniversary",
        "modifier": 0,
        "message": "Happy Slalomversary @Sam",
        "person": "Monika Rudra",
        "postId": 7,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "anniversary",
        "modifier": 0,
        "message": "Happy Slalomversary, my dear friend! @Sam :hugging_face:",
        "person": "\u028e\u05df\u05df\u01dd\u029e",
        "postId": 8,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "anniversary",
        "modifier": 0,
        "message": "Happy Slalomversary, @Sam! :partyblob:",
        "person": "David Bernal",
        "postId": 9,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "maintenance",
        "modifier": 0,
        "message": "FYI at 3:30 today, I'll be taking the Arcade machine down for maintenance.  It will actually remain down until next Wednesday morning as I work through some marquee configuration.  :dealwithit:",
        "person": "Doug Bowen",
        "postId": 10,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "build center tour",
        "modifier": 0,
        "message": "Thank you to everyone who came into the office yesterday in support of our Build Center tour for Woodside Energy and AWS. Special thanks to @Christy Nolan and @Danny Weldon for their support presenting \u201chow we work\u201d and \u201cwhat we\u2019re working on\u201d. We\u2019re well positioned to win work with the buyer at Woodside stating \u201cseveral consulting companies have pitched to me but nobody aligns better with my vision than Slalom does\u201d.",
        "person": "John Flaherty",
        "postId": 11,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "time sheets",
        "modifier": 0,
        "message": "Reminder: Time sheets!",
        "person": "Slackbot",
        "postId": 13,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Happy Friday",
        "person": "Naeem",
        "postId": 14,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "date night",
        "modifier": 0,
        "message": "Date night with my wife at the Sugar Land Space Cowboys game.",
        "person": "Steven Murray",
        "postId": 15,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Happy Father's day to all you _Builder Dads out there!",
        "person": "Naeem",
        "postId": 16,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Anyone had any cool gifts/activities for Father\u2019s Day?",
        "person": "Michelle Francisco",
        "postId": 17,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "National Cow Appreciation Day - @julie.lowe how are the cows? :slightly_smiling_face: :cow:",
        "person": "Michelle Francisco",
        "postId": 18,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "sunburn",
        "modifier": 0,
        "message": "I applied sunscreen poorly and have stripes of sunburn....",
        "person": "richard.hand",
        "postId": 19,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "shopping",
        "modifier": 0,
        "message": "My 3 year old daughter went to GAP and selected a flower print shirt for my husband - Nishank (I have never seen him wear flower print, till yesterday). She also bought candy 'to share'.",
        "person": "Mrinalini Shekhawat",
        "postId": 20,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "lunch order",
        "modifier": 0,
        "message": "@channel  Who's going in on Wednesday!? For lunch, We will be having lunch from Bellagreen. If want lunch please drop a  :lunch-bag: by EOD today. This will help me determine how much to order! Thank you:build_heart: Options Below , comes with chips and fresh fruit...",
        "person": "Ahmad Shareef",
        "postId": 21,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "error",
        "modifier": 0,
        "message": "Hey, what do we do if B.R.A.D. kicks back and error? @Ethan Bowen @Doug Bowen",
        "person": "Stanley Lee Bertrand",
        "postId": 22,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "build center tour",
        "modifier": 0,
        "message": "@channel Also happening on Wednesday is the Woodside Build Center Tour beginning at 9am. I would like to have as many Builders in the office as possible. Please make every effort to be on-site. Thank you.",
        "person": "John Flaherty",
        "postId": 23,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "builders",
        "modifier": 0,
        "message": "BuildersAssemblesmaller.png",
        "person": "Michelle Francisco",
        "postId": 24,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "etiquette",
        "modifier": 0,
        "message": "how to tell someone sitting behind you chewing ice from a solo cup that it is really on your nerves?   - asking for a friend",
        "person": "richard.hand",
        "postId": 26,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Please wish @Christy Nolan a happy 2 year Slalomversary!",
        "person": "Jason Riley",
        "postId": 28,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "@here Good morning everyone! We are having our CCC today in the rice room from 9:00-10:00am!",
        "person": "Alexa De La Garza",
        "postId": 29,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "session issues",
        "modifier": 0,
        "message": "Is anyone else getting signed out of their sessions from one day to the next? My Chrome tab that had a sharepoint open, logged me out, my Salesforce link, logged out... Anyone else?",
        "person": "Richard Hand",
        "postId": 30,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "identity",
        "modifier": 0,
        "message": "I am not @Richard Hand",
        "person": "Michelle Francisco",
        "postId": 31,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "lost items",
        "modifier": 0,
        "message": "UPDATE: They've been found! Thank you @Alexa De La Garza and @Josh Mascorro :meow_heart: If anyone sees/saw the wine bottles I won from the auction for Target Hunger can you please put them by Melanie\u2019s desk :melting_face: I think I left them by Rice where we were having karaoke or maybe even by the elevators.",
        "person": "Inez Escandon",
        "postId": 32,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "@here :alert-blue:calling all bakers!! Want to show off your skills & take on a challenge to be titled the best baker in the Houston Build Center?? Then enter The Great Build Bake Off!! :chefkiss::blob-birthdaycake::first_place_medal::blobwhee: We are doing Cakes this round:blob-birthdaycake:! Sign up HERE & bring your best slices on Wednesday, June 14th. More deets below :point_down: Please be sure to pre-cut the cake into bite-size, before the judging There will be a People\u2019s Choice and Judges\u2019 Choice as winners You do not need to be present during the judging time to enter. Bakeoff (2).png",
        "person": "Ahmad Shareef",
        "postId": 33,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "parking validation",
        "modifier": 0,
        "message": "@here Hello folks! B.R.A.D is working again if anyone in the office needs parking validation :brad-badge::blue_car:",
        "person": "Alexa De La Garza",
        "postId": 34,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "severe weather",
        "modifier": 0,
        "message": "Severe T storms just hit Northside. High winds, torrential downpour, and the traditional ceremonial power outage.",
        "person": "jmoney",
        "postId": 35,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "safety",
        "modifier": 0,
        "message": "Be safe!",
        "person": "Doug Bowen",
        "postId": 36,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "I call this \"lights-out grilled chicken nachos\"",
        "person": "jmoney",
        "postId": 37,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "@here Who's going in on Wednesday!? We will be having Tacos from Velvet Taco. If want lunch please drop a :taco: by EOD today:alert0:. This will help me determine how much to order! Thank you :build_heart: Buffalo Chicken - crisp tenders, house buffalo sauce, danish bleu cheese, ranch crema, carrots, micro celery, flour tortilla Picnic chicken - rotisserie chicken, avocado crema, warm honey-dijon potato salad, crispy chicken skin, cilantro, flour tortilla Mediterranean mushroom - grilled portobello mushrooms, french fries, cucumber, grilled heirloom tomatoes, dill, flour tortilla - Vegan Grilled salmon - napa slaw, citrus lime crema, pickled fresnos, roasted corn pico, avocado crema, micro cilantro, corn tortilla Side: Elote & chips- queso listo, Valentina, citrus lime crema, queso fresco, lime (edited)",
        "person": "Ahmad Shareef",
        "postId": 38,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "@here :ai:Hey HOU Build the second Hackathon Subject Matter Expert Series hosted by Carrick Carpenter, Miles Erickson and Etienne Ohl is this Wednesday, June 7th at 10:30am PT. Learn how to cruise quicker and securely with Generative AI! Check out the Hackathon events page.",
        "person": "Ahmad Shareef",
        "postId": 39,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "lunch-and-learn",
        "modifier": 0,
        "message": "My notebook indicates there was a lunch-and-learn on robert's rules of order today, but I don't see it on the calendar. Was it cancelled/rescheduled? I don't even see the invite in my email. (edited)",
        "person": "Robert Hailey",
        "postId": 40,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Also happening tomorrow~ Wednesday June 7th at 5pm sharp is BUILD KARAOKE NIGHT!!!! :celebrate::micdrop-boom::dancefloor: @here",
        "person": "Linh Ta",
        "postId": 41,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "illness",
        "modifier": 0,
        "message": "I'll miss WFWW with a cough and a fever :face_with_thermometer:",
        "person": "jmoney",
        "postId": 42,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "availability",
        "modifier": 0,
        "message": "BRAD is down this morning.",
        "person": "Steven Murray",
        "postId": 43,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "artistic project",
        "modifier": 0,
        "message": "Hey @channel, oddly specific request: If you\u2019re an artistic human who plays Pok\u00e9mon Go, please come find me when you have a little spare time. I\u2019ve got a fun project for you.",
        "person": "Melanie Halbert",
        "postId": 44,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "replied",
        "modifier": 0,
        "message": "replied to a thread: #greenshirts #nomemoneeded Well, we just had to! IMG_8782.JPG.jpg",
        "person": "Jane",
        "postId": 46,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "lost items",
        "modifier": 0,
        "message": "All thats left is shoes!!",
        "person": "Doug Bowen",
        "postId": 47,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "availability",
        "modifier": 0,
        "message": "Let\u2019s see who is up to the challenge @Doug Bowen",
        "person": "DataNinja",
        "postId": 48,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "arcade machine",
        "modifier": 0,
        "message": "Just FYI, our arcade machine (JOHN) is open for business! Let me know if you have any requests, concerns, or suggestions. For those asking, we have a digital marquee coming in the next few weeks and we'll be vinyl wrapping the cabinet closer to August (when our UX designer returns from leave) Have fun!",
        "person": "Doug Bowen",
        "postId": 49,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "@here Hope everyone had a restful 3-day weekend! Who's going in tomorrow!? We will be having Bowls from Genghis Grill. If want lunch please drop a :dumpling:  by EOD today:alert0:. This will help me determine how much to order!  Thank you :build_heart: Menu: Tofu 4 U Bowl - Tofu with dragon salt, yellow onions, broccoli, roasted bell peppers, roasted sesame garlic sauce, and white rice. Topped with toasted sesame seeds and green onions. Teriyaki Chicken - Chicken, broccoli, green onion, and pineapple in a sweet soy-ginger teriyaki sauce served with white rice. Topped with crunchy chow mein. Bangkok Bowl - Chicken, crushed red pepper, ginger, yellow & green onions, sugar snap peas, red bell peppers, carrots, and Udon noodles with a savory sauce. Topped with toasted sesame seeds and green onions. Supreme Fried Rice Bowl - Steak, chicken, and shrimp with fried rice (w/ yellow & green onions, red bell peppers, carrots, & egg).",
        "person": "Ahmad Shareef",
        "postId": 50,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "I\u2019ll take a Bangkok bowl!",
        "person": "Phillip Nguyen",
        "postId": 51,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Happy 6 year anniversary to the formation of Houston :_b: QE :celebrate-all: @Logan Le @Blake Bryce @King Khan",
        "person": "Blake Bryce",
        "postId": 52,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "Hey hey hey Houston! Hope you all had a relaxing and enjoyable 3-day weekend. Partners 4 Good will be building Worthy Bags Friday June 2 from 12-1pm 12:30-1:30pm. If you are interested in helping, reply here and I\u2019ll forward you the invite. Also, feel free to just stop by and help out. Hope to see you Friday! (edited)",
        "person": "Michelle Francisco",
        "postId": 53,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "@here a quick note, the first session of the Hackathon Subject Matter Expert Series with Bethany Mudd and Chris Samuels is tomorrow, May 31st at 10:30am PT. Learn how to reimagine the art of the possible with Generative AI:ai:. You can join by using the add to calendar function from the Hackathon events page.",
        "person": "Ahmad Shareef",
        "postId": 54,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "parking",
        "modifier": 0,
        "message": "@here Hey everyone! If you are currently at the Slalom office and drive a white Mercedes SUV (license plate OKPAKO), please move it immediately as it is parked in a reserved spot on Level 3 and will be towed if not moved by 1pm. giphy (4).gif",
        "person": "Ahmad Shareef",
        "postId": 55,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "image",
        "modifier": 0,
        "message": ":alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: I'M BACK :terminator: :derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws::alert0: :derreck_5_aws::ampersand: Can happily :happy-fox: :speaking_head_in_silhouette: Reeeport :bangbang: :alert0: :derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws: That the wrong :sadblob: has FINALLY been righted :face_exhaling: :derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws: I'VE RECEIVED :mailbox: MY SPECIALICZAR MEDALION :promptitude: :derreck_5_aws::alert0: :alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: IMG_3492.heic",
        "person": "derreck.stellpflug",
        "postId": 56,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "availability",
        "modifier": 0,
        "message": "Hello fellow builders, :brad-badge: BRAD :brad-badge: will be down for the rest of the month as he undergoes an external rework and final physical build.  Please ask the Ops team to validate your ticket in the mean time.  Thanks everyone!",
        "person": "Ethan Bowen",
        "postId": 57,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "Hi there - a few of us are meeting at RA Sushi for an impromptu happy hour! :cheers::kawaii-sushi: Join us - it's BYOD (Buy Your Own Drink)! :blob-wink:",
        "person": "Linh Ta",
        "postId": 58,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "relatable joy",
        "modifier": 0,
        "message": "Tell me this isn\u2019t relatable :joy: https://youtu.be/BKorP55Aqvg",
        "person": "Jane",
        "postId": 59,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "relatable joy",
        "modifier": 0,
        "message": "replied to a thread: Tell me this isn\u2019t relatable :joy:\u2026 A classic, alongside this one: https://www.youtube.com/watch?v=y8OnoxKotPQ",
        "person": "Stefano",
        "postId": 60,
        "themeSimilarity": "1.0"
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Happy 713 Day! image.png image.png",
        "person": "John Flaherty",
        "postId": 61,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "celebration",
        "modifier": 0,
        "message": "Happy birthday @Ray Lopez! H-Town and Prime days are Ray\u2019s Day. balloons.jpeg balloons.jpeg",
        "person": "Michelle Francisco",
        "postId": 64,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "event",
        "modifier": 0,
        "message": "Hey Houston fam!:flamingo-dance: Love community theater? :performing_arts: Enjoy supporting local arts? Check out Theatre Southwest's Festival of Originals (FOO)! :tada: Theatre Southwest is a hidden gem :gem: just a hop, skip, and jump from the Build Center. In a single show, catch 5 short original works by different playwrights, each with a different director and cast. FOO runs weekends from July 28 to August 12 :spiral_calendar_pad: More info and tickets are available at the TSW website. Don't miss out!",
        "person": "Keri W",
        "postId": 65,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "bring your kids",
        "modifier": 0,
        "message": "Next Friday - Bring Your Kids to Work Day Have your kiddos ever wondered what you do all day at work or wanted to see the office? Get ready for a fun time that will surely leave them wide-eyed with wonder and brimming with excitement! It\u2019s time to mark your calendars for our. Kindly fill out the RSVP link here by July 14th. Here are some additional things to know: Kid Age Range 6 -16 Parents must be involved during this time frame (this is not a babysitting event) Have some fun!",
        "person": "Michelle Francisco",
        "postId": 66,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "I love subway. I'm going to order 10 footlongs for the team. Please drop a :subway: if you want to join in. I'll be ordering at 11:30. Thanks",
        "person": "Doug Bowen",
        "postId": 67,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "Is it time for Blake to take the Milk Challenge?!?",
        "person": "Srijaya Suresh",
        "postId": 68,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "Did someone say MILK? @BlakeBryce?!?",
        "person": "Michelle Francisco",
        "postId": 70,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "Never drank milk.",
        "person": "Blake Bryce",
        "postId": 71,
        "themeSimilarity": 1
    },
    {
        "datetime": "2023-07-11 9:21 AM",
        "theme": "food",
        "modifier": 0,
        "message": "Blake should drink milk.",
        "person": "Kim Adams",
        "postId": 72,
        "themeSimilarity": 1
    }
]