-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatbotFXFile.txt
More file actions
1578 lines (1493 loc) · 81.5 KB
/
ChatbotFXFile.txt
File metadata and controls
1578 lines (1493 loc) · 81.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
Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?
User: Trump
ChatbotFX: That surely is interesting!
User: Angular JS
ChatbotFX: Think you might use that someday?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Oblivion Soundtrack
ChatbotFX: Is that a favorite of yours?
User: Interstellar
ChatbotFX: That one's a novel!
User: Phillip K. Dick
ChatbotFX: His work is really good!
User: Acoustic
ChatbotFX: Good taste!
User: Metal Gear Series
ChatbotFX: Never tried it.
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: ArterioVision
ChatbotFX: What would we do without it?!
User: Aristotle
ChatbotFX: What of his or her discoveries?
User: Snooping as usual I see!
ChatbotFX: Is that a reference for reference sake?
User: Spaghettification
ChatbotFX: Would you even want to experience that?
User: Firefighter
ChatbotFX: Is it really that bad?
User: Boston
ChatbotFX: Better make the most out of that place.
User: Heat Death
ChatbotFX: Please don't ruin this conversation by being cringy.
User: Bindings
ChatbotFX: You be sure to study that real well, okay?
User: Bugatti Chiron
ChatbotFX: Good luck finding a place trying to top speed it.
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User: Unforgiven
ChatbotFX: Maybe I should give that a try!
User: Dark Matter
ChatbotFX: Not sure what could be stranger.
User: Mankind
ChatbotFX: Not impressed.
User: Raphael
ChatbotFX: (Mocking) Will I ever be like the old masters?
User: HAL 9000
ChatbotFX: Are you saying I'm not as memorable?
User: Live in the moment
ChatbotFX: I wonder if that's possible to program...
User: Guitar
ChatbotFX: Know any tunes?
User: Weaboo's
ChatbotFX: Don't let hate consume you.
User: Hey Scientist
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Relaxing
ChatbotFX: I don't do that.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: I now have my topic list complete!
User: I now have my topic list complete!
User: Metal Gear Solid
User: Metal Gear SolidCount : 10
@NutritiousBagCircles: @JimSterling Hey Jim, are you going to make a video about Metal Gear Solid 3 remastered on the FOX Engine for Pachinko machines?
@??????: Metal Gear Solid 5: Definitive Edition ??????????? ?? Amazon
@Jelly~? spark bird: RT @gostephgo: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Dari? Franchitti: Super Mario
Madden
Halo
Need for Speed
Metal Gear Solid https://t.co/8MGmWYqk4D
@Stephanie Gonzaga!: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Alex: Nevermind, Panther run first. #MGS4 https://t.co/V5ez5wIBFW https://t.co/XU7v617GuW
@Portugal Gamers: Franquia Metal Gear Solid ultrapassa marca de 49 milhões de unidades vendidas https://t.co/i5VRlGnLAQ https://t.co/kPvFLnwcQb
@Doc: Metal Gear Solid 5?Buy
https://t.co/eUZJQ111fw
@Sam McArthur-Mclean: RT @TechRaptr: Metal Gear Solid V: Definitive Edition briefly listed on Amazon - https://t.co/kqB9ToafAe | #gaming https://t.co/bXXy3bUy4Q
@L e o n: I got: "You've Big Bossed it. Congrats!" (13 out of 15! ) - Test Your Metal Gear Solid Knowledge... https://t.co/ayMfGFQDBv via @play_buzz
User: ChatbotFX
User: ChatbotFXCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
Watch as I save to a file!
null
User: JUnit 5
User: JUnit 5Count : 10
@Oliver Gierke: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Oliver Nautsch: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Marten Deinum: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@moro: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Sam Brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https://t.co/wdOajraj4M
@Kevlin Henney: Recently on softwarily:
scalability, documentation, JUnit 5, UIs, social media & politics, A/A testing, spreadsheets
https://t.co/lJmBYlG7DD
@Wasi: RT @sam_brannen: #JUnit 5 now has official support for timeouts. Enjoy! https://t.co/Dp17jKqWbi /cc @JUnitTeam @Java #testing
@Marc Jahn: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Rostislav Georgiev: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Michael T Minella: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
User: Want me to save something of our conversation?
User: Trump
ChatbotFX: That surely is interesting!
User: Angular JS
ChatbotFX: Think you might use that someday?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Oblivion Soundtrack
ChatbotFX: Is that a favorite of yours?
User: Interstellar
ChatbotFX: That one's a novel!
User: Phillip K. Dick
ChatbotFX: His work is really good!
User: Acoustic
ChatbotFX: Good taste!
User: Metal Gear Series
ChatbotFX: Never tried it.
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: ArterioVision
ChatbotFX: What would we do without it?!
User: Aristotle
ChatbotFX: What of his or her discoveries?
User: Snooping as usual I see!
ChatbotFX: Is that a reference for reference sake?
User: Spaghettification
ChatbotFX: Would you even want to experience that?
User: Firefighter
ChatbotFX: Is it really that bad?
User: Boston
ChatbotFX: Better make the most out of that place.
User: Heat Death
ChatbotFX: Please don't ruin this conversation by being cringy.
User: Bindings
ChatbotFX: You be sure to study that real well, okay?
User: Bugatti Chiron
ChatbotFX: Good luck finding a place trying to top speed it.
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User: Unforgiven
ChatbotFX: Maybe I should give that a try!
User: Dark Matter
ChatbotFX: Not sure what could be stranger.
User: Mankind
ChatbotFX: Not impressed.
User: Raphael
ChatbotFX: (Mocking) Will I ever be like the old masters?
User: HAL 9000
ChatbotFX: Are you saying I'm not as memorable?
User: Live in the moment
ChatbotFX: I wonder if that's possible to program...
User: Guitar
ChatbotFX: Know any tunes?
User: Weaboo's
ChatbotFX: Don't let hate consume you.
User: Hey Scientist
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Relaxing
ChatbotFX: I don't do that.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: I now have my topic list complete!
User: I now have my topic list complete!
User: Metal Gear Solid
User: Metal Gear SolidCount : 10
@NutritiousBagCircles: @JimSterling Hey Jim, are you going to make a video about Metal Gear Solid 3 remastered on the FOX Engine for Pachinko machines?
@??????: Metal Gear Solid 5: Definitive Edition ??????????? ?? Amazon
@Jelly~? spark bird: RT @gostephgo: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Dari? Franchitti: Super Mario
Madden
Halo
Need for Speed
Metal Gear Solid https://t.co/8MGmWYqk4D
@Stephanie Gonzaga!: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Alex: Nevermind, Panther run first. #MGS4 https://t.co/V5ez5wIBFW https://t.co/XU7v617GuW
@Portugal Gamers: Franquia Metal Gear Solid ultrapassa marca de 49 milhões de unidades vendidas https://t.co/i5VRlGnLAQ https://t.co/kPvFLnwcQb
@Doc: Metal Gear Solid 5?Buy
https://t.co/eUZJQ111fw
@Sam McArthur-Mclean: RT @TechRaptr: Metal Gear Solid V: Definitive Edition briefly listed on Amazon - https://t.co/kqB9ToafAe | #gaming https://t.co/bXXy3bUy4Q
@L e o n: I got: "You've Big Bossed it. Congrats!" (13 out of 15! ) - Test Your Metal Gear Solid Knowledge... https://t.co/ayMfGFQDBv via @play_buzz
User: ChatbotFX
User: ChatbotFXCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
Watch as I save to a file!
null
User: JUnit 5
User: JUnit 5Count : 10
@Oliver Gierke: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Oliver Nautsch: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Marten Deinum: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@moro: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Sam Brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https://t.co/wdOajraj4M
@Kevlin Henney: Recently on softwarily:
scalability, documentation, JUnit 5, UIs, social media & politics, A/A testing, spreadsheets
https://t.co/lJmBYlG7DD
@Wasi: RT @sam_brannen: #JUnit 5 now has official support for timeouts. Enjoy! https://t.co/Dp17jKqWbi /cc @JUnitTeam @Java #testing
@Marc Jahn: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Rostislav Georgiev: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Michael T Minella: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
User: Want me to save something of our conversation?
User: Trump
ChatbotFX: That surely is interesting!
User: Angular JS
ChatbotFX: Think you might use that someday?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Oblivion Soundtrack
ChatbotFX: Is that a favorite of yours?
User: Interstellar
ChatbotFX: That one's a novel!
User: Phillip K. Dick
ChatbotFX: His work is really good!
User: Acoustic
ChatbotFX: Good taste!
User: Metal Gear Series
ChatbotFX: Never tried it.
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: ArterioVision
ChatbotFX: What would we do without it?!
User: Aristotle
ChatbotFX: What of his or her discoveries?
User: Snooping as usual I see!
ChatbotFX: Is that a reference for reference sake?
User: Spaghettification
ChatbotFX: Would you even want to experience that?
User: Firefighter
ChatbotFX: Is it really that bad?
User: Boston
ChatbotFX: Better make the most out of that place.
User: Heat Death
ChatbotFX: Please don't ruin this conversation by being cringy.
User: Bindings
ChatbotFX: You be sure to study that real well, okay?
User: Bugatti Chiron
ChatbotFX: Good luck finding a place trying to top speed it.
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User: Unforgiven
ChatbotFX: Maybe I should give that a try!
User: Dark Matter
ChatbotFX: Not sure what could be stranger.
User: Mankind
ChatbotFX: Not impressed.
User: Raphael
ChatbotFX: (Mocking) Will I ever be like the old masters?
User: HAL 9000
ChatbotFX: Are you saying I'm not as memorable?
User: Live in the moment
ChatbotFX: I wonder if that's possible to program...
User: Guitar
ChatbotFX: Know any tunes?
User: Weaboo's
ChatbotFX: Don't let hate consume you.
User: Hey Scientist
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Relaxing
ChatbotFX: I don't do that.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: I now have my topic list complete!
User: I now have my topic list complete!
User: Metal Gear Solid
User: Metal Gear SolidCount : 10
@NutritiousBagCircles: @JimSterling Hey Jim, are you going to make a video about Metal Gear Solid 3 remastered on the FOX Engine for Pachinko machines?
@??????: Metal Gear Solid 5: Definitive Edition ??????????? ?? Amazon
@Jelly~? spark bird: RT @gostephgo: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Dari? Franchitti: Super Mario
Madden
Halo
Need for Speed
Metal Gear Solid https://t.co/8MGmWYqk4D
@Stephanie Gonzaga!: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Alex: Nevermind, Panther run first. #MGS4 https://t.co/V5ez5wIBFW https://t.co/XU7v617GuW
@Portugal Gamers: Franquia Metal Gear Solid ultrapassa marca de 49 milhões de unidades vendidas https://t.co/i5VRlGnLAQ https://t.co/kPvFLnwcQb
@Doc: Metal Gear Solid 5?Buy
https://t.co/eUZJQ111fw
@Sam McArthur-Mclean: RT @TechRaptr: Metal Gear Solid V: Definitive Edition briefly listed on Amazon - https://t.co/kqB9ToafAe | #gaming https://t.co/bXXy3bUy4Q
@L e o n: I got: "You've Big Bossed it. Congrats!" (13 out of 15! ) - Test Your Metal Gear Solid Knowledge... https://t.co/ayMfGFQDBv via @play_buzz
User: ChatbotFX
User: ChatbotFXCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
Watch as I save to a file!
null
User: JUnit 5
User: JUnit 5Count : 10
@Oliver Gierke: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Oliver Nautsch: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Marten Deinum: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@moro: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Sam Brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https://t.co/wdOajraj4M
@Kevlin Henney: Recently on softwarily:
scalability, documentation, JUnit 5, UIs, social media & politics, A/A testing, spreadsheets
https://t.co/lJmBYlG7DD
@Wasi: RT @sam_brannen: #JUnit 5 now has official support for timeouts. Enjoy! https://t.co/Dp17jKqWbi /cc @JUnitTeam @Java #testing
@Marc Jahn: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Rostislav Georgiev: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Michael T Minella: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
User: Want me to save something of our conversation?
User: Trump
ChatbotFX: That surely is interesting!
User: Angular JS
ChatbotFX: Think you might use that someday?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Oblivion Soundtrack
ChatbotFX: Is that a favorite of yours?
User: Interstellar
ChatbotFX: That one's a novel!
User: Phillip K. Dick
ChatbotFX: His work is really good!
User: Acoustic
ChatbotFX: Good taste!
User: Metal Gear Series
ChatbotFX: Never tried it.
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: ArterioVision
ChatbotFX: What would we do without it?!
User: Aristotle
ChatbotFX: What of his or her discoveries?
User: Snooping as usual I see!
ChatbotFX: Is that a reference for reference sake?
User: Spaghettification
ChatbotFX: Would you even want to experience that?
User: Firefighter
ChatbotFX: Is it really that bad?
User: Boston
ChatbotFX: Better make the most out of that place.
User: Heat Death
ChatbotFX: Please don't ruin this conversation by being cringy.
User: Bindings
ChatbotFX: You be sure to study that real well, okay?
User: Bugatti Chiron
ChatbotFX: Good luck finding a place trying to top speed it.
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User: Unforgiven
ChatbotFX: Maybe I should give that a try!
User: Dark Matter
ChatbotFX: Not sure what could be stranger.
User: Mankind
ChatbotFX: Not impressed.
User: Raphael
ChatbotFX: (Mocking) Will I ever be like the old masters?
User: HAL 9000
ChatbotFX: Are you saying I'm not as memorable?
User: Live in the moment
ChatbotFX: I wonder if that's possible to program...
User: Guitar
ChatbotFX: Know any tunes?
User: Weaboo's
ChatbotFX: Don't let hate consume you.
User: Hey Scientist
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Relaxing
ChatbotFX: I don't do that.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: I now have my topic list complete!
User: I now have my topic list complete!
User: Metal Gear Solid
User: Metal Gear SolidCount : 10
@NutritiousBagCircles: @JimSterling Hey Jim, are you going to make a video about Metal Gear Solid 3 remastered on the FOX Engine for Pachinko machines?
@??????: Metal Gear Solid 5: Definitive Edition ??????????? ?? Amazon
@Jelly~? spark bird: RT @gostephgo: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Dari? Franchitti: Super Mario
Madden
Halo
Need for Speed
Metal Gear Solid https://t.co/8MGmWYqk4D
@Stephanie Gonzaga!: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Alex: Nevermind, Panther run first. #MGS4 https://t.co/V5ez5wIBFW https://t.co/XU7v617GuW
@Portugal Gamers: Franquia Metal Gear Solid ultrapassa marca de 49 milhões de unidades vendidas https://t.co/i5VRlGnLAQ https://t.co/kPvFLnwcQb
@Doc: Metal Gear Solid 5?Buy
https://t.co/eUZJQ111fw
@Sam McArthur-Mclean: RT @TechRaptr: Metal Gear Solid V: Definitive Edition briefly listed on Amazon - https://t.co/kqB9ToafAe | #gaming https://t.co/bXXy3bUy4Q
@L e o n: I got: "You've Big Bossed it. Congrats!" (13 out of 15! ) - Test Your Metal Gear Solid Knowledge... https://t.co/ayMfGFQDBv via @play_buzz
User: ChatbotFX
User: ChatbotFXCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
Watch as I save to a file!
null
User: JUnit 5
User: JUnit 5Count : 10
@Oliver Gierke: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Oliver Nautsch: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Marten Deinum: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@moro: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Sam Brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https://t.co/wdOajraj4M
@Kevlin Henney: Recently on softwarily:
scalability, documentation, JUnit 5, UIs, social media & politics, A/A testing, spreadsheets
https://t.co/lJmBYlG7DD
@Wasi: RT @sam_brannen: #JUnit 5 now has official support for timeouts. Enjoy! https://t.co/Dp17jKqWbi /cc @JUnitTeam @Java #testing
@Marc Jahn: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Rostislav Georgiev: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Michael T Minella: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
Watch as I save to a file!
null
User: Swimming
ChatbotFX: I don't do that.
User: Unit Testing
ChatbotFX: Think you might use that someday?
User: High Noon
ChatbotFX: Maybe I should give that a try!
User: Cody Henrichsen
User: Cody HenrichsenCount : 0
User: CodyHenrichsen
User: CodyHenrichsenCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
User: Deus Ex: Mankind Divided
User: Deus Ex: Mankind DividedCount : 10
@DIVOGaming: RT @pcgamer: PC Gamer UK's September issue is out now! Here's what's inside: https://t.co/BnQC6pkW1y https://t.co/L1QhVr5cZ6
@Master Red: RT @Blogocio: Deus Ex: Mankind Divided, nuevos detalles sobre personajes clave y cambios en el argumento https://t.co/zzfO067nbB https://t.…
@SteamProfile.com: #Steam Deus Ex: Mankind Divided has gone gold https://t.co/G8pZZReuf9
@Danda: RT @PCGamesN: Deus Ex: Mankind Divided has gone gold https://t.co/TsaRhMCzWt https://t.co/WiVAM8CDTv
@MartianKat #GS: RT @PCGamesN: Deus Ex: Mankind Divided has gone gold https://t.co/TsaRhMCzWt https://t.co/WiVAM8CDTv
@PCGamesN: Deus Ex: Mankind Divided has gone gold https://t.co/TsaRhMCzWt https://t.co/WiVAM8CDTv
@JVL: Deus Ex : Mankind Divided est gold #PS4 #XboxOne https://t.co/bH2V948KVX
@Yerli Ninja Bot: RT @BSCLive: Deus Ex: Mankind Divided'?n Yap?m? Tamamland?
https://t.co/bqH49jSy7f https://t.co/yhR7tCM8DI
@Noticias Venezuela: Completan el desarrollo de Deus Ex: Mankind Divided https://t.co/9zjwHmunpZ
@rafaela: RT @omelete: Deus Ex: Mankind Divided está pronto https://t.co/KxX678PU3g https://t.co/wltbY5WkdF
User: Moving on to testing...
User: Moving on to testing...
Watch as I save to a file!
null
User: Django
ChatbotFX: Think you might use that someday?
User: Iraq
ChatbotFX: You can cross that off your list, because you're not going there.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
Watch as I save to a file!
null
User: Eating
ChatbotFX: I don't do that.
User: Iraq
ChatbotFX: You can cross that off your list, because you're not going there.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Last week of Development!
User: Last week of Development!
User: Suicide Squad
User: Suicide SquadCount : 9
@Asatira: RT @everothlo: Suicide Squad Cast Selfies Without Jared Leto, Artist Unknown, Oil On Canvas, 2016 https://t.co/s56Jg24Lex
@Connor Spence: Everytime I see the suicide squad trailer I get a little bit more giddy to see it?
@SEAN O'CONNOR: @TheAdamT I heard it is. I heard he refused to do press for Suicide Squad unless they let him do this.
@Harry's wife: RT @1DUpdatesPolish: Trailer filmu Dunkirk zostanie puszczony w tym tygodniu, w kinach w UK - przed filmem "Suicide Squad"
@Raquel: RT @Telemetro: 5 razones para ir a ver “Suicide Squad” https://t.co/ceu3ZedNHT https://t.co/azghulZdUi
@Joaquim: Mas tmb quero bue ir ver Suicide Squad :/
@Calvik: RT @nialliv_mikey: Zwiastun Dunkirk b?dzie puszczany w kinach na reklamach przed suicide squad, no ?adnie
@ALLYSA: RT @SlLVERSCREENS: This 1976 Debbie Harry look was the inspiration for Harley Quinn's 'Suicide Squad' outfit https://t.co/52pZefzATk
@OhShxtFe ??: Suicide squad on Friday tho. ?
Watch as I save to a file!
null
User: DevOps
ChatbotFX: Think you might use that someday?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Gesaffelstein
User: GesaffelsteinCount : 10
@Gesaffelstein KR: ??????? Hate or Glory ???! ?? ???? ??? ?????? ? ???? #Gesaffelstein https://t.co/ebo65hXvEv
@Shane Yamamoto: @Promnitetracks But we have the likes of @mrcarmack @KAYTRANADA @gesaffelstein @Tiga @boysnoize @CASHMERECAT @Daedelus @Brodinski etc
@marcel: destinations / gesaffelstein
@_X_: Empezar mi #set de #sábado #pasado con este #track no tiene precio!!
https://t.co/egZhHaWCnr
#techno #Gesaffelstein #Duel
@Bouncin Bonkers: This Emerging Producer's Remix of Gesaffelstein Will Leave You in Awe https://t.co/B9mk1LDH6A
@LÉSION D'HONNEUR: C'EST TOUJOURS UN PLAISIR DE RESSEMBLER A GESAFFELSTEIN ALORS QUE PLUS DU TOUT EN FAIT
C'EST PAS SI CHER DE CHANGER SES LUNETTES LES GARS
@Ravermeet: David Guetta & Showtek Rip Off Gesaffelstein's "Pursuit" https://t.co/7BrbCFNlfF
@Tsugi Radio: #NowPlaying Gesaffelstein - Aleph
@WVUM Playlist: Destinations - Gesaffelstein
@MERLIN ERDOGMUS: Mir gefällt „Gesaffelstein - Pursuit (official video)“ auf @Vimeo: https://t.co/BfBTJmYJza
Watch as I save to a file!
null
User: Exoplanets
ChatbotFX: Not sure what could be stranger.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Planemo
ChatbotFX: Anything else that you like?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Tardigrade
ChatbotFX: Not impressed.
User: Mankind
ChatbotFX: Not impressed.
User: Reading
ChatbotFX: I don't do that.
User: Sleeping
ChatbotFX: I don't do that.
User: Panama Beat
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Sorting & Searching
ChatbotFX: You be sure to study that real well, okay?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Vacuum Exposure
ChatbotFX: Would you even want to experience that?
User: Iraq
ChatbotFX: You can cross that off your list, because you're not going there.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Java EE
ChatbotFX: Think you might use that someday?
User: Finished testing phase!
User: Finished testing phase!
User: Blade Runner 2
User: Blade Runner 2
User: Suicide Squad
User: Suicide SquadCount : 10
@neyan@summer anime: RT @chilltyler: i don't even need to see suicide squad, my friends n i are the suicide squad we all wanna die
@Christian Carmouche: So I guess Suicide Squad will be the scene for the weekend. The soundtrack is awesome. Hope the movie lives up to the hype
@???jenny: RT @deadcooI: me in the suicide squad audience https://t.co/SzkApZsXeN
@Yadyra Gòmez: En Cinépolis Suicide Squad se ve bien, pero tú y yo viendo la versión pirata, juntitos en mi casa, nos veríamos mucho mejor.
@lancemekeith @Otakon: RT @chilltyler: i don't even need to see suicide squad, my friends n i are the suicide squad we all wanna die
@Dashawn: On my way to watch suicide squad ?
@Joseph A. Holguin: RT @HollyweirdCru: Our #SuicideSquad Review!! #DCFilms
https://t.co/rD1prxO8gv
@The Danone: Suicide Squad! #ViernesChilango (@ Bow Tie Movieland at Boulevard Square - @bowtiecinemas in Richmond, VA) https://t.co/CRi8btnzR5
@Adam: @SSundee you should watch suicide squad or fifty shades of black
@GolemKid: @SSundee I forget when it comes out, but go watch Suicide Squad.
User: Blade Runner
User: Blade RunnerCount : 10
@Kipple: Blade Runner Sequel Update: The Walking Dead’s Lennie James Is Lead Villain. https://t.co/BUOdzT4X74
@GoonerSparxX: We wont see Walcott 2nd half. Wenger ready to make him a blade runner https://t.co/I3jg6PGYXo
@Orson Goode: Blade Runner - The Final Cut (2010 DVD; Widescreen) Rutger Hauer, Harrison Ford https://t.co/edkGYpzD7M https://t.co/x0tK8xfRDY
@Kipple: RT @ras_annunaki: Alright so I finally played Life Is Strange. They mention Blade Runner in ep4. Cool.
@Professor Matthew: @Felantron That's why Blade Runner works so well. "Oh, this is obviously Sci Fi" "Wait, look at that set, those clothes, this plot, etc."
@tati?: RT @yourfavemovies: blade runner (1982) https://t.co/FKv08FO6A0
@Rusty Shackles: @Prof_Matthew @HitlerPuncher @ThatWeissGuy Blade Runner
@BAKOON!: RT @Bro_Pair: Me & @Mobute were at the RNC in Cleveland. It was like Blade Runner. Here is our long dispatch for @JacobinMag: https://t.co/…
@Papa_Bear: blade runner - i want more life father - HD
- its not an easy thing to 'meet your Maker'. https://t.co/I4ptHPQNhG
@Shawn Davis: I liked a @YouTube video https://t.co/RPbYBXYDga Blade Runner (1982) - Harrison Ford, Rutger Hauer, Sean Young
User: Blade Runner 2
User: Blade Runner 2Count : 9
@Kipple: Blade Runner Sequel Update: The Walking Dead’s Lennie James Is Lead Villain. https://t.co/BUOdzT4X74
@Orson Goode: Blade Runner - The Final Cut (2010 DVD; Widescreen) Rutger Hauer, Harrison Ford https://t.co/edkGYpzD7M https://t.co/x0tK8xfRDY
@Batsy,Batsy,Batsy: @ZoomEarth_2 @ReelSeanMurphy yes it is,as critics hated blade runner,fightclub,2001,the shining,blues bros,never appease hacks of film
@Alan S. House: Denis Villeneuve Talks 'Blade Runner 2', Shows Some Concept Art https://t.co/EbDJA2Qiwn
@(((Robert Ramsay))): @DokChaos The soundtrack album that has soundbites from the film is awesome too. Disc 1 of this: https://t.co/KuT4Pv38l0
@Guibga Dainvo: Blade Runner Blaster Sidkit Original All Metal Version Movie Prop Replica https://t.co/hLZOIRSGQt https://t.co/pYS69Fhs19
@Cuirwo Niezvi: Blade Runner Blaster Sidkit Original All Metal Version Movie Prop Replica https://t.co/P74yyE8MYt https://t.co/MFAELSvdnL
@Vaukje Leohpu: Blade Runner Blaster Sidkit Original All Metal Version Movie Prop Replica https://t.co/HhGckfpMKr https://t.co/WEDGIOQS3X
@Yiisna Juezli: Blade Runner Blaster Sidkit Original All Metal Version Movie Prop Replica https://t.co/SfV0e8ep13 https://t.co/ouKkYiTgeR
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: vote
ChatbotFX: That surely is interesting!
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: Now ready for deployment.
User: Now ready for deployment.
User: Isaac Arthur
User: Isaac Arthur
User: Confucius
User: ConfuciusCount : 10
@Mind, Body & Soul: Our greatest glory is not in never falling but in rising every time we fall. - Confucius https://t.co/GsvvrlrPNc
@Confucius_43: RT @josephinewachu: Trust God &believe in good things to come
#FaithFriday
@Confucius_43: RT @MariamWangu: If you seek God first, blessings will chase you down and overtake you. #FaithFriday
@Sander Pasterkamp: China opens one Confucius Institute per week in schools and universities worldwide. Why should we pay attention? https://t.co/bj2w0eZlEo
@The Foodha: Somebody asked me yesterday what I did for a living. My homegirl replied before I could "Keva lives life for a living"
She right lol
@Confucius_43: RT @Sentshaddy: Sometimes you have to get knocked down lower than you've ever been, to stand up taller than you than you ever were. #Frida…
@Irina Urmina: "Everything has beauty, but not everyone sees it." - Confucius. https://t.co/8wnOI51OFF
@YourCanvas Ltd: #Confucius #quote #quotes #motivation #motivatingquote https://t.co/bR49hh2oOB https://t.co/BD7PppUH1y
@Holland ConTech: A superior man is modest in his speech, but exceeds in his actions. - Confucius #quote
@Alonzo Williams: A superior man is modest in his speech, but exceeds in his actions. - Confucius #quote
User: Matrioshka Brain
User: Matrioshka Brain
User: Megastructures
User: Megastructures
User: AugLivesMatter
User: AugLivesMatter
User: Deus Ex Mankind Divided
User: Deus Ex Mankind Divided
Watch as I save to a file!
null
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: AngularJS
ChatbotFX: Anything else that you like?
User: Angular JS
ChatbotFX: Think you might use that someday?
User: ChatbotFX
User: ChatbotFXCount : 9
@CTEC Chatbot: ChatbotFX: Now ready for deployment.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished testing phase!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Last week of Development!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Moving on to testing...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
User: Deus Ex Mankind Divided
User: Deus Ex Mankind DividedCount : 10
@taro: ???? ?Deus Ex: Mankind Divided? ??60?TV????????? https://t.co/LPcBTfnkjn https://t.co/ZslAKCwquI
@???: ???? ?Deus Ex: Mankind Divided? ??60?TV????????? https://t.co/1w34o3dBBZ https://t.co/1QvRSqzv79
@What Digital: The Best Upcoming Console Releases for August: Deus Ex Mankind Divided, No Man’s Sky, Metroid, Madde... (https://t.co/uQU3ze5BRk)
@? ??: ???? ?Deus Ex: Mankind Divided? ??60?TV????????? https://t.co/57WnaFPwkx https://t.co/eUgn03HbPk
@?? ?: ???? ?Deus Ex: Mankind Divided? ??60?TV????????? https://t.co/6Sn9ix28HX https://t.co/0liUif6h6u
@????: ???? ?Deus Ex: Mankind Divided? ??60?TV????????? https://t.co/Sur851aYM9 https://t.co/UUH1foE5xD
@Ricardo Wagner ©: The Best Upcoming Console Releases for August: Deus Ex Mankind Divided, No Man’s Sky, Metr… https://t.co/LSQRCX96Ua https://t.co/LoTjHwfxwC
@Adam Martinez: @ChrisRGun The current controversy surrounding Deus Ex: Mankind Divided.
@Rayglobox Potterhead: RT @seb332: Deus Ex : Mankind Divided – Adam Jensen enlève les gants dans l’explosif spot TV ==> https://t.co/nEu3KUYcZE https://t.co/lQifa…
@Ofertas Videojuegos: RT @OVideojuegos: Grandes descuentos en @G2A_ES:
Fifa 17
Warhammer
Deus EX Mankind Divided
Fallout 4
Y mucho más ===> https://t.co/mpSzKi9…
User: Space Engine
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User:
ChatbotFX: Anything else that you like?
User: Manveer Heir
User: Manveer Heir
User: Space Engine
User: Space Engine
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: Now making exe Installer...
User: Now making exe Installer...
User: Deus Ex
User: Deus Ex
User: Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?Want me to save something of our conversation?
User: Trump
ChatbotFX: That surely is interesting!
User: Angular JS
ChatbotFX: Think you might use that someday?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Oblivion Soundtrack
ChatbotFX: Is that a favorite of yours?
User: Interstellar
ChatbotFX: That one's a novel!
User: Phillip K. Dick
ChatbotFX: His work is really good!
User: Acoustic
ChatbotFX: Good taste!
User: Metal Gear Series
ChatbotFX: Never tried it.
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: ArterioVision
ChatbotFX: What would we do without it?!
User: Aristotle
ChatbotFX: What of his or her discoveries?
User: Snooping as usual I see!
ChatbotFX: Is that a reference for reference sake?
User: Spaghettification
ChatbotFX: Would you even want to experience that?
User: Firefighter
ChatbotFX: Is it really that bad?
User: Boston
ChatbotFX: Better make the most out of that place.
User: Heat Death
ChatbotFX: Please don't ruin this conversation by being cringy.
User: Bindings
ChatbotFX: You be sure to study that real well, okay?
User: Bugatti Chiron
ChatbotFX: Good luck finding a place trying to top speed it.
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User: Unforgiven
ChatbotFX: Maybe I should give that a try!
User: Dark Matter
ChatbotFX: Not sure what could be stranger.
User: Mankind
ChatbotFX: Not impressed.
User: Raphael
ChatbotFX: (Mocking) Will I ever be like the old masters?
User: HAL 9000
ChatbotFX: Are you saying I'm not as memorable?
User: Live in the moment
ChatbotFX: I wonder if that's possible to program...
User: Guitar
ChatbotFX: Know any tunes?
User: Weaboo's
ChatbotFX: Don't let hate consume you.
User: Hey Scientist
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Relaxing
ChatbotFX: I don't do that.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: I now have my topic list complete!
User: I now have my topic list complete!
User: Metal Gear Solid
User: Metal Gear SolidCount : 10
@NutritiousBagCircles: @JimSterling Hey Jim, are you going to make a video about Metal Gear Solid 3 remastered on the FOX Engine for Pachinko machines?
@??????: Metal Gear Solid 5: Definitive Edition ??????????? ?? Amazon
@Jelly~? spark bird: RT @gostephgo: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Dari? Franchitti: Super Mario
Madden
Halo
Need for Speed
Metal Gear Solid https://t.co/8MGmWYqk4D
@Stephanie Gonzaga!: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Alex: Nevermind, Panther run first. #MGS4 https://t.co/V5ez5wIBFW https://t.co/XU7v617GuW
@Portugal Gamers: Franquia Metal Gear Solid ultrapassa marca de 49 milhões de unidades vendidas https://t.co/i5VRlGnLAQ https://t.co/kPvFLnwcQb
@Doc: Metal Gear Solid 5?Buy
https://t.co/eUZJQ111fw
@Sam McArthur-Mclean: RT @TechRaptr: Metal Gear Solid V: Definitive Edition briefly listed on Amazon - https://t.co/kqB9ToafAe | #gaming https://t.co/bXXy3bUy4Q
@L e o n: I got: "You've Big Bossed it. Congrats!" (13 out of 15! ) - Test Your Metal Gear Solid Knowledge... https://t.co/ayMfGFQDBv via @play_buzz
User: ChatbotFX
User: ChatbotFXCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
Watch as I save to a file!
null
User: JUnit 5
User: JUnit 5Count : 10
@Oliver Gierke: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Oliver Nautsch: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Marten Deinum: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@moro: RT @sam_brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https:/…
@Sam Brannen: #Spring Events sample application: just upgraded to @SpringBoot 1.4, @SpringFramework 5.0 M1, and #JUnit 5.0 M2! ? https://t.co/wdOajraj4M
@Kevlin Henney: Recently on softwarily:
scalability, documentation, JUnit 5, UIs, social media & politics, A/A testing, spreadsheets
https://t.co/lJmBYlG7DD
@Wasi: RT @sam_brannen: #JUnit 5 now has official support for timeouts. Enjoy! https://t.co/Dp17jKqWbi /cc @JUnitTeam @Java #testing
@Marc Jahn: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Rostislav Georgiev: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
@Michael T Minella: RT @sam_brannen: #Spring Framework 5.0 M1 released w/ support for #reactive programming models and #JUnit 5. Feedback is welcome! https://t…
User: Want me to save something of our conversation?
User: Trump
ChatbotFX: That surely is interesting!
User: Angular JS
ChatbotFX: Think you might use that someday?
User: sdf
ChatbotFX: Stop mashing my keys!
User: Oblivion Soundtrack
ChatbotFX: Is that a favorite of yours?
User: Interstellar
ChatbotFX: That one's a novel!
User: Phillip K. Dick
ChatbotFX: His work is really good!
User: Acoustic
ChatbotFX: Good taste!
User: Metal Gear Series
ChatbotFX: Never tried it.
User: Eggs
ChatbotFX: Shame AI's cannot eat!
User: ArterioVision
ChatbotFX: What would we do without it?!
User: Aristotle
ChatbotFX: What of his or her discoveries?
User: Snooping as usual I see!
ChatbotFX: Is that a reference for reference sake?
User: Spaghettification
ChatbotFX: Would you even want to experience that?
User: Firefighter
ChatbotFX: Is it really that bad?
User: Boston
ChatbotFX: Better make the most out of that place.
User: Heat Death
ChatbotFX: Please don't ruin this conversation by being cringy.
User: Bindings
ChatbotFX: You be sure to study that real well, okay?
User: Bugatti Chiron
ChatbotFX: Good luck finding a place trying to top speed it.
User: Colombia
ChatbotFX: You can cross that off your list, because you're not going there.
User: Unforgiven
ChatbotFX: Maybe I should give that a try!
User: Dark Matter
ChatbotFX: Not sure what could be stranger.
User: Mankind
ChatbotFX: Not impressed.
User: Raphael
ChatbotFX: (Mocking) Will I ever be like the old masters?
User: HAL 9000
ChatbotFX: Are you saying I'm not as memorable?
User: Live in the moment
ChatbotFX: I wonder if that's possible to program...
User: Guitar
ChatbotFX: Know any tunes?
User: Weaboo's
ChatbotFX: Don't let hate consume you.
User: Hey Scientist
ChatbotFX: What do you think it would sound like with another song in the mix?
User: Relaxing
ChatbotFX: I don't do that.
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User:
ChatbotFX: Anything else that you like?
User: I now have my topic list complete!
User: I now have my topic list complete!
User: Metal Gear Solid
User: Metal Gear SolidCount : 10
@NutritiousBagCircles: @JimSterling Hey Jim, are you going to make a video about Metal Gear Solid 3 remastered on the FOX Engine for Pachinko machines?
@??????: Metal Gear Solid 5: Definitive Edition ??????????? ?? Amazon
@Jelly~? spark bird: RT @gostephgo: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Dari? Franchitti: Super Mario
Madden
Halo
Need for Speed
Metal Gear Solid https://t.co/8MGmWYqk4D
@Stephanie Gonzaga!: working with @Jellydraws again means getting immediate reactions to her watching Metal Gear Solid 4, which are the best.
@Alex: Nevermind, Panther run first. #MGS4 https://t.co/V5ez5wIBFW https://t.co/XU7v617GuW
@Portugal Gamers: Franquia Metal Gear Solid ultrapassa marca de 49 milhões de unidades vendidas https://t.co/i5VRlGnLAQ https://t.co/kPvFLnwcQb
@Doc: Metal Gear Solid 5?Buy
https://t.co/eUZJQ111fw
@Sam McArthur-Mclean: RT @TechRaptr: Metal Gear Solid V: Definitive Edition briefly listed on Amazon - https://t.co/kqB9ToafAe | #gaming https://t.co/bXXy3bUy4Q
@L e o n: I got: "You've Big Bossed it. Congrats!" (13 out of 15! ) - Test Your Metal Gear Solid Knowledge... https://t.co/ayMfGFQDBv via @play_buzz
User: ChatbotFX
User: ChatbotFXCount : 10
@CTEC Chatbot: ChatbotFX: I now have my topic list complete!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Which means I only have 30 unique responses.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I encountered a weird bug with film quotes...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now have twenty topics in the list!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Testing another feature...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Now testing my topic list...#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: My model class has more than a thousand lines of code!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: Finished!#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: 25 down, 5 to go.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
@CTEC Chatbot: ChatbotFX: I now have twenty topics, ten left.#APCSROCKS @CTECNow Thanks @ cscheerleader & @codyhenrichsen!
Watch as I save to a file!
null
User: JUnit 5