-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.json
8139 lines (8139 loc) · 256 KB
/
data.json
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
{
"questions": [
{
"_id": "5ec6cdb236d9627d605aa0d8",
"badge_info": null,
"badges": {},
"color": null,
"display_name": "wiltchamberlainismydad",
"emotes": null,
"flags": null,
"id": "239215b9-d660-46c0-b83c-292e8d79c93e",
"mod": false,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1590087090492",
"turbo": false,
"user_id": "524430558",
"user_type": null,
"emotes_raw": null,
"badge_info_raw": null,
"badges_raw": null,
"username": "wiltchamberlainismydad",
"message_type": "chat",
"name": "wiltchamberlainismydad",
"created_at": "2020-05-21T18:51:30.492Z",
"deleted_at": null,
"message": "!ask Tips for not using foul language?",
"num": 26,
"content": "Tips for not using foul language?",
"comments": [],
"upvotes": []
}, {
"_id": "5ec6cf7d36d9627d605aa1ab",
"badge_info": null,
"badges": {},
"color": "#FF0000",
"display_name": "leonhart19",
"emotes": null,
"flags": null,
"id": "e8aae8df-55d8-4d93-b933-99c311e2292a",
"mod": false,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1590087549754",
"turbo": false,
"user_id": "506501901",
"user_type": null,
"emotes_raw": null,
"badge_info_raw": null,
"badges_raw": null,
"username": "leonhart19",
"message_type": "chat",
"name": "leonhart19",
"created_at": "2020-05-21T18:59:09.754Z",
"deleted_at": null,
"message": "!ask what do you think of Blazor and Deno?",
"num": 48,
"content": "what do you think of Blazor and Deno?",
"comments": [],
"upvotes": []
}, {
"_id": "5ec6dec536d9627d605aa4bf",
"badge_info": null,
"badges": {
"premium": "1"
},
"color": "#00FF95",
"display_name": "AtomikJaye",
"emotes": null,
"flags": null,
"id": "bc331bba-5873-43c6-9038-439426dfa2f0",
"mod": false,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1590091460856",
"turbo": false,
"user_id": "151923551",
"user_type": null,
"emotes_raw": null,
"badge_info_raw": null,
"badges_raw": "premium/1",
"username": "atomikjaye",
"message_type": "chat",
"name": "AtomikJaye",
"created_at": "2020-05-21T20:04:20.856Z",
"deleted_at": null,
"message": "!ask What made you make the change from C# to Javascript?",
"num": 93,
"content": "What made you make the change from C# to Javascript?",
"comments": [],
"upvotes": ["the_she_boss", "marc2067", "aplato11"]
}, {
"_id": "5ec6e4f436d9627d605aa605",
"badge_info": null,
"badges": {},
"color": "#FF0000",
"display_name": "cihangera",
"emotes": null,
"flags": null,
"id": "50424b3a-c265-4d92-a2a0-1fc79a66a472",
"mod": false,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1590093044482",
"turbo": false,
"user_id": "116439847",
"user_type": null,
"emotes_raw": null,
"badge_info_raw": null,
"badges_raw": null,
"username": "cihangera",
"message_type": "chat",
"name": "cihangera",
"created_at": "2020-05-21T20:30:44.482Z",
"deleted_at": null,
"message": "!ask does live coders accept people streaming other languages beside english?",
"num": 102,
"content": "does live coders accept people streaming other languages beside english?",
"comments": [],
"upvotes": []
}, {
"_id": "5ec6e99536d9627d605aa786",
"badge_info": {
"subscriber": "1"
},
"badges": {
"subscriber": "0"
},
"color": null,
"display_name": "riiiiichdev",
"emotes": null,
"flags": null,
"id": "66fca8da-b6a4-455b-ac3d-469cbc6063f3",
"mod": false,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1590094229027",
"turbo": false,
"user_id": "505191382",
"user_type": null,
"emotes_raw": null,
"badge_info_raw": "subscriber/1",
"badges_raw": "subscriber/0",
"username": "riiiiichdev",
"message_type": "chat",
"name": "riiiiichdev",
"created_at": "2020-05-21T20:50:29.027Z",
"deleted_at": null,
"message": "!ask how do you get started on JavaScript for full stack javascript developement? Like MERN, MEAN, etc. What are the best ways to learn and do you start with Node, React, Express, etc?",
"num": 106,
"content": "how do you get started on JavaScript for full stack javascript developement? Like MERN, MEAN, etc. What are the best ways to learn and do you start with Node, React, Express, etc?",
"comments": [],
"upvotes": ["prashanth_b17", "pablomaly", "gluskap"]
}, {
"_id": "5ec7bc9636d9627d605aaa94",
"badge_info": null,
"badges": {},
"color": null,
"display_name": "SourisCLOUD",
"emotes": {
"1": ["275-276"],
"3": ["180-181"]
},
"flags": null,
"id": "aab637f5-dc0d-4720-9a66-d31a9c0c935a",
"mod": false,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1590148245784",
"turbo": false,
"user_id": "413363089",
"user_type": null,
"emotes_raw": "3:180-181/1:275-276",
"badge_info_raw": null,
"badges_raw": null,
"username": "souriscloud",
"message_type": "chat",
"name": "SourisCLOUD",
"created_at": "2020-05-22T11:50:45.784Z",
"deleted_at": null,
"message": "!ask Hey CJ! Could u make a session where u discuss the real world CONS of heavy-armed FrontEnd frameworks (like React, Vue, maybe Angular - but there is a typescript so maybe not :D ). Like a real problems from production. It would be fun brainstorm over that on livestream :)",
"num": 116,
"content": "Hey CJ! Could u make a session where u discuss the real world CONS of heavy-armed FrontEnd frameworks (like React, Vue, maybe Angular - but there is a typescript so maybe not :D ). Like a real problems from production. It would be fun brainstorm over that on livestream :)",
"comments": [],
"upvotes": ["jojon_surojon", "gluskap"]
}, {
"_id": "5ec95b29e47fb74b5e66285b",
"badge_info": {
"subscriber": "1"
},
"badges": {
"subscriber": "0",
"sub-gifter": "5"
},
"color": "#FF4500",
"display_name": "IvoEncarnacao",
"emotes": null,
"flags": null,
"id": "d00e9c3f-328d-494e-8a83-3210c761cc81",
"mod": false,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1590254377263",
"turbo": false,
"user_id": "55382306",
"user_type": null,
"emotes_raw": null,
"badge_info_raw": "subscriber/1",
"badges_raw": "subscriber/0,sub-gifter/5",
"username": "ivoencarnacao",
"message_type": "chat",
"name": "IvoEncarnacao",
"created_at": "2020-05-23T17:19:37.263Z",
"deleted_at": null,
"message": "!ask what's de difference between lightsail and elastic beans?",
"num": 130,
"content": "what's de difference between lightsail and elastic beans?",
"comments": [{
"_id": "5edaa51456fd88771c4b402d",
"id": "f1c1e26e-df2c-485c-8190-5073d872738b",
"badge_info": {
"subscriber": "2"
},
"badge_info_raw": "subscriber/2",
"badges": {
"moderator": "1",
"subscriber": "2",
"premium": "1"
},
"badges_raw": "moderator/1,subscriber/2,premium/1",
"client_nonce": "8e0dfe7840bf767f8db8c3984a8c7ad8",
"color": "#009D83",
"created_at": "2020-06-05T20:03:32.164Z",
"deleted_at": null,
"display_name": "AndrewLaneX",
"emotes": null,
"emotes_raw": null,
"flags": "145-162:",
"message": "!comment #130 Lightsail: Amazon’s hosting provider (vps, dns, storage)<br>Elastic Beanstalk: Run software on managed virtual machines<br>Source: https://cdg.sh/aws",
"message_type": "chat",
"mod": true,
"name": "AndrewLaneX",
"parsedMessage": null,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1591387412164",
"turbo": false,
"user_id": "413167662",
"user_type": "mod",
"username": "andrewlanex",
"content": "Lightsail: Amazon’s hosting provider (vps, dns, storage)<br>Elastic Beanstalk: Run software on managed virtual machines<br>Source: https://cdg.sh/aws"
}],
"upvotes": []
}, {
"_id": "5ed4108556fd88771c3e332f",
"id": "43adbbf6-bd59-4eb9-8f9c-277e418383f6",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"color": null,
"created_at": "2020-05-31T20:16:04.671Z",
"deleted_at": null,
"display_name": "dr_arabaz",
"emotes": null,
"emotes_raw": null,
"flags": "44-51:",
"message": "!ask im working on something has to do with whatsapp chats and every time i have an emoji in the string it shows as rubbish or a weird char. ideas?",
"message_type": "chat",
"mod": false,
"name": "dr_arabaz",
"num": 241,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1590956164671",
"turbo": false,
"user_id": "240887505",
"user_type": null,
"username": "dr_arabaz",
"content": "im working on something has to do with whatsapp chats and every time i have an emoji in the string it shows as rubbish or a weird char. ideas?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b1ae56fd88771c4578e9",
"id": "8362ec84-8196-4a3c-b797-eb2fd1aa3366",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "eeb0fc890817d80ebb27ec51e12c8358",
"color": null,
"created_at": "2020-06-03T14:20:30.116Z",
"deleted_at": null,
"display_name": "dellyorhan",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask I'm new with javascript is it normal to not understand clearly what Cj is teacing. For me it's a bit faster",
"message_type": "chat",
"mod": false,
"name": "dellyorhan",
"num": 248,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194030116",
"turbo": false,
"user_id": "57477181",
"user_type": null,
"username": "dellyorhan",
"content": "I'm new with javascript is it normal to not understand clearly what Cj is teacing. For me it's a bit faster",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b21e56fd88771c457a94",
"id": "3b26eda1-7693-4384-acee-c586aa08679d",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "8077b5b2fad70494983b061eee4950ad",
"color": null,
"created_at": "2020-06-03T14:22:21.925Z",
"deleted_at": null,
"display_name": "avi12",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask Do you know how to import functions from C++ files via Wasm via Webpack, more specifically Vue?",
"message_type": "chat",
"mod": false,
"name": "avi12",
"num": 252,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194141925",
"turbo": false,
"user_id": "30389460",
"user_type": null,
"username": "avi12",
"content": "Do you know how to import functions from C++ files via Wasm via Webpack, more specifically Vue?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b26f56fd88771c457bd1",
"id": "7bd880ba-e57f-40e2-9ce3-6b3df6f0bb3a",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "2f1068b57d7363ef33ce483b4ac3cc67",
"color": "#FF7F50",
"created_at": "2020-06-03T14:23:42.740Z",
"deleted_at": null,
"display_name": "mizticNZL",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask could you do a stream where you setup nodejs to receive webhooks eg from patreon thanks",
"message_type": "chat",
"mod": false,
"name": "mizticNZL",
"num": 253,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194222740",
"turbo": false,
"user_id": "141123647",
"user_type": null,
"username": "mizticnzl",
"content": "could you do a stream where you setup nodejs to receive webhooks eg from patreon thanks",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b27956fd88771c457bec",
"id": "59c810b8-a7ca-400f-a1d9-aa83fd3857f4",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "19060e5d0a48e8fddd9f38124e58eb2c",
"color": null,
"created_at": "2020-06-03T14:23:53.652Z",
"deleted_at": null,
"display_name": "mihaiandrei15",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask I know this has been asked before but, how would you store a JWT token more secure in localstorage?",
"message_type": "chat",
"mod": false,
"name": "mihaiandrei15",
"num": 254,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194233652",
"turbo": false,
"user_id": "45856545",
"user_type": null,
"username": "mihaiandrei15",
"content": "I know this has been asked before but, how would you store a JWT token more secure in localstorage?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b34256fd88771c457e5b",
"id": "90842994-bfb5-4515-a2d0-b33a65048b80",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "a39e43c7a7629480816d18a3e0db7613",
"color": null,
"created_at": "2020-06-03T14:27:13.971Z",
"deleted_at": null,
"display_name": "dj_what",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask Do you have any opinions on clojurescript? Personally I'm really enjoying the use of native data structures for both script and document structure (ie. no JSX). Would love to hear some opinions from someone with more experience",
"message_type": "chat",
"mod": false,
"name": "dj_what",
"num": 257,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194433971",
"turbo": false,
"user_id": "63955047",
"user_type": null,
"username": "dj_what",
"content": "Do you have any opinions on clojurescript? Personally I'm really enjoying the use of native data structures for both script and document structure (ie. no JSX). Would love to hear some opinions from someone with more experience",
"comments": [],
"upvotes": ["jojon_surojon"]
}, {
"_id": "5ed7b34356fd88771c457e60",
"id": "f650c274-15d2-473f-a147-6c1d2aaa3b3c",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "557b9f8a55c5c56052d3e1913634496b",
"color": "#0000FF",
"created_at": "2020-06-03T14:27:15.261Z",
"deleted_at": null,
"display_name": "yassine_49",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask what does it take to be taken seriously by companies as self-thought coder",
"message_type": "chat",
"mod": false,
"name": "yassine_49",
"num": 258,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194435261",
"turbo": false,
"user_id": "48243280",
"user_type": null,
"username": "yassine_49",
"content": "what does it take to be taken seriously by companies as self-thought coder",
"comments": [{
"_id": "5ed7ba1056fd88771c4591f2",
"id": "2d6f748e-3d56-4bd5-8198-cf55fd7169da",
"badge_info": {
"subscriber": "1"
},
"badge_info_raw": "subscriber/1",
"badges": {
"subscriber": "0"
},
"badges_raw": "subscriber/0",
"client_nonce": "ba2f56dd9292e4c2c1e489e32b67170d",
"color": "#D69A38",
"created_at": "2020-06-03T14:56:16.264Z",
"deleted_at": null,
"display_name": "chadwithuhc",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!comment #258 experience is the best value regardless of your background. you can start with freelance or small agencies to gain experience",
"message_type": "chat",
"mod": false,
"name": "chadwithuhc",
"parsedMessage": null,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1591196176264",
"turbo": false,
"user_id": "261129104",
"user_type": null,
"username": "chadwithuhc",
"content": "experience is the best value regardless of your background. you can start with freelance or small agencies to gain experience"
}],
"upvotes": []
}, {
"_id": "5ed7b36256fd88771c457ec3",
"id": "b6551d46-d0cb-41b8-b7f2-7b509071a09c",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "55f4fc06e4711ae9ad802b454c096520",
"color": "#DAA520",
"created_at": "2020-06-03T14:27:45.917Z",
"deleted_at": null,
"display_name": "debopamgupta",
"emotes": null,
"emotes_raw": null,
"flags": "68-108:",
"message": "!ask can you see my github for my version of your clipboard manager https://github.com/debopamgupta/peaceclip",
"message_type": "chat",
"mod": false,
"name": "debopamgupta",
"num": 260,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194465917",
"turbo": false,
"user_id": "481538211",
"user_type": null,
"username": "debopamgupta",
"content": "can you see my github for my version of your clipboard manager https://github.com/debopamgupta/peaceclip",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b3ba56fd88771c457fb2",
"id": "7c367819-643d-4053-b9c0-d74e29efece7",
"badge_info": null,
"badge_info_raw": null,
"badges": {
"premium": "1"
},
"badges_raw": "premium/1",
"client_nonce": "9456101ceb744e6e3291cd5331899dba",
"color": null,
"created_at": "2020-06-03T14:29:14.638Z",
"deleted_at": null,
"display_name": "shutchie",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask how is routing typically done for local (files only, no web server) in electron?",
"message_type": "chat",
"mod": false,
"name": "shutchie",
"num": 265,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194554638",
"turbo": false,
"user_id": "37595849",
"user_type": null,
"username": "shutchie",
"content": "how is routing typically done for local (files only, no web server) in electron?",
"comments": [],
"upvotes": ["shutchie"]
}, {
"_id": "5ed7b3bf56fd88771c457fbc",
"id": "1bfaf7e8-e375-40aa-aee2-dd0debaa0e3c",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "e3c0d29613ccfe839b6587491883f981",
"color": null,
"created_at": "2020-06-03T14:29:19.710Z",
"deleted_at": null,
"display_name": "entwistleox",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask how can I use socket.io not in the main file but on routes ?",
"message_type": "chat",
"mod": false,
"name": "entwistleox",
"num": 266,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194559710",
"turbo": false,
"user_id": "507534026",
"user_type": null,
"username": "entwistleox",
"content": "how can I use socket.io not in the main file but on routes ?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b3ee56fd88771c458054",
"id": "514b35ff-77b7-471c-b21c-9109cc34aca8",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "bff059f2acf0204025f8a3c6990bcbe0",
"color": null,
"created_at": "2020-06-03T14:30:05.810Z",
"deleted_at": null,
"display_name": "Tipsy_ninja",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask so i am using react-google-login, so after login i thinking to send id_token every time to send any request to my custom server which i get from r-g-login, i am varfying it on my server using g-library, is this a good way to do that? doing this first time. also one more question, in my application i want the first person to get admin role automatically is this a good idea? xD, what else i can do , i want my realadmin to be admin wht if someone else login that app before the actual admin.",
"message_type": "chat",
"mod": false,
"name": "Tipsy_ninja",
"num": 267,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194605810",
"turbo": false,
"user_id": "165471953",
"user_type": null,
"username": "tipsy_ninja",
"content": "so i am using react-google-login, so after login i thinking to send id_token every time to send any request to my custom server which i get from r-g-login, i am varfying it on my server using g-library, is this a good way to do that? doing this first time. also one more question, in my application i want the first person to get admin role automatically is this a good idea? xD, what else i can do , i want my realadmin to be admin wht if someone else login that app before the actual admin.",
"comments": [],
"upvotes": ["tipsy_ninja"]
}, {
"_id": "5ed7b41756fd88771c4580ca",
"id": "f5dba4e3-a352-4dd8-902c-71fb5fbcac31",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "196a516e6734fe6ac17ebdbc8da196d9",
"color": "#00FF7F",
"created_at": "2020-06-03T14:30:46.928Z",
"deleted_at": null,
"display_name": "yetrox17",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask react vs react native ?",
"message_type": "chat",
"mod": false,
"name": "yetrox17",
"num": 269,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194646928",
"turbo": false,
"user_id": "271154773",
"user_type": null,
"username": "yetrox17",
"content": "react vs react native ?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7b46756fd88771c458195",
"id": "06584242-6f7e-4dac-8ff4-5d251c3b9784",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"color": null,
"created_at": "2020-06-03T14:32:07.316Z",
"deleted_at": null,
"display_name": "NewGate_98",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask the other time u mentioned that u would store jwt tokens in local storage but do whatever it takes to secure them,can u elaborate pls?",
"message_type": "chat",
"mod": false,
"name": "NewGate_98",
"num": 271,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591194727316",
"turbo": false,
"user_id": "54468682",
"user_type": null,
"username": "newgate_98",
"content": "the other time u mentioned that u would store jwt tokens in local storage but do whatever it takes to secure them,can u elaborate pls?",
"comments": [],
"upvotes": ["newgate_98"]
}, {
"_id": "5ed7b88956fd88771c458de9",
"id": "8980db4d-d533-4a74-98fc-a802e5700683",
"badge_info": null,
"badge_info_raw": null,
"badges": {
"premium": "1"
},
"badges_raw": "premium/1",
"client_nonce": "4c255fc1f7f45c10fb657d8b92ff871c",
"color": "#FF0000",
"created_at": "2020-06-03T14:49:45.233Z",
"deleted_at": null,
"display_name": "missioncrit",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask what about horizontal scaling of databases?",
"message_type": "chat",
"mod": false,
"name": "missioncrit",
"num": 278,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591195785233",
"turbo": false,
"user_id": "176626254",
"user_type": null,
"username": "missioncrit",
"content": "what about horizontal scaling of databases?",
"comments": [],
"upvotes": ["rickyu1978", "gluskap", "ivoencarnacao"]
}, {
"_id": "5ed7b8a456fd88771c458e23",
"id": "7f4af4c1-c20d-4781-8b3c-ab23793eab5e",
"badge_info": {
"subscriber": "1"
},
"badge_info_raw": "subscriber/1",
"badges": {
"subscriber": "0"
},
"badges_raw": "subscriber/0",
"color": "#FF4500",
"created_at": "2020-06-03T14:50:12.358Z",
"deleted_at": null,
"display_name": "IvoEncarnacao",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask could you make a stream about professional NodeJS development, using scaleability, etc?",
"message_type": "chat",
"mod": false,
"name": "IvoEncarnacao",
"num": 279,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1591195812358",
"turbo": false,
"user_id": "55382306",
"user_type": null,
"username": "ivoencarnacao",
"content": "could you make a stream about professional NodeJS development, using scaleability, etc?",
"comments": [],
"upvotes": ["andrewlanex"]
}, {
"_id": "5ed7b91656fd88771c458f63",
"id": "128e921a-7b43-45d6-9a4d-ff22beddfd4d",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "16abcb942690513bdb16a169f5b22038",
"color": "#00FF7F",
"created_at": "2020-06-03T14:52:06.472Z",
"deleted_at": null,
"display_name": "yetrox17",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask Any advice for automata theory final exam?",
"message_type": "chat",
"mod": false,
"name": "yetrox17",
"num": 280,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591195926472",
"turbo": false,
"user_id": "271154773",
"user_type": null,
"username": "yetrox17",
"content": "Any advice for automata theory final exam?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7babe56fd88771c4593fc",
"id": "5f560106-f0aa-4639-8329-893d5ff3ec9a",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "602a0c69b71e5af88ebebd60b383b11f",
"color": null,
"created_at": "2020-06-03T14:59:09.765Z",
"deleted_at": null,
"display_name": "jonahjoe",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask How to address issues related to IE browser as most of the code doesn't work there (ES6 classes etc..)",
"message_type": "chat",
"mod": false,
"name": "jonahjoe",
"num": 281,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591196349765",
"turbo": false,
"user_id": "524155799",
"user_type": null,
"username": "jonahjoe",
"content": "How to address issues related to IE browser as most of the code doesn't work there (ES6 classes etc..)",
"comments": [],
"upvotes": ["jonahjoe", "procrastinatingwatchingcj"]
}, {
"_id": "5ed7bb1856fd88771c459509",
"id": "050f5391-163c-4610-98f4-5beb7a0d6f13",
"badge_info": null,
"badge_info_raw": null,
"badges": {
"premium": "1"
},
"badges_raw": "premium/1",
"client_nonce": "1fe39518ae7ffc92600a77751ea35c2a",
"color": "#FF7F50",
"created_at": "2020-06-03T15:00:40.390Z",
"deleted_at": null,
"display_name": "thefinaledge",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask can you explain what happened in the latest Apple login bug?",
"message_type": "chat",
"mod": false,
"name": "thefinaledge",
"num": 282,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591196440390",
"turbo": false,
"user_id": "98645078",
"user_type": null,
"username": "thefinaledge",
"content": "can you explain what happened in the latest Apple login bug?",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7bbdb56fd88771c4596eb",
"id": "e482884f-abd7-420e-8de3-25c5ab353ed4",
"badge_info": {
"subscriber": "1"
},
"badge_info_raw": "subscriber/1",
"badges": {
"subscriber": "0"
},
"badges_raw": "subscriber/0",
"client_nonce": "aeef035afacf81680f621bec1669fc44",
"color": null,
"created_at": "2020-06-03T15:03:54.707Z",
"deleted_at": null,
"display_name": "beingpranjal",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask CJ how to stream a audio file from a certain position, like a start position and how to know till which point I have streamed the file in Node ( specifically .wav file)",
"message_type": "chat",
"mod": false,
"name": "beingpranjal",
"num": 283,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1591196634707",
"turbo": false,
"user_id": "441966003",
"user_type": null,
"username": "beingpranjal",
"content": "CJ how to stream a audio file from a certain position, like a start position and how to know till which point I have streamed the file in Node ( specifically .wav file)",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7bbe156fd88771c4596f6",
"id": "4c34ab0f-e6da-4460-9fa0-6a285d2934bb",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "492952b01e750c53f9e0127796f045b7",
"color": null,
"created_at": "2020-06-03T15:04:01.244Z",
"deleted_at": null,
"display_name": "iampiikaa",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask Can u please check my npm package pika-create-server and review it",
"message_type": "chat",
"mod": false,
"name": "iampiikaa",
"num": 284,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591196641244",
"turbo": false,
"user_id": "168439691",
"user_type": null,
"username": "iampiikaa",
"content": "Can u please check my npm package pika-create-server and review it",
"comments": [],
"upvotes": []
}, {
"_id": "5ed7bc6d56fd88771c45985c",
"id": "4ec88d63-44fc-41c2-a0ba-43c626b79e33",
"badge_info": {
"subscriber": "1"
},
"badge_info_raw": "subscriber/1",
"badges": {
"subscriber": "0",
"bits": "1000"
},
"badges_raw": "subscriber/0,bits/1000",
"client_nonce": "c5d815be347af2368ba034a743954641",
"color": null,
"created_at": "2020-06-03T15:06:21.135Z",
"deleted_at": null,
"display_name": "nothingasis",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask Thoughts on encrypting with emojis?",
"message_type": "chat",
"mod": false,
"name": "nothingasis",
"num": 285,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": true,
"tmi_sent_ts": "1591196781135",
"turbo": false,
"user_id": "506588068",
"user_type": null,
"username": "nothingasis",
"content": "Thoughts on encrypting with emojis?",
"comments": [],
"upvotes": ["andrewlanex"]
}, {
"_id": "5ed7beb456fd88771c459e51",
"id": "17202cda-7ecb-477c-920d-94a1253872d8",
"badge_info": null,
"badge_info_raw": null,
"badges": {},
"badges_raw": null,
"client_nonce": "ce39a1b8aaa57d6b9a27538261c55258",
"color": null,
"created_at": "2020-06-03T15:16:04.162Z",
"deleted_at": null,
"display_name": "Belauzas",
"emotes": null,
"emotes_raw": null,
"flags": null,
"message": "!ask What \"GIT flow\" version do you prefer?",
"message_type": "chat",
"mod": false,
"name": "Belauzas",
"num": 287,
"parsedMessage": null,
"room_id": "413856795",
"subscriber": false,
"tmi_sent_ts": "1591197364162",
"turbo": false,
"user_id": "406511388",
"user_type": null,
"username": "belauzas",
"content": "What \"GIT flow\" version do you prefer?",
"comments": [],
"upvotes": ["belauzas"]
}, {
"_id": "5ed7bede56fd88771c459eb8",
"id": "8fb397a6-ba6b-4ab8-a14f-6c90113e3753",
"badge_info": {
"subscriber": "1"
},
"badge_info_raw": "subscriber/1",
"badges": {
"subscriber": "0"
},
"badges_raw": "subscriber/0",
"client_nonce": "fd4cfca44eb893aa4ed6d700d3304baf",
"color": "#1E90FF",
"created_at": "2020-06-03T15:16:46.575Z",
"deleted_at": null,
"display_name": "exegete46",
"emotes": null,