-
Notifications
You must be signed in to change notification settings - Fork 0
/
result_minHashLSHforest.txt
6507 lines (6496 loc) · 304 KB
/
result_minHashLSHforest.txt
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
Nasa.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
================
facebook_sercurity2.txt
================
taxi_fly.txt
iot-devices-to-get-big-boost-from-5g-networks-ericsson-says.txt
================
uber_raise.txt
bird-lime-stop-scooter-service-to-protest-uber-lyft-rankings.txt
================
Twitter_paid_CEO.txt
twitters-jack-dorsey-reportedly-overruled-decision-to-ban-alex-jones.txt
================
pair-programming-will-it-make-you-hate-your-colleagues.txt
san-francisco-scooter-law-means-goodbye-to-electric-scooters-for-now.txt
================
MIT_university.txt
mit-using-radio-waves-to-track-patients-health-through-walls.txt
================
blockchain_bank.txt
amazon-will-help-entrepreneurs-form-companies-to-deliver-its-packages.txt
================
Gmail.txt
facebook-emails-show-us-again-that-profits-come-before-privacy.txt
================
5g.txt
blockchain_bank.txt
================
Twitter_CEO.txt
twitters-jack-dorsey-reportedly-overruled-decision-to-ban-alex-jones.txt
================
apple_music_cut_price.txt
verizons-throttling-of-firefighter-data-during-california-fire-raises-net-neutrality-concerns.txt
================
insta_sercurity.txt
================
Oneplus-7-pro.txt
trump-tariffs-on-china-affect-huawei-fusionhome-us-home-solar-panel-launch.txt
================
session_cookies_1.txt
session_cookies.txt
================
amazon-web-service.txt
amazon-vpc.txt
================
uber_ipo.txt
lyft-acquires-motivate-getting-into-the-bikeshare-game.txt
================
work-fucking-hard.txt
bill-gates-says-mark-zuckerberg-owes-him-for-dc-advice.txt
================
gmail_schedule.txt
is-spotify-secretly-building-gadgets-fcc-offers-new-evidence.txt
================
Sony-challenges-SamSung.txt
Sony-challenges-SamSung.txt
================
walmart_google.txt
at-ces-2019-alexa-and-google-assistant-will-howl-the-rest-will-whimper.txt
================
github_free.txt
microsoft-completes-github-buy-says-developer-site-will-retain-distinctive-spirit.txt
================
effective-communication-skills-for-testers.txt
effective-communication-skills-for-testers.txt
================
8-critical-factors-for-success-of-any-qa-project.txt
google-pledges-up-to-25-million-in-new-artificial-intelligence-challenge.txt
================
white_separatist_in_Vn.txt
alpha-beta-testing-demystified.txt
================
huawei_cfo_quit.txt
facebook-elliot-schrage-defends-using-definers-pr-firm.txt
================
facebook_sercurity.txt
facebook-breach-affected-50-million-people.txt
================
utube_deleted_video.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
================
face_utube_australia_law.txt
facebooks-and-social-media-content-may-become-harder-to-police-in-the-future.txt
================
boeing737_fix.txt
boeings-747-descends-closer-to-retirement.txt
================
researcg_ai.txt
twitter-users-in-china-reportedly-held-by-government-amid-crackdown.txt
================
china-research6g.txt
at-t-partners-on-5g-enabled-hospital-effort.txt
================
apple_price_drop_china.txt
apple_price_drop_china.txt
================
scrum-does-not-work-here-in-asia.txt
scrum-does-not-work-here-in-asia.txt
================
6-steps-to-become-business-analyst.txt
youtube-gives-educational-content-and-creators-20-million-injection.txt
================
the-5-problem-solving-skills-of-great-software-developers.txt
a-lack-of-digital-skills-could-be-hurting-young-professional-women.txt
================
ephone_declined_price.txt
apple-ups-the-recycled-materials-in-its-new-iphones.txt
================
Oneplus_7_pro.txt
trump-tariffs-on-china-affect-huawei-fusionhome-us-home-solar-panel-launch.txt
================
becoming-qa-leftie-team-quality-indicator.txt
forget-about-agile-keep-focus-quality.txt
================
Mark_Zuckerberg.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
================
twitter_dark_mode.txt
firefox-users-finally-get-option-to-block-autoplay-video-audio.txt
================
Time-Management-Tips-for-Developers.txt
uber-in-talks-to-resume-services-in-abu-dhabi-official.txt
================
alpha-beta-testing-demystified.txt
alpha-beta-testing-demystified.txt
================
Teen_hits_Apple.txt
face_recognition2.txt
================
elonmusk_tunnel.txt
boeing737_fix.txt
================
give_data_back_user.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
================
fb_location_tracking.txt
facebook-remains-evasive-over-over-cambridge-analytica-data-uk-politicians.txt
================
google-thinks-future-code-toy-blocks.txt
amazon-opens-its-23-dollar-kids-book-box-to-all-prime-members.txt
================
huawei_newgoal.txt
lime-is-apparently-opening-a-physical-scooter-store-in-santa-monica.txt
================
amz-richest.txt
holiday-shoppers-forecasted-to-spend-over-124-billion-online.txt
================
google_dropbox.txt
microsoft-says-its-extending-gdpr-rights-to-consumers-worldwide.txt
================
amz_face_recognition.txt
aclu-wants-amazon-to-stop-offering-surveillance-technology-rekognition.txt
================
Facebook_Twitter_Instagram.txt
facebook-needs-safe-harbor-for-public-interest-journalism-say-researchers.txt
================
fb_share_stories.txt
zuckerberg-apologizes-for-data-scandal-in-full-page-ads.txt
================
session_cookies.txt
session_cookies.txt
================
nasa_robot.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
================
a330_cancel.txt
boeings-747-descends-closer-to-retirement.txt
================
coinbase_debit.txt
coinbase_debit.txt
================
utube_deleted_video1.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
================
performance-test-plan.txt
performance-test-plan.txt
================
whatsapp_ios.txt
apple-removes-thousands-of-illegal-gambling-apps-from-chinese-app-store.txt
================
siri_macos.txt
apple-ceo-tim-cook-on-china-data-location-doesnt-equal-access.txt
================
AI.txt
slack-is-buying-rival-hipchat-only-to-kill-it-off.txt
================
Google_shuts_down_AI_ethics_council.txt
cambridge-analytica-may-have-illegally-sent-foreign-workers-to-america.txt
================
testing-screen.txt
netflix-is-removing-online-reviews-in-august.txt
================
coinbase_fire_workers.txt
samsung-to-invest-more-than-22-billion-in-ai-5g-and-future-tech.txt
================
Seven-Dreamers.txt
9-great-reads-from-cnet-this-week-081118.txt
================
google_drone_australia.txt
right-wing-activist-laura-loomer-handcuffs-herself-to-twitters-nyc-office.txt
================
face_regconition.txt
cnet-asks-the-new-ipad-vs-chromebook.txt
================
forget-about-agile-keep-focus-quality.txt
forget-about-agile-keep-focus-quality.txt
================
Nasa.txt
9-great-reads-from-cnet-this-week-121518.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
nasa-will-announce-moon-partnerships-with-private-companies-tomorrow.txt
================
facebook_sercurity2.txt
================
taxi_fly.txt
iot-devices-to-get-big-boost-from-5g-networks-ericsson-says.txt
apple-facilities-now-completely-run-on-clean-renewableenergy.txt
trump-without-evidence-says-social-media-companies-have-interfered-in-elections.txt
================
uber_raise.txt
bird-lime-stop-scooter-service-to-protest-uber-lyft-rankings.txt
japan-works-to-launch-self-driving-car-system-by-2020.txt
uber_raise.txt
================
Twitter_paid_CEO.txt
apple-ceo-tim-cook-made-15-million-in-2018.txt
twitters-jack-dorsey-reportedly-overruled-decision-to-ban-alex-jones.txt
facebook-expands-ai-efforts-into-seattle-and-pittsburgh.txt
================
pair-programming-will-it-make-you-hate-your-colleagues.txt
twitter-gives-details-on-political-ads-in-new-transparency-center.txt
san-francisco-scooter-law-means-goodbye-to-electric-scooters-for-now.txt
doom-creator-john-carmacks-thoughts-on-steve-jobs-are-a-must-read.txt
================
MIT_university.txt
mit-using-radio-waves-to-track-patients-health-through-walls.txt
apple-ceo-tim-cook-on-china-data-location-doesnt-equal-access.txt
uk-goes-55-hours-without-coal-power-breaks-historical-record.txt
================
blockchain_bank.txt
amazon-will-help-entrepreneurs-form-companies-to-deliver-its-packages.txt
microsoft-calls-for-regulation-of-facial-recognition-technology.txt
blockchain_bank.txt
================
Gmail.txt
supreme-court-appears-divided-on-google-settlement-that-gave-to-charities.txt
facebook-emails-show-us-again-that-profits-come-before-privacy.txt
man-who-threatened-fcc-chairman-ajit-pais-family-arrested.txt
================
5g.txt
blockchain_bank1.txt
blockchain_bank.txt
google-is-setting-up-an-assistant-powered-ride-at-its-ces-2019-booth.txt
================
Twitter_CEO.txt
facebooks-instagram-promotes-from-within-for-its-new-leader.txt
teens-pick-texting-over-talking-with-friends-in-person-study-finds.txt
twitters-jack-dorsey-reportedly-overruled-decision-to-ban-alex-jones.txt
================
apple_music_cut_price.txt
verizons-throttling-of-firefighter-data-during-california-fire-raises-net-neutrality-concerns.txt
apples-shazam-bid-expected-to-get-eu-approval.txt
apple_music_cut_price.txt
================
insta_sercurity.txt
================
Oneplus-7-pro.txt
trump-tariffs-on-china-affect-huawei-fusionhome-us-home-solar-panel-launch.txt
netflix-reportedly-testing-cheaper-plans-to-sign-up-more-subscribers.txt
apple-store-robbery-ring-17-charged-in-1m-scheme.txt
================
session_cookies_1.txt
session_cookies.txt
dear-computex-enough-with-the-rgb-lights-already.txt
almost-half-of-us-cell-phone-calls-will-be-scams-by-next-year-says-report.txt
================
amazon-web-service.txt
amazon-vpc.txt
amazon-workers-in-europe-go-on-strike-during-prime-day.txt
amazon-s3.txt
================
uber_ipo.txt
facebook-to-double-its-london-office-space.txt
andreessen-horowitz-reportedly-plans-new-vc-fund-for-black-investors.txt
lyft-acquires-motivate-getting-into-the-bikeshare-game.txt
================
work-fucking-hard.txt
bill-gates-says-mark-zuckerberg-owes-him-for-dc-advice.txt
google-doodle-celebrates-americas-workers-on-labor-day-2018.txt
uber-lyft-drivers-hit-roadblock-on-seattle-labor-union-law.txt
================
gmail_schedule.txt
microsoft-windows-10-april-2018-update-aims-to-shield-us-from-notifications.txt
is-spotify-secretly-building-gadgets-fcc-offers-new-evidence.txt
youll-soon-be-able-to-pause-windows-10-home-updates-for-up-to-7-days.txt
================
Sony-challenges-SamSung.txt
Sony-challenges-SamSung.txt
9-great-reads-from-cnet-this-week-090118.txt
best-of-ifa-2018-8k-tv-an-epic-gaming-throne-and-a-new-wearable-os-from-google.txt
================
walmart_google.txt
amazon-announces-hq2-in-a-split-decision-the-359-ep-489.txt
amazons-alexa-hunches-will-remind-you-to-lock-your-door-at-night.txt
at-ces-2019-alexa-and-google-assistant-will-howl-the-rest-will-whimper.txt
================
github_free.txt
microsoft-completes-github-buy-says-developer-site-will-retain-distinctive-spirit.txt
microsoft-reportedly-agrees-to-acquire-github.txt
github_free.txt
================
effective-communication-skills-for-testers.txt
study-shows-how-facebook-coverage-has-gone-negative.txt
Twitter_CEO.txt
effective-communication-skills-for-testers.txt
================
8-critical-factors-for-success-of-any-qa-project.txt
apple-music-comes-free-for-six-months-to-verizon-unlimited-customers.txt
saudi-smart-city-project-neom-names-tech-board-members-amid-khashoggi-controversy.txt
google-pledges-up-to-25-million-in-new-artificial-intelligence-challenge.txt
================
white_separatist_in_Vn.txt
google-ceo-sundar-pichais-hearing-before-house-may-be-postponed.txt
lyfts-new-diversity-report-shows-progress-setbacks.txt
alpha-beta-testing-demystified.txt
================
huawei_cfo_quit.txt
facebook-elliot-schrage-defends-using-definers-pr-firm.txt
facebook-executive-alex-stamos-we-need-to-build-a-user-experience-that-conveys-honesty.txt
lyft-pledges-1-5m-to-give-free-rides-to-low-income-people.txt
================
facebook_sercurity.txt
google-reportedly-cut-out-privacy-teams-from-dragonfly-china-search-project.txt
facebook-breach-affected-50-million-people.txt
facebook-sets-up-a-war-room-ahead-of-brazil-and-us-elections.txt
================
utube_deleted_video.txt
utube_deleted_video2.txt
utube_deleted_video.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
================
face_utube_australia_law.txt
heres-how-facebook-uses-artificial-intelligence-to-take-down-abusive-posts-f8.txt
facebooks-and-social-media-content-may-become-harder-to-police-in-the-future.txt
white_separatist.txt
================
boeing737_fix.txt
elon-musks-public-pot-smoking-days-are-over-nasa-chief-says.txt
us-will-reportedly-announce-winners-of-drone-program-that-drew-interest-from-several-tech-companies.txt
boeings-747-descends-closer-to-retirement.txt
================
researcg_ai.txt
inside-the-boot-camp-reforming-teenage-hackers.txt
twitter-users-in-china-reportedly-held-by-government-amid-crackdown.txt
taser-maker-axon-partners-with-dji-on-police-drone-program.txt
================
china-research6g.txt
at-t-partners-on-5g-enabled-hospital-effort.txt
why-5gs-out-of-reach-for-more-people-than-you-think.txt
lobby-representing-at-t-verizon-wants-fcc-to-get-rid-of-line-sharing-rules.txt
================
apple_price_drop_china.txt
uganda-imposes-tax-on-facebook-and-twitter-to-cut-down-on-gossip.txt
apple_price_drop_china.txt
apple-ups-the-recycled-materials-in-its-new-iphones.txt
================
scrum-does-not-work-here-in-asia.txt
scrum-does-not-work-here-in-asia.txt
ubers-data-report-on-sexual-assaults-to-come-in-2019-after-ending-arbitration.txt
tech-leaving-behind-women-of-color.txt
================
6-steps-to-become-business-analyst.txt
6-steps-to-become-business-analyst.txt
effective-communication-skills-for-testers.txt
youtube-gives-educational-content-and-creators-20-million-injection.txt
================
the-5-problem-solving-skills-of-great-software-developers.txt
trump-panel-proposes-postal-reforms-that-could-raise-amazon-shipping-costs.txt
facebook-is-giving-away-millions-to-community-leaders.txt
a-lack-of-digital-skills-could-be-hurting-young-professional-women.txt
================
ephone_declined_price.txt
apple_price_drop_china.txt
iphone-sales-disappoint-in-q4-as-apple-hints-at-weak-holiday.txt
apple-ups-the-recycled-materials-in-its-new-iphones.txt
================
Oneplus_7_pro.txt
trump-tariffs-on-china-affect-huawei-fusionhome-us-home-solar-panel-launch.txt
netflix-reportedly-testing-cheaper-plans-to-sign-up-more-subscribers.txt
apple-store-robbery-ring-17-charged-in-1m-scheme.txt
================
becoming-qa-leftie-team-quality-indicator.txt
forget-about-agile-keep-focus-quality.txt
saudi-smart-city-project-neom-names-tech-board-members-amid-khashoggi-controversy.txt
google-pledges-up-to-25-million-in-new-artificial-intelligence-challenge.txt
================
Mark_Zuckerberg.txt
microsofts-bing-search-engine-served-up-child-porn-report-says.txt
google-is-getting-sued-to-failing-to-blur-military-sites.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
================
twitter_dark_mode.txt
firefox-users-finally-get-option-to-block-autoplay-video-audio.txt
whatsapp-fixes-video-call-bug-that-could-have-let-hackers-in-says-report.txt
microsoft-has-slack-in-its-sights-is-offering-its-teams-chat-for-free.txt
================
Time-Management-Tips-for-Developers.txt
nasa_robot.txt
facebook-tackles-foreign-election-meddling-with-atlantic-council-partnership.txt
uber-in-talks-to-resume-services-in-abu-dhabi-official.txt
================
alpha-beta-testing-demystified.txt
lg-to-open-next-ai-research-lab-in-canada.txt
alpha-beta-testing-demystified.txt
facebooks-follow-up-to-portal-will-sit-on-your-tv-says-report.txt
================
Teen_hits_Apple.txt
face_recognition.txt
face_recognition2.txt
almost-half-of-us-cell-phone-calls-will-be-scams-by-next-year-says-report.txt
================
elonmusk_tunnel.txt
facebook-is-giving-away-millions-to-community-leaders.txt
facebook-content-moderators-are-suffering-from-ptsd-claims-lawsuit.txt
boeing737_fix.txt
================
give_data_back_user.txt
microsoft-exec-government-should-regulate-facial-recognition-tech.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
google-duplex-assistant-bot-deception-scary-ethics-question.txt
================
fb_location_tracking.txt
google-is-probably-tracking-your-location-even-if-you-turn-it-off-says-report.txt
google-maps-offer-new-location-based-features-to-app-devs.txt
facebook-remains-evasive-over-over-cambridge-analytica-data-uk-politicians.txt
================
google-thinks-future-code-toy-blocks.txt
microsoft-pledges-10m-to-help-code-org-promote-computer-science-education.txt
google-thinks-future-code-toy-blocks.txt
amazon-opens-its-23-dollar-kids-book-box-to-all-prime-members.txt
================
huawei_newgoal.txt
virgin-america-last-flight.txt
lime-is-apparently-opening-a-physical-scooter-store-in-santa-monica.txt
bozoma-saint-john-uber-was-poster-child-for-everything-gone-wrong.txt
================
amz-richest.txt
microsoft-to-acquire-chatbot-startup-as-it-pushes-for-responsible-ai.txt
microsoft-says-its-extending-gdpr-rights-to-consumers-worldwide.txt
holiday-shoppers-forecasted-to-spend-over-124-billion-online.txt
================
google_dropbox.txt
microsoft-to-acquire-chatbot-startup-as-it-pushes-for-responsible-ai.txt
microsoft-says-its-extending-gdpr-rights-to-consumers-worldwide.txt
microsofts-bing-lets-you-find-that-strangers-jeans-with-your-phone-camera.txt
================
amz_face_recognition.txt
amazon-ceo-jeff-bezos-unveils-new-day-one-charitable-fund.txt
aclu-wants-amazon-to-stop-offering-surveillance-technology-rekognition.txt
amazon-and-bernie-sanders-at-it-again-sanders-introduces-stop-bezos-act.txt
================
Facebook_Twitter_Instagram.txt
facebook-its-still-hard-to-tell-just-how-many-bad-accounts-are-on-the-social-network.txt
twitter-doesnt-proactively-police-its-service-ceo-dorsey-says.txt
facebook-needs-safe-harbor-for-public-interest-journalism-say-researchers.txt
================
fb_share_stories.txt
facebook-cambridge-analytica-data-mining-and-trump-what-you-need-to-know.txt
your-facebook-page-now-tells-you-if-cambridge-analytica-accessed-your-data.txt
zuckerberg-apologizes-for-data-scandal-in-full-page-ads.txt
================
session_cookies.txt
session_cookies.txt
dear-computex-enough-with-the-rgb-lights-already.txt
almost-half-of-us-cell-phone-calls-will-be-scams-by-next-year-says-report.txt
================
nasa_robot.txt
9-great-reads-from-cnet-this-week-121518.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
nasa-will-announce-moon-partnerships-with-private-companies-tomorrow.txt
================
a330_cancel.txt
elon-musks-public-pot-smoking-days-are-over-nasa-chief-says.txt
us-will-reportedly-announce-winners-of-drone-program-that-drew-interest-from-several-tech-companies.txt
boeings-747-descends-closer-to-retirement.txt
================
coinbase_debit.txt
dorsey-says-the-internet-will-one-day-have-its-own-currency.txt
coinbase_debit.txt
mobile-payments-biometrics-ar-mastercard-amazon-pay-for-stuff.txt
================
utube_deleted_video1.txt
utube_deleted_video1.txt
utube_deleted_video.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
================
performance-test-plan.txt
verizons-throttling-of-firefighter-data-during-california-fire-raises-net-neutrality-concerns.txt
performance-test-plan.txt
facebooks-newest-problem-business-could-be-slowing-in-second-quarter-earnings.txt
================
whatsapp_ios.txt
justice-department-reportedly-investigating-cambridge-analytica.txt
whatsapp_ios.txt
apple-removes-thousands-of-illegal-gambling-apps-from-chinese-app-store.txt
================
siri_macos.txt
you-iphone-x-touch-not-working-apple-will-fix-it-free-of-charge.txt
apple-ceo-tim-cook-on-china-data-location-doesnt-equal-access.txt
ubers-911-emergency-button-rolls-out-across-the-us-to-help-keep-riders-safe.txt
================
AI.txt
microsoft-exec-government-should-regulate-facial-recognition-tech.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
slack-is-buying-rival-hipchat-only-to-kill-it-off.txt
================
Google_shuts_down_AI_ethics_council.txt
microsoft-exec-government-should-regulate-facial-recognition-tech.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
cambridge-analytica-may-have-illegally-sent-foreign-workers-to-america.txt
================
testing-screen.txt
netflix-is-removing-online-reviews-in-august.txt
arizona-suspends-ubers-ability-to-test-self-driving-cars.txt
alpha-beta-testing-demystified.txt
================
coinbase_fire_workers.txt
amazon-becomes-most-valuable-us-company-by-market-cap.txt
gab-says-it-was-kicked-off-coinbase-again.txt
samsung-to-invest-more-than-22-billion-in-ai-5g-and-future-tech.txt
================
Seven-Dreamers.txt
amazon-picks-new-york-arlington-virginia-for-hq2.txt
9-great-reads-from-cnet-this-week-081118.txt
snapchat-helped-over-400000-people-register-to-vote-says-report.txt
================
google_drone_australia.txt
alphabet-city-all-the-google-android-waymo-news-in-one-place.txt
right-wing-activist-laura-loomer-handcuffs-herself-to-twitters-nyc-office.txt
google-siblings-loon-and-wing-arent-so-crazy-any-more.txt
================
face_regconition.txt
indonesian-malaysian-students-earn-wwdc-trip-for-their-coding-efforts.txt
cnet-asks-the-new-ipad-vs-chromebook.txt
tim-cook-says-hate-has-no-place-on-apples-platforms.txt
================
forget-about-agile-keep-focus-quality.txt
forget-about-agile-keep-focus-quality.txt
apple-music-comes-free-for-six-months-to-verizon-unlimited-customers.txt
apple-takes-on-the-us-govt-over-clean-power-because-china.txt
================
Nasa.txt
watch-elon-musk-reveal-spacex-bfr-mystery-moon-passenger.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
nasa-will-announce-moon-partnerships-with-private-companies-tomorrow.txt
9-great-reads-from-cnet-this-week-121518.txt
================
facebook_sercurity2.txt
================
taxi_fly.txt
facebook-needs-safe-harbor-for-public-interest-journalism-say-researchers.txt
trump-without-evidence-says-social-media-companies-have-interfered-in-elections.txt
vpns-given-the-axe-in-uganda-as-social-media-tax-kicks-in.txt
iot-devices-to-get-big-boost-from-5g-networks-ericsson-says.txt
apple-facilities-now-completely-run-on-clean-renewableenergy.txt
================
uber_raise.txt
bird-lime-stop-scooter-service-to-protest-uber-lyft-rankings.txt
facebook-to-double-its-london-office-space.txt
uber_raise.txt
uber-reportedly-settles-with-family-of-victim-self-driving-car-crash.txt
japan-works-to-launch-self-driving-car-system-by-2020.txt
================
Twitter_paid_CEO.txt
apple-ceo-tim-cook-made-15-million-in-2018.txt
twitters-jack-dorsey-reportedly-overruled-decision-to-ban-alex-jones.txt
facebook-expands-ai-efforts-into-seattle-and-pittsburgh.txt
================
pair-programming-will-it-make-you-hate-your-colleagues.txt
san-francisco-scooter-law-means-goodbye-to-electric-scooters-for-now.txt
snap-launches-new-frames-for-spectacles-2-ups-the-price-to-200.txt
pair-programming-will-it-make-you-hate-your-colleagues.txt
twitter-gives-details-on-political-ads-in-new-transparency-center.txt
doom-creator-john-carmacks-thoughts-on-steve-jobs-are-a-must-read.txt
================
MIT_university.txt
trump-was-reportedly-unaware-of-plan-to-arrest-huawei-exec.txt
uk-goes-55-hours-without-coal-power-breaks-historical-record.txt
mit-using-radio-waves-to-track-patients-health-through-walls.txt
zte-says-us-trade-ban-on-the-company-is-unacceptable.txt
apple-ceo-tim-cook-on-china-data-location-doesnt-equal-access.txt
================
blockchain_bank.txt
amazon-will-help-entrepreneurs-form-companies-to-deliver-its-packages.txt
delta-will-scan-faces-at-the-airport-with-new-biometric-terminal.txt
ibm-wants-167m-from-groupon-over-alleged-patent-infringement.txt
blockchain_bank.txt
microsoft-calls-for-regulation-of-facial-recognition-technology.txt
================
Gmail.txt
man-who-threatened-fcc-chairman-ajit-pais-family-arrested.txt
google-maps-lets-you-follow-businesses-to-monitor-events-offers.txt
facebook-emails-show-us-again-that-profits-come-before-privacy.txt
wikipedia-vandals-caused-google-display-nazism-gop-ideology.txt
supreme-court-appears-divided-on-google-settlement-that-gave-to-charities.txt
================
5g.txt
blockchain_bank1.txt
google-is-setting-up-an-assistant-powered-ride-at-its-ces-2019-booth.txt
youll-soon-be-able-to-pause-windows-10-home-updates-for-up-to-7-days.txt
gmails-smart-compose-wont-suggest-him-or-her-anymore.txt
blockchain_bank.txt
================
Twitter_CEO.txt
twitters-jack-dorsey-reportedly-overruled-decision-to-ban-alex-jones.txt
facebooks-instagram-promotes-from-within-for-its-new-leader.txt
teens-pick-texting-over-talking-with-friends-in-person-study-finds.txt
face_utube_australia_law.txt
twitter-opens-huge-archive-of-tweets-tied-to-russia-iran.txt
================
apple_music_cut_price.txt
apple-takes-on-the-us-govt-over-clean-power-because-china.txt
apple-music-comes-free-for-six-months-to-verizon-unlimited-customers.txt
verizons-throttling-of-firefighter-data-during-california-fire-raises-net-neutrality-concerns.txt
apples-shazam-bid-expected-to-get-eu-approval.txt
apple_music_cut_price.txt
================
insta_sercurity.txt
================
Oneplus-7-pro.txt
netflix-reportedly-testing-cheaper-plans-to-sign-up-more-subscribers.txt
apple-store-robbery-ring-17-charged-in-1m-scheme.txt
birds-scooters-roll-into-paris-tel-aviv-in-first-international-expansion.txt
samsungs-former-executive-will-run-apple-korea-says-report.txt
trump-tariffs-on-china-affect-huawei-fusionhome-us-home-solar-panel-launch.txt
================
session_cookies_1.txt
chrome-wants-to-help-you-stop-recycling-the-same-damn-passwords.txt
googles-chrome-will-soon-crack-down-on-sites-that-trick-you-into-a-subscription.txt
almost-half-of-us-cell-phone-calls-will-be-scams-by-next-year-says-report.txt
session_cookies.txt
dear-computex-enough-with-the-rgb-lights-already.txt
================
amazon-web-service.txt
amazon-to-open-second-4-star-store-bringing-it-to-denver-area.txt
amazon-vpc.txt
amazon-s3.txt
amazon-workers-in-europe-go-on-strike-during-prime-day.txt
amazon-ec2.txt
================
uber_ipo.txt
facebook-to-double-its-london-office-space.txt
lyft-acquires-motivate-getting-into-the-bikeshare-game.txt
youtube-gives-educational-content-and-creators-20-million-injection.txt
at-t-chooses-indianapolis-as-next-city-to-get-5g-service.txt
andreessen-horowitz-reportedly-plans-new-vc-fund-for-black-investors.txt
================
work-fucking-hard.txt
uber-lyft-drivers-hit-roadblock-on-seattle-labor-union-law.txt
google-doodle-celebrates-americas-workers-on-labor-day-2018.txt
robot-will-bring-increased-slavery-and-human-trafficking-to-south-east-asia-report.txt
bill-gates-says-mark-zuckerberg-owes-him-for-dc-advice.txt
microsoft-is-reportedly-taking-on-amazon-with-checkout-free-retail.txt
================
gmail_schedule.txt
google-maps-offer-new-location-based-features-to-app-devs.txt
microsoft-windows-10-april-2018-update-aims-to-shield-us-from-notifications.txt
youll-soon-be-able-to-pause-windows-10-home-updates-for-up-to-7-days.txt
is-spotify-secretly-building-gadgets-fcc-offers-new-evidence.txt
apple-and-samsung-fined-for-slowing-down-phones-with-updates.txt
================
Sony-challenges-SamSung.txt
best-of-ifa-2018-8k-tv-an-epic-gaming-throne-and-a-new-wearable-os-from-google.txt
Sony-challenges-SamSung.txt
9-great-reads-from-cnet-this-week-090118.txt
uber-and-facebook-ads-aim-to-counter-avalanche-of-smear.txt
ces-2019-everything-we-learned-about-the-future-of-tech.txt
================
walmart_google.txt
amazon-and-bernie-sanders-at-it-again-sanders-introduces-stop-bezos-act.txt
amazons-alexa-hunches-will-remind-you-to-lock-your-door-at-night.txt
amazon-announces-hq2-in-a-split-decision-the-359-ep-489.txt
amazons-gadget-battle-with-google-could-upend-its-alexa-allies.txt
at-ces-2019-alexa-and-google-assistant-will-howl-the-rest-will-whimper.txt
================
github_free.txt
microsoft-acquire-github-7-5-billion-stock-solidify-developer-ties.txt
amazon-vpc.txt
microsoft-completes-github-buy-says-developer-site-will-retain-distinctive-spirit.txt
github_free.txt
microsoft-reportedly-agrees-to-acquire-github.txt
================
effective-communication-skills-for-testers.txt
study-shows-how-facebook-coverage-has-gone-negative.txt
apple-has-only-a-slightly-more-positive-impact-on-society-than-facebook.txt
Twitter_CEO.txt
white-house-wants-to-borrow-some-silicon-valley-talent-says-report.txt
effective-communication-skills-for-testers.txt
================
8-critical-factors-for-success-of-any-qa-project.txt
apple-music-comes-free-for-six-months-to-verizon-unlimited-customers.txt
google-pledges-up-to-25-million-in-new-artificial-intelligence-challenge.txt
saudi-smart-city-project-neom-names-tech-board-members-amid-khashoggi-controversy.txt
effective-communication-skills-for-testers.txt
google-helps-us-veterans-find-jobs-to-suit-their-skills.txt
================
white_separatist_in_Vn.txt
alpha-beta-testing-demystified.txt
white-house-wants-to-borrow-some-silicon-valley-talent-says-report.txt
google-ceo-sundar-pichais-hearing-before-house-may-be-postponed.txt
lyfts-new-diversity-report-shows-progress-setbacks.txt
trump-oks-offensive-cyber-operations-as-deterrent-against-us-rivals.txt
================
huawei_cfo_quit.txt
lyft-pledges-1-5m-to-give-free-rides-to-low-income-people.txt
facebook-elliot-schrage-defends-using-definers-pr-firm.txt
googles-chrome-will-soon-crack-down-on-sites-that-trick-you-into-a-subscription.txt
facebook-executive-alex-stamos-we-need-to-build-a-user-experience-that-conveys-honesty.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
================
facebook_sercurity.txt
facebook-breach-affected-50-million-people.txt
facebook-ex-security-chief-creating-election-chaos-is-totally-doable-right-now.txt
facebook-sets-up-a-war-room-ahead-of-brazil-and-us-elections.txt
google-reportedly-cut-out-privacy-teams-from-dragonfly-china-search-project.txt
half-of-us-states-using-voting-machines-with-a-known-vulnerability-says-report.txt
================
utube_deleted_video.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
utube_deleted_video2.txt
netflix-siriusxm-to-launch-comedy-radio-channel.txt
utube_deleted_video.txt
twitter-sees-another-drop-in-users-amid-fake-account-crackdown.txt
================
face_utube_australia_law.txt
heres-how-facebook-uses-artificial-intelligence-to-take-down-abusive-posts-f8.txt
why-did-facebook-remove-your-post-digital-rights-groups-urge-social-network-to-share-more.txt
apple-bricked-our-phones-with-error-53-now-it-owes-6-8-million-in-australia.txt
facebooks-and-social-media-content-may-become-harder-to-police-in-the-future.txt
white_separatist.txt
================
boeing737_fix.txt
boeing737_fix.txt
microsoft-windows-10-april-2018-update-aims-to-shield-us-from-notifications.txt
us-will-reportedly-announce-winners-of-drone-program-that-drew-interest-from-several-tech-companies.txt
elon-musks-public-pot-smoking-days-are-over-nasa-chief-says.txt
boeings-747-descends-closer-to-retirement.txt
================
researcg_ai.txt
chinese-cops-end-1-5-billion-cryptocurrency-world-cup-gambling-ring.txt
police-activity-reported-at-youtube-headquarters.txt
inside-the-boot-camp-reforming-teenage-hackers.txt
taser-maker-axon-partners-with-dji-on-police-drone-program.txt
twitter-users-in-china-reportedly-held-by-government-amid-crackdown.txt
================
china-research6g.txt
why-5gs-out-of-reach-for-more-people-than-you-think.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
fccs-5g-plans-loop-in-a-new-range-of-wireless-spectrum.txt
lobby-representing-at-t-verizon-wants-fcc-to-get-rid-of-line-sharing-rules.txt
at-t-partners-on-5g-enabled-hospital-effort.txt
================
apple_price_drop_china.txt
uk-introduces-new-digital-tax-for-tech-giants.txt
apple-ups-the-recycled-materials-in-its-new-iphones.txt
techies-taxes-homelessness-converge-over-san-franciscos-prop-c.txt
uganda-imposes-tax-on-facebook-and-twitter-to-cut-down-on-gossip.txt
apple_price_drop_china.txt
================
scrum-does-not-work-here-in-asia.txt
ubers-data-report-on-sexual-assaults-to-come-in-2019-after-ending-arbitration.txt
uber-will-no-longer-silence-victims-of-sexual-assault-with-arbitration-confidentiality-agreements.txt
tech-leaving-behind-women-of-color.txt
fcc-puts-t-mobile-sprint-merger-on-pause-for-further-review.txt
scrum-does-not-work-here-in-asia.txt
================
6-steps-to-become-business-analyst.txt
6-steps-to-become-business-analyst.txt
alpha-beta-testing-demystified.txt
effective-communication-skills-for-testers.txt
youtube-gives-educational-content-and-creators-20-million-injection.txt
google-helps-us-veterans-find-jobs-to-suit-their-skills.txt
================
the-5-problem-solving-skills-of-great-software-developers.txt
boeing737_fix.txt
facebook-content-moderators-are-suffering-from-ptsd-claims-lawsuit.txt
a-lack-of-digital-skills-could-be-hurting-young-professional-women.txt
trump-panel-proposes-postal-reforms-that-could-raise-amazon-shipping-costs.txt
facebook-is-giving-away-millions-to-community-leaders.txt
================
ephone_declined_price.txt
iphone-sales-disappoint-in-q4-as-apple-hints-at-weak-holiday.txt
apple-ups-the-recycled-materials-in-its-new-iphones.txt
google-hints-pixel-3-and-3-xl-are-coming-soon.txt
apples-tim-cook-defends-iphone-price-most-pay-about-1-a-day.txt
apple_price_drop_china.txt
================
Oneplus_7_pro.txt
netflix-reportedly-testing-cheaper-plans-to-sign-up-more-subscribers.txt
apple-store-robbery-ring-17-charged-in-1m-scheme.txt
birds-scooters-roll-into-paris-tel-aviv-in-first-international-expansion.txt
samsungs-former-executive-will-run-apple-korea-says-report.txt
trump-tariffs-on-china-affect-huawei-fusionhome-us-home-solar-panel-launch.txt
================
becoming-qa-leftie-team-quality-indicator.txt
google-thwarts-spectre-attacks-with-new-chrome-feature.txt
google-pledges-up-to-25-million-in-new-artificial-intelligence-challenge.txt
forget-about-agile-keep-focus-quality.txt
saudi-smart-city-project-neom-names-tech-board-members-amid-khashoggi-controversy.txt
researchers-find-way-to-track-untraceable-3d-printed-guns.txt
================
Mark_Zuckerberg.txt
whatsapp-under-fire-for-failing-to-remove-child-porn.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
google-is-getting-sued-to-failing-to-blur-military-sites.txt
facebooks-3d-photos-are-ready-for-your-news-feed.txt
microsofts-bing-search-engine-served-up-child-porn-report-says.txt
================
twitter_dark_mode.txt
microsofts-xiaoice-is-an-ai-bot-that-can-also-converse-like-a-human.txt
microsoft-has-slack-in-its-sights-is-offering-its-teams-chat-for-free.txt
whatsapp-fixes-video-call-bug-that-could-have-let-hackers-in-says-report.txt
protecting-data-on-web-about-to-get-faster-with-tls-1-3.txt
firefox-users-finally-get-option-to-block-autoplay-video-audio.txt
================
Time-Management-Tips-for-Developers.txt
23andme-said-to-be-donating-dna-kits-to-help-reunite-immigrant-families.txt
facebook-tackles-foreign-election-meddling-with-atlantic-council-partnership.txt
nasa_robot.txt
uber-in-talks-to-resume-services-in-abu-dhabi-official.txt
facebook-limits-how-advertisers-can-target-you.txt
================
alpha-beta-testing-demystified.txt
alpha-beta-testing-demystified.txt
facebooks-follow-up-to-portal-will-sit-on-your-tv-says-report.txt
facebook-messenger-reportedly-tests-dark-mode-in-some-regions.txt
lg-to-open-next-ai-research-lab-in-canada.txt
arizona-suspends-ubers-ability-to-test-self-driving-cars.txt
================
Teen_hits_Apple.txt
t-mobile-touts-improved-lte-coverage-across-36-states-puerto-rico.txt
almost-half-of-us-cell-phone-calls-will-be-scams-by-next-year-says-report.txt
dear-computex-enough-with-the-rgb-lights-already.txt
face_recognition.txt
face_recognition2.txt
================
elonmusk_tunnel.txt
boeing737_fix.txt
salesforce-training-program-aims-to-make-finding-diverse-job-candidates-easy.txt
facebook-content-moderators-are-suffering-from-ptsd-claims-lawsuit.txt
a-lack-of-digital-skills-could-be-hurting-young-professional-women.txt
facebook-is-giving-away-millions-to-community-leaders.txt
================
give_data_back_user.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
amazon-and-orlando-police-department-reinitiate-facial-recognition-pilot.txt
google-duplex-assistant-bot-deception-scary-ethics-question.txt
microsoft-exec-government-should-regulate-facial-recognition-tech.txt
pokemon-go-creator-will-sell-its-ar-tech-to-spawn-games-like-harry-potter.txt
================
fb_location_tracking.txt
google-maps-offer-new-location-based-features-to-app-devs.txt
facebook-remains-evasive-over-over-cambridge-analytica-data-uk-politicians.txt
twitter_dark_mode.txt
google-is-probably-tracking-your-location-even-if-you-turn-it-off-says-report.txt
facebook-keeps-fumbling-political-ads.txt
================
google-thinks-future-code-toy-blocks.txt
microsoft-co-founder-paul-allen-dies-at-65.txt
google-thinks-future-code-toy-blocks.txt
microsoft-pledges-10m-to-help-code-org-promote-computer-science-education.txt
amazon-opens-its-23-dollar-kids-book-box-to-all-prime-members.txt
hackers-demand-bitcoin-from-pga-in-ransomware-attack-says-report.txt
================
huawei_newgoal.txt
bozoma-saint-john-uber-was-poster-child-for-everything-gone-wrong.txt
nokia-sells-health-technology-business-withings-in-restructuring-effort.txt
amazon-launches-wag-its-own-line-of-pet-products.txt
virgin-america-last-flight.txt
lime-is-apparently-opening-a-physical-scooter-store-in-santa-monica.txt
================
amz-richest.txt
holiday-shoppers-forecasted-to-spend-over-124-billion-online.txt
microsoft-co-founder-paul-allen-dies-at-65.txt
microsoft-says-its-extending-gdpr-rights-to-consumers-worldwide.txt
microsoft-to-acquire-chatbot-startup-as-it-pushes-for-responsible-ai.txt
microsofts-bing-lets-you-find-that-strangers-jeans-with-your-phone-camera.txt
================
google_dropbox.txt
microsoft-co-founder-paul-allen-dies-at-65.txt
microsoft-has-slack-in-its-sights-is-offering-its-teams-chat-for-free.txt
microsoft-says-its-extending-gdpr-rights-to-consumers-worldwide.txt
microsoft-to-acquire-chatbot-startup-as-it-pushes-for-responsible-ai.txt
microsofts-bing-lets-you-find-that-strangers-jeans-with-your-phone-camera.txt
================
amz_face_recognition.txt
amazon-and-bernie-sanders-at-it-again-sanders-introduces-stop-bezos-act.txt
amazon-ceo-jeff-bezos-unveils-new-day-one-charitable-fund.txt
aclu-wants-amazon-to-stop-offering-surveillance-technology-rekognition.txt
amazon-jeff-bezos-plans-to-spend-a-little-more-than-a-billion-on-blue-origin-next-year.txt
amazon-has-a-big-target-on-its-back-going-into-2019.txt
================
Facebook_Twitter_Instagram.txt
facebook-needs-safe-harbor-for-public-interest-journalism-say-researchers.txt
facebook-its-still-hard-to-tell-just-how-many-bad-accounts-are-on-the-social-network.txt
trump-without-evidence-says-social-media-companies-have-interfered-in-elections.txt
vpns-given-the-axe-in-uganda-as-social-media-tax-kicks-in.txt
twitter-doesnt-proactively-police-its-service-ceo-dorsey-says.txt
================
fb_share_stories.txt
facebook-responds-to-congress-questions-from-zuckerbergs-testimony.txt
facebook-cambridge-analytica-data-mining-and-trump-what-you-need-to-know.txt
zuckerberg-apologizes-for-data-scandal-in-full-page-ads.txt
facebooks-zuckerberg-talking-privacy-after-cambridge-analytica.txt
your-facebook-page-now-tells-you-if-cambridge-analytica-accessed-your-data.txt
================
session_cookies.txt
chrome-wants-to-help-you-stop-recycling-the-same-damn-passwords.txt
googles-chrome-will-soon-crack-down-on-sites-that-trick-you-into-a-subscription.txt
almost-half-of-us-cell-phone-calls-will-be-scams-by-next-year-says-report.txt
session_cookies.txt
dear-computex-enough-with-the-rgb-lights-already.txt
================
nasa_robot.txt
watch-elon-musk-reveal-spacex-bfr-mystery-moon-passenger.txt
samantha-bee-launches-trivia-game-with-election-twist.txt
nasa-will-announce-moon-partnerships-with-private-companies-tomorrow.txt
9-great-reads-from-cnet-this-week-121518.txt
================
a330_cancel.txt
boeing737_fix.txt
a330_cancel.txt
us-will-reportedly-announce-winners-of-drone-program-that-drew-interest-from-several-tech-companies.txt
elon-musks-public-pot-smoking-days-are-over-nasa-chief-says.txt
boeings-747-descends-closer-to-retirement.txt
================
coinbase_debit.txt
ad-blocking-brave-browser-to-give-crypto-payment-tokens-to-everyone.txt
mobile-payments-biometrics-ar-mastercard-amazon-pay-for-stuff.txt
google-reportedly-had-deal-with-mastercard-to-track-retail-sales.txt
coinbase_debit.txt
dorsey-says-the-internet-will-one-day-have-its-own-currency.txt
================
utube_deleted_video1.txt
google-releases-ai-tool-to-identify-child-sex-abuse-images-online.txt
utube_deleted_video2.txt
utube_deleted_video1.txt
utube_deleted_video.txt
twitter-sees-another-drop-in-users-amid-fake-account-crackdown.txt
================
performance-test-plan.txt
apple-takes-on-the-us-govt-over-clean-power-because-china.txt
verizons-throttling-of-firefighter-data-during-california-fire-raises-net-neutrality-concerns.txt
facebooks-newest-problem-business-could-be-slowing-in-second-quarter-earnings.txt
performance-test-plan.txt
mozilla-exec-says-google-slowed-youtube-down-on-non-chrome-browsers.txt
================
whatsapp_ios.txt
qualcomm-ceo-defends-chip-licensing-business-in-ftc-trial.txt
apple-removes-thousands-of-illegal-gambling-apps-from-chinese-app-store.txt
6-steps-to-become-business-analyst.txt
whatsapp_ios.txt
justice-department-reportedly-investigating-cambridge-analytica.txt
================
siri_macos.txt
apple-software-reportedly-hobbles-independent-third-party-repairs.txt
ubers-911-emergency-button-rolls-out-across-the-us-to-help-keep-riders-safe.txt
you-iphone-x-touch-not-working-apple-will-fix-it-free-of-charge.txt
apple-ceo-tim-cook-on-china-data-location-doesnt-equal-access.txt
apple-will-fix-certain-problem-butterfly-switch-keyboards-on-macbooks-macbook-pros.txt
================
AI.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
google-duplex-assistant-bot-deception-scary-ethics-question.txt
microsoft-exec-government-should-regulate-facial-recognition-tech.txt
slack-is-buying-rival-hipchat-only-to-kill-it-off.txt
pokemon-go-creator-will-sell-its-ar-tech-to-spawn-games-like-harry-potter.txt
================
Google_shuts_down_AI_ethics_council.txt
cambridge-analytica-may-have-illegally-sent-foreign-workers-to-america.txt
supermodel-karlie-kloss-video-series-showcases-brilliant-women-in-tech.txt
pokemon-go-creator-will-sell-its-ar-tech-to-spawn-games-like-harry-potter.txt
microsoft-exec-government-should-regulate-facial-recognition-tech.txt
google-duplex-assistant-bot-deception-scary-ethics-question.txt
================
testing-screen.txt
alpha-beta-testing-demystified.txt
forget-about-agile-keep-focus-quality.txt
facebook-messenger-reportedly-tests-dark-mode-in-some-regions.txt
netflix-is-removing-online-reviews-in-august.txt
arizona-suspends-ubers-ability-to-test-self-driving-cars.txt
================
coinbase_fire_workers.txt
amazon-becomes-most-valuable-us-company-by-market-cap.txt
samsung-to-invest-more-than-22-billion-in-ai-5g-and-future-tech.txt
uber-and-grab-fined-9-5-million-for-mergers-that-harm-competition.txt
gab-says-it-was-kicked-off-coinbase-again.txt