-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog_1.json
More file actions
2302 lines (2302 loc) · 71.5 KB
/
dialog_1.json
File metadata and controls
2302 lines (2302 loc) · 71.5 KB
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "Hello, how is your day?"
},
{
"userId": 1,
"text": "It's good. It's raining a bit, but I am enjoying a good book. How about you?"
},
{
"userId": 2,
"text": "It's good, I just got back from walking my dog What book did you read?"
},
{
"userId": 1,
"text": "I'm reading the Three Body Problem. Ever heard of it?"
},
{
"userId": 2,
"text": "No, what is it about?"
},
{
"userId": 1,
"text": "It's a sci-fi book about aliens and a type of virtual reality. Pique your interest at all?"
},
{
"userId": 2,
"text": "Slightly, I typically read fiction but I can curious what type of virtual reality is discussed in the book"
},
{
"userId": 1,
"text": "Cool. This virtual reality is a based on life on an alien planet. There is a twist though. Do you want me to spoil it for you?"
},
{
"userId": 2,
"text": "Yes!"
},
{
"userId": 1,
"text": "The virtual reality is actually based on a real alien civilization! And that civilization is coming to attack earth! dun dun dun dunnnnnnn"
},
{
"userId": 2,
"text": "Woah! That is fascinating! I will have to pick up a copy of the book to read."
},
{
"userId": 1,
"text": "There are other twists as well, so I haven't spoiled the whole thing! To be honest I am not a fan of spoilers"
},
{
"userId": 2,
"text": "Thanks for not spoiling it completely but you gave a really intriguing description that makes me want to read it now. I will have to pick it up after work"
},
{
"userId": 1,
"text": "The audi book is also very good! Ever give those a try?"
},
{
"userId": 2,
"text": "I only gave those a try when I had a concussion and could not read. I enjoy having a physical book in hand and reading at the pace I prefer. Do you listen to a lot of audi books?"
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "Hey, how's it going?"
},
{
"userId": 1,
"text": "It's good! How is your day?"
},
{
"userId": 2,
"text": "My day is good. A bit sad that it gets dark so early but oh well. Did you do anything fun over the weekend?"
},
{
"userId": 1,
"text": "Yes, the darkness can be a bit depressing. This weekend I went rock climbing! It was great! How about yourself?"
},
{
"userId": 2,
"text": "Rock climbing sounds fun! I had a pretty low-key weekend. Ended up going to watch a movie."
},
{
"userId": 1,
"text": "Oh nice! What movie?"
},
{
"userId": 2,
"text": "Knives Out. It had Daniel Craig and one of the famous Captain America \"Chris\" person (I can't keep track of all of the famous Chris names)."
},
{
"userId": 1,
"text": "Hahah yes, they all look the same! I saw that very same movie over Thanksgiving break. Lots of twists and turns!"
},
{
"userId": 2,
"text": "Cool. So if it weren't so dark and cold outside, what kind of activities would you do?"
},
{
"userId": 1,
"text": "Hmm good question. Evening runs can be fun, but it can be a little scary when it's dark out!"
},
{
"userId": 2,
"text": "Yeah, sunlight is good. I wish I could live part-time in different parts of the world to have summer all year round. Have you ever visited the southern hemisphere?"
},
{
"userId": 1,
"text": "Yes! I've been to Australia. It was very nice; I regret not going to see the southern lights. Me personally, I like winter. But I'd prefer it to be more brief than it actually is here... Where are you from originally?"
},
{
"userId": 2,
"text": "I've always wanted to go to Australia. I'm originally from the US."
},
{
"userId": 1,
"text": "Ahh me too! You should definitely try to visit Australia at least once!"
},
{
"userId": 2,
"text": "Will do! Bye."
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "What's your name?"
},
{
"userId": 1,
"text": "My name is pikachu. it’s nice to meet you! What are you up to this month?"
},
{
"userId": 2,
"text": "Nice to meet you pikachu! pikachu, pikachu, pikachu? (That meant, I'm literally catching Pokemons on my phone right now!) What're you up to lately?"
},
{
"userId": 1,
"text": "I’m trying to organize my life and start the new year ready to go! What about you?"
},
{
"userId": 2,
"text": "Wow, that's impressive. Admit I'm just trying to take each day and week as they come."
},
{
"userId": 1,
"text": "What do you do to unwind?"
},
{
"userId": 2,
"text": "Honestly, I like to catch Pokemons on my phone a lot. That must be upsetting since your name is pikachu though...sorry..."
},
{
"userId": 1,
"text": "Oddly enough, I also catch Pokémon on my phone. I used to do it more, but it just never ends. I used to do it everyday. Now I mostly catch them when I travel somewhere exotic."
},
{
"userId": 2,
"text": "Oooh, that is more fun, but I don't travel that much these days so I'm grateful when I spot a Pokemon to catch where ever I happen to be. Do you have a favorite Pokemon? Mine is the cute pink JIgglypuff!"
},
{
"userId": 1,
"text": "In the game, i use vaporeon a lot. But I think pikachu is the cutest, that’s why I changed my name to match. Lately, I think baby Yoda is the cutest though. Have you seen baby yoda?"
},
{
"userId": 2,
"text": "I have heard of him and seen him here and there, but admit I don't have Disney+, so I only heard baby yoda is super cute and popular. Maybe I'll binge watch The Mandalorian in a couple of years like I did Game of Thrones..."
},
{
"userId": 1,
"text": "What is your favorite show to watch right now?"
},
{
"userId": 2,
"text": "Admit I really like watching Modern Family and Mix-ish. Reruns and new episodes. I find them cleverly written. What're you watching these days on TV?"
},
{
"userId": 1,
"text": "I was watching cat rescue videos on YouTube a lot. There sure are a lot of stray cat babies that get stuck in pipes and gutters in South Korea."
},
{
"userId": 2,
"text": "Oh dear, I never imagined that happening. Poor things, but good to hear they're being rescued."
},
{
"userId": 1,
"text": "Do you like cats or dogs better? Do you have any pets?"
},
{
"userId": 2,
"text": "I used to have a cat, hamster and fighting fish, but they've all lived long lives and gone to pet heaven, but I sure miss them."
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "hi there! it's a lovely day to chat with you"
},
{
"userId": 1,
"text": "Isn't it just! What are you up to today?"
},
{
"userId": 2,
"text": "ah I'm waiting to finish work earlier to meet my son at home 🙂"
},
{
"userId": 1,
"text": "Oh, excellent! What does your son like to do for fun?"
},
{
"userId": 2,
"text": "ah he's like to ride his little bicycle around the house and asks me to follow 🙂 what are you up to today?"
},
{
"userId": 1,
"text": "I'm taking a fake sick day from work so I can go to the movies."
},
{
"userId": 2,
"text": "haha that sounds like a good plan. who are you going with? 🙂"
},
{
"userId": 1,
"text": "Just by myself. I love seeing movies by myself, it's the best."
},
{
"userId": 2,
"text": "haha no one will interrupt you!"
},
{
"userId": 1,
"text": "Exactly. Exactly! Plus, I don't have to share the popcorn with anyone. What's your favorite movie?"
},
{
"userId": 2,
"text": "haha, popcorn for yourself. my favorite movie is Avatar! what about you?"
},
{
"userId": 1,
"text": "Get out of town! It's Avatar too. What are the odds!?"
},
{
"userId": 2,
"text": "haha it's a great movie that I haven't found anything of the same quality"
},
{
"userId": 1,
"text": "Yes. Can't wait for the sequels."
},
{
"userId": 2,
"text": "Hi!"
},
{
"userId": 1,
"text": "hello there, nice seeing you"
},
{
"userId": 2,
"text": "Likewise.... wanted to know if you and the kids would want to join us for Disneyland trip around Christmas?"
},
{
"userId": 1,
"text": "oh wow, that sounds like so much fun! definitely count us in. what is your plan?"
},
{
"userId": 2,
"text": "Tentative plan is to drive to LA on 23rd and then stay at the Disney resort for 2 nights. I heard Christmas eve they have loads of fun events."
},
{
"userId": 1,
"text": "awesome, I think I won't tell my kids and surprise them last second. How bad do you think the traffic is going to be?"
},
{
"userId": 2,
"text": "Great idea! I will probably do the same. Surprise surprise.... Traffic might be a little harsh."
},
{
"userId": 1,
"text": "Yeah... thats a shame but nothing we can do about it. What do you plan to do about dinner the 24th? Do the rooms in the resort have kitchens?"
},
{
"userId": 2,
"text": "Good point. I am not sure about that. Let me inquire about that. If not, then we can look for an Airbnb closeby. Does that work?"
},
{
"userId": 1,
"text": "Yeah, I think so. It might be a tough decision though, if we want to have a nice dinner then we have to leave the parks early to start cooking. Another option is to have dinner at a restaurant."
},
{
"userId": 2,
"text": "but I would think everything is closed on christmas eve"
},
{
"userId": 1,
"text": "Thats true. Hotels with restaurants sometimes offer dinners for christmas and new year's eve. We should call and ask about it."
},
{
"userId": 2,
"text": "Sure, I can take a lead on that. What are you getting for your <REDACTED_TERM> year old this time?"
},
{
"userId": 1,
"text": "I was thinking on getting a large set of standard legos. What will you get for yours?"
},
{
"userId": 2,
"text": "Likewise. My son is crazy about legos."
},
{
"userId": 1,
"text": "hopefully they don't lose any in the trip. Its going to be hard to explain to them how santa managed to find us in the hotel!"
},
{
"userId": 2,
"text": "Hi!"
},
{
"userId": 1,
"text": "Hi! How's your day going?"
},
{
"userId": 2,
"text": "I'm doing well. having many meetings today 🙂"
},
{
"userId": 1,
"text": "Haha, nice"
},
{
"userId": 2,
"text": "what are you up to?"
},
{
"userId": 1,
"text": "Lots of meetings as well 🙂 Do you have any fun plans for Thanksgiving?"
},
{
"userId": 2,
"text": "we're gonna play board games and will be eating lots of food! what about you?"
},
{
"userId": 1,
"text": "Cool! Planning to spend a couple days at Tahoe What kind of board games do you like?"
},
{
"userId": 2,
"text": "we've been doing Games of Thrones lately. the game takes a very long time to finish though!"
},
{
"userId": 1,
"text": "Cool! Do you watch Game of Thrones?"
},
{
"userId": 2,
"text": "I do. I'm a super fan of it (not the last season though haha). did you watch?"
},
{
"userId": 1,
"text": "haha, nope I don't watch it, but my roommate is super into it what other TV shows do you like?"
},
{
"userId": 2,
"text": "I love Survivor 🙂"
},
{
"userId": 1,
"text": "what about you?"
},
{
"userId": 2,
"text": "nice! I mostly like comedy shows like The Good Place and Modern Family"
},
{
"userId": 1,
"text": "cool, I'll check them out!"
},
{
"userId": 2,
"text": "Hi!"
},
{
"userId": 1,
"text": "Hello"
},
{
"userId": 2,
"text": "How's your day going?"
},
{
"userId": 1,
"text": "Good so far. How's yours?"
},
{
"userId": 2,
"text": "Ehhh so-so. My moped broke down on the way to work this morning and I am in the shop getting it fixed..."
},
{
"userId": 1,
"text": "Oh! That's bad! How long will it take to get it fixed?"
},
{
"userId": 2,
"text": "The mechanic is trying to figure that out now. Apparently I wasn't supposed to be using diesel lol."
},
{
"userId": 1,
"text": "Haha! Hope it doesn't take too long. Let me know if you are able to make it for lunch."
},
{
"userId": 2,
"text": "Okay sounds good. Would you be able to pick me up by the way, if they don't finish up here in time? Did you drive to work today?"
},
{
"userId": 1,
"text": "Oh, I have a packed schedule today at work. I will find time in about an hour. Let me know if that works."
},
{
"userId": 2,
"text": "That should be fine I think. Did you catch the Warriors game last night btw?"
},
{
"userId": 1,
"text": "no, i was busy catching up with a friend. I heard they played really well. Rooting for them this season 🙂 Ahh, they lost again 😞 Things aren't going to be too good until Steph gets better! Oh! I think they will find a way. The team still looks too strong to me."
},
{
"userId": 2,
"text": "Haha I appreciate your faith, but their record thus far is hard to refute!"
},
{
"userId": 1,
"text": "hehe, i am true fan! Well anyways let me know how the repair work goes. I need to run now for a meeting. ttyl"
},
{
"userId": 2,
"text": "Hi"
},
{
"userId": 1,
"text": "Hello!"
},
{
"userId": 2,
"text": "any improvements in your marathon time?"
},
{
"userId": 1,
"text": "No, only a few minutes. I still find it difficult to run long races"
},
{
"userId": 2,
"text": "I see. Are you planning to do any sporting events in the coming months?"
},
{
"userId": 1,
"text": "I think a triathalon would be cool"
},
{
"userId": 2,
"text": "I like doing Spartan race. It's an obstacle race which is challenging but not overtly so like marathons and triathlons"
},
{
"userId": 1,
"text": "I haven't heard of a Spartan race before, what does it involve?"
},
{
"userId": 2,
"text": "It has abt 20 obstacles like crossing high walls, monkey bars, etc. Its fun"
},
{
"userId": 1,
"text": "oh wow a full obstable course. that does sound fun! I like the variety"
},
{
"userId": 2,
"text": "Wanna sign up for next one? Its in February in Monterey"
},
{
"userId": 1,
"text": "hmm that sounds very soon. would there be enough time to train? I think I would like to try one later in the year"
},
{
"userId": 2,
"text": "1-2 months is a good amount of time, if you workout regularly. It's a lot about the technique, which we can practice in training sessions."
},
{
"userId": 1,
"text": "ok, sign me up. it's more fun to do it with friends"
},
{
"userId": 2,
"text": "Awesome! There is a training ground in San Jose. Will coordinate with you next time we go for practice."
},
{
"userId": 1,
"text": "Sounds good!"
},
{
"userId": 2,
"text": "Hi!"
},
{
"userId": 1,
"text": "Hey, how are you doing?"
},
{
"userId": 2,
"text": "I'm great, thanks. I'm getting ready for a skydiving lesson."
},
{
"userId": 1,
"text": "ooh, nice. That sounds adventurous. Where is it?"
},
{
"userId": 2,
"text": "Right near my home town: Seville, Spain."
},
{
"userId": 1,
"text": "Awesome! Is this the first time you are diving?"
},
{
"userId": 2,
"text": "Yes. I'm feeling a little trepidatious. Have you done it before?"
},
{
"userId": 1,
"text": "Nope, never! I know a couple of friends who have. They mentioned its absolutely terrifying. Good luck!"
},
{
"userId": 2,
"text": "Haha thanks! Have you tried any extreme sports?"
},
{
"userId": 1,
"text": "I tried skiing and white water rafting. Does that count as extreme?"
},
{
"userId": 2,
"text": "White water rafting, definitely! As for skiing, that depends on how fast you go. Do you ski a lot?"
},
{
"userId": 1,
"text": "nope, whenever I went fast I fell badly"
},
{
"userId": 2,
"text": "I tried skiing once, and by the end of the beginner class I was able to make it down a baby-sized slope. I was very proud of myself."
},
{
"userId": 1,
"text": "Yeah, they make you do that. I also tried going down the baby slope, but my stopping wasn't perfect, and I mostly fell at the end"
},
{
"userId": 2,
"text": "Hey, so long as you get to the bottom, it's all good!"
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "hey, whats up?"
},
{
"userId": 1,
"text": "I was not able to attend the lectures last week. Can you help me understand some concepts?"
},
{
"userId": 2,
"text": "well, I'm not sure I'm the best for the job, but I can try!"
},
{
"userId": 1,
"text": "I was not able to figure out the last few slides. I think its best to discuss this in person. Do you have time right now?"
},
{
"userId": 2,
"text": "I'm afraid not, right now I'm in a meeting and I'll be going for lunch afterwards. How about tomorrow at noon?"
},
{
"userId": 1,
"text": "No problem! Sure. We still have plenty of time for the test. Anyways, how's your preparation going?"
},
{
"userId": 2,
"text": "not feeling too sure about it tbh. I've been super busy so I haven't study much 😞. I might join some of the study sessions later"
},
{
"userId": 1,
"text": "Same feeling here! But i think the syllabus may not that tough. You may be able to cover it up over the weekend."
},
{
"userId": 2,
"text": "not my ideal idea of a weekend, but I guess it'll have to be like that."
},
{
"userId": 1,
"text": "True! This will be a very hectic November! I do like the course content though. Its very much up to date with latest research findings."
},
{
"userId": 2,
"text": "yeah, our professor really goes out of their way to make the class interesting, glad I managed to get in it."
},
{
"userId": 1,
"text": "Thats pretty cool! I hope you do well next week."
},
{
"userId": 2,
"text": "thank you, bye!"
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "Hello!"
},
{
"userId": 1,
"text": "How was your party last week?"
},
{
"userId": 2,
"text": "It was really fun! We are a bunch of turkey"
},
{
"userId": 1,
"text": "haha... you ate Turkeys' or you like calling your bunch Turkey?"
},
{
"userId": 2,
"text": "*ate 😂"
},
{
"userId": 1,
"text": "Haha... thought so! But it was funny eitherways"
},
{
"userId": 2,
"text": "So much turkey leftovers"
},
{
"userId": 1,
"text": "did you cook it at home, or got it from outside?"
},
{
"userId": 2,
"text": "We cooked it at a friends house. I brought the mashed potatos haha"
},
{
"userId": 1,
"text": "Nice... I always find it hard to fit the turkey in my small oven. Also, we are not big turkey fans... so we roll with Thanksgiving with chicken 😉"
},
{
"userId": 2,
"text": "chicken also sounds good"
},
{
"userId": 1,
"text": "we played a lot of fun games in our party. Did you have any fun things you did?"
},
{
"userId": 2,
"text": "We played pictionary. I never played before but it was a bunch of fun. what did you play?"
},
{
"userId": 1,
"text": "Pictionary is fun! We played office tennis. In that we take paper balls and using writing pads as rackets, two players have to work together to put the ball in a bucket kept at a distance. It was a lot of fun."
},
{
"userId": 2,
"text": "that sounds very challenging"
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "hello"
},
{
"userId": 1,
"text": "how is the youtube video creation going?"
},
{
"userId": 2,
"text": "going pretty good, I was about to finish composing my second song and post it on youtube/soundcloud etc"
},
{
"userId": 1,
"text": "Whoa! Looking forward to listening to it. What softewares you use for it?"
},
{
"userId": 2,
"text": "I used logic pro x, pretty handy stuff as you can write code to generate guitar strumming pattern"
},
{
"userId": 1,
"text": "oh cool! What sort of music do you compose?"
},
{
"userId": 2,
"text": "I got most inspired by Jazz and electro swings, but am trying to get more into jpop recently as one of my band member likes anime"
},
{
"userId": 1,
"text": "Nice.... you are a rockstar! 😉"
},
{
"userId": 2,
"text": "haha thanks, do you plan any instruments?"
},
{
"userId": 1,
"text": "Yeah.... I play bit of guitar. Just got my first monitor this week"
},
{
"userId": 2,
"text": "nice I'm tyring to learn guitar recently also, it's so hard to play f chord"
},
{
"userId": 1,
"text": "yes, the bar chords are the worst. It took me several months to play them well. I still can't play them for a long time though"
},
{
"userId": 2,
"text": "right, but bar chords are so versatile, almost like cheating as in you can play anything with the same gesture"
},
{
"userId": 1,
"text": "That's true. It's like the alphabets in a language. Once you know them, you can pretty much write word"
},
{
"userId": 2,
"text": "will spend more time work on my bar chord!"
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "Hey! How’s your day going?"
},
{
"userId": 1,
"text": "Bruhhhhhh!!!!!"
},
{
"userId": 2,
"text": "What??"
},
{
"userId": 1,
"text": "I was screaming in agony upon recounting my day."
},
{
"userId": 2,
"text": "Oh no! What’s happened?"
},
{
"userId": 1,
"text": "A project I've been working on for some months got shelved. So I'm a mix of helpless, sad, and angry."
},
{
"userId": 2,
"text": "Ah that sucks. At least it’s not personal. Not that it helps right now, but that does happen all the time"
},
{
"userId": 1,
"text": "Lol. Would you say that to someone who lost a loved one - or some similar circumstance?"
},
{
"userId": 2,
"text": "Well, no, of course not! Let me stick with “Ah that sucks” by itself, then."
},
{
"userId": 1,
"text": "No worries. Was pulling your leg. I forgot to ask how your day was going?"
},
{
"userId": 2,
"text": "Haha, apart from having my leg pulled mercilessly, it’s going great ;). My main problem today is deciding what to have for lunch."
},
{
"userId": 1,
"text": "Lol. What are your choices? I'm trying out keto! It's pretty tiring."
},
{
"userId": 2,
"text": "Oh I hear a lot about keto. I’m trying to watch my weight, would you recommend it?"
},
{
"userId": 1,
"text": "Hi!"
},
{
"userId": 2,
"text": "What was the most difficult thing you experienced this past year?"
},
{
"userId": 1,
"text": "I normally don't reflect back too much on things, but i guess 2019 have been very favorable for me in terms of time spent with family and friends and work life balance. Why do you ask?"
},
{
"userId": 2,
"text": "I just released a book on <REDACTED_TERM> to help people process the past 12 months and start the new year with a fresh outlook 🙂"
},
{
"userId": 1,
"text": "Great! Good idea to help people figuring out their new year resolutions 🙂 So how do i get a fresher outlook? 🙂"
},
{
"userId": 2,
"text": "Well, in my book, I took inspiration for the 24 days of Advent, and put together a workbook that you fill out each day for 24 days. It goes through accomplishments, passions, understanding, forgiveness, with each day a different theme."
},
{
"userId": 1,
"text": "Wow! Sounds amazing if we practice that! I think the idea does have some potential. How did you come up with this idea?"
},
{
"userId": 2,
"text": "We created a scholarship for leaders from <REDACTED_TERM> to visit an international institute at <REDACTED_TERM> for which there was no African representation. During the program, we also did a lot of coaching with the young leaders. This book captures a bit of that journey that we are all on, and also all the proceeds are going to fund next year's cohort. "
},
{
"userId": 1,
"text": "Thats great! This is valuable help for the community. I think mental health is one of the bigger challenges facing humanity. "
},
{
"userId": 2,
"text": "I think if we were all able to bring out our best selves, the world would be much better. When did you first realize mental health was important?"
},
{
"userId": 1,
"text": "That is actually a quote stolen from my TL when i joined my first company after graduation. I guess now after 5 yrs of work experience, I fully agree with it 🙂"
},
{
"userId": 2,
"text": "What do you prioritize in your life? Like top 5 things?"
},
{
"userId": 1,
"text": "1. stay happy; I think family and friends play a big role here. 2. Meaningful work life; this may mean exploring around with new stuff 3. multiple hobbies that keep you busy ... so on 🙂 What about you? is there a right answer to this? :)"
},
{
"userId": 2,
"text": " 1) The idea of what it must be like to be \"on Earth as it is in Heaven\" from the Lord's prayer. I feel like we were designed for a purpose, rather than random chance. A more concrete way to put it is simply show love to the greatest capacity we can. 2) Taking care of myself physically, mentally, spiritually. 3) Family 4) Work 5) Music"
},
{
"userId": 1,
"text": "Nice! That's very thoughtful and spiritual 🙂 Also music earned a spot 🙂 yay! "
},
{
"userId": 2,
"text": "Yea, I've always said that if I wrote a memoire, I would title it: \"Jazz, Jesus, and Video Games.\" Do you have a title of a book that you've thought of writing before?"
},
{
"userId": 1,
"text": "I am actually not much of a reader. I usually hide it by quoting john nash ~ reading books corrupts original thoughts 🙂"
},
{
"userId": 2,
"text": "That’s why you write your own books! Then it’s all your thoughts on your terms :)"
},
{
"userId": 1,
"text": "Hehe! True! It may turn out to be a best seller :)"
},
{
"userId": 2,
"text": "Hi!"
},
{
"userId": 1,
"text": "Hey!"
},
{
"userId": 2,
"text": "How's your day going?"
},
{
"userId": 1,
"text": "Having fun, but have a bit of a headache How about you?"
},
{
"userId": 2,
"text": "I'm good! Just getting ready to watch a basketball game. Hope your headache goes away!"
},
{
"userId": 1,
"text": "Haha, thanks! Never get them, so it's super weird Who's playing?"
},
{
"userId": 2,
"text": "Hmm, try taking some <REDACTED_TERM>! I'm going to see the Warriors vs. the Grizzlies. Ever see them play?"
},
{
"userId": 1,
"text": "I haven't Honestly I probably wouldn't be able to identify which sport they played"
},
{
"userId": 2,
"text": "Haha, all the animal names confuse me as well! Who came up with these naming conventions? I'd name my team something more original: The New York Chairs!"
},
{
"userId": 1,
"text": "lol, sounds better to me :) I'm actually at the <REDACTED_TERM> opening remarks"
},
{
"userId": 2,
"text": "Oh cool! What is \"NeurIPS\"?"
},
{
"userId": 1,
"text": "Neural Information Processing Systems"
},
{
"userId": 2,
"text": "Oh wow! Sounds fancy! What is that about?"
},
{
"userId": 1,
"text": "It's the biggest ML conference in the world"
},
{
"userId": 2,
"text": "Oh, ML?"
},
{
"userId": 1,
"text": "Yes, machine learning"
},
{
"userId": 2,
"text": "Ahh! I saw a scary movie about that once. It was about this sentient AI in a dystopian future - very very creepy. It was called Wall-e, ever heard of it?"
},
{
"userId": 1,
"text": "I've definitely heard of it, but somehow never saw it!"
},
{
"userId": 2,
"text": "Hi!"
},
{
"userId": 1,
"text": "Hello"
},
{
"userId": 2,
"text": "how's it going?!?"
},
{
"userId": 1,
"text": "Good so far. Very excited about the game later today."
},
{
"userId": 2,
"text": "what game?"
},
{
"userId": 1,
"text": "Giants game. I got tickets for the game."
},
{
"userId": 2,
"text": "nice. that's football right?"
},
{
"userId": 1,
"text": "Yes, I think the traffic will be bad. I need to leave by 4."
},
{
"userId": 2,
"text": "ok. what stadium is it at?"
},
{
"userId": 1,
"text": "Its the one close to mathilda. 15 mins driver from here. You have any plans for the weekend?"
},
{
"userId": 2,
"text": "yeah I'm gonna go kayaking"