-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlaradmin20210425.sql
1870 lines (1761 loc) · 667 KB
/
laradmin20210425.sql
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
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- 主機: 127.0.0.1
-- 產生時間: 2021-04-24 19:01:00
-- 伺服器版本: 10.4.17-MariaDB
-- PHP 版本: 7.4.13
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- 資料庫: `laradmin`
--
-- --------------------------------------------------------
--
-- 資料表結構 `articles`
--
CREATE TABLE `articles` (
`id` int(10) UNSIGNED NOT NULL,
`source_id` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`author` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(3000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`urlToImage` varchar(3000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`publishedAt` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 傾印資料表的資料 `articles`
--
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(55, 'al-jazeera-english', 'Al Jazeera', 'Jordan bans publishing information on royal rift', 'Amman’s prosecutor general says ban on publication involves all audiovisual media and social networks.', 'http://www.aljazeera.com/news/2021/4/6/jordan-justice-bans-publishing-information-on-royal-rift', 'https://www.aljazeera.com/wp-content/uploads/2021/04/Hamzah.jpg?resize=1200%2C630', '2021-04-06 00:07:41', '2021-04-06 04:25:11', '2021-04-06 04:25:11'),
(56, 'al-jazeera-english', 'Al Jazeera', 'Profile: Who is Jordan’s Prince Hamzah?', 'Prince Hamzah is a popular figure in Jordan and is seen as religious and modest, in touch with the common people.', 'http://www.aljazeera.com/news/2021/4/4/profile-who-is-jordans-prince-hamza', 'https://www.aljazeera.com/wp-content/uploads/2021/04/PrinceHamza.jpg?resize=1200%2C630', '2021-04-04 00:26:21', '2021-04-06 04:25:11', '2021-04-06 04:25:11'),
(57, 'al-jazeera-english', 'Al Jazeera', 'Jordan’s Prince Hamzah signs letter declaring loyalty to king', 'Palace says Hamzah signed letter affirming commitment to King Abdullah II, in sign that rift in royal family is easing.', 'http://www.aljazeera.com/news/2021/4/5/jordans-prince-hamzah-signs-letter-declaring-loyalty-to-king', 'https://www.aljazeera.com/wp-content/uploads/2021/04/2004-08-21T000000Z_1196870605_RP5DRHXUGRAC_RTRMADP_3_JORDAN-ISLAM.jpg?resize=1200%2C630', '2021-04-05 12:31:19', '2021-04-06 04:25:11', '2021-04-06 04:25:11'),
(58, 'al-jazeera-english', 'Al Jazeera', 'Jordan’s Prince Hamzah vows to disobey ‘keep silent’ order', 'Hamzah, 41, says he was ordered to stay in his Amman palace but would defy the limits on his freedom of movement.', 'http://www.aljazeera.com/news/2021/4/5/jordan-prince-hamza-vows-to-disobey-armys-keep-silent-orde', 'https://www.aljazeera.com/wp-content/uploads/2021/04/2004-08-21T000000Z_1196870605_RP5DRHXUGRAC_RTRMADP_3_JORDAN-ISLAM.jpg?resize=1200%2C630', '2021-04-05 00:12:25', '2021-04-06 04:25:11', '2021-04-06 04:25:11'),
(59, 'al-jazeera-english', 'Al Jazeera', 'UK should recognise Islamophobia as a crime: Victim’s daughter', 'Saleem, 82, was stabbed to death on his way home after prayers by a man who later planted bombs outside mosques.', 'http://www.aljazeera.com/news/2021/4/6/uk-should-recognise-islamophobia-as-crime-says-victims-daughter', 'https://www.aljazeera.com/wp-content/uploads/2021/04/IMG_3383.jpeg?fit=903%2C602', '2021-04-06 03:05:56', '2021-04-06 04:25:11', '2021-04-06 04:25:11'),
(60, 'al-jazeera-english', 'Al Jazeera', 'Australia-New Zealand travel bubble to begin on April 19', 'Jacinda Ardern expects to hold a face-to-face meeting with her Australian counterpart soon after travel bubble begins.', 'http://www.aljazeera.com/news/2021/4/6/pm-ardern-says-april-19-start-for-australia-nz-travel-bubble', 'https://www.aljazeera.com/wp-content/uploads/2021/04/000_97F6ZU.jpg?resize=1024%2C630', '2021-04-05 22:41:14', '2021-04-06 04:25:11', '2021-04-10 01:52:38'),
(61, 'al-jazeera-english', 'Al Jazeera', 'Australian couple released from detention in Myanmar', 'Matthew O’Kane and Christa Avery were put under house arrest after trying to leave Myanmar on a relief flight in March.', 'http://www.aljazeera.com/news/2021/4/5/australian-couple-released-from-detention-in-myanmar', 'https://www.aljazeera.com/wp-content/uploads/2021/04/000_97C8UG.jpg?resize=1200%2C630', '2021-04-04 20:08:09', '2021-04-06 04:25:11', '2021-04-10 01:52:38'),
(62, 'al-jazeera-english', 'Al Jazeera', 'Australia lifts Brisbane lockdown as COVID cases dwindle', 'Queensland Premier says wearing of masks in public still required and some social distancing measures remain.', 'http://www.aljazeera.com/news/2021/4/1/australia-lifts-brisbane-lockdown-as-covid-cases-dwindle', 'https://www.aljazeera.com/wp-content/uploads/2021/04/000_96Y4YH.jpg?resize=1024%2C630', '2021-03-31 19:02:05', '2021-04-06 04:25:11', '2021-04-10 01:52:38'),
(63, 'al-jazeera-english', 'Al Jazeera', 'AstraZeneca vaccine: Where does the world stand on suspensions?', 'Several countries have paused or limited use of the shot amid concern over reports of rare blood clots in recipients.', 'http://www.aljazeera.com/news/2021/3/31/which-countries-are-using-the-astrazeneca-vaccine', 'https://www.aljazeera.com/wp-content/uploads/2021/03/2021-03-30T171439Z_828271600_RC2TLM9FPLSX_RTRMADP_3_HEALTH-CORONAVIRUS-ASTRAZENECA-BERLIN.jpg?resize=1200%2C630', '2021-03-31 09:52:37', '2021-04-06 04:25:11', '2021-04-07 07:45:22'),
(64, 'al-jazeera-english', 'Al Jazeera', 'Two Australian cabinet ministers demoted after rape scandals', 'Move comes amid a groundswell of anger at pervasive culture of harassment and sexual violence, notably in government.', 'http://www.aljazeera.com/news/2021/3/29/two-australian-cabinet-ministers-demoted-after-dual-rape-scandals', 'https://www.aljazeera.com/wp-content/uploads/2021/03/000_96X9WZ.jpg?resize=1200%2C630', '2021-03-28 21:56:50', '2021-04-06 04:25:11', '2021-04-06 04:25:11'),
(65, 't3n', 'Dieter Petereit', 'Kritik an Luca-App: QR-Codes lassen sich leicht auslesen und missbrauchen', 'Wie sicher ist die Luca-App? Jetzt zeigt sich, dass das QR-Code-System sowohl digital wie auch als Ausdruck pr', 'https://t3n.de/news/kritik-luca-app-qr-code-missbrauch-1370826/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/03/luca-screens.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 04:19:53', '2021-04-06 04:25:29', '2021-04-06 09:30:47'),
(66, 't3n', 'Vladimir Simović', 'Webdesign: So lernst du spielerisch CSS3-Grids', 'Am Rechner spielen, dabei einen kleinen Garten retten und gleichzeitig neues Wissen über das Grid-Modul von CS', 'https://t3n.de/news/lernst-css3-grids-spielerisch-1164227/', 'https://assets.t3n.sc/news/wp-content/uploads/2019/05/webdesign-shutterstock-616104296.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 03:35:13', '2021-04-06 04:25:29', '2021-04-06 09:30:47'),
(67, 't3n', 'Claudia Wieschollek', 'Schwer zu verlieren: Bastler baut weltgrößte Switch', 'Habt ihr euch nicht schon immer gefragt, was wäre, wenn Nintendos Switch größer wäre? So richtig viel größer,', 'https://t3n.de/news/nintendo-switch-riesig-casual-engineer-1370781/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/Nintendo-Switch-Konsole-Riesig-Nachbau-Michael-Pick-Screenshot-Youtube.png?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 02:50:56', '2021-04-06 04:25:29', '2021-04-06 09:30:47'),
(68, 't3n', 'Andreas Floemer', 'Apple TV: Neues Modell der Set-Top-Box wohl mit 120 Hertz und Gamingfokus', 'Ein Update von Apples Set-Top-Box Apple TV ist lange überfällig. Nun deutet sich eine neue Generation mit 120-', 'https://t3n.de/news/apple-tv-120-hertz-1370762/', 'https://assets.t3n.sc/news/wp-content/uploads/2017/11/deutsche-streaming-anbieter.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 02:25:16', '2021-04-06 04:25:29', '2021-04-06 09:30:48'),
(69, 't3n', 'Kim Rixecker', 'Facebook-Leak und andere Datenlecks: So checkst du, ob dein Account betroffen ist', 'Persönliche Daten von mehr als 500 Millionen Facebook-Nutzern wurden im Netz veröffentlicht. Wir zeigen euch,', 'https://t3n.de/news/accounts-gehackt-passwort-adobe-pwned-514556/', 'https://assets.t3n.sc/news/wp-content/uploads/2013/12/passwort-eingabe-datenleck-passwortdiebstahl-leak.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 01:55:00', '2021-04-06 04:25:29', '2021-04-06 09:30:48'),
(70, 't3n', 'Kim Rixecker', 'Warum ein 1-Dollar-Chip zu weltweiten Engpässen führt', 'Display-Driver-Chips sind vergleichsweise einfache Bauteile, die üblicherweise nur einen US-Dollar in der Hers', 'https://t3n.de/news/chipknappheit-display-driver-1-dollar-1370751/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/chip-produktion.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 01:27:53', '2021-04-06 04:25:29', '2021-04-06 04:25:29'),
(71, 't3n', 't3n Redaktion', 'Produktivitäts-Flaute? Wie du das Beste aus deinen Online-Meetings holst', 'Online-Meetings sind anstrengend und führen manchmal nicht zur gewünschten Produktivität – in der jetzigen Rem', 'https://t3n.de/news/produktivitaets-flaute-beste-1368651/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/03/shutterstock-1695557203.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 00:30:45', '2021-04-06 04:25:29', '2021-04-06 04:25:29'),
(72, 't3n', 'Andreas Floemer', 'Whatsapp testet Migration von Chats zwischen iOS und Android', 'Whatsapp ermöglicht offenbar bald die Chatmigration zwischen iPhones und Android-Smartphones. Bislang ist der', 'https://t3n.de/news/whatsapp-testet-migration-chats-1370731/', 'https://assets.t3n.sc/news/wp-content/uploads/2019/09/Facebook-Whatsapp-Instagram.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 00:28:20', '2021-04-06 04:25:30', '2021-04-06 04:25:30'),
(73, 't3n', 'Golem.de', 'Cryptomining: Hut 8 kauft Nvidia-GPUs für 30 Millionen Dollar', 'Hut 8, einer der größten Bitcoin-Miner der Welt, erweitert sein Portfolio: 46.000 neue Nvidia-Karten sollen pr', 'https://t3n.de/news/hut-8-mining-betreiber-kauft-nvidia-gpus-1370726/', NULL, '2021-04-06 00:06:30', '2021-04-06 04:25:30', '2021-04-06 04:25:30'),
(74, 't3n', 'Vicky Isabelle Bargel', 'DHDL: Die Deals und besten Tweets zur gestrigen Sendung', 'Am Montagabend wurde die dritte Folge der neunten Staffel „Die Höhle der Löwen“ ausgestrahlt. Wir fassen wie i', 'https://t3n.de/news/dhdl-deals-besten-tweets-sendung-11-1370685/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/1759433.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-05 23:37:54', '2021-04-06 04:25:30', '2021-04-06 04:25:30'),
(75, 'mashable', 'Sasha Lekach', 'How to make iPhone\'s Screen Time actually helpful', 'Maybe this year we\'ll actually spend less time staring at a phone screen.', 'https://mashable.com/article/screen-time-ios-iphone-wwdc-2019-improve/', 'https://mondrian.mashable.com/2019%252F05%252F29%252F2b%252Fc28429efe72d4cd6ae4e1f36a6d5bcb6.7e8a8.jpg%252F1200x630.jpg?signature=_KJ1rjuTpolkLOy9GFR88GbTg80=', '2019-05-29 07:00:00', '2021-04-06 05:53:00', '2021-04-10 07:03:15'),
(76, 'mashable', 'Marcus Gilmer', 'AOC opens up about death threats after baseball team shows offensive video of her', '\'Words matter, and can have consequences for safety.\'', 'https://mashable.com/article/aoc-fresno-grizzlies-video-castro-kim-jon-un-death-threats/', 'https://mondrian.mashable.com/2019%252F05%252F29%252F4b%252Fe87b5ba10314494b8f529c9f05407c4c.4c53f.png%252F1200x630.png?signature=YzkiA_GKka3YNKLqxb6fvKifNKo=', '2019-05-29 06:51:29', '2021-04-06 05:53:00', '2021-04-10 07:03:15'),
(77, 'mashable', 'Sasha Lekach', 'Uber will now kick off riders with low ratings', 'Drivers can get deactivated, and now so can you.', 'https://mashable.com/article/uber-us-canada-rider-ratings-deactivation/', 'https://mondrian.mashable.com/2019%252F05%252F29%252F62%252F019202836dda42f9a508830e94ef2f41.cd2aa.jpg%252F1200x630.jpg?signature=GVUvqiudwXUBp1yp9WeEcM9FwOk=', '2019-05-29 06:00:00', '2021-04-06 05:53:00', '2021-04-10 07:03:15'),
(78, 'mashable', 'Kellen Beck', 'Metal Mario makes his Hot Wheels debut this summer', 'Metal Mario joins the fray.', 'https://mashable.com/article/metal-mario-hot-wheels/', 'https://mondrian.mashable.com/2019%252F05%252F29%252F0a%252F683206607d694bedbbd56d0f535fb74c.fee57.png%252F1200x630.png?signature=LXeezm6zsqYf6EVJttTbQ0zhkuk=', '2019-05-29 05:00:00', '2021-04-06 05:53:00', '2021-04-10 07:03:15'),
(79, 'mashable', 'Karissa Bell', 'Amazon challenges Google with smaller, cheaper Echo Show', 'Amazon just ratcheted up the pressure on Google.', 'https://mashable.com/article/amazon-echo-show-5/', 'https://mondrian.mashable.com/2019%252F05%252F29%252F4d%252Fd91b4bcb383142c1b52ffbac16165110.01151.jpg%252F1200x630.jpg?signature=R9UT45RZefZ53JiuK0HJ5OQNCoU=', '2019-05-29 05:00:00', '2021-04-06 05:53:01', '2021-04-10 07:03:15'),
(80, 'mashable', 'Anthony McGlynn', 'DC’s ‘Doom Patrol’ is the rare superhero show that understands trauma', 'The longest, greatest battles we face are against ourselves.', 'https://mashable.com/article/doom-patrol-mental-health-trauma/', 'https://mondrian.mashable.com/2019%252F05%252F29%252F11%252F8774903b15d649c693edd471b0f82e94.e7b54.jpg%252F1200x630.jpg?signature=AKcoR7ti6l_sj3X-_f_3l5N_d3o=', '2019-05-29 04:00:00', '2021-04-06 05:53:01', '2021-04-10 07:03:15'),
(81, 'mashable', 'Rachel Kraus', 'Trump and Biden court older women demographic with Facebook ads', 'Combined, they have spent millions on targeted Facebook ads.', 'https://mashable.com/article/biden-trump-facebook-ads-targeting-women/', 'https://mondrian.mashable.com/2019%252F05%252F28%252Fd2%252Fb4bf8a8b0277463fa17a55c2e0828213.6dd82.png%252F1200x630.png?signature=Xs-B53T_FOeCR6RWJWvAZdt7sfI=', '2019-05-28 13:52:08', '2021-04-06 05:53:01', '2021-04-10 07:03:15'),
(82, 'the-hindu', 'The Hindu Net Desk', 'Tamil Nadu Assembly elections 2021 live updates | Long queues seen as voting begins', 'The State will be witnessing a five-cornered battle.', 'https://www.thehindu.com/elections/tamil-nadu-assembly/tamil-nadu-assembly-elections-2021-voting-live-updates/article34246747.ece', 'https://www.thehindu.com/news/cities/Coimbatore/nzi7yh/article34249990.ece/ALTERNATES/LANDSCAPE_615/tnpollsjpeg', '2021-04-06 06:13:51', '2021-04-06 06:13:51', '2021-04-06 06:13:51'),
(83, 'the-hindu', 'Sriram Lakshman', 'After a contraction of 8%, expected growth of 12.5% for India: IMF', 'Averting divergent outcomes would mean “resolving the health crisis everywhere” the report says', 'https://www.thehindu.com/business/Economy/after-a-contraction-of-8-expected-growth-of-125-for-india-imf/article34254394.ece', 'https://www.thehindu.com/business/Economy/u8bbmq/article34254393.ece/ALTERNATES/LANDSCAPE_615/IMF', '2021-04-06 04:33:00', '2021-04-06 06:13:51', '2021-04-06 06:13:51'),
(84, 'the-hindu', 'The Hindu Net Desk', 'Coronavirus updates | Night curfew imposed in Delhi from 10 p.m. to 5 a.m. till April 30', 'IMA urges PM Modi to open COVID-19 vaccination for all above 18 years; India records highest single-day vaccination coverage', 'https://www.thehindu.com/news/national/coronavirus-updates-april-6-2021/article34251020.ece', 'https://www.thehindu.com/news/national/c61q60/article34251385.ece/ALTERNATES/LANDSCAPE_615/vbk-delhi-corona-ap', '2021-04-06 06:13:52', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(85, 'the-hindu', 'The Hindu Net Desk', 'Kerala Assembly elections 2021 live updates | Mock polls underway', 'About 2.74 crore voters exercising their franchise to decide the fate of 957 candidates.', 'https://www.thehindu.com/elections/kerala-assembly/kerala-assembly-elections-2021-voting-live-updates/article34247138.ece', 'https://www.thehindu.com/elections/kerala-assembly/rjlnny/article34249991.ece/ALTERNATES/LANDSCAPE_615/keralapollsjpeg', '2021-04-06 06:13:52', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(86, 'the-hindu', 'The Hindu Net Desk', 'West Bengal elections 2021 phase 3 live updates | 77.68% voter turnout recorded till 5 p.m.', 'More than 78.5 lakh voters are eligible to exercise their franchise and decide the fate of 205 candidates', 'https://www.thehindu.com/elections/west-bengal-assembly/west-bengal-elections-2021-phase-3-voting-live-updates/article34246206.ece', 'https://www.thehindu.com/elections/west-bengal-assembly/2bobw9/article34250260.ece/ALTERNATES/LANDSCAPE_615/West-Bengal-April-6-polling-1', '2021-04-06 06:13:52', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(87, 'the-hindu', 'The Hindu Net Desk', 'Assam elections 2021 third phase live updates | State records over 78.94% voter turnout till 5 pm', 'A direct contest between nominees of the BJP-led NDA and Congress-headed Grand Alliance is on the cards in 20 constituencies', 'https://www.thehindu.com/elections/assam-assembly/assam-elections-2021-third-phase-voting-live-updates/article34246270.ece', 'https://www.thehindu.com/elections/assam-assembly/z463h2/article34250024.ece/ALTERNATES/LANDSCAPE_615/assam-pollsjpeg', '2021-04-06 06:13:52', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(88, 'the-hindu', 'Sandeep Phukan', 'Analysis | Assam Assembly election can decide future of several players', 'Poll may have implications beyond who wins and who loses', 'https://www.thehindu.com/elections/assam-assembly/analysis-assam-assembly-election-can-decide-future-of-several-players/article34252735.ece', 'https://www.thehindu.com/elections/assam-assembly/o8lg2h/article34234073.ece/ALTERNATES/LANDSCAPE_615/Himantajpg', '2021-04-06 02:18:37', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(89, 'the-hindu', 'Kallol Bhattacherjee', 'Russia underlines need for inclusive solution to Afghan crisis', 'Foreign Ministers Lavrov and Jaishankar hold wide ranging bilateral talks', 'https://www.thehindu.com/news/national/eam-jaishankar-russian-foreign-minister-sergey-lavrov-hold-talks/article34251847.ece', 'https://www.thehindu.com/news/national/6lexr2/article34251958.ece/ALTERNATES/LANDSCAPE_615/06inRussia', '2021-04-06 00:48:46', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(90, 'the-hindu', 'The Hindu', 'South phase: On the Assembly elections in TN, Puducherry and Kerala', 'Much is at stake for the Left and the Congress in Kerala, and for regional parties in T.N.', 'https://www.thehindu.com/opinion/editorial/south-phase-on-the-assembly-elections-in-tn-puducherry-and-kerala/article34247964.ece', 'https://www.thehindu.com/static/theme/default/base/img/og-image.jpg', '2021-04-05 10:32:00', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(91, 'the-hindu', 'The Hindu', 'Persistent mindlessness: On Chhattisgarh\'s Sukma district encounter', 'Tarrem attacks indicate that the weakened Maoists remain a strong military threat', 'https://www.thehindu.com/opinion/editorial/persistent-mindlessness-on-chhattisgarhs-sukma-district-encounter/article34247966.ece', 'https://www.thehindu.com/static/theme/default/base/img/og-image.jpg', '2021-04-05 10:32:00', '2021-04-06 06:13:52', '2021-04-06 06:13:52'),
(92, 'reddit-r-all', 'Roger Sollenberger', 'Matt Gaetz Said His ‘Travel Records’ Would Exonerate Him. They Don’t.', 'Among the bevy of items currently under investigation is the Florida congressman’s campaign filings.', 'https://www.thedailybeast.com/matt-gaetz-said-his-travel-records-would-exonerate-him-they-dont', 'https://img.thedailybeast.com/image/upload/c_crop,d_placeholder_euli9k,h_1688,w_3000,x_0,y_0/dpr_2.0/c_limit,w_740/fl_lossy,q_auto/v1617699359/210405-gaetz-travel-tease_erk7h5', '2021-04-06 00:47:21', '2021-04-06 06:36:54', '2021-04-06 09:43:35'),
(93, 'reddit-r-all', NULL, 'r/WTF - \"You see he wasn\'t heavy enough for a thing like that!\"', '8,766 votes and 403 comments so far on Reddit', 'https://v.redd.it/6aejqwe8gjr61', 'https://external-preview.redd.it/FP31WszSYdvfbAFIGbG9GghmBIJ_lLPFiS6juFUTkaA.png?format=pjpg&auto=webp&s=baffbe2f1a2d5eb2aa712cb980a20bcd44f8c81d', '2021-04-06 09:43:35', '2021-04-06 06:36:54', '2021-04-06 09:43:35'),
(94, 'reddit-r-all', 'Miles Martin', 'Researchers come one step closer to ‘insulin in a pill’', 'By using nanomaterial layers to package insulin, researchers have developed a stable and effective method for administering the hormone orally without subjecting it to destruction by stomach acids, solving a long-time problem in pharmaceutical science.', 'https://academictimes.com/researchers-come-one-step-closer-to-insulin-in-a-pill/', 'https://academictimes.s3.amazonaws.com/attachments/NYUADs_Research_Scientist_Farah_Benyettou_and_Program_Head_of_Chemistry_Ali__8nvkDhm.jpg?AWSAccessKeyId=AKIAZY7Z2AAV2DOHJOHW&Signature=OrBu3dTvDRvYeu6Uxs4r8Ywfto4%3D&Expires=1627717173', '2021-04-06 02:00:03', '2021-04-06 06:36:54', '2021-04-06 09:43:35'),
(95, 'reddit-r-all', NULL, 'r/aww - I\'m not going to work today', '15,655 votes and 82 comments so far on Reddit', 'https://www.reddit.com/r/aww/comments/ml7bim/im_not_going_to_work_today/', 'https://external-preview.redd.it/F6OSsJbKswVW5Rj-Vpu-bNFvXx-rd9mTexvQ5xRez80.png?format=pjpg&auto=webp&s=7de03ac4ae4731d3bbb9bc6ba395bf5ce343f7d9', '2021-04-06 09:43:35', '2021-04-06 06:36:54', '2021-04-06 09:43:35'),
(96, 'reddit-r-all', NULL, 'r/wallstreetbets - GME Megathread for April 06, 2021', '0 votes and 2,093 comments so far on Reddit', 'https://www.reddit.com/r/wallstreetbets/comments/ml9ho9/gme_megathread_for_april_06_2021/', NULL, '2021-04-06 09:43:35', '2021-04-06 06:36:54', '2021-04-06 09:43:35'),
(97, 'reddit-r-all', 'Andrius Balčiūnas,LRT.lt', '‘We will not be intimidated.’ Despite China threats, Lithuania moves to recognise Uighur genocide', 'After the historical move by Brussels to impose sanctions on China, Beijing retaliated by targeting four Lithuanian politicians among over a dozen European diplomats and officials. Now, despite direct pressure on Lithuanian MPs, Vilnius is planning to recognise repressions against the Uighurs as genocide.', 'https://www.lrt.lt/en/news-in-english/19/1378043/we-will-not-be-intimidated-despite-china-threats-lithuania-moves-to-recognise-uighur-genocide', 'https://www.lrt.lt/img/2021/03/09/839160-514509-1287x836.jpg', '2021-04-05 21:00:00', '2021-04-06 06:36:54', '2021-04-06 09:43:35'),
(98, 'the-next-web', 'Ivan Mehta', 'A brief history of LG’s weird and wonderful Android phones', 'Yesterday, South Korean tech company LG announced that it’s stepping away from smartphone manufacturing. The firm was one of the first adopters of Android, and came out with a device running the Cupcake version in 2009. While LG made some solid phones over the years, its mounting losses forced the company to throw in the […]', 'https://thenextweb.com/plugged/2021/04/06/a-brief-history-of-lgs-weird-and-wonderful-android-phones/', 'https://img-cdn.tnwcdn.com/image/plugged?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F01%2FLG-x-CES-2021_02-1-e1610455426891.jpg&signature=12cf52ef0c205b83a21146ebbd28db6c', '2021-04-06 05:05:53', '2021-04-06 06:38:59', '2021-04-06 06:38:59'),
(99, 'the-next-web', 'Ivan Mehta', 'These AI-made songs channel the spirit of Cobain and Hendrix', 'Tribute bands are great because even if you might not be able to see your favorite artists live, they recreate that magic to some extent. But what if that tribute band is an AI? Over The Bridge, a Canada-based non-profit that helps musicians with mental health, has started a new AI-powered project called Lost Tapes […]', 'https://thenextweb.com/neural/2021/04/06/these-ai-made-songs-channel-the-spirit-of-cobain-and-hendrix/', 'https://img-cdn.tnwcdn.com/image/neural?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2Fpossessed-photography-U3sOwViXhkY-unsplash-e1617698188720.jpg&signature=32def2a8b3af48d18ccfdb82f6c42b13', '2021-04-06 01:48:09', '2021-04-06 06:38:59', '2021-04-06 06:38:59'),
(100, 'the-next-web', 'Matthew Beedham', 'Uber looks to prevent drivers from seeing destinations — it’s a dick move', 'According to the San Francisco Chronicle, Uber is thinking about stopping its drivers from being able to see the destinations and potential prices of ride requests. Yet again, it shows the ride-hailing Übermensch doesn’t really prioritize its drivers. It’s classic poor form from Uber, and I’m going to explain why. As the Chronicle points out, […]', 'https://thenextweb.com/shift/2021/04/06/uber-might-stop-drivers-see-destinations-prices/', 'https://img-cdn.tnwcdn.com/image/shift?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F03%2Fuber.png&signature=b4b2efe8f1305d747e3c7b022077523d', '2021-04-06 01:26:35', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(101, 'the-next-web', 'The Conversation', 'What actually happened with Facebook’s massive 533M record leak', 'Over the long weekend reports emerged of an alleged data breach, impacting half a billion Facebook users from 106 countries.\r\n\r\nAnd while this figure is staggering, there’s more to ...', 'https://thenextweb.com/facebook/2021/04/06/what-actually-happened-with-facebooks-massive-533m-record-leak-syndication/', 'https://img-cdn.tnwcdn.com/image/tnw?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2Ffacebook.png&signature=e782487de579426fd03b8a3a2e92a7a4', '2021-04-06 01:14:45', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(102, 'the-next-web', 'Nicholas Mills', 'Want to scale fast? Make developer productivity your top priority', 'One of the hardest processes for business leaders to control, encountered by every growing organization, is how to scale successfully. I’ve found this is even harder when scaling tech teams. Investing in the right places at the right time can be pivotal to the future of the business, as time and again these teams are […]', 'https://thenextweb.com/growth-quarters/2021/04/06/startup-scaling-developer-productivity-continuous-integration/', 'https://img-cdn.tnwcdn.com/image/growth-quarters?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2Fdeveloper-coding-gq.png&signature=74314b39ea68a79cc4332f764633937b', '2021-04-06 00:32:19', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(103, 'the-next-web', 'Matthew Beedham', 'Android Auto is about to get heaps more navigation and EV charging apps', 'Users of Android Auto should start to see a greater selection of in-car compatible apps on the Play Store. According to an announcement on Google’s Android developer blog, Android Auto devs working on navigation, parking, and EV charging apps can now push them to production. In other words, apps from the likes of Chargepoint, PlugShare, […]', 'https://thenextweb.com/shift/2021/04/06/get-ready-heaps-more-android-auto-apps/', 'https://img-cdn.tnwcdn.com/image/shift?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2020%2F08%2Fandroid-auto-car-slow-ev-infotainment-computer.jpg&signature=f3d5f2963d622e99d362ad294faa0ec1', '2021-04-05 23:46:29', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(104, 'the-next-web', 'Ivan Mehta', 'Of course Yahoo Answers is shutting down — just look at its vile ‘trending’ section', 'Yahoo Answers is shutting down. Meh. I had forgotten about its existence up until today, when the site announced that it’s wrapping up all operations by May 4. On its FAQ page, Yahoo Answers said that if you want to post questions or answers, you have until 4/20 to do so. I think the admins couldn’t […]', 'https://thenextweb.com/plugged/2021/04/06/of-course-yahoo-answers-is-shutting-down-just-look-at-its-vile-trending-section/', 'https://img-cdn.tnwcdn.com/image/plugged?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2018%2F06%2Fyahoo-messenger.png&signature=7c2fe0a344f0edc1e51f083a8be0ad22', '2021-04-05 22:12:34', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(105, 'the-next-web', 'Tristan Greene', 'What would an autonomous Apple Car mean for Tesla?', 'I’m not sure what podcasts Elon Musk listens to. But I hope he caught Kara Swisher’s “Sway” today, because it definitely concerns him. Apple CEO Tim Cook joined Swisher and the two discussed, among other things, the mysterious Apple Car. Details are scarce and I’ll be right up front: Cook didn’t give away anything big […]', 'https://thenextweb.com/neural/2021/04/05/what-would-an-autonomous-apple-car-mean-for-tesla/', 'https://img-cdn.tnwcdn.com/image/neural?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2018%2F07%2FElon-Musk-hed.jpg&signature=4c51d11392b99f5f63fbdfc4741cbd25', '2021-04-05 15:55:11', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(106, 'the-next-web', 'Napier Lopez', 'Poll: Employees would rather make less money than go back to an office', 'For many people, one of the few good things about this pandemic has been the ability to work from home. The past year has shown both employees and employers that many jobs can be done ...', 'https://thenextweb.com/insider/2021/04/05/big-surprise-employees-like-working-from-home/', 'https://img-cdn.tnwcdn.com/image/tnw?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2020%2F05%2Ficons8-work-from-home-gq.png&signature=32ca0cc8d25dbb3e84ecd6d36486304f', '2021-04-05 15:37:26', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(107, 'the-next-web', 'Napier Lopez', 'JBL HDI-1600 review: This neutral hi-fi speaker is meant to play loud', 'I’ve reviewed two of JBL‘s hi-fi speakers before, the L82 and L100 Classic — speakers I enjoyed for their great sound and retro aesthetics. Over the past month or two, I’ve been able to test one of the company’s more forward-looking speakers, the $1,800 HDI-1600. After putting it through its paces in my living room and […]', 'https://thenextweb.com/plugged/2021/04/05/jbl-hdi-1600-review/', 'https://img-cdn.tnwcdn.com/image/plugged?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2FJBL-HDI-1600-1-of-3.jpg&signature=0019ca3b9dccb0b20b35e224cc048ad3', '2021-04-05 14:39:30', '2021-04-06 06:39:00', '2021-04-06 06:39:00'),
(108, 'handelsblatt', 'Handelsblatt', 'Topps geht durch Spac-Fusion an die Börse', 'Das US-Unternehmen will über die Fusion auf kurzem Weg an die Nasdaq. Topps wird bei dem Deal mit rund 1,3 Milliarden Dollar bewertet.', 'https://www.handelsblatt.com/finanzen/anlagestrategie/trends/panini-rivale-topps-geht-durch-spac-fusion-an-die-boerse/27071186.html', 'https://www.handelsblatt.com/images/wall-street/27071246/2-format2003.jpg', '2021-04-06 06:26:01', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(109, 'handelsblatt', 'Andreas Neuhaus', 'Bitcoin-Kurs: Kryptowährungen knacken die Grenze von zwei Billionen Dollar', 'Am Kryptomarkt fällt die nächste Billionen-Grenze. Von dieser Entwicklungen profitiert der Bitcoin – andere Digitalwährungen aber noch stärker.', 'https://www.handelsblatt.com/finanzen/maerkte/devisen-rohstoffe/bitcoin-ethereum-und-co-marktwert-aller-kryptowaehrungen-knackt-die-marke-von-zwei-billionen-dollar/27070954.html', 'https://www.handelsblatt.com/images/ethereum-darstellung/27071002/3-format2003.jpg', '2021-04-06 06:20:27', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(110, 'handelsblatt', 'Barbara Gillmann, Daniel Delhaes', 'Brückenlockdown: Unterstützung aus der CDU – Kritik aus der SPD', 'Die Ministerpräsidenten aus Hessen und Sachsen unterstützen ihren Parteichef Laschet – der Saarländer Tobias Hans nicht. Auch Bayern hält sich bedeckt.', 'https://www.handelsblatt.com/politik/deutschland/pandemiebekaempfung-laschet-bekommt-in-der-union-fuer-den-bruecken-lockdown-nur-teilweise-rueckendeckung/27070466.html', 'https://www.handelsblatt.com/images/armin-laschet/27070686/2-format2003.jpg', '2021-04-06 06:20:00', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(111, 'handelsblatt', 'Ben Mendelson', 'Bevölkerung in Deutschland 2021: Die größten Bundesländer', 'Deutschland ist gemessen an der Bevölkerungszahl und dem BIP das größte EU-Land. Doch wie viele Menschen leben in den 16 Bundesländern? Ein Überblick.', 'https://www.handelsblatt.com/politik/deutschland/bevoelkerung-in-deutschland-wie-viele-menschen-leben-in-den-16-bundeslaendern/26635128.html', 'https://www.handelsblatt.com/images/duesseldorf/26673116/2-format2003.jpg', '2021-04-06 05:45:00', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(112, 'handelsblatt', 'Martin Greive', 'Der Wechsel von Gabriel Felbermayr stürzt das IfW in die Bredouille', 'Nach nur zwei Jahren an der Spitze verlässt der Ökonom das Kieler Institut für Weltwirtschaft schon wieder. Als potenzieller Nachfolger kommen mehrere Kandidaten in Frage.', 'https://www.handelsblatt.com/politik/deutschland/wirtschaftsforschung-ueberraschender-wechsel-ifw-chef-felbermayer-geht-an-das-wiener-wirtschaftsinstitut/27070704.html', 'https://www.handelsblatt.com/images/gabriel-felbermayr/27070838/4-format2003.jpg', '2021-04-06 05:40:00', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(113, 'handelsblatt', 'Frank Matthias Drost', 'PSD2: Kritik an Datenschutzmängeln bei Kontodaten in der EU', 'Dienstleister können mit Zustimmung der Kunden auf Bankdaten zurückgreifen. Ihre Privatsphäre ist dabei unzureichend geschützt, kritisieren Experten.', 'https://www.handelsblatt.com/finanzen/steuern-recht/recht/zahlungsdienste-verbraucherschuetzer-kritisieren-mangelnden-datenschutz-bei-kontodaten/27067780.html', 'https://www.handelsblatt.com/images/bankkonto/27070646/3-format2003.jpg', '2021-04-06 05:35:00', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(114, 'handelsblatt', 'Handelsblatt', 'Weidmann hält Erreichen der Prognose 2021 für unwahrscheinlich', 'Der Bundesbankpräsident ist unsicher, ob die Vorhersage von drei Prozent Wirtschaftswachstum noch erreicht werden kann. Dem mittelfristigen Ausblick würde nichts im Wege stehen.', 'https://www.handelsblatt.com/finanzen/geldpolitik/konjunktur-weidmann-haelt-erreichen-der-wachstumsprognose-2021-fuer-weniger-wahrscheinlich/27070632.html', 'https://www.handelsblatt.com/images/jens-weidmann-/27070670/2-format2003.jpg', '2021-04-06 05:32:58', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(115, 'handelsblatt', 'Jürgen Röder', 'Dax-Umfrage: Euphorische Anleger strotzen vor Selbstsicherheit – Doch die Börsenparty kann noch weitergehen', 'Nach den deutlichen Kursgewinnen in den vergangenen Tagen sind Investoren in Feierlaune. Dieses Verhalten zeigt: Die Rally ist in einer späten Phase.', 'https://www.handelsblatt.com/finanzen/anlagestrategie/trends/dax-umfrage-euphorische-anleger-strotzen-vor-selbstsicherheit-die-boersenparty-kann-noch-weitergehen/27064754.html', 'https://www.handelsblatt.com/images/bulle-und-baer-vor-der-frankfurter-boerse/25938954/22-format2003.jpg', '2021-04-06 05:15:10', '2021-04-06 06:40:46', '2021-04-06 06:40:46'),
(116, 'handelsblatt', 'Martin Greive, Jan Hildebrand', 'IWF warnt: China und USA hängen Europa ab', 'Der Internationale Währungsfonds hebt seine Wachstumsprognose für die Weltwirtschaft deutlich an. Für Deutschland fällt das Plus aber vergleichsweise gering aus.', 'https://www.handelsblatt.com/politik/deutschland/weltwirtschaft-china-und-usa-haengen-europa-ab-iwf-warnt-vor-wachsender-kluft-bei-wirtschaftlicher-erholung/27070640.html', 'https://www.handelsblatt.com/images/chinesische-container-in-kalifornien/27070708/2-format2003.jpg', '2021-04-06 04:41:24', '2021-04-06 06:40:47', '2021-04-06 06:40:47'),
(117, 'handelsblatt', 'Frank Specht', 'Corona-Testpflicht: Verbände wollen Verpflichtung noch abwenden', 'BDA, BDI, DIHK und ZDH legen einen „Sachstandsbericht“ über Corona-Tests in Unternehmen vor. Doch Arbeits- und Wirtschaftsministerium prüfen lieber selbst nach.', 'https://www.handelsblatt.com/politik/deutschland/corona-tests-in-unternehmen-wie-die-wirtschaftsverbaende-eine-testpflicht-noch-abwenden-wollen/27070368.html', 'https://www.handelsblatt.com/images/hinweisschild-an-einer-apotheke/27070380/3-format2003.jpg', '2021-04-06 04:24:39', '2021-04-06 06:40:47', '2021-04-06 06:40:47'),
(118, 'gruenderszene', NULL, 'Der Spac-Börsenhype ist riskant – platzt jetzt die Blase?', 'Nach Krypto-Boom und Gamestop-Manie kommt die SPAC-Bonanza. Wall Street und Promis rühren die Werbetrommeln, doch Experten warnen vor den leeren Firmenhüllen.', 'https://www.businessinsider.de/gruenderszene/fintech/spac-boersenhype-blase/', 'https://cdn.businessinsider.de/wp-content/uploads/2020/11/klaus-hommels-2.jpg', '2021-04-06 03:46:01', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(119, 'gruenderszene', NULL, 'Wie konnte Getyourguide vom Milliarden-Startup zum Corona-Absteiger werden?', 'Getyourguide startete beschaulich in einer Studenten-WG und wuchs in den vergangenen Jahren zum milliardenschweren Einhorn. Doch 2020 sackte der Umsatz wegen der Corona-Krise zwischenzeitlich auf Null ab und das Berliner Unternehmen, das Veranstaltungen und Aktivitäten von professionellen Anbietern verkauft, entließ ein Sechstel der Belegschaft. Jetzt hofft die Firma von Johannes Reck und Tao Tao auf […]', 'https://www.businessinsider.de/gruenderszene/getyourguide-vom-milliarden-startup-zum-corona-absteiger-a/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/01/ezgif.com-webp-to-jpg.jpg', '2021-04-06 02:15:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(120, 'gruenderszene', NULL, '5 Tipps zur Mitarbeitermotivation während der Corona-Krise', 'Das Startup Spendesk wächst auch während der weltweiten Pandemie rasant. Wie Zusammenhalt und die Motivation im Team auch in schwierigen Situationen steigen. Anzeige', 'https://www.businessinsider.de/gruenderszene/sponsored-post/5-tipps-zur-mitarbeitermotivation-spendesk-2021-13057/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/03/spendesk-mitarbeitermotivation-artikelbild.png', '2021-04-06 01:59:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(121, 'gruenderszene', NULL, 'Mit diesem Spac-Pitchdeck buhlt Lilium um Investoren', 'Das Flugtaxi-Startup geht über einen Spac an die Börse. Für das Vorhaben suchen Lilium und Spac-Besitzer Qell nach Finanziers.', 'https://www.businessinsider.de/gruenderszene/automotive-mobility/spac-pitchdeck-lilium-qell/', 'https://cdn.businessinsider.de/wp-content/uploads/2020/11/Lilium_P001_visionary-founders-DanielWiegandCEO-SebastianBorn-MatthiasMeiner-PatrickNathen_print.jpg', '2021-04-06 01:15:17', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(122, 'gruenderszene', NULL, 'CO2-App aus Wien sammelt 2 Millionen ein', 'Alles, was man über Startups wissen muss. Auf einen Blick. Die Kurznachrichten aus der Szene könnt ihr hier verfolgen.', 'https://www.businessinsider.de/gruenderszene/news/startup-ticker-apr21-inoqo/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/02/202101_GS_Newsticker_Startup_Artikelbild_1230x820-1.jpg', '2021-04-06 00:17:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(123, 'gruenderszene', NULL, 'Warum jetzt so viele Fußballer in Startups investieren – Ex-Profi Dennis Aogo im Podcast', 'Ex-Nationalspieler Dennis Aogo versucht sich nach seiner Fußball-Karriere als Business Angel, viele seiner Kollegen ebenso. Was steckt dahinter?', 'https://www.businessinsider.de/gruenderszene/podcast-gruenderszene/warum-jetzt-so-viele-fussballer-in-startups-investieren-ex-profi-dennis-aogo-im-podcast/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/202104_GS_Podcast_Artikel_1230x820_Dennis-Aogo.jpg', '2021-04-05 22:00:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(124, 'gruenderszene', NULL, '„Ich war fassungslos“ – klaut Beiersdorf das Know-How von Gründern?', 'Das Startup Ave + Edam verhandelte mit Beiersdorf über eine Zusammenarbeit. Doch dann brachte der Konzern ein Konkurrenzprodukt heraus.', 'https://www.businessinsider.de/gruenderszene/health/nutzt-beiersdorf-know-how-von-startups-ave-edam/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/03/101727335-scaled.jpg', '2021-04-05 20:00:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(125, 'gruenderszene', NULL, 'Tesla bricht im ersten Quartal seinen eigenen Rekord', 'Der US-Elektroautobauer lieferte fast 185.000 Fahrzeuge aus. Außerdem: Waymo bekommt eine Doppelspitze und Coinbase geht Mitte April an die Börse.', 'https://www.businessinsider.de/gruenderszene/business/tesla-bricht-eigenen-rekord/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/GettyImages-1068595680.jpg', '2021-04-05 19:55:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(126, 'gruenderszene', NULL, 'Darum investierte Dagmar Wöhrl am Ende doch nicht in Kulero', 'In der TV-Show „Die Höhle der Löwen“ verhandelte das Eislöffel-Startup hart mit den Juroren und bekam einen Deal. Den sagte es aber wieder ab.', 'https://www.businessinsider.de/gruenderszene/food/dhdl-kulero-deal-dagmar-woehrl-geplatzt/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/Kulero_alt.jpg', '2021-04-05 12:20:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(127, 'gruenderszene', NULL, 'Trotz Millionen-Reichweite bei DHDL: Diese Gründerinnen gaben schon vor der Show auf', 'Am Montag zeigt die TV-Show „Die Höhle der Löwen“ den Auftritt des Kölner BH-Startups Pocketsy. Das Unternehmen ist aber längst aufgelöst.', 'https://www.businessinsider.de/gruenderszene/media/dhdl-pocketsy-bh/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/pocketsy-die-hoehle-der-loewen-scaled.jpg', '2021-04-05 00:00:00', '2021-04-06 06:40:52', '2021-04-06 06:40:52'),
(128, 'mtv-news-uk', 'MTV News', 'Khloé Kardashian Reacts To “Disrespectful” Typo On Throwback Family Christmas Card', '\"So rude!\"', 'http://www.mtv.co.uk/khloe-kardashian/news/khloe-kardashian-reacts-to-disrespectful-typo-in-throwback-family-christmas-card', 'http://www.mtv.co.uk/sites/default/files/styles/carousel_wide/public/mtv_uk/galleries/large/2020/12/18/kdash.jpg?itok=umGfTB5f', '2020-12-18 02:02:12', '2021-04-06 06:41:09', '2021-04-14 07:45:02'),
(129, 'mtv-news-uk', 'MTV News', 'Shawn Mendes Reveals How He And Camila Cabello Are Spending Christmas', '\"I haven’t looked forward to something so much in so long\"', 'http://www.mtv.co.uk/shawn-mendes/news/shawn-mendes-reveals-how-he-and-camila-cabello-are-spending-christmas', 'http://www.mtv.co.uk/sites/default/files/styles/carousel_wide/public/mtv_uk/galleries/large/2020/12/18/shawn1.png?itok=nHRyjAnR', '2020-12-18 01:29:43', '2021-04-06 06:41:09', '2021-04-14 07:45:02'),
(130, 'mtv-news-uk', 'MTV News', 'Selena Gomez Wins An Award From Peta For Her Vegan Rare Beauty Makeup Collection', 'She\'s been praised for her commitment to cruelty-free products', 'http://www.mtv.co.uk/selena-gomez/news/selena-gomez-wins-an-award-from-peta-for-her-vegan-rare-beauty-collection', 'http://www.mtv.co.uk/sites/default/files/styles/carousel_wide/public/mtv_uk/galleries/large/2020/12/17/gomnac.png?itok=j97HrzAo', '2020-12-17 02:13:25', '2021-04-06 06:41:09', '2021-04-14 07:45:03'),
(131, 'mtv-news-uk', 'MTV News', 'Addison Rae And Rachael Leigh Cook Recreate She’s All That Scene On TikTok', 'They\'re both starring in an updated version of the teen classic', 'http://www.mtv.co.uk/youtubers/news/addison-rae-and-rachael-leigh-cook-recreate-shes-all-that-scene-on-tiktok', 'http://www.mtv.co.uk/sites/default/files/styles/carousel_wide/public/mtv_uk/galleries/large/2020/12/17/adi_0.png?itok=ZDvNwmQu', '2020-12-17 01:35:49', '2021-04-06 06:41:09', '2021-04-14 07:45:03'),
(132, 'business-insider', 'Tom Porter', 'Republicans are threatening tax hikes and boycotts to punish companies that criticize restrictive voting laws', 'Top Republicans are warning of consequences for companies that\'ve criticized voting restriction laws, including stripping them of tax benefits.', 'http://www.businessinsider.com/gop-plans-tax-hikes-boycotts-for-companies-that-oppose-voter-laws-2021-4', 'https://i.insider.com/606c3616a7d803001963ee6a?width=1200&format=jpeg', '2021-04-06 03:27:48', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(133, 'business-insider', 'Ben Gilbert', 'Facebook and Google donated $70,000 to a Republican political group', 'After pledging to halt all political contributions in early 2021, Facebook donated $50,000 to a Republican group that supports voter suppression laws.', 'http://www.businessinsider.com/facebook-google-donated-tens-of-thousands-to-republicans-this-year-2021-4', 'https://i.insider.com/606c5494856cd700198a3513?width=1200&format=jpeg', '2021-04-06 07:09:11', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(134, 'business-insider', 'Grace Dean, Grace Kay', 'US ketchup shortage may make packets harder to find at restaurants', 'An increase in take-out orders has caused ketchup sales to spike. At the onset of the pandemic, sales were up over 300% from the prior year.', 'http://www.businessinsider.com/ketchup-shortage-price-increase-us-restaurants-fast-food-delivery-heinz-2021-4', 'https://i.insider.com/606c67a2856cd700198a3558?width=1200&format=jpeg', '2021-04-06 07:18:50', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(135, 'business-insider', 'Dominick Reuter', 'Biden\'s broadband plan could help more Americans start businesses', 'Even with brilliant ideas, the 163 million people in the US without broadband would have a tough time making money. A new plan wants to change that.', 'http://www.businessinsider.com/biden-broadband-start-a-business-internet-access-2021-4', 'https://i.insider.com/606b8675a7d803001963edb0?width=1200&format=jpeg', '2021-04-06 05:24:00', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(136, 'business-insider', 'Erin Snodgrass', 'Photo suggests Trump still drinking Coke despite calls for boycott', 'The photo hid a slew of other Easter eggs in Trump\'s new office, including what appeared to be a miniature statue of Trump himself.', 'http://www.businessinsider.com/photo-suggests-trump-still-drinking-coke-products-despite-calls-for-boycott-2021', 'https://i.insider.com/606baee2a7d803001963edd6?width=1200&format=jpeg', '2021-04-05 17:01:26', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(137, 'business-insider', 'Jenny Powers', 'An Amazon delivery driver on the tracking app and strict rules', '\"We\'ve created a workaround to game the system,\" says one Amazon driver, who says he eats lunch while driving and has to pee in water bottles.', 'http://www.businessinsider.com/amazon-delivery-driver-rules-tracking-app-pee-bottles-2021-4', 'https://i.insider.com/606b5117a7d803001963ec57?width=1200&format=jpeg', '2021-04-06 05:46:21', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(138, 'business-insider', 'Mark Matousek', 'How outgoing Waymo CEO John Krafcik made Google\'s autonomous-car spin-off into a $30 billion industry giant', 'When John Krafcik became Waymo\'s CEO in 2015, it was an expensive science project. He leaves it as a fledgling business with a clear lead over rivals.', 'http://www.businessinsider.com/john-krafcik-waymo-google-alphabet-self-driving-cars-autonomous-stock-2021-4', 'https://i.insider.com/606b75d9a7d803001963ed67?width=1200&format=jpeg', '2021-04-06 06:50:56', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(139, 'business-insider', 'Claire Atkinson', 'Comcast\'s Peacock is facing a tough test as competition heats up and advertisers seek more viewer data', 'Ad buyers have expressed doubts about the streaming service\'s ability to remain a draw for prestige advertisers.', 'http://www.businessinsider.com/advertisers-rate-nbcuniversals-streaming-service-peacock-one-year-in-2021-4', 'https://i.insider.com/606b78bc856cd700198a3425?width=1200&format=jpeg', '2021-04-06 05:40:27', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(140, 'business-insider', 'Katie Warren', 'Iconic LA mansion from \'The Godfather\' on the market for $90 million', 'The Mediterranean-inspired estate was asking $195 million in 2016, so you could say the new $89.75 million price tag is an offer you can\'t refuse.', 'http://www.businessinsider.com/california-mansion-godfather-horse-head-scene-beverly-hills-photos-2018-10', 'https://i.insider.com/606bd4b7a7d803001963edf9?width=1200&format=jpeg', '2021-04-05 20:27:23', '2021-04-06 07:40:29', '2021-04-06 07:40:29'),
(141, 'business-insider', 'Vicky Ge Huang', 'Ether bull shares two emerging blockchain opportunities on her radar', 'After her 10,000% return on ether in four years, Annabelle Huang shares two emerging areas of the crypto market that she\'s excited about.', 'http://www.businessinsider.com/ethereum-bull-shares-emerging-blockchain-opportunities-annabelle-huang-amber', 'https://i.insider.com/606b1523856cd700198a31e0?width=1200&format=jpeg', '2021-04-06 04:03:00', '2021-04-06 07:40:30', '2021-04-06 07:40:30'),
(142, 'the-wall-street-journal', 'Margot Patrick', 'Credit Suisse Takes $4.7 Billion Hit on Archegos Meltdown', 'Swiss banking giant slashes dividend and shuffles top executives', 'https://www.wsj.com/articles/credit-suisse-takes-4-7-billion-hit-on-archegos-meltdown-11617687483?mod=hp_lead_pos1', 'https://images.wsj.net/im-320882/social', '2021-04-05 21:38:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35'),
(143, 'the-wall-street-journal', 'Ryan Tracy', 'Merchant Groups Target Amazon in New Political Campaign', 'National coalition of small businesses to push for more-forceful antitrust measures, saying Amazon competes unfairly', 'https://www.wsj.com/articles/merchant-groups-target-amazon-in-new-political-campaign-11617701401?mod=hp_lead_pos2', 'https://images.wsj.net/im-320550/social', '2021-04-06 01:30:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35'),
(144, 'the-wall-street-journal', 'Juliet Chung, Katherine Blunt', 'Texas Storm Is Windfall for Some Wall Street Firms', 'Natural-gas plants owned by Fortress, Kennedy Lewis and others saw increased demand when subfreezing temperatures hit the state', 'https://www.wsj.com/articles/texas-storm-is-windfall-for-some-wall-street-firms-11617701402?mod=hp_lead_pos3', 'https://images.wsj.net/im-320843/social', '2021-04-06 01:30:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35'),
(145, 'the-wall-street-journal', 'Gunjan Banerji', 'White-Hot Stock Rally Masks Mammoth Value Swings', 'Apple, Nvidia and PayPal are among the firms with broad shifts this year, as momentum trade and dwindling liquidity help stir turbulence', 'https://www.wsj.com/articles/white-hot-stock-rally-masks-mammoth-value-swings-11617701401?mod=hp_lead_pos4', 'https://images.wsj.net/im-320684/social', '2021-04-06 01:30:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35'),
(146, 'the-wall-street-journal', 'Aaron Zitner, Julie Bykowicz', 'Calls Grow to Abandon Regulations Eased Under Covid (Hello, Cocktails to Go)', 'After state and local governments temporarily eased rules over takeout alcohol, telehealth and other services, some want the regulations gone for good', 'https://www.wsj.com/articles/calls-grow-to-abandon-regulations-eased-under-covid-hello-cocktails-to-go-11617718885?mod=hp_lead_pos5', 'https://images.wsj.net/im-320643/social', '2021-04-06 06:21:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(147, 'the-wall-street-journal', 'Ken Thomas', 'Biden to Say All U.S. Adults Should Be Eligible for Covid-19 Vaccine by April 19', 'President to say that U.S. has surpassed 150 million shots since he took office', 'https://www.wsj.com/articles/biden-to-say-all-u-s-adults-should-be-eligible-to-receive-covid-19-vaccine-by-april-19-11617711281?mod=hp_lead_pos6', 'https://images.wsj.net/im-320920/social', '2021-04-06 04:14:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35'),
(148, 'the-wall-street-journal', 'Andrew Duehren', 'Senate Parliamentarian Rules in Favor of Democratic Reconciliation Effort', 'Move opens door for Democrats to approve more measures along party lines in the Senate', 'https://www.wsj.com/articles/senate-parliamentarian-rules-in-favor-of-democratic-reconciliation-effort-11617663204?mod=hp_lead_pos7', 'https://images.wsj.net/im-320842/social', '2021-04-05 14:53:00', '2021-04-06 07:49:02', '2021-04-06 07:49:02'),
(149, 'the-wall-street-journal', 'Shan Li, Liyan Qi', 'Violence Spurs Many Asian-Americans to Activism for First Time', 'Atlanta spa shooting deaths and rising reports of hate crimes during pandemic have pulled in families who had avoided discussing race', 'https://www.wsj.com/articles/violence-spurs-many-asian-americans-to-activism-for-first-time-11617701400?mod=hp_lead_pos10', 'https://images.wsj.net/im-320251/social', '2021-04-06 01:30:00', '2021-04-06 07:49:02', '2021-04-06 09:03:35'),
(150, 'the-wall-street-journal', 'Laine Higgins', 'Baylor’s Long Road to Its First Men’s Basketball National Championship', 'After decades of futility, coach Scott Drew built a powerhouse from the ashes of scandal', 'https://www.wsj.com/articles/baylor-ncaa-basketball-national-championship-scott-drew-11617715084?mod=hp_lead_pos11', 'https://images.wsj.net/im-320949/social', '2021-04-06 05:20:00', '2021-04-06 07:49:03', '2021-04-06 07:49:03'),
(151, 'the-wall-street-journal', 'Theo Francis', 'Meet the Highest Paid CEO in S&P 500, Paycom’s $211 Million Man', 'Chad Richison’s equity award could wind up worth more than $2 billion over several years; Paycom says he only gets it if the stock more than doubles', 'https://www.wsj.com/articles/meet-the-highest-paid-ceo-in-s-p-500-paycoms-211-million-man-11617710401?mod=hp_lead_pos12', 'https://images.wsj.net/im-320411/social', '2021-04-06 04:00:00', '2021-04-06 07:49:03', '2021-04-06 07:49:03'),
(152, 'time', NULL, 'Finding Hope: The TIME 100 Community on Navigating Our New Reality', 'Here\'s their advice on how to get through the coronavirus pandemic', 'http://time.com/collection/finding-hope-coronavirus-pandemic/', 'https://api.time.com/wp-content/uploads/2020/04/coronavirus-time-100-hero.jpg?quality=85&w=1200&h=628&crop=1', '2021-04-11 09:44:58', '2021-04-06 07:49:19', '2021-04-11 09:44:58'),
(153, 'time', 'Alana Semuels', 'Renters Are Being Forced From Their Homes Despite Eviction Moratoriums Meant to Protect Them', 'Lawyers say they\'ve seen a flood of illegal evictions since the financial crisis caused by the spread of COVID-19.', 'http://time.com/5820634/evictions-coronavirus/', 'https://api.time.com/wp-content/uploads/2020/04/GettyImages-1217706737.jpg?quality=85&w=1200&h=628&crop=1', '2020-04-15 10:47:15', '2021-04-06 07:49:19', '2021-04-11 09:44:58'),
(154, 'time', 'Jamie Ducharme', 'Why You\'re Regressing to Your Teenage Self During the COVID-19 Outbreak', 'Many people have fallen back to old interests and habits during the COVID-19 pandemic. Here\'s why it\'s making you act like a teenager.', 'http://time.com/5819224/covid-19-act-like-teeangers/', 'https://api.time.com/wp-content/uploads/2020/04/woman-playing-video-games.jpg?quality=85&w=1200&h=628&crop=1', '2020-04-15 11:01:51', '2021-04-06 07:49:20', '2021-04-11 09:44:58'),
(155, 'time', 'Patrick Lucas Austin', 'Ditching Zoom? Here Are 10 Video Chat Alternatives You Can Use Instead', 'Zoom has been a popular choice for video chatting during the coronavirus outbreak, but it has privacy flaws. Here are 9 alternatives.', 'http://time.com/5819327/zoom-alternatives/', 'https://api.time.com/wp-content/uploads/2020/04/video-calls.jpg?quality=85&w=1024&h=628&crop=1', '2020-04-13 07:26:12', '2021-04-06 07:49:20', '2021-04-11 09:44:59'),
(156, 'time', 'Josiah Bates', 'Watch a New York City Doctor Describe How Medical Professionals Fight Against COVID-19', 'In a interview with Katie Couric, part of a video series with TIME, Dr. Mark Pochapin describes how medical workers are struggling to adapt.', 'http://time.com/5820338/new-york-city-doctor-covid-19-katie-couric-video/', 'https://api.time.com/wp-content/uploads/2020/04/Doctor-COVID-19-Couric.png?w=1200&h=628&crop=1', '2020-04-14 08:19:50', '2021-04-06 07:49:20', '2021-04-11 09:44:59'),
(157, 'time', 'Saleha Mohsin and Laura Davison / Bloomberg', 'Trump’s Signature Will Appear on Coronavirus Stimulus Checks', 'President Donald Trump’s signature will appear on the $1,200 checks being mailed to low- and middle-income households in the coming weeks', 'http://time.com/5821097/donald-trump-signature-coronavirus-relief-checks/', 'https://api.time.com/wp-content/uploads/2020/04/trump_signature_coronavirus_stimulus_checks.jpg?quality=85&crop=0px%2C25px%2C1024px%2C536px&resize=1200%2C628&strip', '2020-04-14 21:18:38', '2021-04-06 07:49:20', '2021-04-11 09:44:59'),
(158, 'time', 'Mahita Gajanan', '\'Otherwise I\'d Be Alone.\' Foster Pets Offer Much-Needed Companionship in an Age of Isolation', 'Shelters and rescues are seeing about a 90% increase in foster requests nationwide amid the COVID-19 outbreak.', 'http://time.com/5817622/foster-pets-coronavirus/', 'https://api.time.com/wp-content/uploads/2020/04/coronavirus-pet-adoptions.jpg?quality=85&w=1024&h=628&crop=1', '2020-04-13 13:57:45', '2021-04-06 07:49:20', '2021-04-11 09:44:59'),
(159, 'the-lad-bible', NULL, 'Latest Daily Ladness News and Viral Stories | LADbible', 'The latest Daily Ladness news and breaking stories from LADbible. Exclusive and up to date coverage giving you the news you want.', 'https://www.theladbible.com/daily-ladness', NULL, '2021-04-20 08:28:49', '2021-04-06 07:54:18', '2021-04-20 08:28:49'),
(160, 'the-lad-bible', NULL, 'Breaking Entertainment News - Celebrity & Showbiz News | LADbible', 'The latest entertainment news in the UK and worldwide on LADbible. We cover breaking celebrity news and showbiz stories. Check out our exclusives.', 'https://www.theladbible.com/entertainment', NULL, '2021-04-20 08:28:49', '2021-04-06 07:54:18', '2021-04-20 08:28:49'),
(161, 'the-lad-bible', NULL, 'Latest Lad Files News and Viral Stories | LADbible', 'The latest Lad Files news and breaking stories from LADbible. Exclusive and up to date coverage giving you the news you want.', 'https://www.theladbible.com/lad-files', NULL, '2021-04-20 08:28:49', '2021-04-06 07:54:18', '2021-04-20 08:28:49'),
(162, 'the-lad-bible', NULL, 'Latest News - Todays Breaking News Headlines & Exclusives | LADbible', 'The latest breaking news from around the world on LADbible. Exclusive stories and the best coverage giving you the news as you want it.', 'https://www.theladbible.com/news', NULL, '2021-04-20 08:28:49', '2021-04-06 07:54:18', '2021-04-20 08:28:49'),
(163, 'the-lad-bible', NULL, 'Latest Trending News and Viral Stories | LADbible', 'The latest Trending news and breaking stories from LADbible. Exclusive and up to date coverage giving you the news you want.', 'https://www.theladbible.com/trending', NULL, '2021-04-20 08:28:49', '2021-04-06 07:54:18', '2021-04-20 08:28:49'),
(164, 'engadget', 'https://www.engadget.com/about/editors/nathan-ingraham', 'Sonos Roam review: The right speaker at the right price | Engadget', 'The Sonos Roam is a slim, light, $170 speaker that competes directly with Bluetooth-enabled devices like the Ultimate Ears Boom and Megaboom options. Despite its small size and lower price tag, though, the Roam has a lot more features on board than the average Bluetooth speaker. And that might make it enticing — especially if you already own other Sonos devices.', 'https://www.engadget.com/sonos-roam-review-130039811.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/fcd6cf12-9623-11eb-a7f9-b5be939683ca', '2021-04-06 08:37:11', '2021-04-06 08:02:49', '2021-04-06 08:37:11'),
(165, 'engadget', 'https://www.engadget.com/about/editors/jon-fingas', 'There\'s a way to upgrade an M1 Mac\'s memory and storage | Engadget', 'Technicians say it\'s possible to upgrade the RAM and SSDs on M1 Macs, if only with a lot of skill — and you\'re guaranteed to void your warranty.', 'https://www.engadget.com/apple-m1-mac-ram-ssd-upgrades-possible-143834335.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/b53d6600-96e1-11eb-9fff-9c23aa825b69', '2021-04-06 08:37:11', '2021-04-06 08:02:49', '2021-04-06 08:37:11'),
(166, 'engadget', 'https://www.engadget.com/about/editors/steve-dent', 'Sony\'s LED Bravia TVs with \'cognitive intelligence\' start at $1,299 | Engadget', 'Sony has unveiled its first LED models with the Cognitive Processor XR that are more reasonably priced than the OLED models.', 'https://www.engadget.com/sonys-led-bravia-t-vs-with-cognitive-intelligence-start-at-1299-094036566.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/32c84470-96b3-11eb-afff-bbf95c70cd27', '2021-04-06 08:37:11', '2021-04-06 08:02:49', '2021-04-06 08:37:11'),
(167, 'engadget', 'https://www.engadget.com/about/editors/terrence-obrien', 'Fender Mustang Micro hands-on | Engadget', 'Fender brings its amp modeling chops to a headphone guitar amp.', 'https://www.engadget.com/fender-mustang-micro-headphone-guitar-amp-hands-on-130035742.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/b6aca2e0-96e0-11eb-bc6d-c48977f08557', '2021-04-06 08:37:11', '2021-04-06 08:02:49', '2021-04-06 08:37:11'),
(168, 'engadget', 'https://www.engadget.com/about/editors/mariella-moon', 'Apple\'s 128GB 10.2-inch iPad is back to an all-time low at Best Buy | Engadget', 'The 128GB 10-inch iPad is back to $380 on Best Buy, $50 less than its original price of $430.', 'https://www.engadget.com/apples-128gb-10-inch-ipad-all-time-low-best-buy-113527713.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/2e86b740-96c0-11eb-9ff7-c793f0768175', '2021-04-06 08:37:11', '2021-04-06 08:02:49', '2021-04-06 08:37:11'),
(169, 'engadget', 'https://www.engadget.com/about/editors/kris-holt', '\'Grand Theft Auto V\' returns to Xbox Game Pass on April 8th | Engadget', 'You\'ll be able to play Rockstar\'s blockbuster on your phone via the cloud.', 'https://www.engadget.com/grand-theft-auto-gta-v-xbox-game-pass-nhl-21-152815664.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/006ac3d0-96eb-11eb-82ff-726b6b17af9e', '2021-04-06 08:37:11', '2021-04-06 08:02:49', '2021-04-06 08:37:11'),
(170, 'engadget', 'https://www.engadget.com/about/editors/jon-fingas', 'Apple TV+ unveils its first combination podcast and TV series | Engadget', 'Apple TV+ is branching out with its first combination of a podcast with an original show, bolstering its documentary \'The Line\' with an audio series.', 'https://www.engadget.com/apple-tv-plus-the-line-podcast-documentary-151916796.html', 'https://s.yimg.com/os/creatr-images/2019-11/aa8c02a0-0c79-11ea-b1fd-1011ee5d77f0', '2021-04-06 08:37:11', '2021-04-06 08:02:50', '2021-04-06 08:37:11'),
(171, 'engadget', 'https://www.engadget.com/about/editors/jon-fingas', 'Ubisoft buys anti-cheat company to fight game ruiners | Engadget', 'Ubisoft has bought GameBlocks to help it fight game cheating on the server side.', 'https://www.engadget.com/ubisoft-buys-anti-cheat-developer-gameblocks-144014936.html', 'https://s.yimg.com/os/creatr-images/2019-10/e793b180-e455-11e9-b7d5-67981d4920db', '2021-04-06 08:37:11', '2021-04-06 08:02:50', '2021-04-06 08:37:11'),
(172, 'engadget', 'https://www.engadget.com/about/editors/daniel-cooper', 'Thousands of US government agencies using Clearview AI without approval | Engadget', 'Buzzfeed News has published what it claims is a database of US agencies that have used the tool, and how many times they used it.', 'https://www.engadget.com/clearview-ai-law-enforcement-unauthorized-use-143130738.html', 'https://s.yimg.com/os/creatr-uploaded-images/2020-12/b8767d90-3460-11eb-8f3b-9303a9ba17f3', '2021-04-06 08:37:11', '2021-04-06 08:02:50', '2021-04-06 08:37:11'),
(173, 'engadget', 'https://www.engadget.com/about/editors/saqib-shah', 'Fitbit is offering a $50 discount on Charge 4 trackers | Engadget', 'Fitbit is currently offering sit Charge 4 activity tracker and its special edition model with an extra band for $50 off.', 'https://www.engadget.com/fitbit-is-offering-a-50-saving-on-fitbit-charge-4-trackers-142021058.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/b1841640-96db-11eb-bff7-4d7314ba4816', '2021-04-06 08:02:50', '2021-04-06 08:02:50', '2021-04-06 08:02:50'),
(174, 'spiegel-online', 'Spiegel Online', 'Grünen-Kandidatin Fegebank vor der Hamburg-Wahl: Die Erste Bürgermeisterin', 'Die einzigen Landtagswahlen 2020 finden in Hamburg statt. Katharina Fegebank will sie für die Grünen gewinnen. Die Spitzenkandidatin tritt mit einem eher konservativen Programm an: \"Zukunft baut auf Tradition auf\".', 'http://www.spiegel.de/politik/deutschland/katharina-fegebank-hamburg-soll-gruen-werden-a-1303937.html', 'https://cdn1.spiegel.de/images/image-1503795-860_poster_16x9-ldop-1503795.jpg', '2020-01-07 12:23:34', '2021-04-06 08:03:39', '2021-04-23 00:08:18'),
(175, 'spiegel-online', 'Spiegel Online', 'Neuer Quds-Kommandeur Ghaani: Technokrat des Terrors', 'Der iranische Topgeneral Qasem Soleimani war keine 24 Stunden tot, da präsentierte Iran seinen Nachfolger: Ismail Ghaani. Warum der die Schattenkrieger der Quds-Brigade anders führen wird - ihr Ziel aber das gleiche bleibt.', 'http://www.spiegel.de/politik/ausland/iran-ismail-ghaani-ist-neuer-chef-der-quds-brigade-a-1303791.html', 'https://cdn1.spiegel.de/images/image-1503554-860_poster_16x9-uduu-1503554.jpg', '2020-01-07 10:09:00', '2021-04-06 08:03:40', '2021-04-23 00:08:18'),
(176, 'spiegel-online', 'Spiegel Online', 'Rekonstruktion der Tötung Soleimanis: Die letzten Minuten des Schattenkriegers', 'Als Irans General Soleimani am 3. Januar in Bagdad landet, warten auf dem Rollfeld zwei Autos, ein Toyota und ein Hyundai. Da hat Donald Trump den Befehl schon erteilt.', 'https://www.spiegel.de/plus/drohnenangriff-auf-qasem-soleimani-auf-dem-rollfeld-warteten-bereits-zwei-autos-a-393afdbc-f714-4ae6-bb45-61bb855f76d4', 'https://www.spiegel.de/plus/images/5b5a466c-a775-49fb-afd8-85ec25ac3810_w1200_r1_fpx46_fpy27_wm.jpg', '2020-01-07 05:00:57', '2021-04-06 08:03:40', '2021-04-23 00:08:18'),
(177, 'spiegel-online', 'Spiegel Online', 'Beerdigung von Qasem Soleimani: \"Mischung aus Inszenierung und echter Wut\"', 'Bei der Beerdigung Soleimanis sterben mehr als 50 Menschen bei einer Massenpanik. Wie wichtig die tagelangen Trauerzeremonien für das Regime sind, analysiert SPIEGEL-Redakteurin Raniah Salloum.', 'http://www.spiegel.de/video/iran-massenpanik-bei-trauerzuegen-fuer-soleimani-video-99031468.html', 'https://cdn1.spiegel.de/images/image-1503784-860_poster_16x9-csmy-1503784.jpg', '2020-01-07 09:09:00', '2021-04-06 08:03:40', '2021-04-23 00:08:18'),
(178, 'spiegel-online', 'Spiegel Online', 'Trainingsmission: Nato zieht Soldaten aus dem Irak ab', 'Erst die Bundeswehr, jetzt die Nato: Das Militärbündnis zieht nach SPIEGEL-Informationen einen Teil seiner Soldaten aus dem Irak ab. Derzeit sind dort 500 Ausbilder stationiert.', 'http://www.spiegel.de/politik/ausland/nach-toetung-von-soleimani-nato-zieht-soldaten-aus-irak-ab-a-1303927.html', 'https://cdn1.spiegel.de/images/image-1503794-860_poster_16x9-ulqh-1503794.jpg', '2020-01-07 07:12:00', '2021-04-06 08:03:40', '2021-04-23 00:08:19'),
(179, 'spiegel-online', 'Spiegel Online', 'Gedenkstätte Yad Vashem: Polens Präsident Duda reist nicht zu Holocaust-Gedenkfeier', 'Auch Polens Präsident Duda wollte beim jährlichen Holocaust-Forum in Yad Vashem eine Rede halten - die Veranstalter planten ihn aber nicht ein. Nun hat der Politiker seinen Besuch in Israel komplett gestrichen.', 'http://www.spiegel.de/politik/ausland/polens-praesident-andrzej-duda-nimmt-nicht-an-holocaust-gedenkfeier-in-yad-vashem-teil-a-1303956.html', 'https://cdn1.spiegel.de/images/image-1503810-860_poster_16x9-dwtu-1503810.jpg', '2020-01-07 12:22:56', '2021-04-06 08:03:40', '2021-04-23 00:08:19'),
(180, 'spiegel-online', 'Spiegel Online', 'Tödlicher Angriff auf US-Militärcamp in Kenia: Weltweit präsent, weltweit angreifbar', 'Kurz nach der Tötung Soleimanis in Irak greifen islamistische Milizen in Kenia US-Militär an. Die Schabab-Miliz bestreitet einen Zusammenhang - der Anschlag aber ist ein Indiz für die Verwundbarkeit der Amerikaner.', 'http://www.spiegel.de/politik/ausland/kenia-anschlag-auf-us-basis-zeigt-verwundbarkeit-der-usa-a-1303796.html', 'https://cdn1.spiegel.de/images/image-1503515-860_poster_16x9-xdcd-1503515.jpg', '2020-01-07 09:00:15', '2021-04-06 08:03:40', '2021-04-23 00:08:19'),
(181, 'spiegel-online', 'Spiegel Online', 'Machtkampf in Venezuela: Guaidó als Parlamentspräsident vereidigt', 'Sicherheitskräfte hatten Venezuelas Oppositionsführer Juan Guaidó zunächst erneut den Zutritt zum Kongress versperrt. Dann gelangte er doch hinein und wurde als Parlamentspräsident vereidigt - bei Smartphone-Licht.', 'http://www.spiegel.de/politik/ausland/venezuela-juan-guaido-als-parlamentspraesident-vereidigt-a-1303935.html', 'https://cdn1.spiegel.de/images/image-1503808-860_poster_16x9-nqmm-1503808.jpg', '2020-01-07 10:47:39', '2021-04-06 08:03:40', '2021-04-23 00:08:19'),
(182, 'spiegel-online', 'Spiegel Online', 'Gewalt in der Leipziger Silvesternacht: Das Chaos von Connewitz', 'Was genau geschah während der Ausschreitungen in der Leipziger Silvesternacht?Ein Video weckt Zweifel an bisherigen Darstellungen der Polizei. Wie die Behörden sich jetzt dazu äußern.', 'http://www.spiegel.de/panorama/justiz/leipzig-connewitz-video-zeigt-details-zu-gewalt-an-silvester-a-1303884.html', 'https://cdn1.spiegel.de/images/image-1502732-860_poster_16x9-tlis-1502732.jpg', '2020-01-07 09:01:10', '2021-04-06 08:03:40', '2021-04-23 00:08:19'),
(183, 'spiegel-online', 'Spiegel Online', 'CSU: Muslimischer Unternehmer bleibt beim Verzicht auf Bürgermeisterkandidatur', 'Die CSU-Spitze wollte ihn umstimmen, doch Sener Sahins Entscheidung steht: Der Unternehmer will nicht Bürgermeister im bayerischen Wallerstein werden. An der Basis hatte es Kritik gegeben - weil er Muslim ist.', 'http://www.spiegel.de/politik/deutschland/csu-sener-sahin-bleibt-beim-nein-zu-buergermeisterkandidatur-in-wallerstein-a-1303954.html', 'https://cdn1.spiegel.de/images/image-1503807-860_poster_16x9-wyiw-1503807.jpg', '2020-01-07 10:16:38', '2021-04-06 08:03:40', '2021-04-23 00:08:19'),
(184, 'independent', 'Vince Cable', 'Elevating the Union Jack to a religious status risks more division', 'Flags can be a force for division and hate. Many of us have multiple identities and consider it a perfectly healthy part of our patriotism', 'http://www.independent.co.uk/voices/union-jack-flags-government-religion-b1827293.html', 'https://static.independent.co.uk/2021/04/06/13/iStock-93443126.jpg?width=1200&auto=webp&quality=75', '2021-04-06 04:25:55', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(185, 'independent', 'Victoria Richards', 'My kids want to go to Center Parcs – but who can afford a luxury like that?', 'Actor Danny Lee Wynter has suggested we replace a trip abroad this year with a stay at Center Parcs – you’ve got to be joking', 'http://www.independent.co.uk/voices/center-parcs-holiday-travel-lockdown-b1826861.html', 'https://static.independent.co.uk/2021/04/05/15/shutterstock_editorial_319393t.jpg?width=1200&auto=webp&quality=75', '2021-04-06 03:49:16', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(186, 'independent', 'John Rentoul', 'Neither Boris Johnson nor Keir Starmer seems able to decide where they stand on vaccine passports', 'How can the Labour leader oppose a government that doesn’t have a policy, asks John Rentoul', 'http://www.independent.co.uk/independentpremium/voices/vaccine-passports-boris-johnson-nor-keir-starmer-seems-able-to-decide-where-they-stand-on-vaccine-passports-b1827303.html', 'https://static.independent.co.uk/2021/04/03/16/1310065423.jpg?width=1200&auto=webp&quality=75', '2021-04-06 05:59:40', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(187, 'independent', 'Zoe Tidman', 'Coronavirus news - live: Roadmap ‘could cause fresh surge’, as Covid passports to become ‘part of our lives’', 'Follow the latest news about the coronavirus pandemic', 'http://www.independent.co.uk/news/health/coronavirus-news-vaccine-passport-lockdown-b1827140.html', 'https://static.independent.co.uk/2021/04/06/08/newFile.jpg?width=1200&auto=webp&quality=75', '2021-04-05 23:17:20', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(188, 'independent', 'Simon Calder', 'Simon Calder’s Travel Week Newsletter: Sign up for updates and holiday tips in a fast-changing world', 'Stay up-to-date with our weekly rundown on global travel news', 'http://www.independent.co.uk/travel/independent-travel-newsletter-holiday-b1806887.html', 'https://static.independent.co.uk/2021/03/29/16/Simon.jpg?width=1200&auto=webp&quality=75', '2021-04-09 02:44:03', '2021-04-06 08:07:18', '2021-04-12 07:34:57'),
(189, 'independent', 'Colin Drury', 'Chile virus surge shows vaccine rollout may not end lockdowns, says Chris Whitty', 'Twenty per cent of country’s population have had two jabs - but infection rates have soared to highest levels since start of pandemic', 'http://www.independent.co.uk/news/uk/home-news/chile-coronavirus-vaccine-lockdown-whitty-b1827155.html', 'https://static.independent.co.uk/2021/04/06/08/iStock-1095471704Chile.jpg?width=1200&auto=webp&quality=75', '2021-04-06 01:54:57', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(190, 'independent', 'Andrew Woodcock', 'Tory peer who denied pandemic exists looks set to keep Foreign Office job', 'Boris Johnson has not spoken to Helena Morrissey over claim China sparked crisis with ‘fake videos’', 'http://www.independent.co.uk/news/uk/politics/coronavirus-helena-morrissey-foreign-office-b1827362.html', 'https://static.independent.co.uk/2021/03/31/15/GettyImages-1071993488.jpg?width=1200&auto=webp&quality=75', '2021-04-06 05:52:00', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(191, 'independent', 'Joe Middleton', '‘Pandemic far from over’: Warning as only 3% of people vaccinated globally', 'Current vaccination rate would see only 10 per cent of people in less developed countries immunised in next year, says expert', 'http://www.independent.co.uk/news/health/covid-pandemic-vaccinated-global-project-hope-b1827337.html', 'https://static.independent.co.uk/2021/04/06/15/PRI188093366.jpg?width=1200&auto=webp&quality=75', '2021-04-06 07:07:03', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(192, 'independent', 'Oliver Carroll', '‘Seriously ill’ Alexei Navalny can expect no special treatment, says Kremlin', '‘The prisoner will be offered treatment according to the rules,’ said a spokesman', 'http://www.independent.co.uk/news/world/europe/alexei-navalny-prison-health-kremlin-b1827438.html', 'https://static.independent.co.uk/2021/04/06/16/PRI189501563.jpg?width=1200&auto=webp&quality=75', '2021-04-06 07:43:30', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(193, 'independent', 'Ed Cumming', 'Louis Theroux – Shooting Joe Exotic review: The documentary this extraordinary story deserves', 'In this 90-minute one-off, which arrives in the wake of Netflix’s Tiger King, Theroux revisits his subject nine years on and tries to work out what has happened', 'http://www.independent.co.uk/arts-entertainment/tv/reviews/louis-theroux-shooting-joe-exotic-review-b1826800.html', 'https://static.independent.co.uk/2021/04/05/11/newFile-7.jpg?width=1200&auto=webp&quality=75', '2021-04-05 13:30:45', '2021-04-06 08:07:18', '2021-04-06 08:07:18'),
(194, 'bild', 'Katrin Eichenlaub und Steffen MEyer', 'Saarland-Modell gestartet - Corona rauf, trotzdem auf', 'Fitnessstudios, Theater und Außengastronomie sind wieder geöffnet. Doch die Beteiligten haben gemischte Gefühle.', 'http://www.bild.de/regional/saarland/saarland-news/saarland-modell-gestartet-corona-rauf-trotzdem-auf-75976410.bild.html', 'https://bilder.bild.de/fotos/saarland-modell-gestartet-corona-rauf-trotzdem-auf-574bdf9e193348dda52072dd5cb7b493-75977460/Bild/1.bild.jpg', '2021-04-06 07:34:17', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(195, 'bild', NULL, 'Übergangslösung bis Pfingsten?: Grundschule zieht in Telekom-Haus | Regional', 'Schlechte Nachrichten für die 200 Kinder an der Grundschule am Alten Postweg. Ihre Schule bleibt auch nach den Ferien zu.', 'http://www.bild.de/regional/bremen/bremen-aktuell/uebergangsloesung-bis-pfingsten-grundschule-zieht-in-telekom-haus-75977230.bild.html', 'https://images.bild.de/606c7b60cb03930001f84e16/14cc3adb9714fdfef4e0fe6a31258504/1/3?w=1280', '2021-04-06 07:23:44', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(196, 'bild', 'MARKUS BALCZUWEIT', 'Werder Bremen: Zeh gebrochen: Niclas Füllkrug fehlt schon wieder', 'Nächster Rückschlag für Niclas Füllkrug (28)! Bremens Mittelstürmer wird Werder im Pokal-Viertelfinale bei Zweitligist Regensburg fehlen', 'http://www.bild.de/sport/fussball/fussball/werder-bremen-zeh-gebrochen-niclas-fuellkrug-fehlt-schon-wieder-75974962.bild.html', 'https://bilder.bild.de/fotos/werder-bremen-zeh-gebrochen-niclas-fuellkrug-fehlt-schon-wieder-1e930236e8da487f909494e975cdd549-75975340/Bild/3.bild.jpg', '2021-04-06 07:22:46', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(197, 'bild', NULL, 'Hückeswagen: Monteur bei Blitzeinschlag an Windrad schwer verletzt | Regional', 'Nach einem Blitzeinschlag in der Kanzel eines Windrades kam es am Ostermontag in Hückeswagen (NRW) zu einer spektakulären Höhenrettung.', 'http://www.bild.de/regional/duesseldorf/duesseldorf-aktuell/hueckeswagen-monteur-bei-blitzeinschlag-an-windrad-schwer-verletzt-75968706.bild.html', 'https://images.bild.de/606b6f7e20d479000175ad54/1a803dc175802727a7f9e5b7f59376b8/1/2?w=1280', '2021-04-06 07:21:42', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(198, 'bild', NULL, '600.000 Euro für Studie: Mehr Lebensqualität für schwer Krebskranke | Regional', 'Die Brost-Stiftung fördert mit 600 000 Euro eine Forschungsstudie des Uniklinikums Essen. Ziel des Projekts: Selbstbestimmtes Leben für schwer Krebskranke.', 'http://www.bild.de/regional/ruhrgebiet/ruhrgebiet-aktuell/600-000-euro-fuer-studie-mehr-lebensqualitaet-fuer-schwer-krebskranke-75975940.bild.html', 'https://images.bild.de/606c678520d479000175ae06/95caed341f84858b9ca8878106368d4e/1/2?w=1280', '2021-04-06 07:16:44', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(199, 'bild', NULL, 'Coronavirus: Berlin muss zwei Impfzentren schließen wegen Impfstoffmangel', 'In der Arena in Treptow sowie dem Impfzentrum Messe wird der Betrieb am heutigen Dienstag eingestellt. Impf-Termine werden nachgeholt.', 'http://www.bild.de/news/inland/news-inland/coronavirus-berlin-muss-zwei-impfzentren-wegen-impfstoffmangels-schliessen-75973458.bild.html', 'https://bilder.bild.de/fotos/coronavirus-berlin-muss-zwei-impfzentren-schliessen-wegen-impfstoffmangel-704767dec65c4f8b9df9e865eb52444a-75973736/Bild/18.bild.jpg', '2021-04-06 07:15:45', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(200, 'bild', NULL, 'Kassel: 13-Jährige seit Ostern vermisst: Sana, wo bist Du?', 'Die Polizei in Nordhessen sucht nach einer 13-Jährigen: Von Sana M. fehlt seit Ostern jede Spur!', 'http://www.bild.de/regional/frankfurt/frankfurt-aktuell/kassel-13-jaehrige-seit-ostern-vermisst-sana-wo-bist-du-75972676.bild.html', 'https://bilder.bild.de/fotos/kassel-13-jaehrige-seit-ostern-vermisst-sana-wo-bist-du--ee3f4228693844fea127e8a20b9c9c14-75972772/Bild/2.bild.jpg', '2021-04-06 06:41:41', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(201, 'bild', 'Peter amenda', 'Heftiges Winterwetter erwartet: Hier kreist Mittwoch die Schnee-Keule', 'April, April, der macht, was er will ... Es ist wieder Winter, wenn auch nur für ein paar Tage. Für Chaos reicht es aber, ein ungewöhnlich kräftiges Tief zieht aus Nordwesten heran. Wen die Schnee-Keule jetzt erwischt und warum der Frühling auf sich warten lässt, lesen Sie mit BILDplus! *** BILDplus Inhalt ***', 'http://www.bild.de/bild-plus/news/wetter/wetter/heftiges-winterwetter-erwartet-hier-kreist-mittwoch-die-schnee-keule-75969298.bild.html', 'https://bilder.bild.de/fotos/heftiges-winterwetter-erwartet-hier-kreist-mittwoch-die-schnee-keule-44ee20e3c9064300b94017212b3d682a-75970340/Bild/12,club=bildplus.bild.jpg', '2021-04-06 07:04:55', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(202, 'bild', 'DANIELA PFAD', 'Mit FFP2-Masken beladen - Brummi kracht Böschung runter', 'Spektakulärer Unfall am Dienstagmorgen auf der A67! Ein ukrainischer Lkw-Fahrer (48) krachte mit seinem Sattelzug die Böschung hinunter.', 'http://www.bild.de/regional/frankfurt/frankfurt-aktuell/mit-ffp2-masken-beladen-brummi-kracht-boeschung-runter-75976078.bild.html', 'https://bilder.bild.de/fotos/mit-ffp2-masken-beladen-brummi-kracht-boeschung-runter-5251774a3d834f64b9936fb354fd0391-75976534/Bild/3.bild.jpg', '2021-04-06 06:54:40', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(203, 'bild', NULL, 'Der Spickzettel der Callcenter-Betrüger: Diese Sätze kosteten Anleger Millionen | Regional', '„Hallo schönen guten Tag, xX ist mein Name...“ Dieser Satz war für viele deutsche Anleger der Beginn ihres finanziellen Ruins!', 'http://www.bild.de/bild-plus/regional/muenchen/muenchen-aktuell/der-spickzettel-der-callcenter-betrueger-diese-saetze-kosteten-anleger-millionen-75971480.bild.html', 'https://images.bild.de/606c2751a0bfce0001f7ff9a/2e3cbf853e0d813397de0e1a67f63c07/1/2?w=1280', '2021-04-06 06:52:59', '2021-04-06 08:08:05', '2021-04-06 08:08:05'),
(204, 'the-huffington-post', 'Hayley Miller', 'Derek Chauvin Trial Live: Prosecutors Seek Justice For George Floyd\'s Death', 'Follow the latest from inside the courtroom on day seven of testimony in Derek Chauvin\'s murder trial.', 'https://www.huffpost.com/entry/derek-chauvin-trial-live_n_606715bbc5b68872efe5c31a', 'https://img.huffingtonpost.com/asset/606772e0270000eb36c84ff3.png?cache=l1g4s9ouei&ops=1778_1000', '2021-04-02 06:31:08', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(205, 'the-huffington-post', 'AP', 'Florida Democratic Congressman Alcee Hastings Dies At 84', 'The fiercely liberal longtime Florida congressman was dogged throughout his tenure by an impeachment that ended his fast-rising judicial career.', 'https://www.huffpost.com/entry/alcee-hastings-dies-florida-democrat_n_606c7dfcc5b68872efeb9d37', 'https://img.huffingtonpost.com/asset/606c7ea7250000693e1da3e6.jpeg?cache=hrqoxstdes&ops=1778_1000', '2021-04-06 07:43:28', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(206, 'the-huffington-post', 'AP', 'Navy Medic Shoots 2 At Maryland Business Park, Is Shot And Killed On Base', 'The man drove to Fort Detrick after the shooting, where he was shot by base personnel.', 'https://www.huffpost.com/entry/navy-medic-shooting-fort-detrick-maryland_n_606c7fbdc5b6c55118b85848', 'https://img.huffingtonpost.com/asset/606c81f9240000da33260aad.jpeg?cache=sle7pun1ns&ops=1778_1000', '2021-04-06 07:57:07', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(207, 'the-huffington-post', 'DARLENE SUPERVILLE', 'Biden To Move Vaccine Eligibility Deadline For All Adults To April 19', 'Biden is set to make the announcement at the White House. The new deadline is about two weeks earlier than Biden’s original May 1 deadline.', 'https://www.huffpost.com/entry/biden-deadline-all-adults-eligible-vaccine-april-19_n_606c4f85c5b6c55118b7e5af', 'https://img.huffingtonpost.com/asset/606c50a0270000d935c85307.jpeg?cache=1b50dng79l&ops=1778_1000', '2021-04-06 04:17:25', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(208, 'the-huffington-post', 'AP', '\'I Fear For My Country\': Israeli Prez Reluctantly Gives Netanyahu First Crack At Forming Gov\'t', 'Prime Minister Benjamin Netanyahu’s coalition talks will be conducted in the shadow of his corruption trial.', 'https://www.huffpost.com/entry/israel-president-reluctantly-gives-netanyahu-first-crack-at-forming-govt_n_606c7c65c5b6c00165c63091', 'https://img.huffingtonpost.com/asset/606c7e5a270000b636c85350.jpg?cache=9yotxhuqjz&ops=1778_1000', '2021-04-06 07:37:53', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(209, 'the-huffington-post', 'Ron Dicker', 'Ex-NBA Great Paul Pierce Fired By ESPN After Racy Party Video Goes Viral', 'The Hall of Fame nominee responded to his dismissal from the sports network in an unusual way.', 'https://www.huffpost.com/entry/paul-pierce-fired-espn-video_n_606c2a02c5b6c00165c558bf', 'https://img.huffingtonpost.com/asset/606c2d62270000b735c852ca.png?ops=1778_1000', '2021-04-06 03:04:25', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(210, 'the-huffington-post', 'Lee Moran', 'Infectious Disease Expert Explains Why Next COVID-19 Wave In U.S. Is Inevitable', 'It\'s likely too late to stop this upcoming surge, warned Michael Osterholm.', 'https://www.huffpost.com/entry/michael-osterholm-inevitable-new-wave-coronavirus_n_606c1818c5b6c00165c52ac1', 'https://img.huffingtonpost.com/asset/5f8c7c2a24000029019acdfe.png?cache=ds8boymqms&ops=1778_1000', '2021-04-06 02:08:00', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(211, 'the-huffington-post', 'Mera Viglia', 'I Work In A Ritzy Restaurant And I\'ve Seen Some Unbelievable Behavior During COVID', '\"The high demands of some of our entitled patrons, coupled with these new rules designed to lessen the... risks of dining out, made for some tricky inter...', 'https://www.huffpost.com/entry/restaurant-indoor-outdoor-dining-wealthy_n_606878ddc5b6c00165c1a398', 'https://img.huffingtonpost.com/asset/6069c4061e00009d060fe584.jpeg?ops=1778_1000', '2021-04-06 05:00:11', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(212, 'the-huffington-post', 'Chris D\'Angelo', 'For Republicans, Pipes Are Infrastructure Only If They Carry Oil', 'Unhappy with President Joe Biden\'s sweeping American Jobs Plan, members of the GOP have latched on to an extremely narrow definition of infrastructure.', 'https://www.huffpost.com/entry/republicans-pipes-energy-infrastructure-biden_n_606b1e57c5b66c4ab6b543a8', 'https://img.huffingtonpost.com/asset/606b775a1e000090060fe6f0.jpeg?ops=1778_1000', '2021-04-05 15:05:30', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(213, 'the-huffington-post', 'Lisa Boyce', 'I Laughed At The Jokes White People Made About Me. I\'m No Longer Laughing.', '\"These were my friends. Of course they weren’t racist. They were only kidding.\"', 'https://www.huffpost.com/entry/laughing-at-racist-jokes-asian_n_6066063cc5b6aa24bc605ed2', 'https://img.huffingtonpost.com/asset/606608de2500000e3d1d9f12.jpeg?ops=1778_1000', '2021-04-05 05:00:09', '2021-04-06 08:08:34', '2021-04-06 08:08:34'),
(214, 'fox-sports', 'FOX Sports', 'MVP, Cy Young, Rookie of the Year: Who are favorites to win MLB awards?', 'Mookie Betts. Mike Trout. You know the names, but are they the favorites to win the MVP in their leagues? Check out odds for that and much more.', 'https://www.foxsports.com/mlb/story/mvp-cy-young-rookie-year-awards-mookie-betts-mike-trout-071720', 'https://b.fssta.com/uploads/2020/07/07172020-mookie-betts.vresize.1200.630.high.11.jpg', '2020-07-17 13:10:59', '2021-04-06 08:09:40', '2021-04-08 08:13:00'),
(215, 'fox-sports', NULL, 'MLB', 'Find live MLB scores, MLB player & team news, MLB videos, rumors, stats, standings, team schedules & fantasy games on FOX Sports.', 'https://www.foxsports.com/mlb', 'https://b.fssta.com/uploads/2016/12/default_image.vresize.1200.630.high.0.png', '2021-04-08 08:13:00', '2021-04-06 08:09:40', '2021-04-08 08:13:00'),
(216, 'business-insider-uk', 'Tom Porter', 'Republicans are threatening tax hikes and boycotts to punish companies that criticize restrictive voting laws', 'Top Republicans are warning of consequences for companies that\'ve criticized voting restriction laws, including stripping them of tax benefits.', 'http://uk.businessinsider.com/gop-plans-tax-hikes-boycotts-for-companies-that-oppose-voter-laws-2021-4', 'https://i.insider.com/606c3616a7d803001963ee6a?width=1200&format=jpeg', '2021-04-06 03:27:48', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(217, 'business-insider-uk', 'Ben Gilbert', 'Facebook and Google donated $70,000 to a Republican political group', 'After pledging to halt all political contributions in early 2021, Facebook donated $50,000 to a Republican group that supports voter suppression laws.', 'http://uk.businessinsider.com/facebook-google-donated-tens-of-thousands-to-republicans-this-year-2021-4', 'https://i.insider.com/606c5494856cd700198a3513?width=1200&format=jpeg', '2021-04-06 07:09:11', '2021-04-06 08:13:08', '2021-04-06 08:14:41'),
(218, 'business-insider-uk', 'Grace Dean, Grace Kay', 'US ketchup shortage may make packets harder to find at restaurants', 'An increase in take-out orders has caused ketchup sales to spike. At the onset of the pandemic, sales were up over 300% from the prior year.', 'http://uk.businessinsider.com/ketchup-shortage-price-increase-us-restaurants-fast-food-delivery-heinz-2021-4', 'https://i.insider.com/606c67a2856cd700198a3558?width=1200&format=jpeg', '2021-04-06 07:18:50', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(219, 'business-insider-uk', 'Dominick Reuter', 'Biden\'s broadband plan could help more Americans start businesses', 'Even with brilliant ideas, the 163 million people in the US without broadband would have a tough time making money. A new plan wants to change that.', 'http://uk.businessinsider.com/biden-broadband-start-a-business-internet-access-2021-4', 'https://i.insider.com/606b8675a7d803001963edb0?width=1200&format=jpeg', '2021-04-06 05:24:00', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(220, 'business-insider-uk', 'Erin Snodgrass', 'Photo suggests Trump still drinking Coke despite calls for boycott', 'The photo hid a slew of other Easter eggs in Trump\'s new office, including what appeared to be a miniature statue of Trump himself.', 'http://uk.businessinsider.com/photo-suggests-trump-still-drinking-coke-products-despite-calls-for-boycott-2021', 'https://i.insider.com/606baee2a7d803001963edd6?width=1200&format=jpeg', '2021-04-05 17:01:26', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(221, 'business-insider-uk', 'Jenny Powers', 'An Amazon delivery driver on the tracking app and strict rules', '\"We\'ve created a workaround to game the system,\" says one Amazon driver, who says he eats lunch while driving and has to pee in water bottles.', 'http://uk.businessinsider.com/amazon-delivery-driver-rules-tracking-app-pee-bottles-2021-4', 'https://i.insider.com/606b5117a7d803001963ec57?width=1200&format=jpeg', '2021-04-06 05:46:21', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(222, 'business-insider-uk', 'Mark Matousek', 'How outgoing Waymo CEO John Krafcik made Google\'s autonomous-car spin-off into a $30 billion industry giant', 'When John Krafcik became Waymo\'s CEO in 2015, it was an expensive science project. He leaves it as a fledgling business with a clear lead over rivals.', 'http://uk.businessinsider.com/john-krafcik-waymo-google-alphabet-self-driving-cars-autonomous-stock-2021-4', 'https://i.insider.com/606b75d9a7d803001963ed67?width=1200&format=jpeg', '2021-04-06 06:50:56', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(223, 'business-insider-uk', 'Claire Atkinson', 'Comcast\'s Peacock is facing a tough test as competition heats up and advertisers seek more viewer data', 'Ad buyers have expressed doubts about the streaming service\'s ability to remain a draw for prestige advertisers.', 'http://uk.businessinsider.com/advertisers-rate-nbcuniversals-streaming-service-peacock-one-year-in-2021-4', 'https://i.insider.com/606b78bc856cd700198a3425?width=1200&format=jpeg', '2021-04-06 05:40:27', '2021-04-06 08:13:08', '2021-04-06 08:14:41'),
(224, 'business-insider-uk', 'Katie Warren', 'Iconic LA mansion from \'The Godfather\' on the market for $90 million', 'The Mediterranean-inspired estate was asking $195 million in 2016, so you could say the new $89.75 million price tag is an offer you can\'t refuse.', 'http://uk.businessinsider.com/california-mansion-godfather-horse-head-scene-beverly-hills-photos-2018-10', 'https://i.insider.com/606bd4b7a7d803001963edf9?width=1200&format=jpeg', '2021-04-05 20:27:23', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(225, 'business-insider-uk', 'Vicky Ge Huang', 'Ether bull shares two emerging blockchain opportunities on her radar', 'After her 10,000% return on ether in four years, Annabelle Huang shares two emerging areas of the crypto market that she\'s excited about.', 'http://uk.businessinsider.com/ethereum-bull-shares-emerging-blockchain-opportunities-annabelle-huang-amber', 'https://i.insider.com/606b1523856cd700198a31e0?width=1200&format=jpeg', '2021-04-06 04:03:00', '2021-04-06 08:13:08', '2021-04-06 09:11:58'),
(226, 'techcrunch', 'Frederic Lardinois', 'Esri brings its flagship ArcGIS platform to Kubernetes', 'Esri, the geographic information system (GIS), mapping and spatial analytics company, is hosting its (virtual) developer summit today. Unsurprisingly, it is making a couple of major announcements at the event that range from a new design system and improved JavaScript APIs to support for running Ar…', 'https://techcrunch.com/2021/04/06/esri-brings-its-flagship-arcgis-platform-to-kubernetes/', 'https://techcrunch.com/wp-content/uploads/2021/04/smoke_forecast-1.jpg?w=758', '2021-04-06 08:00:08', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(227, 'techcrunch', 'Alex Wilhelm', 'Will Topps\' SPAC-led debut expand the bustling NFT market?', 'Twitter is abuzz with the news that Topps, a company perhaps best known for making collectible trading cards, is going public via a SPAC. The reverse merger with its chosen blank-check company values the combination on an equity basis at $1.163 billion. That makes Topps some sort of unicorn. And be…', 'https://techcrunch.com/2021/04/06/will-topps-spac-led-debut-expand-the-bustling-nft-market/', 'https://techcrunch.com/wp-content/uploads/2020/05/NSussman_Techcrunch_Exchange_v3-BLU.jpg?w=533', '2021-04-06 07:11:37', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(228, 'techcrunch', 'Sarah Perez', 'Facebook confirms \'test\' of Venmo-like QR codes for person-to-person payments in U.S.', 'Facebook confirms it’s testing a new QR code feature and payment links for use with Facebook Pay to make it easier for people in the U.S. to send or request money from one another. The QR code feature, similar to Venmo’s QR codes and others, will allow a user to scan a friend’s co…', 'https://techcrunch.com/2021/04/06/facebook-confirms-test-of-venmo-like-qr-codes-for-person-to-person-payments-in-u-s/', 'https://techcrunch.com/wp-content/uploads/2021/04/messenger-2020-pattern.jpg?w=711', '2021-04-06 06:55:30', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(229, 'techcrunch', 'Brian Heater', 'Robotic exoskeleton maker Sarcos announces SPAC plans', 'While it’s true the VC world has gone SPAC-happy, the reverse merger method hasn’t been a huge driver in robotics thus far, with some notable exceptions like Berkshire-Grey. This morning, however, Utah-based Sarcos Robotics announced plans to board the SPAC train, courtesy of Rotor Acquisition Corp…', 'https://techcrunch.com/2021/04/06/robotic-exoskeleton-maker-sarcos-announces-spac-plans/', 'https://techcrunch.com/wp-content/uploads/2021/04/SARCOS_Civ-wht.4-1-768x512-1.jpg?w=600', '2021-04-06 06:53:11', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(230, 'techcrunch', 'Natasha Lomas', 'Answers being sought from Facebook over latest data breach', 'Facebook’s lead data protection regulator in the European Union is seeking answers from the tech giant over a major data breach reported on over the weekend. The breach was reported on by Business Insider on Saturday which said personal data (including email addresses and mobile phone numbers…', 'https://techcrunch.com/2021/04/06/answers-being-sought-from-facebook-over-latest-data-breach/', 'https://techcrunch.com/wp-content/uploads/2020/08/GettyImages-1228003986.jpg?w=600', '2021-04-06 06:44:51', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(231, 'techcrunch', 'Jordan Crook', 'Real raises $10M from Lightspeed, Megan Rapinoe and others to rethink therapy', 'The last year has put a spotlight on mental health, and startup Real is looking to shake up the space with a product that makes group therapy available on-demand. Founded by CEO Ariela Safira, Real is inspired by a long-standing methodology in the world of mental health: Group therapy. AA, for inst…', 'https://techcrunch.com/2021/04/06/real-raises-10m-from-lightspeed-megan-rapinoe-and-others-to-rethink-therapy/', 'https://techcrunch.com/wp-content/uploads/2021/04/Screen-Shot-2021-04-06-at-10.01.36-AM.png?w=695', '2021-04-06 06:05:51', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(232, 'techcrunch', 'Sarah Perez', 'TikTok adds auto captions to make videos accessible to hard of hearing and deaf', 'TikTok this morning announced the launch of a new feature designed to make its app accessible to people who are hard of hearing or deaf. The company is today debuting auto captions — a feature that, when enabled, will automatically transcribe the speech from a video so viewers can read what&#…', 'https://techcrunch.com/2021/04/06/tiktok-adds-auto-captions-to-make-videos-accessible-to-hard-of-hearing-and-deaf/', 'https://techcrunch.com/wp-content/uploads/2020/09/GettyImages-1183804986-1.jpg?w=600', '2021-04-06 05:48:07', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(233, 'techcrunch', 'Jonathan Shieber', 'Stanford and Duke join certification program to boost diversity education with investors and the c-suite', 'A partnership between the University of North Carolina’s Kenan Flagler Entrepreneurship Center, the Opportunity Hub, and 100 Black Angels and Allies Fund, set up to improve representation and support of diverse founders in the tech industry, is getting more heavy-hitting partners from Duke an…', 'https://techcrunch.com/2021/04/06/stanford-and-duke-join-certification-program-to-boost-diversity-education-with-investors-and-the-c-suite/', 'https://techcrunch.com/wp-content/uploads/2017/05/tech-diversity.png?w=711', '2021-04-06 05:30:45', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(234, 'techcrunch', 'Darrell Etherington', 'Sonos delivers a near-perfect portable speaker with the new Sonos Roam', 'Sonos has a new speaker that starts shipping later this month, and it’s a significant departure from the company’s usual offerings in a number of ways. The all-new Sonos Roam is a compact, portable speaker with a built-in battery and Bluetooth connectivity — but still very much a Sonos …', 'https://techcrunch.com/2021/04/06/sonos-delivers-a-near-perfect-portable-speaker-with-the-new-sonos-roam/', 'https://techcrunch.com/wp-content/uploads/2021/04/sonos-roam-4.jpg?w=600', '2021-04-06 05:00:47', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(235, 'techcrunch', 'Frederic Lardinois', 'Aporia raises $5M for its AI observability platform', 'Machine learning (ML) models are only as good as the data you feed them. That’s true during training, but also once a model is put in production. In the real world, the data itself can change as new events occur and even small changes to how databases and APIs report and store data could have…', 'https://techcrunch.com/2021/04/06/aporia-raises-5m-for-its-ai-observability-platform/', 'https://techcrunch.com/wp-content/uploads/2021/04/Aporia-Team.jpg?w=600', '2021-04-06 05:00:40', '2021-04-06 08:14:59', '2021-04-06 08:14:59'),
(236, 'four-four-two', NULL, 'Man City v Borussia Dortmund live stream: how to watch the Champions League wherever you are in the world', 'Watch a Man City v Borussia Dortmund live stream, as the Champions League quarter-finals begin', 'https://www.fourfourtwo.com/news/man-city-v-borussia-dortmund-live-stream-how-to-watch-the-champions-league-wherever-you-are-in-the-world', 'https://cdn.mos.cms.futurecdn.net/5K45mcDHw8WXXK5PAbP5HZ-1200-80.jpg', '2021-04-06 08:00:57', '2021-04-06 08:15:43', '2021-04-06 09:33:42'),
(237, 'four-four-two', NULL, 'Real Madrid v Liverpool live stream: how to watch the Champions League wherever you are in the world', 'Watch a Real Madrid v Liverpool live stream, as the Champions League quarter-finals begin', 'https://www.fourfourtwo.com/news/real-madrid-v-liverpool-live-stream-how-to-watch-the-champions-league-wherever-you-are-in-the-world', 'https://cdn.mos.cms.futurecdn.net/SrqZzZVfg4vpcXjF6wQrv4-1200-80.jpg', '2021-04-06 08:00:57', '2021-04-06 08:15:43', '2021-04-06 09:33:42'),
(238, 'four-four-two', 'PA Staff', 'Manchester City report net loss of £126m for 2019-20 due to coronavirus', '', 'https://www.fourfourtwo.com/news/manchester-city-report-net-loss-of-pound126m-for-2019-20-due-to-coronavirus-1617724788000', 'https://cdn.mos.cms.futurecdn.net/qGWSh6FFFvvde6pjc4m6uR-1200-80.jpg', '2021-04-06 07:59:48', '2021-04-06 08:15:43', '2021-04-06 09:33:42'),
(239, 'four-four-two', 'PA Staff', 'National League boss Brian Barwick to stand down', '', 'https://www.fourfourtwo.com/news/national-league-boss-brian-barwick-to-stand-down-1617723396000', 'https://cdn.mos.cms.futurecdn.net/bquH35mdq5uEEkrvFuLtvj-1200-80.jpg', '2021-04-06 07:36:36', '2021-04-06 08:15:44', '2021-04-06 09:33:43'),
(240, 'four-four-two', 'PA Staff', 'FA investigating following complaints from Birmingham Women over club’s board', '', 'https://www.fourfourtwo.com/news/fa-investigating-following-complaints-from-birmingham-women-over-clubs-board-1617723279000', 'https://cdn.mos.cms.futurecdn.net/VNg5Qeh94ceBGtkWD4j8UZ-1200-80.jpg', '2021-04-06 07:34:39', '2021-04-06 08:15:44', '2021-04-06 09:33:43');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(241, 'four-four-two', 'PA Staff', 'Loanee Craig Dawson to join West Ham on a permanent deal at end of the season', '', 'https://www.fourfourtwo.com/news/loanee-craig-dawson-to-join-west-ham-on-a-permanent-deal-at-end-of-the-season-1617722880000', 'https://cdn.mos.cms.futurecdn.net/6tg3U9AzjRTmguAGxskx6H-1200-80.jpg', '2021-04-06 07:28:00', '2021-04-06 08:15:44', '2021-04-06 09:33:43'),
(242, 'four-four-two', 'FourFourTwo Staff', 'Liverpool transfer news: Inter contact Georginio Wijnaldum and consider move for Chelsea’s Olivier Giroud', 'The Serie A giants are looking at players available on free transfers this summer.', 'https://www.fourfourtwo.com/news/liverpool-transfer-news-inter-contact-georginio-wijnaldum-and-consider-move-for-chelseas-olivier-giroud', 'https://cdn.mos.cms.futurecdn.net/95nfFS8bgJSX7nwf9xRDKF-1200-80.jpg', '2021-04-06 07:03:30', '2021-04-06 08:15:44', '2021-04-06 09:33:43'),
(243, 'four-four-two', NULL, 'Norwich City v Huddersfield Town live stream: how to watch the Championship wherever you are in the world', 'Watch a Norwich City v Huddersfield Town live stream, as the league leaders host relegation candidates', 'https://www.fourfourtwo.com/news/norwich-city-v-huddersfield-town-live-stream-how-to-watch-the-championship-wherever-you-are-in-the-world', 'https://cdn.mos.cms.futurecdn.net/YK78FvKbAENvos95JZv7yc-1200-80.jpg', '2021-04-06 07:00:00', '2021-04-06 08:15:44', '2021-04-06 08:15:44'),
(244, 'four-four-two', 'FourFourTwo Staff', 'Chelsea transfer news: Blues and Arsenal table offers as Hakan Calhanoglu talks stall with AC Milan', 'The Turkey international is out of contract at the end of the season.', 'https://www.fourfourtwo.com/news/chelsea-transfer-news-blues-and-arsenal-table-offers-as-hakan-calhanoglu-talks-stall-with-ac-milan', 'https://cdn.mos.cms.futurecdn.net/Y4ahxXLHfrcZD6ku2LbLL8-1200-80.jpg', '2021-04-06 06:54:58', '2021-04-06 08:15:44', '2021-04-06 08:15:44'),
(245, 'four-four-two', 'PA Staff', 'Hampden’s Euro 2020 games could be watched by ‘a reasonably good number’ of fans', '', 'https://www.fourfourtwo.com/news/hampdens-euro-2020-games-could-be-watched-by-a-reasonably-good-number-of-fans-1617718658000', 'https://cdn.mos.cms.futurecdn.net/rEP98DZyDcijaBR8rrQHTU-1200-80.jpg', '2021-04-06 06:51:59', '2021-04-06 08:15:44', '2021-04-06 08:15:44'),
(246, 'breitbart-news', 'Bob Price', 'Texas Governor Bans Vaccine Passports with Executive Order', 'Texas Governor Greg Abbott issued an executive order Tuesday morning banning the creation or use of a \"vaccine passport.\"', 'http://www.breitbart.com/border/2021/04/06/texas-governor-bans-vaccine-passports-with-executive-order/', 'https://media.breitbart.com/media/2021/04/AP_21093028048052-640x335.jpg', '2021-04-06 06:20:02', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(247, 'breitbart-news', 'AWR Hawkins', 'Suspect \'Down\' Following Active Shooter Report Near Fort Detrick', 'The Frederick County Sheriff\'s Office (FCSO) indicates a suspect is \"down\" following an active shooter situation at Fort Detrick, Maryland.', 'http://www.breitbart.com/politics/2021/04/06/suspect-down-following-active-shooter-report-near-fort-detrick/', 'https://media.breitbart.com/media/2021/03/police-tape-crime-scene-getty-640x335.jpg', '2021-04-06 06:49:31', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(248, 'breitbart-news', 'Simon Kent', 'W.H.O. Rejects Vaccine Passports: Cites Lack of Fairness, Medical Doubts', 'The World Health Organization said it rejects coronavirus vaccine passports for travel \"at this stage\" because of doubts over...', 'http://www.breitbart.com/health/2021/04/06/w-h-o-rejects-vaccine-passports-cites-lack-of-fairness-medical-doubts/', 'https://media.breitbart.com/media/2021/04/1984-coronavirus-640x335.jpg', '2021-04-06 05:29:23', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(249, 'breitbart-news', 'Victoria Friedman', 'UK Govt Says Vaccine Certificates Will Be \'Feature of Our Lives\'', 'It is now clear vaccine passports to do simple things like go to the pub or eat a meal out have been merely delayed, not defeated.', 'http://www.breitbart.com/europe/2021/04/06/uk-govt-says-vaccine-certificates-feature-our-lives-passport-pints-still-table/', 'https://media.breitbart.com/media/2021/04/Boris-Johnson-640x335.jpg', '2021-04-06 03:22:30', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(250, 'breitbart-news', 'John Nolte', 'Nolte: Joe Biden and Stacey Abrams Lied. Democrat-Run Atlanta Died.', 'Joe Biden and Stacey Abrams\' racial demagoguery and lies have cost the Democrat-run city of Atlanta $100 million.', 'http://www.breitbart.com/politics/2021/04/06/nolte-joe-biden-and-stacey-abrams-lied-democrat-run-atlanta-died/', 'https://media.breitbart.com/media/2019/03/GettyImages-993428618-640x335.jpg', '2021-04-06 05:31:08', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(251, 'breitbart-news', 'Jeff Poor', 'Rand Paul on Georgia vs. Coca-Cola, MLB, Delta: \'If They Want to Boycott Us, Why Don\'t We Boycott Them?\'', 'Monday on FNC\'s \"The Story,\" Sen. Rand Paul (R-KY) suggested Republicans and other conservatives that take issue with punitive actions taken by corporate America against Georgia for the passage of a law by the Georgia Assembly to shore up election integrity take on those companies with their own boycott. | Clips', 'http://www.breitbart.com/clips/2021/04/05/rand-paul-on-georgia-vs-coca-cola-mlb-delta-if-they-want-to-boycott-us-why-dont-we-boycott-them/', 'https://media.breitbart.com/media/2019/10/Rand-Paul-640x335.jpg', '2021-04-05 17:07:32', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(252, 'breitbart-news', 'Trent Baker', 'DeSantis: \'60 Minutes\' Failed \'Hit Job\' Precisely Why Americans Don\'t Trust \'Corporate Media\'', 'Florida Gov. Ron DeSantis (R) on Tuesday sounded off on the CBS \"60 Minutes\" \"hit job\" attempt regarding a \"pay-to-play\" with Publix and COVID-19 vaccines. The Governor passionately shot it down as \"wrong\" and a \"fake narrative.\" | Clips', 'http://www.breitbart.com/clips/2021/04/06/desantis-60-minutes-failed-hit-job-precisely-why-americans-dont-trust-corporate-media/', 'https://media.breitbart.com/media/2020/07/DeSantis-Press-Conference-on-Fauci-Comment-640x335.jpg', '2021-04-06 06:37:47', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(253, 'breitbart-news', 'Dylan Gwinn', 'MLB Moves All-Star Game to Colorado, Which Has Voter ID and Fewer Early Voting Days than GA', 'MLB is expected to announce that they will move their All-Star Game from Atlanta, Georgia, to Denver, Colorado, according to a report.', 'http://www.breitbart.com/sports/2021/04/05/mlb-moves-all-star-game-to-colorado-which-has-voter-id-and-fewer-early-voting-days-than-ga/', 'https://media.breitbart.com/media/2018/11/AP-Charles-Rex-Arbogast-MLB-Logo.png', '2021-04-05 19:20:58', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(254, 'breitbart-news', 'Wendell Husebo', '200 Woke Companies Oppose Voter ID Laws while Requiring Them', 'Two hundred corporations issued a joint statement opposing election integrity legislation similar to Georgia\'s recently passed voter ID law.', 'http://www.breitbart.com/politics/2021/04/05/200-companies-oppose-voter-id-laws-many-require-ids-for-use-of-service/', 'https://media.breitbart.com/media/2020/10/Voter-registration-line-Florida-getty-640x335.jpg', '2021-04-05 13:12:03', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(255, 'breitbart-news', 'Kyle Morris', 'Georgia Gov. Kemp: Woke Corporations ‘Do Not Care About the Truth\'', 'Gov. Brian Kemp discussed the new voting reform law in Georgia and suggested corporations and activists \"do not care about the truth.\"', 'http://www.breitbart.com/politics/2021/04/05/georgia-gov-brian-kemp-woke-corporations-activists-do-not-care-about-the-truth/', 'https://media.breitbart.com/media/2021/02/45470934_10156014241141275_5311970639219785728_o-640x335.png', '2021-04-05 11:15:18', '2021-04-06 08:16:01', '2021-04-06 08:16:01'),
(256, 'talksport', 'Jake Bacon', '‘We don’t believe you, Juan Cala’ – Valencia release strongly-worded statement after Cadiz player denies ra...', '', 'https://talksport.com/football/860663/valencia-racial-abuse-mouctar-diakhaby-cadiz-juan-cala/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/pjimage-2021-04-06T142525.709-e1617715587510.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 05:47:38', '2021-04-06 08:20:35', '2021-04-06 08:20:35'),
(257, 'talksport', 'Jake Bacon', 'Man City vs Borussia Dortmund is ‘an audition for Pep Guardiola, not Erling Haaland’ with ‘every top club’...', '', 'https://talksport.com/football/860607/man-city-borussia-dortmund-pep-guardiola-erling-haaland-transfer/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/talksport-pep.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 06:00:45', '2021-04-06 08:20:35', '2021-04-06 08:20:35'),
(258, 'talksport', 'talkSPORT', 'Gary Neville and Jamie Carragher clash over Liverpool star Trent Alexander-Arnold playing for England at...', '', 'https://talksport.com/football/860458/gary-neville-jamie-carragher-liverpool-alexander-arnold-england-car-park-argument/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/talksport-TTA-SAKA-v2.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 04:21:16', '2021-04-06 08:20:35', '2021-04-06 08:20:35'),
(259, 'talksport', 'Jackson Cole', 'Raphael Varane joins Sergio Ramos on sidelines as Real Madrid and Liverpool are left without first choice...', '', 'https://talksport.com/football/860661/real-madrid-liverpool-team-news-varane-sergio-ramos-injury/', 'https://talksport.com/wp-content/uploads/sites/5/2020/02/NINTCHDBPICT000638191176-e1614714725572.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 05:17:28', '2021-04-06 08:20:35', '2021-04-06 08:20:35'),
(260, 'talksport', 'Jackson Cole', 'Liverpool to unleash fab four vs Real Madrid? Jurgen Klopp hints Diogo Jota, Roberto Firmino, Mohamed...', '', 'https://talksport.com/football/860192/liverpool-team-news-jota-real-madrid-firmino-champions-league-mane-salah-fab-four/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/TALKSPORT-liverpool-madrid-line-up-v2.jpg?strip=all&quality=100&w=750&h=500&crop=1', '2021-04-05 23:58:16', '2021-04-06 08:20:35', '2021-04-06 08:20:35'),
(261, 'talksport', 'Jackson Cole', 'Trevor Sinclair backs David Moyes to be named Manager of the Year but ex-West Ham star has concerns about...', '', 'https://talksport.com/football/860538/trevor-sinclair-david-moyes-manager-year-west-ham-stuart-pearce/', 'https://talksport.com/wp-content/uploads/sites/5/2021/03/NINTCHDBPICT000645702092.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 02:41:39', '2021-04-06 08:20:36', '2021-04-06 08:20:36'),
(262, 'talksport', 'Anton Stanley', 'Andrea Dossena became a Liverpool icon with incredible goals against Real Madrid and Manchester United...', '', 'https://talksport.com/football/860249/andrea-dossena-liverpool-goals-real-madrid-man-united-sergio-ramos/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/TALKSPORT-Dossena.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 02:24:39', '2021-04-06 08:20:36', '2021-04-06 08:20:36'),
(263, 'talksport', 'Jackson Cole', 'Lionel Messi seen giving teammates team talk in tunnel as Barcelona close gap on LaLiga leaders Atletico...', '', 'https://talksport.com/football/860606/lionel-messi-stats-barcelona-laliga-table-atletico-madrid/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/messi-team-talk-1.png?strip=all&quality=100&w=874&h=430&crop=1', '2021-04-06 04:21:27', '2021-04-06 08:20:36', '2021-04-06 08:20:36'),
(264, 'talksport', 'Jackson Cole', 'Jesse Lingard ‘has put a smile on my face’, says Trevor Sinclair, who advises West Ham star not to go back...', '', 'https://talksport.com/football/860468/man-utd-news-jesse-lingard-west-ham-gary-neville/', 'https://talksport.com/wp-content/uploads/sites/5/2020/12/NINTCHDBPICT000645699851.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 01:59:08', '2021-04-06 08:20:36', '2021-04-06 08:20:36'),
(265, 'talksport', 'Alex McCarthy', 'Video of teenage Mike Tyson learning technique that made him a legend under Cus D’Amato on route to h...', '', 'https://talksport.com/sport/boxing/860522/mike-tyson-record-training-video-cus-d-amato/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/talksport-Mike-Tyson.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-06 03:45:58', '2021-04-06 08:20:36', '2021-04-06 08:20:36'),
(266, 'techradar', 'TechRadar Team', 'LG phones are over - here are our memories of its top phones from the last 25 years', 'A selection of our favorite LG phones', 'https://www.techradar.com/news/lg-phones-are-over-heres-our-memories-of-its-top-phones-from-the-last-25-years', 'https://cdn.mos.cms.futurecdn.net/RLAfmtudAg9mr28qVgFnPo-1200-80.jpg', '2021-04-06 06:39:01', '2021-04-06 08:24:25', '2021-04-06 09:02:15'),
(267, 'techradar', 'Olivia Tambini', 'Sonos Roam review', 'Is this the best portable speaker on the planet?', 'https://www.techradar.com/reviews/sonos-roam', 'https://cdn.mos.cms.futurecdn.net/MwVqqx4a5KDYjvifWdqcGd-1200-80.jpg', '2021-04-06 05:02:42', '2021-04-06 08:24:25', '2021-04-06 09:02:15'),
(268, 'techradar', 'Axel Metz', 'Tim Cook breaks silence on the Apple Car', 'Apple’s car project gets a status update', 'https://www.techradar.com/news/tim-cook-breaks-silence-on-the-apple-car', 'https://cdn.mos.cms.futurecdn.net/bKjdbsBa4HRQ6F6wooTZmN-1200-80.jpg', '2021-04-06 02:35:32', '2021-04-06 08:24:25', '2021-04-06 09:02:15'),
(269, 'techradar', 'Carly Page', 'AMD Threadripper 5000 CPUs might not be arriving until August', 'Rumor claims a launch is still some way off', 'https://www.techradar.com/news/amd-threadripper-5000-cpus-might-not-be-arriving-until-august', 'https://cdn.mos.cms.futurecdn.net/aJsHM2gbZ9YBgJ57aGDTJU-1200-80.jpg', '2021-04-05 10:30:24', '2021-04-06 08:24:25', '2021-04-06 09:02:16'),
(270, 'techradar', 'Samuel Roberts', 'Loki trailer reveals your next Marvel TV obsession', 'Check out the full trailer here', 'https://www.techradar.com/news/loki-trailer-reveals-your-next-marvel-tv-obsession', 'https://cdn.mos.cms.futurecdn.net/nAfnwkBQSnpuoypThE932D-1200-80.jpg', '2021-04-05 05:43:11', '2021-04-06 08:24:26', '2021-04-06 09:02:16'),
(271, 'techradar', 'Matt Swider', 'PS5 restock date: Best Buy, Walmart, Amazon and Target – get it this week', 'When is the next PS5 restock? All signs point to Tuesday, April 6. Here\'s where to look for the Sony console dates', 'https://www.techradar.com/news/ps5-restock-date-best-buy-walmart-amazon-target', 'https://cdn.mos.cms.futurecdn.net/oLLTSgUQg2RpkqSu9z8aek-1200-80.jpg', '2021-04-04 11:23:56', '2021-04-06 08:24:26', '2021-04-06 09:02:16'),
(272, 'newsweek', 'Emily Czachor', 'Instagram Pulls Louis Farrakhan Promoting Account, Twitter Silent After Capitol Attack', 'Farrakhan, the leader of the Nation of Islam, was originally barred from using both Facebook and Instagram in May of 2019. His Twitter account remains active.', 'https://www.newsweek.com/instagram-pulls-louis-farrakhan-promoting-account-twitter-silent-after-capitol-attack-1580975', 'https://d.newsweek.com/en/full/1771492/louis-farrakhan.jpg', '2021-04-04 13:48:25', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(273, 'newsweek', 'Jason Lemon', 'Georgia GOP Lawmakers Demand Removal of Coca-Cola Products From Office Amid Election Law Spat', 'Former President Donald Trump on Saturday also urged Americans to boycott Coca-Cola and other companies that have criticized Georgia\'s new voting legislation.', 'https://www.newsweek.com/georgia-gop-lawmakers-demand-removal-coca-cola-products-office-amid-election-law-spat-1580950', 'https://d.newsweek.com/en/full/1771461/coca-cola.jpg', '2021-04-04 06:56:55', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(274, 'newsweek', 'Emily Czachor', 'Piney Point Emergency Prompts Florida Jail to Move Inmates Higher Amid Calls to Evacuate Them', 'Protesters demonstrated outside of the Manatee County Emergency Operations Center on Sunday morning to demand that personnel inside the jail are evacuated.', 'https://www.newsweek.com/piney-point-emergency-prompts-florida-jail-move-inmates-higher-amid-calls-evacuate-them-1580968', 'https://d.newsweek.com/en/full/1771483/governor-ron-desantis-florida.jpg', '2021-04-04 11:12:58', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(275, 'newsweek', 'Jason Lemon', 'Mike Lindell Admits MyPillow Can\'t Get Back $65M in Revenue Lost Due to Trump Ties', '\"We\'re going to lose that,\" the Trump loyalist said, but noted that his company is looking at alternatives to shore up revenue going forward.', 'https://www.newsweek.com/mike-lindell-admits-mypillow-cant-get-back-65m-revenue-lost-due-trump-ties-1580966', 'https://d.newsweek.com/en/full/1771481/mike-lindell.jpg', '2021-04-04 10:15:04', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(276, 'newsweek', 'Barbara Higgins', '\'I Had a Baby at 57\'', 'On July 26, 2020 we were able to have another embryo transfer. It went well, and on August 5, we found out that I was pregnant.', 'https://www.newsweek.com/i-had-baby-57-1580064', 'https://d.newsweek.com/en/full/1771465/children-babies-pregnancy-older-mothers.jpg', '2021-04-04 06:47:09', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(277, 'newsweek', NULL, 'Combating the COVID-19 Across Borders: Japan\'s Multilateral Approach to the Global Pandemic Crisis', 'Since the virus first emerged, Japan has taken aggressive action at home in addition to actions abroad as part of a multilateral effort for all countries to better combat the spread of infection.', 'https://pubads.g.doubleclick.net/gampad/clk?id=5652097612&iu=/43459271/newsweek/homepage', 'https://d.newsweek.com/en/full/1751805/japan-nihe-2.jpg', '2021-03-24 05:23:54', '2021-04-06 08:34:58', '2021-04-23 00:08:04'),
(278, 'newsweek', NULL, 'World\'s Best Hospitals 2021 - Top 200 Global', 'World\'s Best Hospitals 2021 - Top 200 Global', 'https://www.newsweek.com/best-hospitals-2021', 'https://d.newsweek.com/en/full/1743590/worlds-best-hospital-2021.jpg', '2021-02-22 15:24:30', '2021-04-06 08:34:58', '2021-04-23 00:08:04'),
(279, 'newsweek', NULL, 'Robotic assistance has the potential to play a key role in the fight against COVID-19', 'By helping to reduce the burdens on health care workers, carry out much needed preventive measures and provide people who are in isolation with a greater link to the outside world, robots capabilities will be of great assistance during these trying times.', 'https://pubads.g.doubleclick.net/gampad/clk?id=5642665383&iu=/43459271/newsweek/homepage', 'https://d.newsweek.com/en/full/1746705/robotics-hsr.jpg', '2021-03-17 05:14:28', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(280, 'newsweek', NULL, 'What Career Should You Be Considering in Healthcare?', 'Leading Pharmacy & Physician Assistant Programs 2021', 'https://www.newsweek.com/insights/leading-pharmacy-physician-assistant-programs-2021', 'https://d.newsweek.com/en/full/45685/0cachedpng.png', '2021-01-25 17:26:44', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(281, 'newsweek', NULL, 'Ten Years Later: Tohoku\'s Recovery and Resilience Together With the World', 'Ten years after an earthquake and tsunami devastated northeastern Japan, Tohoku looks very different. The combined efforts of professional reconstruction teams, local residents and support from the international community have all made a huge impact toward returning life to normal.', 'https://pubads.g.doubleclick.net/gampad/clk?id=5636025057&iu=/43459271/newsweek/homepage', 'https://d.newsweek.com/en/full/1744365/hayakawa.jpg', '2021-03-08 05:53:43', '2021-04-06 08:34:58', '2021-04-07 07:39:58'),
(282, 'cnn', 'Veronica Stracqualursi, CNN', 'McConnell warns businesses of \'serious consequences\' after many condemn Georgia\'s restrictive voting law', 'Senate Minority Leader Mitch McConnell warned big businesses they would face \"serious consequences\" after accusing them of employing \"economic blackmail\" in attempts to influence voting laws as the backlash over Georgia\'s elections law that imposes voting restrictions intensifies.', 'http://us.cnn.com/2021/04/06/politics/mcconnell-businesses-georgia-elections-law/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/210215202426-mcconnell-210213-super-tease.jpg', '2021-04-06 07:24:02', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(283, 'cnn', 'Analysis by Zachary B. Wolf, CNN', 'Analysis: Why the GOP and corporate America are breaking up', 'The ever-moving tectonic shift underneath American politics is prime for another quake as civil rights starts to outweigh corporate tax rates in the calculating minds of big American businesses.', 'http://us.cnn.com/2021/04/05/politics/voting-rights-corporate-america-gop-breakup/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/210402142941-georgia-capitol-voting-rights-protest-030-super-tease.jpg', '2021-04-05 11:13:35', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(284, 'cnn', 'Amir Vera, Cesar Marin, Jeremy Harlan and Leslie Perrot, CNN', 'MLB All-Star Game will reportedly move to Denver', 'Coors Field in Denver -- home of Major League Baseball\'s Colorado Rockies -- is expected to be announced as the new host of this year\'s All-Star Game, according to multiple news outlets.', 'http://us.cnn.com/2021/04/06/us/mlb-all-star-game-denver-colorado-spt-trnd/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/210406001336-coors-field-file-2020-super-tease.jpg', '2021-04-05 20:18:09', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(285, 'cnn', NULL, 'Dick Parsons: Georgia law is a bald-faced attempt to suppress Black vote - CNN Video', 'In an interview with CNN Business\' Matt Egan, former Time Warner CEO Dick Parsons says Georgia\'s restrictive voting law is \"bone-headed\" and corporate America had a responsibility to respond.', 'http://us.cnn.com/videos/business/2021/04/06/dick-parsons-georgia-voting-law-zw-orig.cnn-business', 'https://cdn.cnn.com/cnnnext/dam/assets/210406110030-dick-parsons-file-2021-super-tease.jpg', '2021-04-06 08:36:33', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(286, 'cnn', 'Analysis by Chris Cillizza, CNN Editor-at-large', 'Analysis: Voters say *this* is the biggest election problem in the country', 'Amid the ongoing fight over the recently passed Georgia election law -- and the subsequent decision by Major League Baseball to pull its All-Star Game out of Atlanta this summer -- you might reasonably conclude that efforts to restrict access to the ballot box would be the biggest election issue in the country.', 'http://us.cnn.com/2021/04/05/politics/gerrymandering-election-problem/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/180110152016-20180110-nc-north-carolina-gerrymandering-hands-map-super-tease.jpg', '2021-04-06 03:49:04', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(287, 'cnn', 'Lauren M. Johnson, CNN', 'Texas Gov. Greg Abbott declines to throw Rangers first pitch, citing MLB\'s stance against Georgia voting law', 'Texas Gov. Greg Abbott said Monday that he will not throw out the ceremonial first pitch at the Texas Rangers home opener because of Major League Baseball\'s stance on voter integrity laws.', 'http://us.cnn.com/2021/04/05/us/greg-abbott-declines-throwing-opening-pitch-rangers-game-trnd/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/210405162100-texas-gov-greg-abbott-file-2020-restricted-super-tease.jpg', '2021-04-05 13:29:31', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(288, 'cnn', NULL, 'Jake Tapper asks Brad Raffensperger why he supports Georgia\'s voting bill - CNN Video', 'CNN\'s Jake Tapper presses Georgia Secretary of State Brad Raffensperger why he supports the controversial state voting bill after he said there was no widespread fraud in the 2020 election and was attacked by former President Trump for taking a stand.', 'http://us.cnn.com/videos/politics/2021/04/05/brad-raffensperger-georgia-voting-law-support-confidence-sot-tapper-lead-vpx.cnn', 'https://cdn.cnn.com/cnnnext/dam/assets/210405170903-brad-raffensperger-super-tease.jpg', '2021-04-06 08:36:33', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(289, 'cnn', 'Matt Egan, CNN Business', 'One of America\'s first Black CEOs slams \'bone-headed\' Georgia law as blatant attempt to suppress Black vote', 'Dick Parsons had to make countless difficult decisions during his storied corporate career. The decision to speak out on Georgia\'s voting law was not one of them.', 'http://us.cnn.com/2021/04/06/business/dick-parsons-georgia-voting-law/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/210406111853-dick-parsons-file-restricted-super-tease.jpg', '2021-04-06 07:56:44', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(290, 'cnn', 'By Melissa Macaya, Mike Hayes, <a href=\"/profiles/melissa-mahtani\">Melissa Mahtani</a> and <a href=\"/profiles/veronica-rocha\">Veronica Rocha</a>, CNN', 'Derek Chauvin is on trial for George Floyd\'s death: Live coverage', 'Witness testimony continues in the trial of former Minneapolis Police officer Derek Chauvin, who has been charged in the death of George Floyd. Follow here for the latest.', 'https://www.cnn.com/us/live-news/derek-chauvin-trial-04-06-21/h_fe4b1594fd2a9004c3ff0aa35ef3ce7e', 'https://cdn.cnn.com/cnnnext/dam/assets/210303161010-chauvin-floyd-split-super-tease.jpg', '2021-04-06 04:25:09', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(291, 'cnn', 'Kaitlan Collins, CNN', 'Biden set to announce he\'s moving deadline for all US adults to be eligible for Covid vaccine to April 19', 'President Joe Biden plans to announce Tuesday that he is moving up his deadline for states to make all American adults eligible for a coronavirus vaccine by almost two weeks.', 'http://us.cnn.com/2021/04/06/politics/coronavirus-vaccine-deadline-biden/index.html', 'https://cdn.cnn.com/cnnnext/dam/assets/210404164255-01-joe-biden-0324-super-tease.jpg', '2021-04-06 03:00:14', '2021-04-06 08:36:33', '2021-04-06 08:36:33'),
(292, 'engadget', 'https://www.engadget.com/about/editors/igor-bonifacic', 'eBay\'s app will soon use image recognition to automate listing trading cards | Engadget', 'eBay is making it easier and much faster to list individual cards to its platform for sale.', 'https://www.engadget.com/ebay-image-recognition-trading-cards-160741820.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/bf0586e0-96f0-11eb-bfeb-322fde02fcee', '2021-04-06 08:37:11', '2021-04-06 08:37:11', '2021-04-06 08:37:11'),
(293, 'wirtschafts-woche', 'Sebastian Schaal', 'Audi: SUV und China sollen es rausreißen', 'Volkswagen-Tochter im Wandel: Der umfassendste Unternehmensumbau in der jüngeren Audi-Geschichte soll die Ingolstädter wieder an die Spitze bringen.', 'https://www.wiwo.de/unternehmen/auto/wandel-kostet-milliarden-suv-und-china-sollen-audi-wieder-nach-vorne-bringen/21069566.html', 'https://www.wiwo.de/images/audi-jahres-pk/21075178/2-formatOriginal.jpg', '2018-03-15 04:15:00', '2021-04-06 08:37:30', '2021-04-23 02:31:50'),
(294, 'wirtschafts-woche', 'Martin Gerth, Niklas Hoyer, Heike Schwerdtfeger', 'Steuern & Recht aktuell: Schulhund, Untermiete, Hinterbliebenenrente', 'Aufwendungen für Schul- und Therapiehunde können steuerlich geltend gemacht werden. Außerdem: ein Expertenrat zum Thema Hinterbliebenenrente', 'https://www.wiwo.de/my/finanzen/steuern-recht/steuern-und-recht-kompakt-schulhund-untermiete-hinterbliebenenrente/27070478.html', 'https://www.wiwo.de/images/schulhund_imago/27070606/2-format11240.jpg', '2021-04-06 07:13:30', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(295, 'wirtschafts-woche', 'Daniel Goffart', 'Armin Laschet & Markus Söder? So sähe der ideale Kanzlerkandidat aus', 'Angesichts der Impfmisere erinnern wir uns wehmütig an Krisenmanager vergangener Zeiten. Wieviel Helmut Schmidt & Gerhard Schröder stecken in Armin Laschet und Markus Söder? Und wie sähe der ideale Kanzlerkandidat aus?', 'https://www.wiwo.de/politik/deutschland/laschet-vs-soeder-kanzlerkandidatur-tabakrauch-statt-datenschutz/27070888.html', 'https://www.wiwo.de/images/ausserordentlicher-bundesparteitag-der-spd/27071470/2-format11240.jpg', '2021-04-06 06:57:18', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(296, 'wirtschafts-woche', 'Wirtschaftswoche', 'Mobilität: Regiojet kündigt Nachtzugverbindung Prag-Berlin-Brüssel ab 2022 an', 'Das tschechische Verkehrsunternehmen kooperiert mit einem niederländischen Start-up. Prag soll so mit Berlin, Amsterdam und Brüssel verbunden werden.', 'https://www.wiwo.de/unternehmen/handel/mobilitaet-regiojet-kuendigt-nachtzugverbindung-prag-berlin-bruessel-ab-2022-an/27071494.html', 'https://www.wiwo.de/images/nachtzuege/27071328/2-format11240.jpg', '2021-04-06 06:32:45', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(297, 'wirtschafts-woche', 'Wirtschaftswoche', 'Panini-Rivale: Topps geht durch Spac-Fusion an die Börse', 'Das US-Unternehmen will über die Fusion auf kurzem Weg an die Nasdaq. Topps wird bei dem Deal mit rund 1,3 Milliarden Dollar bewertet.', 'https://www.wiwo.de/finanzen/boerse/panini-rivale-topps-geht-durch-spac-fusion-an-die-boerse/27071468.html', 'https://www.wiwo.de/images/wall-street/27071246/2-format11240.jpg', '2021-04-06 06:26:01', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(298, 'wirtschafts-woche', 'Wirtschaftswoche', 'Starke Erholung in den USA beflügelt laut IWF die Weltwirtschaft', 'Trotz Corona-Pandemie soll die Weltwirtschaft in diesem Jahr stark wachsen. Der IWF zeigt sich optimistisch und verweist auch auf die Impfungen. Profitieren dürften aber vor allem die reicheren Industrieländer.', 'https://www.wiwo.de/politik/ausland/ende-der-coronakrise-in-sicht-starke-erholung-in-den-usa-befluegelt-laut-iwf-die-weltwirtschaft/27071000.html', 'https://www.wiwo.de/images/containerumschlag-in-china/27071144/4-format11240.jpg', '2021-04-06 05:59:00', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(299, 'wirtschafts-woche', 'Bert Losse', 'IWF Konjunkturprognose: Wie Corona die Welt ökonomisch spaltet', 'Der Internationale Währungsfonds revidiert seine Konjunkturprognosen für das Jahr 2021 nach oben. Doch es wird immer deutlicher, wer am Ende die Verlierer der Coronakrise sein werden: die Entwicklungsländer.', 'https://www.wiwo.de/politik/ausland/weltwirtschaft-wie-corona-die-welt-oekonomisch-spaltet/27070916.html', 'https://www.wiwo.de/images/reuters-rts3e9yw-highres/27070988/2-format11240.jpg', '2021-04-06 05:41:58', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(300, 'wirtschafts-woche', 'Wirtschaftswoche', 'Coronavirus: Zwölf Prozent der Deutschen mindestens einmal geimpft', 'Mehr als zehn Millionen Menschen sind in Deutschland nach Angaben von Gesundheitsminister Jens Spahn bereits mindestens einmal gegen das Coronavirus geimpft worden. Alle Corona-News im Überblick.', 'https://www.wiwo.de/politik/deutschland/-corona-update-zwoelf-prozent-der-deutschen-mindestens-einmal-geimpft/26584968.html', 'https://www.wiwo.de/images/a-nurse-prepares-a-shot-of-the-pfizer-biontech-covid-19-vaccine-at-guys-hospital-in-london-tuesday-dec-8-2020-as-the-u-k-health-authorities-rolled-out-a-national-mass-vaccination-program-u-k-regulators-said-wednesday-dec-9-2020-that-people-who-have-a-asignificant-historyaa-of-alle/26703274/37-format11240.jpg', '2021-04-06 05:40:47', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(301, 'wirtschafts-woche', 'Wirtschaftswoche', 'Konjunktur: Weidmann hält Erreichen der Wachstumsprognose 2021 für weniger wahrscheinlich', 'Der Bundesbankpräsident ist unsicher, ob die Vorhersage von drei Prozent Wirtschaftswachstum noch erreicht werden kann. Dem mittelfristigen Ausblick würde nichts im Wege stehen.', 'https://www.wiwo.de/konjunktur-weidmann-haelt-erreichen-der-wachstumsprognose-2021-fuer-weniger-wahrscheinlich/27071122.html', 'https://www.wiwo.de/images/jens-weidmann-/27070670/2-format11240.jpg', '2021-04-06 05:32:58', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(302, 'wirtschafts-woche', 'Tina Zeinlinger, Jan Guldner', 'Aktienanalyse: Welche Kennzahlen sind für Anleger wirklich wichtig?', 'Wer die besten Aktien finden will, darf den Blick in Geschäftsberichte nicht scheuen. Wir verraten, welche Kennzahlen für Anleger wirklich wichtig sind.', 'https://www.wiwo.de/podcast/money-mates/podcast-money-mates-aktienanalyse-welche-kennzahlen-muss-ich-checken/27062732.html', 'https://www.wiwo.de/images/wiwo_money_mates_640x360px_v2/27062734/3-format11240.jpg', '2021-04-06 05:00:00', '2021-04-06 08:37:30', '2021-04-06 08:37:30'),
(303, 'football-italia', 'Football Italia Staff', 'Conte: 'Inter must complete this path'', 'Antonio Conte said Inter must ‘complete the path’ and praised Lautaro Martinez. ‘He certainly has a great future ahead of him’.', 'http://www.football-italia.net/node/168777', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Conte-2007-sigh-epa_0_4.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(304, 'football-italia', 'Football Italia Staff', 'Bergomi: 'Inter need Goretzka, not Kante'', 'Inter legend Beppe Bergomi advises the club to invest in Bayern Munich’s Leon Goretzka rather than N’Golo Kante of Chelsea if they want to succeed in the Champions League.', 'http://www.football-italia.net/node/168783', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Goretzka-2104-epa.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(305, 'football-italia', 'Football Italia Staff', 'Pirlo: 'An imporant match, Dybala is available'', 'Juventus coach Andrea Pirlo said Paulo Dybala is available for the ‘important’ match against Napoli. ‘Having him available means a lot’.', 'http://www.football-italia.net/node/168775', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Pirlo-2102-coppa-epa_0.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(306, 'football-italia', 'Football Italia Staff', 'Gravina: 'Euro 2020 hosting good for country'', 'Federation President Gabriele Gravina confirms the Italian Government will allow fans to Rome’s Euro 2020 games. ‘It’s good for the country, not just sport.’', 'http://www.football-italia.net/168784/gravina-euro-2020-hosting-good-country', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Gravina-1902-epa_10.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(307, 'football-italia', 'Football Italia Staff', 'Napoli squad for Juventus', 'Napoli have named their squad for the rescheduled game with Juventus tomorrow, with Amir Rrahmani and Dries Mertens pushing to start.', 'http://www.football-italia.net/168782/napoli-squad-juventus', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Mertens-2006-Insigne-celeb-epa_3.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(308, 'football-italia', 'Football Italia Staff', 'Italy ready to host fans at Euro 2020', 'According to news agency ANSA, the Italian Government has given UEFA assurances the Euro 2020 games in Rome will have some fans present.', 'http://www.football-italia.net/168781/italy-ready-host-fans-euro-2020', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Euro2020-logo_12.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(309, 'football-italia', 'Football Italia Staff', 'Bologna lose Medel for a month', 'Bologna will be without Gary Medel for at least a month after he sustained a lesion to the soleus muscle.', 'http://www.football-italia.net/168780/bologna-lose-medel-month', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Medel-2006-Samp-Ekdal-epa.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(310, 'football-italia', 'Football Italia Staff', 'De Zerbi stands by Sassuolo COVID choice', 'Roberto De Zerbi confirms Sassuolo will exclude Italy internationals against Inter tomorrow, even if they test negative for COVID-19. ‘We’ll try to do something different.’', 'http://www.football-italia.net/168779/de-zerbi-stands-sassuolo-covid-choice', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/DeZerbi-2101-sigh-epa_1.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:31', '2021-04-06 08:42:31'),
(311, 'football-italia', 'Football Italia Staff', 'Pereyra: 'De Paul has enormous qualities'', 'Udinese forward Roberto Pereyra said Rodrigo De Paul has ‘enormous qualities’ and gives ‘strength to the whole team’.', 'http://www.football-italia.net/168778/pereyra-de-paul-has-enormous-qualities', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Pereyra-2101-celeb-epa_2.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:32', '2021-04-06 08:42:32'),
(312, 'football-italia', 'Football Italia Staff', 'Gomez: 'I feel sad when I think of Bergamo'', 'Sevilla forward Papu Gomez revealed the separation from Atalanta was complicated and painful. ‘I’m still trying to understand how it happened’.', 'http://www.football-italia.net/168776/gomez-i-feel-sad-when-i-think-bergamo', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Gomez-2011-what-epa_4.jpg', '2021-04-05 17:00:00', '2021-04-06 08:42:32', '2021-04-06 08:42:32'),
(313, 'the-sport-bible', 'Jack Kenmare', 'Juventus \'Irritated\' By Maurizio Sarri After He Refused To Stop Smoking Even While Struggling With Pneumonia', 'He averages around four packets of cigarettes a day.', 'http://www.thesportbible.com/football/reactions-news-juventus-irritated-by-sarri-after-he-refused-to-stop-smoking-20190829', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/355e3dd65d671dd42945878d5de7bac9.png', '2019-08-28 23:35:51', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(314, 'the-sport-bible', 'Adnan Riaz', 'Supercomputer Predicts The Champions League Winner For 2019-20 Season', 'BT Sport\'s The Script predicted if Jurgen Klopp would lead Liverpool to their second consecutive Champions League trophy.', 'http://www.thesportbible.com/football/news-supercomputer-predicts-the-champions-league-winner-for-2019-20-season-20190829', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/4120a9305d6766c411d9733bd6edb2f8.png', '2019-08-28 22:51:10', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(315, 'the-sport-bible', 'Ryan Sidle', 'Richarlison Gets The Lionel Messi Shirt Celebration All Wrong', 'The Everton forward messed up Messi\'s iconic Clasico celebration by showing the wrong side of his shirt to the crowd.', 'http://www.thesportbible.com/football/funny-fails-richarlison-gets-the-lionel-messi-shirt-celebration-all-wrong-20190828', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/970d71e35d6686088bfccc3f1560dad2.png', '2019-08-28 13:49:20', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(316, 'the-sport-bible', 'Josh Lawless', 'UFC Fall of Famer BJ Penn Knocked Out Cold In One Of Two Bar Fights In Hawaii', 'The 40-year old had two separate altercations with the same man in Pahoa...', 'http://www.thesportbible.com/ufc/news-bj-penn-knocked-out-cold-in-one-of-two-bar-fights-in-hawaii-20190828', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/2a868d615d66674218f573c8b8e1dfdf.png', '2019-08-28 13:12:53', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(317, 'the-sport-bible', 'Ryan Sidle', 'Dana White Hits Back At Paige VanZant After Instagram Claims', 'The UFC fighter said she earned more posting on social media than she did in the octagon and wants more money in her next contract.', 'http://www.thesportbible.com/ufc/pub-talk-dana-white-hits-back-at-paige-vanzant-after-instagram-claims-20190828', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/61791cc65d668d6c1794bd4ee562a2ee.png', '2019-08-28 13:07:40', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(318, 'the-sport-bible', 'Josh Lawless', 'Juventus vs Napoli: Live Stream And TV Channel Info For Huge Serie A Clash', 'This one should be an absolute cracker...', 'http://www.thesportbible.com/football/news-juventus-vs-napoli-live-stream-and-tv-channel-info-for-serie-a-clash-20190828', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/566a79255d660667adaca1067ab60608.png', '2019-08-28 12:26:24', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(319, 'the-sport-bible', NULL, 'Guy Cashes Out £1 Accumulator At £200 And It Went On To Win Nearly £100,000', 'This is heartbreaking stuff.', 'http://www.thesportbible.com/news/sport-guy-cashes-out-1-accumulator-worth-nearly-100000-for-just-200-20190826', 'https://images.ladbible.com/thumbnail?type=jpeg&url=http://beta.ems.ladbiblegroup.com/s3/content/494f82c15d64aa2a057c69d4221dcc01.png&quality=70&width=808', '2021-04-10 08:59:44', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(320, 'the-sport-bible', 'Ryan Sidle', 'Bury FC Have Been Expelled From The EFL', 'The League One side have had all of their games suspended up to now but have no failed to meet a second deadline to sell the club.', 'http://www.thesportbible.com/football/news-bury-fc-have-been-expelled-from-the-efl-20190827', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/0bb079b75d654f14eec508e0ffc957eb.png', '2019-08-27 14:16:21', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(321, 'the-sport-bible', 'Ryan Sidle', 'Everton Fan Claims Liverpool Are \'Doping\' To Make Players Better', 'The fan of Liverpool\'s rivals thinks the form of Sadio Mane, Mo Salah, Virgil van Dijk and even Luis Suarez is proof enough.', 'http://www.thesportbible.com/football/funny-foul-play-rivalries-everton-fan-claims-liverpool-are-doping-to-make-players-better-20190826', 'http://beta.ems.ladbiblegroup.com/s3/content/808x455/6cdb9d495d63fcaee1d87d5463c13737.png', '2019-08-26 05:26:33', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(322, 'the-sport-bible', NULL, 'Zlatan Ibrahimovic Says He Will Return To Manchester United If They Need Him', '\"I could still play easily in the Premier League. If United need me, I’m here.\"', 'http://www.thesportbible.com/football/reactions-news-legends-zlatan-ibrahimovic-says-he-will-return-to-man-utd-if-they-need-him-20190828', 'https://images.ladbible.com/thumbnail?type=jpeg&url=http://beta.ems.ladbiblegroup.com/s3/content/5b3ab3c55d66b9ce87615d10efc307ba.png&quality=70&width=808', '2021-04-10 08:59:44', '2021-04-06 08:44:50', '2021-04-10 08:59:44'),
(323, 'business-insider-uk', 'Linette Lopez', 'I don\'t know how many times and ways I can tell you people to get off Facebook', 'The company\'s recent data breach by low level hackers is just the latest demonstration that company could not care less about its users.', 'http://uk.businessinsider.com/facebook-data-breach-proves-you-get-off-social-media-platform-2021-4', 'https://i.insider.com/606c87e02556c5001894791f?width=1200&format=jpeg', '2021-04-06 08:47:52', '2021-04-06 09:03:10', '2021-04-06 09:11:58'),
(324, 'business-insider-uk', 'Robin Madell', 'An MBA helped a consultant get job offers from Apple, EY, and HP', 'Lisa Andrea was able to quickly pay off her student loans after getting her MBA and landed her dream job at HP.', 'http://uk.businessinsider.com/mba-part-time-consultant-job-offers-apple-ey-hp-2021-4', 'https://i.insider.com/606b2519a7d803001963eb8e?width=1200&format=jpeg', '2021-04-06 08:14:42', '2021-04-06 09:03:11', '2021-04-06 09:11:58'),
(325, 'the-wall-street-journal', 'Eliza Collins', 'Kyrsten Sinema Defends Filibuster as Pressure Mounts From Progressives', 'Arizona Democrat says the problem is senators’ behavior, not the chamber’s rules', 'https://www.wsj.com/articles/kyrsten-sinema-defends-filibuster-as-pressure-mounts-from-progressives-11617714005?mod=hp_lead_pos7', 'https://images.wsj.net/im-319867/social', '2021-04-06 05:00:00', '2021-04-06 09:03:35', '2021-04-06 09:03:35'),
(326, 'the-wall-street-journal', 'Rachael Levy', 'Shooting in Maryland Leaves Two Injured and Suspect Dead, Frederick Police Say', 'Residents are warned to avoid the area', 'https://www.wsj.com/articles/maryland-shooting-leaves-two-injured-suspect-dead-11617719578?mod=hp_lead_pos11', 'https://images.wsj.net/im-321060/social', '2021-04-06 06:32:00', '2021-04-06 09:03:36', '2021-04-06 09:03:36'),
(327, 'the-wall-street-journal', 'Eliza Collins', 'Longtime Congressman Alcee Hastings Dies at 84', 'Democrat was first Black federal judge in Florida but was impeached and removed from federal bench before being elected to House', 'https://www.wsj.com/articles/longtime-congressman-alcee-hastings-dies-at-84-11617720461?mod=hp_lead_pos12', 'https://images.wsj.net/im-321002/social', '2021-04-06 06:47:00', '2021-04-06 09:03:36', '2021-04-06 09:03:36'),
(328, 't3n', 'Dieter Petereit', 'KI macht Blindenhund ersetzbar: Robodogs führen besser, sagen Forscher', 'In Kalifornien arbeiten Forscher der Universität Berkeley daran, den Blindenhund zu ersetzen. Dazu setzen sie', 'https://t3n.de/news/ki-macht-blindenhund-ersetzbar-1370907/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/31-march-robotic-guide-dogs.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 06:51:30', '2021-04-06 09:30:47', '2021-04-06 09:30:47'),
(329, 't3n', 'Dieter Petereit', '770 Kilometer mit einer Akkuladung: Mercedes EQS greift Tesla Model S an', 'Der neue Mercedes EQS soll mit seiner besonders hohen Reichweite von 770 Kilometern Teslas Model S und dem noc', 'https://t3n.de/news/770-km-akkuladung-mercedes-eqs-1370862/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/21C0174-011.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 05:59:19', '2021-04-06 09:30:47', '2021-04-06 09:30:47'),
(330, 't3n', 'Andreas Floemer', 'Android 12: Diese Smartphones sollen das große Update erhalten', 'Android 12 ist offiziell angekündigt worden. Bis zum finalen Release vergehen zwar noch ein paar Monate, denno', 'https://t3n.de/news/android-12-update-smartphone-liste-uebersicht-april-1358796/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/02/android-12-screen-4.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 05:00:00', '2021-04-06 09:30:47', '2021-04-06 09:30:47'),
(331, 't3n', 'Jörn Brien', 'SUV mit Krebsgang: Neuer E-Hummer von GM kann auch seitwärts fahren', 'General Motors (GM) hat eine SUV-Variante seines vollelektrischen Hummer vorgestellt. Der E-SUV soll wie die P', 'https://t3n.de/news/seitwaerts-fahren-hummer-e-suv-1370656/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/hummer-ev-suv.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 04:40:17', '2021-04-06 09:30:47', '2021-04-06 09:30:47'),
(332, 't3n', 'Kim Rixecker', 'Clubhouse: Nutzerinnen und Nutzer können über die Plattform jetzt Geld verdienen', 'Clubhouse erhält erstmals eine Bezahlfunktion. Mit der sollen Nutzerinnen und Nutzer ihre Lieblings-Talker dir', 'https://t3n.de/news/clubhouse-geld-verdienen-spendenfunktion-1370823/', 'https://assets.t3n.sc/news/wp-content/uploads/2021/04/clubhouse.jpg?auto=format&h=&ixlib=php-2.3.0&w=', '2021-04-06 04:40:14', '2021-04-06 09:30:47', '2021-04-06 09:30:47'),
(333, 'financial-times', NULL, 'Pandemic will leave little lingering damage for big economies, says IMF', 'Success in managing fallout will not be replicated in emerging economies, fund forecasts', 'https://www.ft.com/content/b3d04ff2-89f9-457c-806a-8618c8516580', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fdab54a5b-8aff-4b35-86c0-53001c7b9167.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:13', '2021-04-06 09:32:13', '2021-04-06 09:32:13'),
(334, 'financial-times', NULL, '‘The rich shouldn’t feel like the enemy’: Is New York turning on the wealthy?', 'Progressives want the richest residents to pay more tax to help repair the city. But some are threatening to leave for Florida.', 'https://www.ft.com/content/22c9b76b-ea36-4c8c-8cae-1bbb104098d2', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F335565fe-4e37-4bfb-91ab-420ab13b4003.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:13', '2021-04-06 09:32:13', '2021-04-06 09:32:13'),
(335, 'financial-times', NULL, 'Coronavirus latest: CDC says risk of infection from surfaces less than one in 10,000', '', 'https://www.ft.com/content/a4cf97fe-e350-4c31-8837-2fb6b6e47f6e', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F20a71630-e6f3-441b-ae9b-75cbfe5c214f.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:13', '2021-04-06 09:32:13', '2021-04-06 09:32:13'),
(336, 'financial-times', NULL, 'Biden to direct US states to expand vaccine eligibility by April 19', 'New deadline comes as US president seeks to further accelerate pace of Covid jabs', 'https://www.ft.com/content/8ca9c24d-a824-4efb-b5d7-2cb4d2a2a086', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fb78903ae-f4c7-4607-b7ba-94498c30b733.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:13', '2021-04-06 09:32:13', '2021-04-06 09:32:13'),
(337, 'financial-times', NULL, 'Credit Suisse risk chief to leave after Archegos and Greensill losses', 'Investment banking boss is also out in shake-up', 'https://www.ft.com/content/c10d0b81-f2ef-48c3-8e9c-17419f4af21b', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F1071d40d-4dd2-4ad1-be52-5253028fd549.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:13', '2021-04-06 09:32:13', '2021-04-06 09:32:13');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(338, 'financial-times', NULL, 'Italian and French banks revive ‘doom loop’ fears with bond buying', 'Exposure to own countries’ sovereign debt reawakens concern over faultline in Europe’s monetary union', 'https://www.ft.com/content/fde7833a-8283-45b8-97ae-9104e1c974cd', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F766a2232-a807-48bb-8b26-6dbfda209d38.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:14', '2021-04-06 09:32:14', '2021-04-06 09:32:14'),
(339, 'financial-times', NULL, '‘Some hid in the sea’: Islamist attack on Mozambique town a turning point in Africa’s ignored war', 'French group Total suspends work at gas plant near Palma despite authorities’ claims order has been restored', 'https://www.ft.com/content/48373faa-b77d-43f5-b4dc-4fd6221e57c3', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F84022f2f-033d-453b-a5f7-819200351222.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:14', '2021-04-06 09:32:14', '2021-04-06 09:32:14'),
(340, 'financial-times', NULL, 'Why ranking employees by performance backfires', 'The ‘forced distribution’ model used by many companies is an outdated idea that should be scrapped', 'https://www.ft.com/content/0691002c-2200-4583-88c9-9c942d534228', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F315df9d2-1981-44d4-b062-d85f49855410.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:14', '2021-04-06 09:32:14', '2021-04-06 09:32:14'),
(341, 'financial-times', NULL, 'Biden shows that only moderates can govern from the left', 'The US president’s reassuring blandness frees him to do big things', 'https://www.ft.com/content/0e6d1438-afde-4cc6-bdec-164d813daeaa', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Ff434a1cf-98bf-48c3-b1d7-b6a6367ee7cd.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:14', '2021-04-06 09:32:14', '2021-04-06 09:32:14'),
(342, 'financial-times', NULL, 'Investors scoop up huge returns from companies’ crisis-era bonds', 'One year on from pandemic-induced markets tumult, those that gambled on hobbled groups are rewarded', 'https://www.ft.com/content/2de01274-bf03-4788-ab94-c26189b9baea', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fabebc6df-ca3a-4515-88e7-67c60c8c0d74.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-06 09:32:14', '2021-04-06 09:32:14', '2021-04-06 09:32:14'),
(343, 'abc-news-au', 'ABC News', 'Six doctors, CNN correspondent detained outside Alexei Navalny\'s prison', 'Six supporters of Alexei Navalny are detained outside his prison, where they are staging a rolling protest demanding the Kremlin critic be allowed to see a doctor of his choice.', 'http://www.abc.net.au/news/2021-04-07/alexei-navalny-doctor-detained-prison-russia/100052100', 'https://live-production.wcms.abc-cdn.net.au/e8c0ebbac40017da2d5ae4829585fca6?impolicy=wcms_crop_resize&cropH=2347&cropW=4172&xPos=0&yPos=218&width=862&height=485', '2021-04-06 06:11:58', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(344, 'abc-news-au', 'ABC News', 'Gunmen attack Nigerian prison, leading to escape of 1,800 inmates in Owerri', 'The attackers, who were carrying rocket-propelled grenades, machine guns and rifles, use explosives to blast the administrative block and enter the prison yard.', 'http://www.abc.net.au/news/2021-04-06/1-800-inmates-escape-from-nigerian-prison/100052090', 'https://live-production.wcms.abc-cdn.net.au/1bc25e97debce984968c306e6d5824f0?impolicy=wcms_crop_resize&cropH=1378&cropW=2449&xPos=0&yPos=252&width=862&height=485', '2021-04-06 05:35:04', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(345, 'abc-news-au', 'Jade Macmillan', 'Former Australia Post CEO Christine Holgate alleges she was \'unlawfully\' stood down in Senate submission', 'Christine Holgate argues she was \"unlawfully\" stood down before being abandoned to a \"media firestorm\" after it was revealed four employees had received luxury watches as a reward for securing a lucrative contract.', 'http://www.abc.net.au/news/2021-04-06/former-australia-post-boss-christine-holgate-senate-submission/100051768', 'https://live-production.wcms.abc-cdn.net.au/f62079df5f27f8b3962bbaae853b31bd?impolicy=wcms_crop_resize&cropH=1620&cropW=2889&xPos=111&yPos=128&width=862&height=485', '2021-04-06 02:07:04', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(346, 'abc-news-au', 'ABC News', 'Queensland to host New South Wales in Sheffield Shield final after finishing top of standings', 'After playing out a draw on Tuesday, the Bulls will have home-ground advantage when they face the Blues again in the Shield decider starting on Thursday.', 'http://www.abc.net.au/news/2021-04-06/cricket-queensland-to-host-nsw-in-sheffield-shield-final/100051926', 'https://live-production.wcms.abc-cdn.net.au/b9aafaa01617d434c80e5f801ae77930?impolicy=wcms_crop_resize&cropH=1029&cropW=1826&xPos=0&yPos=162&width=862&height=485', '2021-04-06 01:12:01', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(347, 'abc-news-au', 'ABC News', 'Remains of chainsaw murder victim Wade Dunn found in WA Wheatbelt', 'The remains of Wade Dunn, who was bashed to death and dismembered with a chainsaw, are found in a remote nature reserve near the tiny WA Wheatbelt town of Wannamal.', 'http://www.abc.net.au/news/2021-04-06/remains-of-murder-victim-wade-dunn-found-in-wa-wheatbelt/100051898', 'https://live-production.wcms.abc-cdn.net.au/56825d0bc504522d318072be925ba8b6?impolicy=wcms_crop_resize&cropH=203&cropW=361&xPos=0&yPos=83&width=862&height=485', '2021-04-06 01:06:27', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(348, 'abc-news-au', 'ABC News', 'Fifteen men arrested in NT, WA and QLD in multi-agency operation targeting online child predators', 'A multi-agency operation makes multiple arrests across three jurisdictions during a large-scale, three-month operation between Northern Territory, Queensland and Australian Federal Police.', 'http://www.abc.net.au/news/2021-04-06/fifteen-men-arrested-from-nt-wa-qld-in-police-online-operation/100051222', 'https://live-production.wcms.abc-cdn.net.au/36fde847a312435db2d5c9029e9b97ee?impolicy=wcms_crop_resize&cropH=1069&cropW=1909&xPos=91&yPos=68&width=862&height=485', '2021-04-06 00:54:45', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(349, 'abc-news-au', 'Markus Mannheim', 'Electricity prices are falling. So why are Canberrans\' household power bills about to rise?', 'ACT households have been paying among the lowest electricity prices in Australia, but the energy market is now turning on them.', 'http://www.abc.net.au/news/2021-04-06/why-canberra-electricity-bills-are-about-to-increase/100050232', 'https://live-production.wcms.abc-cdn.net.au/058ec89e71ed727210596ff5ffff0ff8?impolicy=wcms_crop_resize&cropH=1650&cropW=2934&xPos=264&yPos=506&width=862&height=485', '2021-04-05 20:48:21', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(350, 'abc-news-au', 'Markus Mannheim', 'Canberrans wrongly believe mobile speed cameras exist to raise revenue. This is how they\'re really used', 'The \"revenue-raising\" myth is just that: a myth. But this is what might happen if the government actually tried to make money.', 'http://www.abc.net.au/news/2021-04-05/act-speed-cameras-as-revenue-raisers/100037994', 'https://live-production.wcms.abc-cdn.net.au/79684227cb921fa44e643f21fe472f00?impolicy=wcms_crop_resize&cropH=2813&cropW=5000&xPos=0&yPos=260&width=862&height=485', '2021-04-04 12:48:09', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(351, 'abc-news-au', 'Daniel Miles', 'Keppel Prince boilermaker leads last-ditch effort to save mates\' wind farm jobs', 'When boilermaker Dean Wombwell packs his bag and flies to Canberra next week, he\'ll be thinking of 42 mates back home who just lost their jobs.', 'http://www.abc.net.au/news/2021-04-04/keppel-prince-boilermaker-fights-for-western-vicorian-wind-farm/100043364', 'https://live-production.wcms.abc-cdn.net.au/34852a77ed82a0698e4120679e64dc9d?impolicy=wcms_crop_resize&cropH=486&cropW=863&xPos=39&yPos=154&width=862&height=485', '2021-04-03 15:59:29', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(352, 'abc-news-au', 'Tahlia Roy', 'Multicultural community leaders say COVID-19 vaccine misinformation failing to be dispelled by government programs', 'These community leaders say current government programs are failing to dispel vaccine myths in multicultural communities, so they are doing it themselves.', 'http://www.abc.net.au/news/2021-04-04/multicultural-community-leaders-dispelling-covid-vaccine-myths/100047204', 'https://live-production.wcms.abc-cdn.net.au/9718f61176ed294150a54c8cdfb145eb?impolicy=wcms_crop_resize&cropH=540&cropW=960&xPos=0&yPos=0&width=862&height=485', '2021-04-03 14:34:24', '2021-04-06 09:33:33', '2021-04-06 09:33:33'),
(353, 'four-four-two', 'PA Staff', 'Celtic may have to wait for Eddie Howe despite Dominic McKay’s early arrival', '', 'https://www.fourfourtwo.com/news/celtic-may-have-to-wait-for-eddie-howe-despite-dominic-mckays-early-arrival-1617727727000', 'https://cdn.mos.cms.futurecdn.net/bM9bmkDMHd4oKmuFckDAfm-1200-80.jpg', '2021-04-06 08:48:47', '2021-04-06 09:33:42', '2021-04-06 09:33:42'),
(354, 'four-four-two', 'PA Staff', 'FPL tips: Saints’ immaculate performance is hidden in the data', '', 'https://www.fourfourtwo.com/news/fpl-tips-saints-immaculate-performance-is-hidden-in-the-data-1617725262000', 'https://cdn.mos.cms.futurecdn.net/H56aAiK5LoCnYSzvSx9vQV-1200-80.jpg', '2021-04-06 08:07:42', '2021-04-06 09:33:42', '2021-04-06 09:33:42'),
(355, 'four-four-two', 'PA Staff', 'The key talking points ahead of Chelsea’s Champions League clash with Porto', '', 'https://www.fourfourtwo.com/news/the-key-talking-points-ahead-of-chelseas-champions-league-clash-with-porto-1617725050000', 'https://cdn.mos.cms.futurecdn.net/otE2qyrmepjLRstwra4fxg-1200-80.jpg', '2021-04-06 08:04:10', '2021-04-06 09:33:42', '2021-04-06 09:33:42'),
(356, 'reddit-r-all', NULL, 'Say hello to Abnomaly SHOP. 🏡 SHOP is a well-loved room fragrance initially formulated to bring a sense of familiarity to DECIEM stores around the world, by creating a shared experience between each of the stores our teams call home. This familiar, warm scent has now been bottled and made availa...', 'Abnomaly SHOP capturing the essence of DECIEM\'s abnormal yet welcoming space', 'https://alb.reddit.com/cr?z=gAAAAABgbGeba51UXOmStfRz1O8Vz_UMylOb57tHHaCeXSe3TkLOyCS74eZrkRfrWHhFrOQqXzfcHSB4uELT88J4doL7tXuUSiGI72bCOCHHqDZO3a-DHHd6PXikkEAoffFxMOjbFhgXrlb-zcU_NKJEddcCqua20Fu867WrsGRcFkQlzykgZ_DucrBbL_tjkbnLsQHDYr7Oy5DY_7a4--8atMfhFdkA8N_k8tIqaYDNljALsMj-n3LaGk204Fxskzs4zplSFnMY-KInbDb_Rqrdt589hr89cn2CnzywnFVU_Qxab1MdqPyiYnBMVS0JMteR5dwGzpubpynVmX0o3LU-sVO-lRlUuv35NZOaM5beJvYxCkn4Q18rMtQbTLfmXhdraVw3QBfzO5hLXihpzlpgfebQGL7i5NK9_knN-4GLl6QMcnIair2kiA8m4TuXXvIn2yqgJxpVaT85Cw40ttZ306ghU4XGpv9junchC3BxI6pYzFX-L_i4Q6CKqu0PzlSWrDTCf5594lJKIlAxbwK0CR_9QuATW6fhOZvrU8j9z4BeRInRwoLmFMsrtyQrQa__q8sLAS9dZYmhj9oCzO6RHR1biCeuiYjZ1LUFRVRIyd7ayid8YBUfAkJkyj9ut54utViFZ8buPw0R2DYa1DsFkO3FvHegIzExJ23t96c3H_TzskxXa0gFDUoCqUcoCgCi-xnxTppyViE2NWlKP75pBnhHFbVYlMVfQjMU37OHMW4qkRic7Tpm92IvogQIU7XSNnUk7sK0uPlCpIO961HhIXRBeSa0ovwg-oNLZwG7xdojlJ0UsjK8UauC9V3M6z2SDCWiuPOgei2aUAMEjlMVDb_JMGZy_lYOAtmEvoC5SvqZ3173l26Afn62epOT0JeeTbbySAQpvLVfMCEz7JbMoIV1R1cbOrfay4dekvtQMJqfSksKfAkNSuSELR1i6noQMoWw4Lyo9QeVnn2AAKWoa16hytuMtUjI55m5CUszgxVSNiRirIOhU3j31UGIY6oSuLQ9XHOqM0x487zibzd3JCTLDS9_wqM4o8Rqn0OjrgaCxdfMVjKNdsVJflhXbRbYQvSgpVAu38W0Ao32WzPKK0_5J2HzWgFRcwrS54xs2ARIP6v4uiGHDNYalQ2IU26iGEmwlr9-xOzCAo0izpN_LN7JVC04rg==', NULL, '2021-04-06 09:43:35', '2021-04-06 09:43:35', '2021-04-06 09:43:35'),
(357, 'reddit-r-all', NULL, 'r/mildlyinteresting - My hometown in SE Alaska... where you can grocery shop and whale watch at the same time.', '17,476 votes and 202 comments so far on Reddit', 'https://www.reddit.com/r/mildlyinteresting/comments/ml71yg/my_hometown_in_se_alaska_where_you_can_grocery/', 'https://preview.redd.it/adbl4jcglir61.jpg?auto=webp&s=0b51cb067d483a094db6639205c92d10f7a46197', '2021-04-06 09:43:35', '2021-04-06 09:43:35', '2021-04-06 09:43:35'),
(358, 'reddit-r-all', NULL, 'r/mildlyinfuriating - Sunlight through the window melted my keyboard', '12,747 votes and 411 comments so far on Reddit', 'https://www.reddit.com/r/mildlyinfuriating/comments/ml7643/sunlight_through_the_window_melted_my_keyboard/', 'https://preview.redd.it/jlniytf5nir61.jpg?auto=webp&s=62e1931c2c391835ccf5663f968e7d16e094fec9', '2021-04-06 09:43:35', '2021-04-06 09:43:35', '2021-04-06 09:43:35'),
(359, 'reddit-r-all', NULL, 'r/PrequelMemes - True', '20,590 votes and 403 comments so far on Reddit', 'https://www.reddit.com/r/PrequelMemes/comments/ml7pll/true/', 'https://preview.redd.it/mkfp1vyouir61.jpg?auto=webp&s=f36030f31e66505f7ebe869ae68074e40623522f', '2021-04-06 09:43:35', '2021-04-06 09:43:35', '2021-04-06 09:43:35'),
(360, 'national-geographic', NULL, 'Episode 3: Why War Zones Need Science Too', 'Undaunted by Yemen’s civil war, National Geographic explorer Ella Al-Shamahi searches on the island of Socotra for traces of the earliest known humans to leave Africa.', 'https://www.nationalgeographic.com/podcasts/overheard/season-5/episode-3-why-war-zones-need-science.html', 'https://www.nationalgeographic.com/content/dam/ngdotcom/rights-exempt/podcasts/Overheard/season5/episode3/nationalgeographic_2708459.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(361, 'national-geographic', 'Steve Nadis', 'A new sensation: recording and reproducing taste', 'Meiji University scientist has found a way to reproduce taste, just as we’ve long been able to do for sight and sound.', 'https://www.nationalgeographic.com/science/2021/02/partner-content-recording-and-reproducing-taste.html', 'https://www.nationalgeographic.com/content/dam/travel/commercial/2021/NGPAsia/Meiji/Article3/invoking-taste.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(362, 'national-geographic', 'Maryellen Kennedy Duckett', 'Go island-hopping in Palawan, the Philippines', 'With a dazzling array of activities and safety protocols in place, this leafy archipelago could be a good option for a “new normal” getaway.', 'https://www.nationalgeographic.com/travel/destinations/asia/philippines/partner-content-go-island-hopping-in-Palawan-Philippines.html', 'https://www.nationalgeographic.com/content/dam/travel/commercial/2021/NGPAsia/PDOT/Article3/double-outrigger-boats-called-banca-in-palawan-philippines.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(363, 'national-geographic', 'Amy McKeever, National Geographic Staff', 'U.S. has secured 200 million more doses of COVID-19 vaccines', 'These are the COVID-19 vaccine prospects that have made it to phase three trials and beyond.', 'https://www.nationalgeographic.com/science/health-and-human-body/human-diseases/coronavirus-vaccine-tracker-how-they-work-latest-developments-cvd.html', 'https://www.nationalgeographic.com/content/dam/science/2021/01/25/vaccine-tracker/vaccine-1230603423.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(364, 'national-geographic', 'Christina Nunez', 'Can robots help keep us safe?', 'Automated machines are increasingly common—here’s where you might see them next.', 'https://www.nationalgeographic.com/science/2021/01/paid-content-can-robots-keep-us-safe.html', 'https://www.nationalgeographic.com/content/dam/science/commercial/2021/domestic/Knightscope/knightscope_dsc02447.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(365, 'national-geographic', 'Nadia Drake', 'How these feuding map-makers shaped our fascination with Mars', 'One was an artist who loved space. His rival was a bold professional astronomer. Their race to map the red planet sparked decades of science and speculation.', 'https://www.nationalgeographic.com/science/2021/02/how-feuding-map-makers-shaped-our-fascination-with-mars.html', 'https://pmdvod.nationalgeographic.com/NG_Video/788/579/smpost_1612381336455.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(366, 'national-geographic', NULL, 'Why mapping Mars completely changed how we see it', 'Mars has drawn our attention for millennia, and it was when we started mapping the planet that we began to see it as a place, and a destination. Early mapmaking led to scientific discoveries—and a few far-fetched theories—which changed how we see the planet today.', 'https://www.nationalgeographic.com/science/2021/02/why-mapping-mars-completely-changed-how-we-see-it.html', 'https://www.nationalgeographic.com/content/dam/video/rights-exempt/og/nge-mapping-mars-2021-1.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(367, 'national-geographic', NULL, 'Bonus Episode: In Conversation: Reframing Black History and Culture', 'National Geographic presents In Conversation, a special podcast episode featuring explorer Tara Roberts, computer scientist Gloria Washington, and photographer Ruddy Roye. Through their dynamic work across maritime archeology, artificial intelligence, and photojournalism, they’re determined to reimagine Black history.', 'https://www.nationalgeographic.com/podcasts/overheard/season-5/bonus-conversation-reframing-black-history-culture-month.html', 'https://www.nationalgeographic.com/content/dam/ngdotcom/rights-exempt/podcasts/Overheard/season5/bonusBHM/collage-3portraits2.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(368, 'national-geographic', 'Heather Greenwood Davis', 'Families are leading a new wave in Black travel. Here’s why', 'For many parents, showing their kids the world is about both the past and the future.', 'https://www.nationalgeographic.com/travel/2021/02/the-importance-of-travel-for-black-families.html', 'https://www.nationalgeographic.com/content/dam/travel/2021-digital/black-family-travel/black-family-travel-2.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(369, 'national-geographic', NULL, '3-ton parts of Stonehenge may have been carried from earlier monuments', 'Years of archaeological research now suggest that Neolithic Britons lugged massive elements of the iconic monument from far-flung reaches of the island.', 'https://www.nationalgeographic.com/history/2021/02/3-ton-parts-stonehenge-may-carried-from-earlier-monuments.html', 'https://www.nationalgeographic.com/content/dam/archaeologyandhistory/2021/02/stonehenge-waun-mawn/05-waun-mawn-stonehenge.jpg', '2021-04-08 07:12:30', '2021-04-07 06:20:01', '2021-04-08 07:12:30'),
(370, 'fortune', 'Aaron Pressman', 'What’s Apple up to next?', 'Apple is rumored to be developing augmented reality glasses, a self-driving car, and other cool new gadgets but CEO Tim Cook isn\'t saying what\'s next.', 'https://fortune.com/2021/04/07/whats-apple-up-to-next/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1178685494-e1617798610902.jpg?resize=1200,600', '2021-04-07 05:55:01', '2021-04-07 06:20:18', '2021-04-07 06:20:18'),
(371, 'fortune', 'Kristen Bellstrom, Emma Hinchliffe', 'Women are playing a growing role in leading the global economy', 'From Janet Yellen to Christine Lagarde to Kristalina Georgieva to Ngozi Okonjo-Iweala, women are taking over important economic posts that once belonged to men.', 'https://fortune.com/2021/04/07/women-are-playing-a-growing-role-in-leading-the-global-economy/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1230855166.jpg?resize=1200,600', '2021-04-07 04:58:06', '2021-04-07 06:20:18', '2021-04-07 06:20:18'),
(372, 'fortune', 'Alan Murray, David Meyer', 'Genentech CEO Alexander Hardy: COVID-19 means being ‘fast and flexible’', 'But how can Big Pharma maintain these skills?', 'https://fortune.com/2021/04/07/genentech-ceo-alexander-hardy-covid-19-means-being-fast-and-flexible-ceo-daily/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1231918033.jpg?resize=1200,600', '2021-04-07 02:30:21', '2021-04-07 06:20:18', '2021-04-07 06:20:18'),
(373, 'fortune', 'Bernhard Warner', 'With stocks touching all-time highs, Wall Street believes there’s a new rally in the making', 'Treasury yields are subdued, and futures are bouncing off their session lows.', 'https://fortune.com/2021/04/07/with-stocks-touching-all-time-highs-wall-street-believes-theres-a-new-rally-in-the-making/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1307641079.jpg?resize=1200,600', '2021-04-07 01:08:18', '2021-04-07 06:20:18', '2021-04-07 06:20:18'),
(374, 'fortune', 'Sheryl Estrada', 'Red Hat’s CFO on why she switched from nursing to numbers', '\"When we look at technology investments, we don\'t make them in a vacuum,\" Laurie Krebs said.', 'https://fortune.com/2021/04/07/red-hats-cfo-on-why-she-switched-from-nursing-to-numbers/', 'https://content.fortune.com/wp-content/uploads/2021/04/CFO-Daily_Laurie-Krebs_RedHat.jpg?resize=1200,600', '2021-04-07 01:00:00', '2021-04-07 06:20:19', '2021-04-07 06:20:19'),
(375, 'fortune', 'David Z. Morris, Sy Mukherjee', 'Buy a COVID vaccine, get an HIV vaccine for free?', 'Government-funded research made COVID-19 vaccines possible. Now the same tech could help fight HIV - and even cancer.', 'https://fortune.com/2021/04/06/basic-research-funding-covid-vaccine/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-658072731.jpg?resize=1200,600', '2021-04-06 13:31:02', '2021-04-07 06:20:19', '2021-04-07 06:20:19'),
(376, 'fortune', 'Jerry Dischler', 'I’m in charge of ads at Google. Here’s how we can restore trust in the ad industry', 'Americans are concerned about their data privacy. Google\'s ad chief explains how ending third-party cookies can restore trust.', 'https://fortune.com/2021/04/06/google-third-party-cookies-privacy-sandbox/', 'https://content.fortune.com/wp-content/uploads/2021/04/Commentary-Restore-Trust-in-Internet-GettyImages-525956404.jpg?resize=1200,600', '2021-04-06 01:00:00', '2021-04-07 06:20:19', '2021-04-08 06:22:22'),
(377, 'fortune', 'Tammy Sun', '‘Equal pay’ won’t be truly equal until fertility care is covered', 'Employers need to address the huge out-of-pocket costs that IVF treatments and egg-freezing impose on working women.', 'https://fortune.com/2021/04/05/fertility-care-benefits-ivf-egg-freezing-equal-pay-act/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1174453560-e1617633225693.jpg?resize=1200,600', '2021-04-05 09:30:56', '2021-04-07 06:20:19', '2021-04-08 06:22:22'),
(378, 'fortune', 'Lance Fritz, Don Lindsay, Juan Gallardo Thurlow', 'North American partnership is key to defeating COVID and accelerating recovery', 'Commentary: Fully implementing the USMCA agreement will help North American countries to cooperate in fighting COVID-19.', 'https://fortune.com/2021/04/05/north-america-usmca-covid-cooperation/', 'https://content.fortune.com/wp-content/uploads/2021/03/Commentary-North-America-Partnership.jpg?resize=1200,600', '2021-04-05 01:00:00', '2021-04-07 06:20:19', '2021-04-08 06:22:22'),
(379, 'fortune', 'Kislaya Prasad', 'Unless the U.S. changes its vaccine policy, the world will look at us like hoarders', 'Commentary: While the U.S. focuses on keeping COVID vaccines for itself, China, India, and Russia are distributing them globally.', 'https://fortune.com/2021/04/04/us-vaccine-hoarding-nationalism-diplomacy-china-russia-india/', 'https://content.fortune.com/wp-content/uploads/2021/04/web_GettyImages-1231831255.jpg?resize=1200,600', '2021-04-04 05:00:00', '2021-04-07 06:20:19', '2021-04-07 06:20:19'),
(380, 'wired-de', 'GQ', 'Bentley Continental GT Speed: Neues Luxus-Coupé schafft 335 km/h', 'W12-Power, 659 PS, 335 km/h Topspeed: Der Bentley Continental GT Speed wird seinem Namen mehr als gerecht. Nie war das Luxus-Coupé schneller!', 'https://www.gq-magazin.de/auto-technik/article/bentley-continental-gt-speed-2021-schnellstes-luxus-coupe', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/bentley-continental-gt-speed-luxus-auto-aufmjpg.jpg', '2021-03-24 04:37:04', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(381, 'wired-de', 'Benedikt Sauer', 'Samsung: Neue Smartphones bieten Oberklasse-Features für jeden', 'Mit der Enthüllung des Galaxy A52 und A72 zeigt Samsung, dass Smartphones mit Oberklasse-Features auch zum attraktiven Preis zu haben sind.', 'https://www.gq-magazin.de/auto-technik/article/samsung-galaxy-a-serie-mittelklasse-smartphones-mit-oberklasse-features', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/samsung-galaxy-a52-a72-neue-smartphones-technik-aufmjpg.jpg', '2021-03-17 23:30:00', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(382, 'wired-de', 'GQ', 'Apple Neuheiten: Was wir vor der ersten Keynote 2021 wissen!', 'Bald soll es so weit sein: Bei der ersten Keynote 2021 präsentiert Apple Neues aus Cupertino. Auf diese Produkte dürfen wir uns freuen!', 'https://www.gq-magazin.de/auto-technik/article/apple-neuheiten-2021-das-wissen-wir-vor-keynote', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/apple-neuheiten-event-erste-keynote-2021-technik-aufmjpg.jpg', '2021-03-23 09:09:52', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(383, 'wired-de', 'GQ', 'Amazon Echo Show 10: So wird der Smart Speaker zur Videokamera', 'Der neue Amazon Echo Show 10 kommt endlich nach Deutschland – mit einer brandneuen Funktion: Der Smart Speaker dient auch als Überwachungskamera!', 'https://www.gq-magazin.de/auto-technik/article/amazon-echo-show-10-smart-speaker-ueberwachungskamera', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/amazon-echo-show-10-smart-speaker-videokamera-technik-aufmjpg.jpg', '2021-03-18 08:14:37', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(384, 'wired-de', 'GQ', 'BMW i4: Alles zu Design, Leistung und Verkaufsstart des E-Coupés', 'Der BMW i4 lässt sein Tarnkleid fallen: Endlich wissen wir, wie das vollelektrische Coupé aussieht – und auch zur Performance gibt es News.', 'https://www.gq-magazin.de/auto-technik/article/bmw-i4-e-coupe-erste-bilder-design-leistung-verkaufsstart', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/bmw-i4-erste-bilder-e-coupe-auto-aufmjpg.jpg', '2021-03-19 13:23:26', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(385, 'wired-de', 'Ricardo Vizcaino', 'Audi Q4 e-tron: Blick in den Innenraum – noch vor Weltpremiere!', 'Zumindest ein Geheimnis zum neuen Audi Q4 e-tron ist schon jetzt gelüftet: So sieht es im Innenraum des elektrischen Kompakt-SUV aus.', 'https://www.gq-magazin.de/auto-technik/article/audi-q4-e-tron-elektrischer-kompakt-suv-innenraum', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/audi-q4-e-tron-vorserie-auto-aufmjpg.jpg', '2021-03-09 01:00:00', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(386, 'wired-de', 'Ralf Bernert', 'Porsche Taycan Cross Turismo: Der E-Porsche mit Offroad-Genen', 'So kennen wir den Taycan: E-Antrieb, E-Beschleunigung und E-Motion. Mit der Modellvariante Porsche Taycan Cross Turismo kommen neue Skills dazu.', 'https://www.gq-magazin.de/auto-technik/article/porsche-taycan-cross-turismo-e-sportwagen-mit-offroad-kompetenz', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/porsche-taycan-cross-turismo-e-auto-neuheit-aufmjpg.jpg', '2021-03-06 00:00:00', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(387, 'wired-de', 'Ralf Bernert', 'Fahrbericht Audi RS e-tron GT: Das kann der Audi-Porsche', 'Der schicke Bruder des ersten e-tron ist ein GT im besten Sinne – und als RS-Variante noch dynamischer. Wir haben den Audi RS e-tron GT getestet.', 'https://www.gq-magazin.de/auto-technik/article/audi-rs-e-tron-gt-im-test-e-auto-fahrbericht', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/E-TronGTAufmacherjpg.jpg', '2021-03-03 12:01:15', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(388, 'wired-de', 'GQ', 'Volvo C40 Recharge: Dieses E-SUV schreit nach Sportlichkeit', 'Volvo setzt auf emissionsfreies Fahren: Mit dem vollelektrischen C40 Recharge präsentiert der schwedische Automobilhersteller sein zweites E-SUV.', 'https://www.gq-magazin.de/auto-technik/article/volvo-c40-recharge-zweites-e-suv-feiert-premiere', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/volvo-c40-recharge-e-auto-neuheit-aufmjpg.jpg', '2021-03-03 08:40:18', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(389, 'wired-de', 'Felix J. Strohbach', 'Pininfarina Battista E-Hypercar: Stärker als Bugatti, teurer als Bentley', 'Exklusiver kann ein Hypercar nicht sein – und das ohne Verbrennungsmotor. Der Pininfarina Battista ist ein E-Sportler mit GT-Komfort.', 'https://www.gq-magazin.de/auto-technik/article/pininfarina-battista-elektrisches-hypercar-leistung-preis-reichweite', 'https://res.cloudinary.com/wired-de/image/upload/t_teaser_square/v1/0/pininfarina-battista-elektrischer-supersportwagen-hypercar-auto-aufmjpg.jpg', '2021-03-02 03:33:54', '2021-04-07 07:04:56', '2021-04-22 19:30:58'),
(390, 'engadget', 'https://www.engadget.com/about/editors/billy-steele', 'THX\'s Onyx is a tiny USB-C headphone DAC that supports master-quality audio | Engadget', 'THX\'s first consumer hardware is a portable USB-C DAC that gives wired headphones a powerful audio upgrade for $200.', 'https://www.engadget.com/thx-onyx-dac-amp-announced-specs-price-140015870.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/494d5230-973f-11eb-9ede-ac0ee87e1c00', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(391, 'engadget', 'https://www.engadget.com/about/editors/richard-lawler', 'Feds allege actor\'s $690 million Ponzi scheme lied about selling movies to Netflix | Engadget', 'A small-time actor has been arrested and charged with fraud for allegedly stealing hundreds of millions from investors by claiming he could sell film rights to Netflix and HBO.', 'https://www.engadget.com/netflix-ponzi-scheme-010056535.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-01/3db4d370-6301-11eb-ba3e-51b81ca43e1d', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(392, 'engadget', 'https://www.engadget.com/about/editors/daniel-cooper', 'Ring brings its radar-scanning tech to a floodlight camera | Engadget', 'The new floodlight camera lets you see a breadcrumb trail of someone\'s path to your door.', 'https://www.engadget.com/ring-floodlight-camera-radar-birds-eye-view-133002075.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/e72ec240-96f4-11eb-bf5d-cb6f0a354ef8', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(393, 'engadget', 'https://www.engadget.com/about/editors/saqib-shah', 'Tesla takes to Chinese social media to ease local spying fears | Engadget', 'Tesla is using its Chinese social media page to assuage local spying fears after its cars were banned from the country\'s military facilities and select state-owned companies.', 'https://www.engadget.com/tesla-chinese-social-media-spying-fears-131002911.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-03/c3cb6100-88c6-11eb-9d7f-78f0e0f3b9ed', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(394, 'engadget', 'https://www.engadget.com/about/editors/billy-steele', 'The best wireless headphones you can buy right now | Engadget', 'Here\'s a list of the best wireless headphones you can buy right now, as reviewed by Engadget editors.', 'https://www.engadget.com/best-headphones-150030794.html', 'https://s.yimg.com/os/creatr-uploaded-images/2020-05/ddfad300-9487-11ea-bdef-c51572eba315', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(395, 'engadget', 'https://www.engadget.com/about/editors/violet-blue', 'Encrypted messages aren\'t the same as private thoughts. | Engadget', 'A judge recently claimed that encrypted messages are similar to private thoughts. We, and the FBI, bed to differ.', 'https://www.engadget.com/encrypted-chat-is-not-like-a-private-thought-143100321.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/ba477010-9794-11eb-be7d-e851afa346e3', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(396, 'engadget', 'https://www.engadget.com/about/editors/chris-velazco', 'Samsung’s new Galaxy A phone lineup includes its cheapest 5G model yet | Engadget', 'Between the Galaxy S21 series and the foldables it plans to release later this year, Samsung is pretty much set with premium smartphones. For anyone who doesn’t want to drop flagship levels of cash, though, Samsung just pulled back the curtain on a bevy of new affordable models for the US, including the company’s cheapest 5G smartphone yet.', 'https://www.engadget.com/samsung-galaxy-a52-5g-galaxy-a42-galaxy-a32-galaxy-a12-galaxy-a02s-140017341.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/d1bce6d0-97a8-11eb-baee-1220f349268a', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(397, 'engadget', 'https://www.engadget.com/about/editors/jon-fingas', 'European privacy group claims Android\'s ad-tracking code is illegal | Engadget', 'A privacy campaigner has filed a complaint in France claiming that Google\'s Android Advertising Identifier violates EU law.', 'https://www.engadget.com/google-android-ad-tracking-complaint-134216420.html', 'https://s.yimg.com/os/creatr-uploaded-images/2020-10/11c76ea0-1a84-11eb-bfef-701ecbd78495', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(398, 'engadget', 'https://www.engadget.com/about/editors/devindra-hardawar', 'Alienware\'s M15 and Dell\'s G15 gaming laptops are getting AMD Ryzen CPUs | Engadget', 'Dell is finally bringing AMD CPUs back to its gaming laptops on the Alienware M15 and Dell G15.', 'https://www.engadget.com/alienware-m15-dell-g15-amd-ryzen-cpu-130014937.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/dcaa79b0-975b-11eb-99ba-8465ebf4c9bc', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(399, 'engadget', 'https://www.engadget.com/about/editors/saqib-shah', 'UK launches new watchdog to govern the dominance of Big Tech | Engadget', 'The UK has launched its Digital Markets Unit, a new watchdog tasked with ensuring that the likes of Facebook and Google cannot abuse their power to block out competitors.', 'https://www.engadget.com/uk-digital-markets-unit-big-tech-watchdog-120600740.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/2b509f30-9794-11eb-a6ff-b0a1e5ddce2a', '2021-04-07 07:07:28', '2021-04-07 07:07:28', '2021-04-07 07:07:28'),
(400, 'bbc-sport', 'BBC Sport', 'Liverpool duo receive racist abuse online', 'Liverpool say racist abuse on social media \"cannot be allowed to continue\" after Trent Alexander-Arnold and Naby Keita are both targeted.', 'http://www.bbc.co.uk/sport/football/56660496', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/91B0/production/_117869273_nk_taa_get.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(401, 'bbc-sport', 'BBC Sport', 'De Bruyne signs Man City deal to 2025', 'Manchester City midfielder Kevin de Bruyne signs a new deal running until 2025 with the Premier League leaders.', 'http://www.bbc.co.uk/sport/football/56659261', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/FE2A/production/_117866056_kdb_epa.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(402, 'bbc-sport', 'BBC Sport', 'Why another Anfield rescue act looks beyond Liverpool now', 'Liverpool have a rich history of turning around Champions League ties at Anfield, says ex-Reds defender Mark Lawrenson, but it is hard to see a revival against Real Madrid next week.', 'http://www.bbc.co.uk/sport/football/56657141', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/A498/production/_117863124_liverpoolforwardmohamedsalah.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(403, 'bbc-sport', 'BBC Sport', 'Foden has final word over rival Haaland', 'On a night when headlines were focused on Borussia Dortmund superstar Erling Braut Haaland, it was Manchester City\'s Phil Foden who had the final word.', 'http://www.bbc.co.uk/sport/football/56657985', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/17148/production/_117863549_hi066629866.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(404, 'bbc-sport', 'BBC Sport', 'McIlroy trying to look at \'big picture\'', 'Northern Ireland\'s Rory McIlroy says he is looking at the \"big picture\" after enlisting the help of swing coach Pete Cowen.', 'http://www.bbc.co.uk/sport/golf/56657415', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/A4FC/production/_117863224_whatsubject.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(405, 'bbc-sport', 'BBC Sport', 'Is \'sweet\' Pepe\'s fearsome reputation unfair?', 'Called sweet by those who know him, is Porto and former Real Madrid defender Pepe\'s reputation for a perceived lack of sportsmanship unfair?', 'http://www.bbc.co.uk/sport/football/56559147', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/132FA/production/_117768587_pepe.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(406, 'bbc-sport', 'BBC Sport', 'Curry shines as Warriors end losing run', 'Stephen Curry scores 41 points as the Golden State Warriors beat the Milwaukee Bucks 122-121 to end their three-match losing streak.', 'http://www.bbc.co.uk/sport/basketball/56659775', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/3364/production/_117865131_curry_getty.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(407, 'bbc-sport', 'BBC Sport', 'Haaland appears to sign autograph for official', 'Erling Braut Haaland has become such a superstar that even match officials appear to want his autograph.', 'http://www.bbc.co.uk/sport/football/56657945', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/11D56/production/_117864037_haaland.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(408, 'bbc-sport', 'BBC Sport', 'Ibrahimovic in Milan contract talks', 'AC Milan striker Zlatan Ibrahimovic is in talks to sign a contract extension with the club.', 'http://www.bbc.co.uk/sport/football/56659447', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/13D18/production/_117867118_ibrahimovic_getty2.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(409, 'bbc-sport', 'BBC Sport', 'Middlesbrough to host England friendlies', 'Middlesbrough\'s Riverside Stadium will host two England friendlies in preparation for this summer\'s European Championship.', 'http://www.bbc.co.uk/sport/football/56659374', 'https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/14EC/production/_117865350_boro_getty.jpg', '2021-04-07 07:31:36', '2021-04-07 07:30:59', '2021-04-07 07:31:36'),
(410, 'bloomberg', NULL, 'Egypt Says No Progress in Nile Dam Talks With Ethiopia, Sudan', '', 'https://www.bloomberg.com/news/articles/2021-04-06/egypt-says-no-progress-made-in-latest-nile-dam-talks', NULL, '2021-04-06 04:15:41', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(411, 'bloomberg', NULL, 'Carousell Bets on Second-Hand Car Marketplace to Boost Revenue', '', 'https://www.bloomberg.com/news/articles/2021-04-07/carousell-bets-on-second-hand-car-marketplace-to-boost-revenue', NULL, '2021-04-06 19:22:00', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(412, 'bloomberg', NULL, 'EPA\'s New Chief Gets to Work on Climate Goals—and Hiring Scientists', '', 'https://www.bloomberg.com/news/articles/2021-04-07/epa-s-chief-details-climate-goals-and-hiring-700-scientists', NULL, '2021-04-07 00:00:07', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(413, 'bloomberg', NULL, 'Ex-SocGen Bankers Challenge Fines Over Putin Foe Sergei Pugachyov\'s Accounts', '', 'https://www.bloomberg.com/news/articles/2021-04-07/ex-socgen-bankers-challenge-fines-over-putin-foe-s-700-million', NULL, '2021-04-07 02:14:08', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(414, 'bloomberg', NULL, 'Tiny Singapore Accounts for One-Third of Global Cruise Travelers', '', 'https://www.bloomberg.com/news/articles/2021-04-07/tiny-singapore-accounts-for-one-third-of-global-cruise-travelers', NULL, '2021-04-06 21:40:00', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(415, 'bloomberg', NULL, 'Derek Chauvin Was Trained to Defuse Situations, Police Official Says at Trial', '', 'https://www.bloomberg.com/news/articles/2021-04-06/police-chief-fired-cop-broke-policy-in-pinning-floyd', NULL, '2021-04-06 15:40:19', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(416, 'bloomberg', NULL, 'Arkansas Lawmakers Enact Transgender Youth Treatment Ban', '', 'https://www.bloomberg.com/news/articles/2021-04-06/arkansas-lawmakers-enact-transgender-youth-treatment-ban', NULL, '2021-04-06 11:05:43', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(417, 'bloomberg', NULL, 'Bloomberg', '', 'https://www.bloomberg.com/news/audio/2021-04-06/sound-on-ceo-s-oppose-ga-voting-law-podcast', NULL, '2021-04-06 14:02:54', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(418, 'bloomberg', NULL, 'Covid: Not Even a Fourth Wave Can Crush Vaccine Optimism Now', '', 'https://www.bloomberg.com/opinion/articles/2021-04-06/covid-not-even-a-fourth-wave-can-crush-vaccine-optimism-now', NULL, '2021-04-06 08:30:07', '2021-04-07 07:41:39', '2021-04-07 07:41:39'),
(419, 'bloomberg', NULL, 'Iceland Volcano Eruption Spurs Safety Warning Over Lava Flow', '', 'https://www.bloomberg.com/news/articles/2021-04-06/iceland-volcano-eruption-triggers-safety-warning-from-met-office', NULL, '2021-04-06 06:07:29', '2021-04-07 07:41:40', '2021-04-07 07:41:40'),
(420, 'polygon', 'Michael McWhertor', 'Street Fighter 5’s Oro always carries his pet turtle with him', 'Street Fighter 5: Champion Edition’s Season 5 DLC adds Rose, Oro, and Akira from Rival Schools. In Capcom’s Street Fighter 5 Spring Update video, we get a look at Oro in action, and how he uses his pet turtle in fights.', 'https://www.polygon.com/22371685/street-fighter-5-oro-dlc-release-date-rose-akira-preview', 'https://cdn.vox-cdn.com/thumbor/12IKSzEA0UnlZjCEvZ9eGQoasPY=/0x0:1920x1005/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22426710/oro_sf5.jpg', '2021-04-07 07:30:00', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(421, 'polygon', 'Nicole Carpenter', 'Unbeatable is a stylish rhythm adventure game where music is illegal', 'Developer D-Cell Games reached its Kickstarter goal on Wednesday, with 30 days to go on the project. Its rhythm game, Unbeatable, looks incredible.', 'https://www.polygon.com/22371606/unbeatable-kickstarter-trailer-d-cell-games', 'https://cdn.vox-cdn.com/thumbor/BhPrYe-AUbcqLXoXmnj7oR13ORw=/0x136:1885x1123/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22426580/Screenshot__236_.png', '2021-04-07 06:21:59', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(422, 'polygon', 'Michael McWhertor', 'Pac-Man 99, a new battle royale game, comes to Nintendo Switch today', 'Pac-Man 99, a new battle royale game based on classic Pac-Man, will be released as a Nintendo Switch Online exclusive on April 7. Watch the first trailer here.', 'https://www.polygon.com/22371536/pac-man-99-battle-royale-nintendo-switch-online-exclusive-release-date', 'https://cdn.vox-cdn.com/thumbor/Xi1zI4DKZkxxFx9vypVaW0sYg-E=/0x25:1280x695/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22426517/screenshot01.jpeg', '2021-04-07 05:26:08', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(423, 'polygon', 'Nicole Carpenter', 'Overwatch pro describes ‘terrifying’ anti-Asian racism in Dallas', 'Dallas Fuel player Lee “Fearless” Eui-seok spoke on stream about racism he’s experienced as an Overwatch League player in the U.S. during the coronavirus pandemic.', 'https://www.polygon.com/22370533/overwatch-league-racism-dallas-texas', 'https://cdn.vox-cdn.com/thumbor/22VGp5LmOqjKnRggm6rTQsUGY3c=/0x110:1536x914/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22425033/Eui_Seok__Fearless__Lee_4_4_18.jpg', '2021-04-06 13:31:16', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(424, 'polygon', 'Michael McWhertor', 'Threes! creator reveals new game Brick Breaker from Vodeo Games', 'Beast Breaker is the debut title from Vodeo Games, a studio founded by Threes! and Guildlings designer Asher Vollmer. Beast Breaker is coming to Nintendo Switch and PC in summer 2021.', 'https://www.polygon.com/22370587/beast-breaker-vodeo-games-asher-vollmer-nintendo-switch-pc', 'https://cdn.vox-cdn.com/thumbor/NMiv_6cKPbU8ucSWnKM8VzdQQI4=/0x102:2555x1440/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22425119/DialogueDandy.jpg', '2021-04-06 13:07:34', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(425, 'polygon', 'Austen Goslin', 'Call of Duty: Warzone’s patch notes: FFAR 1 and AUG nerfs', 'In Call of Duty: Warzone’s latest patch, Raven software brought a second nerf to the AUG, also known as Tactical Rifle Charlie, and nerfed the FFAR 1 as well', 'https://www.polygon.com/call-of-duty/22370452/call-of-duty-warzones-patch-notes-april-6-aug-ffar-1-nerfs', 'https://cdn.vox-cdn.com/thumbor/8lxzsiDNkt85FxrlfXOGDR_VN8M=/0x15:1920x1020/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/19780464/AGB_WZ_LAUNCH_001.jpg', '2021-04-06 12:38:23', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(426, 'polygon', 'Patricia Hernandez', 'Breath of the Wild fans are trying to mount Sidon as fast as possible', 'A speedrun expert debuts a new type of The Legend of Zelda: Breath of the Wild competition wherein players are tasked with riding every type of mount in the game as fast as possible — including fan favorite Sidon. Winners of the competition will get some money for their troubles.', 'https://www.polygon.com/22370369/botw-sidon-lord-of-the-mountain-mount-horses-breath-of-the-wild-speedrun-nintendo-switch', 'https://cdn.vox-cdn.com/thumbor/Z56r3VpSmplIocNLwBcXH9lzuvo=/0x25:1280x695/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/18337690/maxresdefault.jpg', '2021-04-06 11:29:36', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(427, 'polygon', 'Nicole Carpenter', 'Mass Effect: Legendary Edition will fix the Mako’s frustrating controls', 'BioWare’s Mass Effect: Legendary Edition will improve upon the new Mako — the notoriously bouncy and hard-to-control vehicle. Other gameplay changes were announced, too, ahead of the May 14 release date.', 'https://www.polygon.com/22370346/mass-effect-legendary-edition-mako-gameplay-changes-release-date', 'https://cdn.vox-cdn.com/thumbor/tCVGF-L4t8giaTcuus8jVJMXnEg=/0x28:1455x790/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22424869/mele_calibrations_fpo3.jpg.adapt.crop16x9.1455w.jpg', '2021-04-06 11:24:16', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(428, 'polygon', 'Cass Marshall', 'Hearthstone introduces new Warcraft lore in the Book of Mercenaries', 'Hearthstone is diving deeper into the lore of Warcraft with the new Book of Mercenaries. These free campaigns go into the lives of ten adventurers from around Azeroth, from both the Alliance and the Horde, showing their humble beginnings. On April 6, Rokara’s campaign goes live.', 'https://www.polygon.com/22370195/hearthstone-book-of-mercenaries-rokara-launch-free-campaign-content', 'https://cdn.vox-cdn.com/thumbor/a_-l5Ytu1fi9vFoxedrWXBFlHd8=/0x0:3000x1571/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22424743/jnuKUBO.jpg', '2021-04-06 10:43:48', '2021-04-07 07:41:55', '2021-04-07 08:19:36'),
(429, 'polygon', 'Michael McWhertor', 'PlayStation Plus April 2021 free games announced', 'PlayStation Plus subscribers will get access to three games in April 2021: Days Gone, Oddworld: Soulstorm, and Zombie Army 4: Dead War. The trio of PS Plus freebies will be available to download on PS4 and PS5 from April 6 to May 3.', 'https://www.polygon.com/22358702/playstation-plus-april-2021-free-games-list', 'https://cdn.vox-cdn.com/thumbor/1Nn9OafK9kKUN5JC75H8BjC7kas=/0x0:1920x1005/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/10391935/27622484806_8dd6e24a1a_o.jpg', '2021-03-31 07:44:58', '2021-04-07 07:41:55', '2021-04-07 07:41:55'),
(430, 'business-insider-uk', 'Dakin Campbell', 'Burnout at Goldman Sachs\' Marcus is driving a tech talent exodus', 'Burnout at Goldman Sachs\' Marcus is driving a tech talent exodus — just when the billion-dollar business needs these workers the most.', 'http://uk.businessinsider.com/goldman-sachs-marcus-burnout-cloud-tech-hiring-attrition-culture-gs-2021-4', 'https://i.insider.com/606db36630004b0019b265f1?width=1200&format=jpeg', '2021-04-07 05:43:14', '2021-04-07 07:42:01', '2021-04-07 07:52:53'),
(431, 'business-insider-uk', 'Dr. Catherine Schuster-Bruce', '1 in 3 COVID-19 survivors develop neurological, mental-health symptoms', 'Anxiety and mood disorders were the most common neurological and mental health conditions seen in COVID survivors, a study in Lancet Psychiatry found.', 'http://uk.businessinsider.com/one-third-neurological-mental-health-condition-6-month-after-covid-2021-4', 'https://i.insider.com/606d4f2270954f00191958ee?width=1200&format=jpeg', '2021-04-06 22:24:41', '2021-04-07 07:42:01', '2021-04-07 07:52:53'),
(432, 'business-insider-uk', 'Kelly McLaughlin', 'The CDC director said the coronavirus variant first found in the UK is now the dominant strain in the US', 'CDC Director Rochelle Walensky made the comment while speaking at a COVID-19 task force press conference on Wednesday.', 'http://uk.businessinsider.com/cdc-director-says-uk-covid-19-variant-dominant-strain-us-2021-4', 'https://i.insider.com/6039e1e987d37600190d03e4?width=1200&format=jpeg', '2021-04-07 07:15:18', '2021-04-07 07:42:01', '2021-04-07 07:52:53');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(433, 'business-insider-uk', 'Josh Barro', 'Post-COVID pandemic productivity boom will reshape work, boost economy', 'Soon, we\'ll dump the unproductive parts of distance and keep the good parts. Maybe we won\'t need so many new tunnels and airport concourses.', 'http://uk.businessinsider.com/post-covid-pandemic-productivity-boom-will-reshape-work-boost-economy-2021-4', 'https://i.insider.com/606dab3d70954f001919595f?width=1200&format=jpeg', '2021-04-07 05:05:44', '2021-04-07 07:42:01', '2021-04-07 07:52:53'),
(434, 'business-insider-uk', 'Lina Batarags', 'The youngest billionaire in the world right now is a teenager in Germany', 'Forbes\' 35th billionaires list knocked Kylie Jenner from its ranks of youngest billionaires and put 18-year-old Kevin David Lehmann in the top spot.', 'http://uk.businessinsider.com/worlds-youngest-billionaire-teenager-in-germany-forbes-2021-4', 'https://i.insider.com/606d2e1a70954f00191958dd?width=1200&format=jpeg', '2021-04-06 21:22:45', '2021-04-07 07:42:01', '2021-04-07 07:52:53'),
(435, 'business-insider-uk', 'Libertina Brandt', 'How a college student built a mini real-estate empire that nets her more than $40,000 a year from Airbnb', 'Zeona McIntyre rented out her spare room on Airbnb for extra cash and now has five properties on the site that earn her enough to winter in Hawaii.', 'http://uk.businessinsider.com/how-to-make-money-airbnb-boulder-st-louis-real-estate-2021-4', 'https://i.insider.com/6053b790fe6a340019acf6d6?width=1200&format=jpeg', '2021-04-07 05:51:28', '2021-04-07 07:42:02', '2021-04-07 07:52:54'),
(436, 'business-insider-uk', 'Emma Cosgrove', 'Startup AxleHire raises $20 million to dominate meal kit delivery', 'The startup specializes in same-day and next-day shipping for high stakes perishable products — particularly meal kits.', 'http://uk.businessinsider.com/meal-kit-delivery-startup-axlehire-takes-on-ups-and-fedex-2021-4', 'https://i.insider.com/606c6308a7d803001963eec8?width=1200&format=jpeg', '2021-04-07 02:00:00', '2021-04-07 07:42:02', '2021-04-07 07:52:54'),
(437, 'business-insider-uk', 'Shoshy Ciment, Madeline Stone', 'Instacart, GOAT among Andreessen Horowitz top e-commerce marketplaces', 'Top platforms include Instacart, Valve, and Hipcamp and were determined from consumer behavior data measured by Bloomberg Second Measure.', 'http://uk.businessinsider.com/instacart-goat-among-andreessen-horowitz-top-e-commerce-marketplaces-2021-4', 'https://i.insider.com/602ebfd542b84000192f43fd?width=1200&format=jpeg', '2021-04-07 05:14:11', '2021-04-07 07:42:02', '2021-04-07 07:52:54'),
(438, 'business-insider-uk', 'Emma Reynolds', 'The ultra-wealthy are installing wild home amenities', 'Billionaire developer Adnan Sen said his clients have increased their budgets 30% for perks like pizza ovens, med spas, and golf simulators.', 'http://uk.businessinsider.com/ultra-wealthy-installing-luxury-home-amenities-spas-theaters-2021-4', 'https://i.insider.com/606c72972556c50018947883?width=1200&format=jpeg', '2021-04-07 06:44:16', '2021-04-07 07:42:02', '2021-04-07 07:52:54'),
(439, 'business-insider-uk', 'Harry Robertson', 'The buyer of Beeple\'s $69 million artwork now says NFTs are a huge risk as talk of a bubble grows', 'Vignesh Sundaresan bought Beeple\'s non-fungible token artwork for $69 million, but has added his voice to the warnings about the market.', 'https://markets.businessinsider.com/news/stocks/nft-market-outlook-huge-risk-beeple-buyer-bubble-vignesh-sundaresan-2021-4-1030282090', 'https://images2.markets.businessinsider.com/606dbec830004b0019b2662b?format=jpeg', '2021-04-07 08:54:02', '2021-04-07 07:42:02', '2021-04-07 07:52:54'),
(440, 'the-times-of-india', 'TIMESOFINDIA.COM', '\'Deplorable\': Centre slams Maharashtra, some other states for spreading panic about vaccine availability', 'India News: NEW DELHI: Union health minister Harsh Vardhan on Wednesday lashed out at Maharashtra and some other state governments for their remarks about the Cov.', 'http://timesofindia.indiatimes.com/india/deplorable-centre-slams-maharashtra-some-other-states-for-spreading-panic-about-vaccine-availability/articleshow/81952792.cms', 'https://static.toiimg.com/thumb/msid-81952967,width-1070,height-580,imgsize-157904,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-06 23:47:00', '2021-04-07 07:44:03', '2021-04-07 07:54:49'),
(441, 'the-times-of-india', 'AP', 'UK agency: Under-30s to be offered non-AstraZeneca vaccine', 'UK News: The United Kingdom\'s drug regulator says the AstraZeneca vaccine has huge benefits but people under 30 will be offered another product due to a rare b', 'http://timesofindia.indiatimes.com/world/uk/uk-agency-under-30s-to-be-offered-non-astrazeneca-vaccine/articleshow/81954338.cms', 'https://static.toiimg.com/thumb/msid-81954408,width-1070,height-580,imgsize-1827565,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-07 01:12:00', '2021-04-07 07:44:03', '2021-04-07 07:54:49'),
(442, 'the-times-of-india', 'TIMESOFINDIA.COM', 'Covid: India surpasses US to become fastest vaccinating country in the world', 'India News: With more than 30 lakh Covid-19 vaccine jabs administered in a day, India on Wednesday became the fastest country in the world to vaccinate against th', 'http://timesofindia.indiatimes.com/india/with-more-than-30-lakh-jabs-a-day-india-becomes-fastest-country-to-vaccinate-against-covid-19/articleshow/81948250.cms', 'https://static.toiimg.com/thumb/msid-81948500,width-1070,height-580,imgsize-78958,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-06 19:20:00', '2021-04-07 07:44:03', '2021-04-07 07:54:49'),
(443, 'the-times-of-india', 'Times Of India', 'Coronavirus live updates: Lockdown in Chhattisgarh\'s Raipur from April 9 to April 19', 'The number of new coronavirus cases in India hit a record daily high since the outbreak of the pandemic with over 1.15 lakh new infections being reported in a span of 24 hours, pushing the nationwide Covid-19 tally to 1,28,01,785, according to the Union health ministry data updated on Wednesday.', 'http://timesofindia.indiatimes.com/india/second-wave-coronavirus-cases-in-india-covid-19-vaccine-live-updates/liveblog/81922710.cms', 'https://static.toiimg.com/thumb/msid-81922710,width-1070,height-580,imgsize-438939,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-05 09:20:12', '2021-04-07 07:44:03', '2021-04-07 07:54:49'),
(444, 'the-times-of-india', 'ANI', 'IPL 2021: Mumbai Indians will win the tournament, feels Michael Vaughan', 'Cricket News: Former England skipper Michael Vaughan feels Mumbai Indians will win the 14th edition of the Indian Premier League (IPL), which gets underway from Fri', 'http://timesofindia.indiatimes.com/sports/cricket/ipl/top-stories/ipl-2021-mumbai-indians-will-win-the-tournament-feels-michael-vaughan/articleshow/81951264.cms', 'https://static.toiimg.com/thumb/msid-81951299,width-1070,height-580,imgsize-124256,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-06 22:02:00', '2021-04-07 07:44:03', '2021-04-07 07:54:49'),
(445, 'the-times-of-india', 'PTI', 'Chhattisgarh: Complete lockdown in Raipur district from April 9 to 19', 'In view of the recent surge in Covid-19 cases, the Chhattisgarh government on Wednesday announced a lockdown in Raipur district with effect from April', 'http://timesofindia.indiatimes.com/city/raipur/chhattisgarh-lockdown-in-raipur-district-from-april-9-to-19/articleshow/81952774.cms', 'https://static.toiimg.com/thumb/msid-81952812,width-1070,height-580,imgsize-32149,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-06 23:32:00', '2021-04-07 07:44:03', '2021-04-07 07:54:49'),
(446, 'the-times-of-india', 'ANI', 'Watch: Punjab Kings\' Chris Gayle flaunts \'Moon Walk\' after finishing quarantine', 'Cricket News: Punjab Kings batsman Chris Gayle has finished his mandatory seven-day quarantine ahead of the upcoming edition of the Indian Premier League (IPL) whic', 'http://timesofindia.indiatimes.com/sports/cricket/ipl/top-stories/watch-punjab-kings-chris-gayle-flaunts-moon-walk-after-finishing-quarantine/articleshow/81953880.cms', 'https://static.toiimg.com/thumb/msid-81953883,width-1070,height-580,imgsize-108909,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-07 00:46:00', '2021-04-07 07:44:03', '2021-04-07 07:44:03'),
(447, 'bbc-news', 'BBC News', 'EU drug regulator: Unusual blood clot \'very rare AstraZeneca side effect\'', 'The EU\'s medicines regulator finds the benefits of the Covid-19 vaccine outweigh the risks.', 'http://www.bbc.co.uk/news/world-europe-56665150', 'https://ichef.bbci.co.uk/news/1024/branded_news/642F/production/_117874652_mediaitem117874651.jpg', '2021-04-07 07:44:47', '2021-04-07 07:44:47', '2021-04-07 07:44:47'),
(448, 'bbc-news', 'BBC News', 'Does China\'s \'one-child generation\' want more kids?', 'The government is considering dropping birth limits in some parts to offset an ageing population.', 'http://www.bbc.co.uk/news/world-asia-56608495', 'https://ichef.bbci.co.uk/images/ic/400xn/p09cxll1.jpg', '2021-04-07 07:44:47', '2021-04-07 07:44:47', '2021-04-07 07:44:47'),
(449, 'bbc-news', 'BBC News', 'Why Utah is making men pay women\'s pregnancy costs', 'Fathers in Utah will soon be legally obligated to foot half the bill of a mother\'s pregnancy.', 'http://www.bbc.co.uk/news/world-us-canada-56654289', 'https://ichef.bbci.co.uk/news/1024/branded_news/16324/production/_117861909_pregnancylaw-index5.jpg', '2021-04-07 07:44:47', '2021-04-07 07:44:47', '2021-04-07 07:44:47'),
(450, 'bbc-news', 'BBC News', 'Pharrell Williams calls for investigation after cousin shot dead by police', 'The Grammy-winning artist\'s cousin, Donovon Lynch, was shot and killed in Virginia by police.', 'http://www.bbc.co.uk/news/newsbeat-56594434', 'https://ichef.bbci.co.uk/news/1024/branded_news/CB9F/production/_117772125_gettyimages-468070544.jpg', '2021-04-07 07:44:47', '2021-04-07 07:44:47', '2021-04-07 07:44:47'),
(451, 'bbc-news', 'BBC News', '\'Strong\' evidence found for a new force of nature', 'Physicists may have just made a major breakthrough in our understanding of the Universe.', 'http://www.bbc.co.uk/news/56643677', 'https://ichef.bbci.co.uk/news/1024/branded_news/DECD/production/_117873075_pic1.jpg', '2021-04-07 07:44:47', '2021-04-07 07:44:47', '2021-04-07 07:44:47'),
(452, 'bbc-news', 'BBC News', 'Hazmat crew called in to clean US house', 'The resident has been dealing with depression and fatigue following a stroke over 20 years ago.', 'http://www.bbc.co.uk/news/world-us-canada-56657399', 'https://ichef.bbci.co.uk/images/ic/400xn/p09cxjb5.jpg', '2021-04-07 07:44:48', '2021-04-07 07:44:48', '2021-04-07 07:44:48'),
(453, 'bbc-news', 'BBC News', 'Imran Khan criticised for rape \'victim blaming\'', 'Pakistan\'s prime minister said women should cover up to avoid \"temptation\".', 'http://www.bbc.co.uk/news/world-asia-56660706', 'https://ichef.bbci.co.uk/news/1024/branded_news/CAB3/production/_114419815_gettyimages-1228468423.jpg', '2021-04-07 07:44:48', '2021-04-07 07:44:48', '2021-04-07 07:44:48'),
(454, 'bbc-news', 'BBC News', 'Covid: AZ blood clots update due as UK starts Moderna jabs', 'European regulators will hold a briefing on the AstraZeneca vaccine as Wales rolls out the Moderna jab.', 'http://www.bbc.co.uk/news/live/uk-56659036', 'https://m.files.bbci.co.uk/modules/bbc-morph-news-waf-page-meta/5.1.0/bbc_news_logo.png', '2021-04-07 07:44:48', '2021-04-07 07:44:48', '2021-04-07 07:44:48'),
(455, 'bbc-news', 'BBC News', 'NYC doormen fired for not intervening in attack', 'The staff are accused of watching an attack on a 65-year-old Asian-American woman in Manhattan.', 'http://www.bbc.co.uk/news/world-us-canada-56647077', 'https://ichef.bbci.co.uk/news/1024/branded_news/8027/production/_117770823_nypd.png', '2021-04-07 07:44:48', '2021-04-07 07:44:48', '2021-04-07 07:44:48'),
(456, 'bbc-news', 'BBC News', 'Arkansas bans transgender youth treatment', 'Arkansas has become the first state to outlaw surgery for transgender people under the age of 18.', 'http://www.bbc.co.uk/news/world-us-canada-56657625', 'https://ichef.bbci.co.uk/news/1024/branded_news/2158/production/_117863580_mediaitem117863576.jpg', '2021-04-07 07:44:48', '2021-04-07 07:44:48', '2021-04-07 07:44:48'),
(457, 'al-jazeera-english', 'Al Jazeera', 'AstraZeneca vaccine comes under further pressure in EU, UK', 'EMA says ‘possible link’ found between jab and blood clots, as UK offers young people alternative shots due to risk.', 'http://www.aljazeera.com/news/2021/4/7/ema-says-possible-link-between-astrazeneca-shot-and-blood-clots', 'https://www.aljazeera.com/wp-content/uploads/2020/09/[email protected]?resize=1200%2C630', '2021-04-07 06:27:19', '2021-04-07 07:45:22', '2021-04-07 07:45:22'),
(458, 'al-jazeera-english', 'Al Jazeera', 'Another grim day of record new COVID cases in India', 'India hits a new peak with 115,736 cases reported in the past 24 hours as New Delhi and other cities impose curfews.', 'http://www.aljazeera.com/gallery/2021/4/7/in-pictures-india-sees-another-record-day-of-new-virus-cases', 'https://www.aljazeera.com/wp-content/uploads/2021/04/AP_21092446462304.jpg?resize=1200%2C630', '2021-04-07 00:32:37', '2021-04-07 07:45:22', '2021-04-07 07:45:22'),
(459, 'al-jazeera-english', 'JC Gotinga', 'Argument over porridge reveals Philippines’ COVID fiasco', 'Video of a confused altercation on lockdown rules exposes fundamental errors in the Duterte’s pandemic response.', 'http://www.aljazeera.com/news/2021/4/7/argument-over-porridge-unravels-philippines-covid-fiasco', 'https://www.aljazeera.com/wp-content/uploads/2021/04/000_96Y2LM.jpg?resize=1024%2C630', '2021-04-06 23:46:59', '2021-04-07 07:45:22', '2021-04-07 07:45:22'),
(460, 'al-jazeera-english', 'Al Jazeera', 'Czech PM appoints fourth health minister since start of pandemic', 'The move opens the way for the possible use of Russian and Chinese vaccines in one of Europe’s hardest-hit countries.', 'http://www.aljazeera.com/news/2021/4/7/czech-pm-appoints-fourth-health-minister-since-start-of-pandemic', 'https://www.aljazeera.com/wp-content/uploads/2021/04/2021-03-16T132018Z_187433088_RC2DCM9P5A1G_RTRMADP_3_HEALTH-CORONAVIRUS-EU-AUSTRIA.jpg?resize=1200%2C630', '2021-04-07 05:15:20', '2021-04-07 07:45:22', '2021-04-07 07:45:22'),
(461, 'al-jazeera-english', 'Sam Mednick', 'Corruption claims spark new concerns about aid to South Sudan', 'Months-long investigation uncovers allegations of corruption and reports that the government was bullying aid workers.', 'http://www.aljazeera.com/news/2021/4/7/corruption-claims-spark-new-concerns-about-aid-to-south-sudan', 'https://www.aljazeera.com/wp-content/uploads/2021/04/011A1074-copy.jpg?resize=1200%2C630', '2021-04-06 21:00:42', '2021-04-07 07:45:22', '2021-04-07 07:45:22'),
(462, 'al-jazeera-english', 'Al Jazeera', 'New UK watchdog set to curb Big Tech’s hold over news media', 'Fight between Australia and Facebook over new law forcing tech platforms to pay local news outlets highlights issue.', 'http://www.aljazeera.com/economy/2021/4/7/new-uk-watchdog-set-to-curb-big-techs-hold-over-news-media', 'https://www.aljazeera.com/wp-content/uploads/2019/05/da6db9d45df243f498da6f92beb0d4ab_18.jpeg?fit=1000%2C562', '2021-04-06 22:30:05', '2021-04-07 07:45:22', '2021-04-10 01:52:38'),
(463, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Kaysey Davis\",\"url\":\"https://www.buzzfeed.com/kayseydavis\",\"jobTitle\":\"BuzzFeed Staff\"}]', '29 Things You\'ll Probably Want Around Now That It\'s Warm Outside', 'Because it\'s finally gettin\' hot in here!', 'https://www.buzzfeed.com/kayseydavis/warm-weather-products-canada-2021?origin=hpp', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/6/18/enhanced/1571d4b44e28/original-12752-1617733108-2.jpg?crop=1581:830;0,0%26downsize=1250:*', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(464, 'buzzfeed', NULL, 'WTF Is Happening Today? BuzzFeed Newsletters Can Help!', NULL, 'https://www.buzzfeed.com/newsletters?ref=hplego', NULL, '2021-04-14 07:48:26', '2021-04-07 07:45:53', '2021-04-14 07:48:26'),
(465, 'buzzfeed', 'Natasha Jokic', 'JoJo Siwa Discusses Pansexuality Label', '\"Technically I would say that I am pansexual because that\'s how I have always been my whole life.\"', 'https://www.buzzfeednews.com/article/natashajokic1/jojo-siwa-sexuality-pansexual', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/7/14/enhanced/9fed993dac15/original-529-1617804954-16.jpg?crop=1245:652;0,12', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(466, 'buzzfeed', 'Ben Henry', 'Kendall Jenner Accused Of Throwing Shade At Selena Gomez', '“Tragic how Kendall felt the need to shade Selena.”', 'https://www.buzzfeednews.com/article/benhenry/kendall-jenner-selena-gomez-de-una-vez-dress', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/7/14/enhanced/385d06f95512/original-492-1617804217-25.jpg?crop=1581:830;0,0', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(467, 'buzzfeed', 'Ben Henry', 'Regé-Jean Page Reportedly Not Cast In Superman Show Because He’s Black', '“The lead was expected to invoke a young Henry Cavill.”', 'https://www.buzzfeednews.com/article/benhenry/rege-jean-page-superman-grandfather-krypton', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/7/11/enhanced/02aa2b1bead2/original-295-1617795317-39.jpg?crop=1581:830;0,0', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(468, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Stephen LaConte\",\"url\":\"https://www.buzzfeed.com/stephenlaconte\",\"jobTitle\":\"BuzzFeed Staff\"}]', 'Let\'s Fight About Whether These 13 Controversial Celebrity Behaviors Are Actually Annoying', 'Private planes, plastic surgery, trying to seem ~relatable~, and more.', 'https://www.buzzfeed.com/stephenlaconte/controversial-celebrities-polls', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/5/22/enhanced/3ab9fa2186f6/original-11237-1617660014-80.jpg?crop=1581:830;0,0%26downsize=1250:*', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(469, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Angelica Martinez\",\"url\":\"https://www.buzzfeed.com/angelicaamartinez\",\"jobTitle\":\"BuzzFeed Staff\"}]', 'People Are Sharing The Trends They Are So Over — Do You Agree?', 'C\'mon, I know you have Thoughts™️ on all of these 👀.', 'https://www.buzzfeed.com/angelicaamartinez/overrated-trends-opinion-poll', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/6/17/enhanced/2a2bd208a383/original-12687-1617729390-8.jpg?crop=1243:651;0,43%26downsize=1250:*', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(470, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Clara Wang\",\"url\":\"https://www.buzzfeed.com/claratsacwang\",\"jobTitle\":\"BuzzFeed Contributor\"}]', '19 Differences Between Partying In The US And Partying In Scotland', 'More than just \"whisky\" versus \"whiskey.\"', 'https://www.buzzfeed.com/claratsacwang/differences-between-partying-in-the-us-and-scotland', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/5/18/campaign_images/17d867cd86ca/19-differences-between-partying-in-the-us-and-par-2-10865-1617648486-22_dblbig.jpg', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(471, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Kayla Yandoli\",\"url\":\"https://www.buzzfeed.com/kaylayandoli\",\"jobTitle\":\"BuzzFeed Staff\"}]', 'Which Celebrities Used To Feud, But Are Now On Good Terms With Each Other?', 'There\'s nothing better than when two celebs make up.', 'https://www.buzzfeed.com/kaylayandoli/which-celebrities-had-intense-feuds-but-are-now-friends', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/6/17/enhanced/3ad326a7a76f/original-12808-1617731348-2.jpg?crop=1246:652;4,26%26downsize=1250:*', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(472, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Matt Stopera\",\"url\":\"https://www.buzzfeed.com/mjs538\",\"jobTitle\":\"BuzzFeed Staff\"}]', '34 Things Americans Say That You Probably Didn\'t Even Realize Were Americansisms', 'Apparently Americans are the only ones who drive by cows and always say \"cows.\"', 'https://www.buzzfeed.com/mjs538/things-americans-say-that-are-confusing', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/6/20/tmp/75d42aa2f052/tmp-name-2-12926-1617739942-11_dblbig.jpg', '2021-04-07 07:45:53', '2021-04-07 07:45:53', '2021-04-07 07:45:53'),
(473, 'techcrunch', 'Brian Heater', 'Highlights from Berkeley SkyDeck’s virtual demo day', 'With 17 startups participating, Berkeley SkyDeck’s Demo Day isn’t the largest cohort we’ve seen by any stretch. The collection of companies is, however, defined by a wide range of focuses, from pioneering diabetes treatments to retrofitting autonomous trucking, curated by the SkyDeck’s small …', 'https://techcrunch.com/2021/04/07/highlights-from-berkeley-skydecks-virtual-demo-day/', 'https://techcrunch.com/wp-content/uploads/2021/04/GettyImages-582306698.jpg?w=602', '2021-04-07 07:01:50', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(474, 'techcrunch', 'Mary Ann Azevedo', 'CaptivateIQ raises $46M for its no-code sales commissions platform', 'CaptivateIQ, which has developed a no-code platform to help companies design customized sales commission plans, has raised $46 million in a Series B round led by Accel. Existing backers Amity, S28 Capital, Sequoia, and Y Combinator also participated in the financing, which brings the San Francisco-…', 'https://techcrunch.com/2021/04/07/captivateiq-raises-46m-for-its-no-code-sales-commissions-platform/', 'https://techcrunch.com/wp-content/uploads/2021/04/CaptivateIQ_PR_Assets.png?w=711', '2021-04-07 07:00:49', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(475, 'techcrunch', 'Anthony Ha', 'Authentic Artists is building virtual, AI-powered musicians', 'Chris McGarry, who previously led music integration at Facebook’s Oculus, is taking a new approach to bringing music into the virtual world with his startup Authentic Artists. McGarry pointed to virtual celebrities like Lil Miquela and virtual concerts like Travis Scott’s giant event in…', 'https://techcrunch.com/2021/04/07/authentic-artists/', 'https://techcrunch.com/wp-content/uploads/2021/04/AuthenticArtists-Promo004.jpg?w=710', '2021-04-07 06:37:16', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(476, 'techcrunch', 'Jordan Crook', 'Swyft raises $17.5 million to bring same-day delivery to all the retailers that aren\'t Amazon', 'Thanks to major players like Amazon and Walmart, we’ve become accustomed to next- or same-day delivery. But the pandemic has also renewed our interest in buying from smaller businesses and retailers. Swyft, a company that has just raised $17.5 million in Series A, helps retailers of any size …', 'https://techcrunch.com/2021/04/07/swyft-raises-17-5-million-to-bring-same-day-delivery-to-all-the-retailers-that-arent-amazon/', 'https://techcrunch.com/wp-content/uploads/2021/04/Image-for-Techcrunch.jpeg?w=600', '2021-04-07 06:01:12', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(477, 'techcrunch', 'Alex Wilhelm, Natasha Mascarenhas', 'Saying hello to TechCrunch\'s newest podcast: Found', 'Hello and welcome back to Equity, TechCrunch’s venture capital-focused podcast, where we unpack the numbers behind the headlines. For this week’s deep dive, the Equity team sat down not with external investors or founders, but with two of our own. Yes, this week, for the first time Natasha and Alex…', 'https://techcrunch.com/2021/04/07/found-techcrunch-podcast/', 'https://techcrunch.com/wp-content/themes/techcrunch-2017/images/opengraph-default.png', '2021-04-07 06:00:22', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(478, 'techcrunch', 'Ingrid Lunden', 'Pathlight, a performance management tool for customer-facing teams and the individuals in them, raises $25M', 'The longer we continue to work with either all or part of our teams in remote, out-of-physical-office environments, the more imperative it becomes for those teams to have some tools in place to keep the channels of communication and management open, and for the individuals in those teams to have a …', 'https://techcrunch.com/2021/04/07/pathlight-a-performance-management-tool-for-customer-facing-teams-and-the-individuals-in-them-raises-25m/', 'https://techcrunch.com/wp-content/uploads/2021/02/GettyImages-1215953761.jpg?w=764', '2021-04-07 05:37:43', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(479, 'techcrunch', 'Aria Alamalhodaei', 'Polestar \"will have to question everything\" in order to build the first climate-neutral EV', 'Polestar, the Swedish electric vehicle brand spun out of Volvo Car Group, set on Wednesday a “moonshot goal” of creating the first climate neutral car by 2030. But instead of getting there through more widely-practiced offsetting measures, such as planting trees, the company said it’s going to fund…', 'https://techcrunch.com/2021/04/07/polestar-will-have-to-question-everything-in-order-to-build-the-first-climate-neutral-ev/', 'https://techcrunch.com/wp-content/uploads/2019/02/Polestar-2_Exerior_Side.jpg?w=533', '2021-04-07 05:26:13', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(480, 'techcrunch', 'Matt Burns', 'Have a startup in Detroit? Apply to pitch at TechCrunch\'s Detroit virtual meetup!', 'TechCrunch is coming to Detroit — virtually, at least. On April 15, TechCrunch is hosting a small online event with local venture capitalists, founders and those curious about the growing ecosystem. There will also be a small pitch-off event where Detroit-based startups have three minutes to pitch …', 'https://techcrunch.com/2021/04/07/have-a-startup-in-detroit-apply-to-pitch-at-techcrunchs-detroit-virtual-meetup/', 'https://techcrunch.com/wp-content/uploads/2021/04/detroit-city-spotlight-featured.jpg?w=711', '2021-04-07 05:21:10', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(481, 'techcrunch', 'Anthony Ha', 'Apple shares more details about its imminent App Tracking Transparency feature', 'Apple is sharing more details today about its upcoming App Tracking Transparency feature, which will allow users to control, on an app-by-app level, whether their data is shared for ad-targeting purposes. In a sense, anyone using the current version of iOS can see App Tracking Transparency in actio…', 'https://techcrunch.com/2021/04/07/apple-app-tracking-transparency-details/', 'https://techcrunch.com/wp-content/uploads/2018/05/gettyimages-915808896.jpeg?w=582', '2021-04-07 05:00:54', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(482, 'techcrunch', 'Mary Ann Azevedo', 'Acorns’ new fintech target is debt management with acquisition of Pillar', 'Popular saving and investing app Acorns has acquired Pillar, an AI-powered startup built to help manage student loan debt, in its second acquisition of 2021. New York-based Pillar helps consumers optimize their debt payments by focusing first on student loans. It launched in May 2019 with $5.5 mill…', 'https://techcrunch.com/2021/04/07/acorns-scoops-up-pillar-a-fintech-backed-by-kleiner-perkins/', 'https://techcrunch.com/wp-content/uploads/2021/04/Header-Image-3-2.png?w=764', '2021-04-07 05:00:09', '2021-04-07 07:50:46', '2021-04-07 07:50:46'),
(483, 'new-york-magazine', 'The Editors', 'Welcome to Sleep Week', 'The everything guide to getting the deepest, most comfortable sleep.', 'http://www.thestrategist.co.uk/2021/02/welcome-to-sleep-week.html', 'https://pyxis.nymag.com/v1/imgs/349/5a3/e12f492a012320de9cbb1b3642e2ab9cff-12-uk-lede.1x.rsocial.w1200.jpg', '2021-02-15 02:01:51', '2021-04-07 07:52:48', '2021-04-07 07:52:48'),
(484, 'espn', NULL, 'Nike suspends sponsorship of Deshaun Watson amid sexual assault allegations', 'Nike has suspended its endorsement deal with Deshaun Watson amid the sexual assault and inappropriate behavior allegations made against the Texans quarterback, the company told CNBC on Wednesday..', 'http://espn.go.com/nfl/story/_/id/31208850/nike-suspends-sponsorship-deshaun-watson-amid-sexual-assault-allegations', 'https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0124%2Fr806007_1296x729_16%2D9.jpg', '2021-04-07 05:21:00', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(485, 'espn', NULL, 'Tampa Bay Buccaneers QB Tom Brady realized \'another way\' to achieve success', 'After being the \"new guy\" for the first time since his rookie season with the Patriots, Tom Brady said he realized that \"there\'s another way that people do things\" during his first season with the Bucs, which resulted in his seventh Super Bowl title.', 'http://espn.go.com/nfl/story/_/id/31209336/tampa-bay-buccaneers-qb-tom-brady-realized-another-way-achieve-success', 'https://a3.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0208%2Fr812172_1296x729_16%2D9.jpg', '2021-04-07 07:01:17', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(486, 'espn', 'Jonathan GivonyESPN ', 'Tennessee Vols\' Keon Johnson to declare for NBA draft', 'Keon Johnson, a freshman at Tennessee and the No. 6 prospect in the ESPN 100, is declaring for the NBA draft.', 'http://espn.go.com/nba/story/_/id/31209073/tennessee-vols-keon-johnson-declare-nba-draft', 'https://a2.espncdn.com/combiner/i?img=%2Fphoto%2F2020%2F1211%2Fr788512_1296x729_16%2D9.jpg', '2021-04-07 06:56:00', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(487, 'espn', NULL, 'Dallas Stars coach Rick Bowness rejoining team after false positive for COVID-19', 'After being pulled from the bench midgame Sunday, Stars coach Rick Bowness has been cleared to rejoin the team after recording a false positive on a COVID-19 test.', 'http://espn.go.com/nhl/story/_/id/31209217/dallas-stars-coach-rick-bowness-rejoining-team-false-positive-covid-19', 'https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2020%2F0917%2Fr746979_1296x729_16%2D9.jpg', '2021-04-07 06:41:00', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(488, 'espn', 'John KeimESPN Staff Writer ', 'Washington hires NFL\'s first Latina coordinator of football programs', 'Natalie Dorantes has been hired by the Washington Football Team as coordinator of football programs, the first Latina -- and third woman -- to fill that role in the NFL.', 'http://espn.go.com/nfl/story/_/id/31208443/washington-hires-nfl-first-latina-coordinator-football-programs', 'https://a3.espncdn.com/combiner/i?img=%2Fphoto%2F2020%2F0924%2Fr750208_1296x729_16%2D9.jpg', '2021-04-07 04:01:00', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(489, 'espn', 'Turron DavenportESPN ', 'Jim Schwartz returning to Tennessee Titans as defensive assistant', 'Jim Schwartz, who was the Eagles\' defensive coordinator the past five seasons, has been hired by the Titans as a senior defensive assistant.', 'http://espn.go.com/nfl/story/_/id/31209526/jim-schwartz-returning-tennessee-titans-defensive-assistant', 'https://a1.espncdn.com/combiner/i?img=%2Fphoto%2F2016%2F1003%2Fr135070_1296x729_16%2D9.jpg', '2021-04-07 07:29:00', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(490, 'espn', 'Ohm YoungmisukESPN Staff Writer ', 'DeMarcus Cousins makes LA Clippers debut: \'Best shape I\'ve been in my entire career\'', 'DeMarcus Cousins made his LA Clippers debut Tuesday and said he feels like he\'s \"probably in the best shape I\'ve been in my entire career.\"', 'http://espn.go.com/nba/story/_/id/31207155/best-shape-my-entire-career', 'https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0407%2Fr837103_1296x729_16%2D9.jpg', '2021-04-06 22:42:30', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(491, 'espn', 'Alex ScarboroughESPN Staff Writer ', 'LSU Tigers coach Ed Orgeron says alleged sexual harassment of woman by ex-RB Derrius Guice \'utterly unacceptable\'', 'LSU coach Ed Orgeron told a Louisiana state Senate committee that he considered ex-Tigers RB Derrius Guice\'s alleged sexual harassment in 2017 toward a woman \'utterly unacceptable.\' Orgeron also denied speaking to the woman directly about the matter.', 'http://espn.go.com/college-football/story/_/id/31204635/lsu-tigers-coach-ed-orgeron-says-alleged-sexual-harassment-woman-ex-rb-derrius-guice-utterly-unacceptable', 'https://a3.espncdn.com/combiner/i?img=%2Fphoto%2F2020%2F1207%2Fr786957_1296x729_16%2D9.jpg', '2021-04-06 13:05:00', '2021-04-07 07:53:44', '2021-04-07 07:53:44'),
(492, 'espn', 'Mel Kiper Jr.', 'NFL draft 2021: Mel Kiper, Todd McShay draft dueling superteams of the best prospects', 'Mel and Todd went 22 rounds, putting together rosters of only 2021 draft prospects to compete against each other. Which all-draft team is better?', 'http://espn.go.com/nfl/draft2021/insider/story/_/id/31167135/nfl-draft-2021-mel-kiper-todd-mcshay-draft-dueling-superteams-best-prospects', 'https://a4.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0405%2Fkiper_mcshay_illustration_v3_1296x729.jpg', '2021-04-07 03:15:00', '2021-04-07 07:53:45', '2021-04-07 07:53:45'),
(493, 'techradar', 'Axel Metz', 'Apple VR headset could turn your fingers into holographic controllers', 'Giving Apple the finger', 'https://www.techradar.com/news/apple-vr-headset-could-turn-your-fingers-into-holographic-controllers', 'https://cdn.mos.cms.futurecdn.net/5W4zUXiQHeFAvysyLtqeWf-1200-80.jpg', '2021-04-07 02:17:51', '2021-04-07 07:53:51', '2021-04-07 07:53:51'),
(494, 'techradar', 'David Nield', 'A history of every LG flagship Android phone', 'So long and thanks for all the smartphones', 'https://www.techradar.com/news/a-history-of-every-lg-flagship-android-phone', 'https://cdn.mos.cms.futurecdn.net/yfqK4Fjirxz9qf4krFzLaU-1200-80.jpg', '2021-04-07 03:16:50', '2021-04-07 07:53:51', '2021-04-07 07:53:51'),
(495, 'techradar', 'Adam Vjestica', 'Outriders’ waypoint system is a work of art', 'Opinion: Chase me, chase me', 'https://www.techradar.com/news/outriders-waypoint-system-is-a-work-of-art', 'https://cdn.mos.cms.futurecdn.net/faRg8vS8UHr6WXgHZ2Ks6S-1200-80.jpg', '2021-04-07 01:51:06', '2021-04-07 07:53:51', '2021-04-07 07:53:51'),
(496, 'techradar', 'Cat Ellis', 'Diamondback launches seriously fast new e-bikes for road and gravel', 'Mid-range prices and serious speed', 'https://www.techradar.com/news/diamondback-launches-fast-new-e-bikes-for-road-and-gravel', 'https://cdn.mos.cms.futurecdn.net/wQBsMtEqCkRXvSdsgYDTuL-1200-80.jpg', '2021-04-07 02:05:25', '2021-04-07 07:53:52', '2021-04-07 07:53:52'),
(497, 'techradar', 'Tom Power', 'Why Bill Murray found Ghostbusters: Afterlife \'really hard\' to film', 'Don\'t cross the streams', 'https://www.techradar.com/news/why-bill-murray-found-ghostbusters-afterlife-really-hard-to-film', 'https://cdn.mos.cms.futurecdn.net/Z2BDBDDqo2QatS7L6xWmK5-1200-80.jpg', '2021-04-07 01:16:31', '2021-04-07 07:53:52', '2021-04-07 07:53:52'),
(498, 'techradar', 'Matt Swider', 'Xbox Series X restock: Best Buy, Walmart, Target and Antonline – get it today', 'The Xbox X restock has become elusive in 2021, but we\'re due to see it back in stock at stores in the US today. Here\'s when and where.', 'https://www.techradar.com/news/xbox-series-x-restock-today-antonline-best-buy-target', 'https://cdn.mos.cms.futurecdn.net/8cHjcB8iQjzxkGRr6hsqGd-1200-80.jpg', '2021-04-07 06:39:52', '2021-04-07 07:53:52', '2021-04-07 07:53:52'),
(499, 'the-times-of-india', 'TIMESOFINDIA.COM', 'West Bengal polls: EC notice to Mamata Banerjee for \'communal\' appeal', 'India News: The Election Commission on Wednesday issued a notice to West Bengal chief minister Mamata Banerjee for allegedly seeking votes on \"communal grounds\" d', 'http://timesofindia.indiatimes.com/india/ec-notice-to-mamata-banerjee-for-communal-appeal/articleshow/81954049.cms', 'https://static.toiimg.com/thumb/msid-81953916,width-1070,height-580,imgsize-179523,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-07 00:54:00', '2021-04-07 07:54:49', '2021-04-07 07:54:49'),
(500, 'hacker-news', NULL, 'Particle mystery deepens, as physicists confirm that the muon is more magnetic than predicted', 'Long-standing infinitesimal oddity could be a subtle sign of new particles', 'https://www.sciencemag.org/news/2021/04/particle-mystery-deepens-physicists-confirm-muon-more-magnetic-predicted', 'https://www.sciencemag.org/sites/default/files/styles/article_main_large/public/ca_0409NID_Accelerator_Fermilab_online.jpg?itok=3668XUR1', '2021-04-07 07:05:50', '2021-04-07 07:55:01', '2021-04-07 07:55:01'),
(501, 'hacker-news', 'Oleksandr Koval', 'All C++20 core language features with examples', 'Introduction', 'https://oleksandrkvl.github.io/2021/04/02/cpp-20-overview.html', NULL, '2021-04-02 03:12:00', '2021-04-07 07:55:01', '2021-04-07 07:55:01'),
(502, 'hacker-news', 'markozivanovic', 'Screw it, I\'ll host it myself', 'It\'s all fun and games until someone loses an eye. Likewise, it\'s all fun and games until someone loses access to their private and/or business data because they trusted it to someone else.', 'https://www.markozivanovic.com/screw-it-ill-host-it-myself/', 'https://www.markozivanovic.com/wp-content/uploads/2021/04/mydataflow-3.png', '2021-04-07 05:51:30', '2021-04-07 07:55:01', '2021-04-07 07:55:01'),
(503, 'hacker-news', NULL, 'Dynamicland', 'incubating a humane dynamic medium', 'https://dynamicland.org/', 'https://dynamicland.org/Images/social-thumbnail.jpg', '2021-04-07 07:55:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(504, 'hacker-news', 'Rob Ferguson', 'A bit of XENIX history', 'Retrocomputing and other indulgences', 'http://seefigure1.com/2014/04/15/xenixtime.html', NULL, '2021-04-07 07:55:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(505, 'hacker-news', 'signalapp', 'signalapp/Signal-Server', 'Server supporting the Signal Private Messenger applications on Android, Desktop, and iOS - signalapp/Signal-Server', 'https://github.com/signalapp/Signal-Server/commits/master', 'https://avatars.githubusercontent.com/u/702459?s=400&v=4', '2021-04-07 07:55:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(506, 'hacker-news', NULL, 'Time to regulate AI that interprets human emotions', 'The pandemic is being used as a pretext to push unproven artificial-intelligence tools into workplaces and schools.', 'https://www.nature.com/articles/d41586-021-00868-5', 'https://media.nature.com/lw1024/magazine-assets/d41586-021-00868-5/d41586-021-00868-5_19022884.jpg', '2021-04-07 07:55:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(507, 'hacker-news', NULL, 'I Teach Machiavelli Through His Letters', NULL, 'https://www.exurbe.com/machiavelli-letters/', NULL, '2021-03-03 03:00:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(508, 'hacker-news', NULL, 'What defines a great company culture?', NULL, 'https://twitter.com/danrose999/status/1378393523213373440', NULL, '2021-04-07 07:55:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(509, 'hacker-news', 'https://www.facebook.com/themainichi/', 'Cosmic rays causing 30,000 network malfunctions in Japan each year - The Mainichi', 'TOKYO (Kyodo) -- Cosmic rays are causing an estimated 30,000 to 40,000 malfunctions in domestic network communication devices in Japan every year, a J', 'https://mainichi.jp/english/articles/20210405/p2g/00m/0bu/028000c', 'https://cdn.mainichi.jp/vol1/2021/04/05/20210405p2g00m0bu027000p/0c10.jpg?1', '2021-04-07 07:55:02', '2021-04-07 07:55:02', '2021-04-07 07:55:02'),
(510, 'polygon', 'Ana Diaz', 'Genshin Impact fans start boycott against miHoYo over, well, everything', 'Genshin Impact fans took to Twitter to voice criticisms of miHoYo’s game using the #boycottgenshinimpact hashtag on Twitter. A video of a miHoYo developer using an Indigenous dancer as a reference to animate a Hilichurl resurfaced, and sparked controversy.', 'https://www.polygon.com/22371730/genshin-impact-boycott-mihoyo-twitter-hilichurl', 'https://cdn.vox-cdn.com/thumbor/hVVSLgGWJuFlG_nEfoMuZvYARhM=/0x93:2400x1350/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/22426774/genshinhead.jpg', '2021-04-07 07:45:00', '2021-04-07 08:19:36', '2021-04-07 08:19:36'),
(511, 'handelsblatt', 'Christof Kerkmann, Stephan Scheuer', 'Brand bei OVH: Warum eine Cloud-Strategie so wichtig ist', 'Nach einem Feuer beim französischen IT-Dienstleister OVH sind viele Daten unwiederbringlich verloren. Experten raten Firmen zu Notfallplänen.', 'https://www.handelsblatt.com/technik/it-internet/it-dienstleister-brand-im-rechenzentrum-warum-eine-cloud-strategie-so-wichtig-ist/27074336.html', 'https://www.handelsblatt.com/images/brand-im-ovh-rechenzentrum-im-maerz/27074396/4-format2003.jpg', '2021-04-07 08:00:00', '2021-04-07 08:19:42', '2021-04-07 08:19:42'),
(512, 'handelsblatt', 'René Bender', 'CSU-Maskenaffäre: Unternehmer kommt aus Untersuchungshaft frei', 'L. gilt als eine der Schlüsselfiguren im Komplex um mögliche Korruption beim Verkauf von Schutzmasken. Gegen Auflagen wurde der Haftbefehl außer Vollzug gesetzt.', 'https://www.handelsblatt.com/politik/deutschland/csu-maskenaffaere-ermittlungen-wegen-bestechung-von-politikern-unternehmer-kommt-aus-untersuchungshaft-frei/27074618.html', 'https://www.handelsblatt.com/images/csu-maskenaffaere/27075242/2-format2003.jpg', '2021-04-07 07:58:00', '2021-04-07 08:19:42', '2021-04-07 08:19:42'),
(513, 'handelsblatt', 'Jens Koenen', 'Iata-Chef: Willie Walsh – eine starke Stimme für die Airlines', 'Der Ex-Chef der IAG-Gruppe soll als Generaldirektor des Weltverbands Iata helfen, die Branche aus der Krise zu führen. Die Erwartungen sind hoch.', 'https://www.handelsblatt.com/unternehmen/handel-konsumgueter/neuer-iata-chef-willie-walsh-eine-neue-starke-stimme-fuer-die-fluggesellschaften/27072962.html', 'https://www.handelsblatt.com/images/willie-walsh/27072992/5-format2003.jpg', '2021-04-07 07:19:45', '2021-04-07 08:19:42', '2021-04-07 08:19:42'),
(514, 'handelsblatt', 'Astrid Dörner', 'Klimawandel & Diversity: Blackrock-CEO Larry Fink fordert Kulturwandel', 'CEO Larry Fink kündet nach diversen Skandalen neue Diversity-Initiativen für Blackrock an. In seinem Brief betont er auch den Kampf gegen den Klimawandel.', 'https://www.handelsblatt.com/finanzen/anlagestrategie/trends/vermoegensverwalter-blackrock-chef-fink-fordert-in-aktionaersbrief-einen-kulturwandel/27074514.html', 'https://www.handelsblatt.com/images/larry-fink/27074616/2-format2003.jpg', '2021-04-07 07:10:00', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(515, 'handelsblatt', 'Astrid Dörner', 'Hilferuf der Wall-Street-Banker löst Diskussion über Kulturwandel aus', 'Nachwuchsbanker lösen eine Diskussion über den Kulturwandel der Finanzbranche aus. Wenn sich Banken nicht ändern, könnten sie den Anschluss an andere Konzerne verlieren.', 'https://www.handelsblatt.com/finanzen/banken-versicherungen/banken/investmentbanking-hilferuf-der-wall-street-banker-entfacht-debatte-ueber-die-zukunft-der-finanzwelt/27069178.html', 'https://www.handelsblatt.com/images/zentrale-von-goldman-sachs-in-new-york/27073746/2-format2003.jpg', '2021-04-07 06:48:20', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(516, 'handelsblatt', 'Astrid Dörner', 'JP Morgan: CEO Jamie Diman warnt vor Konkurrenz durch Tech-Firmen', 'Der Chef der größten US-Bank plant Fintech-Übernahmen und erwartet starke Jahre für die US-Wirtschaft. Für die Finanzbranche sieht er jedoch Herausforderungen.', 'https://www.handelsblatt.com/finanzen/banken-versicherungen/banken/aktionaersbrief-jp-morgan-chef-dimon-warnt-vor-konkurrenz-durch-tech-firmen/27074208.html', 'https://www.handelsblatt.com/images/jamie-dimon/27074424/2-format2003.jpg', '2021-04-07 06:45:00', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(517, 'handelsblatt', 'Susanne Schier', 'Was Anleger bei Investments in ETFs beachten sollten', 'Im Niedrigzinsumfeld sind börsengehandelte Indexfonds eine beliebte Anlagealternative. Wer einen ETF sucht, hat dabei meist die Qual der Wahl.', 'https://www.handelsblatt.com/finanzen/anlagestrategie/trends/indexfonds-was-anleger-bei-investments-in-etfs-beachten-sollten/27073232.html', 'https://www.handelsblatt.com/images/bulle-vor-der-boerse-frankfurt/27073242/4-format2003.jpg', '2021-04-07 06:30:00', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(518, 'handelsblatt', 'Jürgen Röder', 'Dow Jones, Nasdaq, S&P 500: US-Anleger kaufen Aktien von Kreuzfahrt-Betreibern', 'Die geplante Entwicklung eines neuartigen Corona-Schnelltests gibt dem Papier von Astrotech Auftrieb. Die Aktien steigen um fast 40 Prozent.', 'https://www.handelsblatt.com/finanzen/maerkte/marktberichte/dow-jones-nasdaq-sundp-500-us-anleger-warten-auf-protokolle-der-us-notenbank-anleger-kaufen-aktien-von-kreuzfahrt-betreibern/27073598.html', 'https://www.handelsblatt.com/images/wall-street/26725014/3-format2003.jpg', '2021-04-07 06:14:26', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(519, 'handelsblatt', 'Handelsblatt', 'IWF unterstützt Devisenmarktinterventionen der SNB', 'Die SNB will durch ihre expansive Geldpolitik eine wirtschaftsschädliche Aufwertung des Frankens unterbinden. Der IWF unterstützt das Vorgehen.', 'https://www.handelsblatt.com/finanzen/geldpolitik/geldpolitik-iwf-unterstuetzt-devisenmarktinterventionen-der-schweizer-notenbank/27074100.html', 'https://www.handelsblatt.com/images/snb/27074308/2-format2003.jpg', '2021-04-07 06:04:03', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(520, 'handelsblatt', 'Anastasia Zejneli, Alisa Swoboda', 'Corona-News', 'Trotz sehr seltener Fälle von Hirnthrombosen empfiehlt die EU-Arzneimittelbehörde Ema uneingeschränkt die Anwendung des Corona-Impfstoffes von Astra-Zeneca.', 'https://www.handelsblatt.com/politik/international/corona-news-ema-keine-einschraenkung-fuer-astra-zeneca-impfstoff-britische-behoerde-empfiehlt-vakzin-nur-fuer-ueber-30-jaehrige/25471608.html', 'https://www.handelsblatt.com/images/file-photo-astrazeneca-covid-19-vaccine-is-seen-at-a-vaccination-centre-in-ronquieres/27074332/2-format2003.jpg', '2021-04-07 06:00:53', '2021-04-07 08:19:43', '2021-04-07 08:19:43'),
(521, 'the-washington-post', NULL, 'Biden speaks on jobs and infrastructure package', 'President Biden on Wednesday delivers remarks on his administration\'s $2 trillion jobs and infrastructure package.', 'https://www.washingtonpost.com/video/politics/biden-speaks-on-jobs-and-infrastructure-package/2021/04/07/9f525442-02b7-4e87-be84-d70681e6723f_live.html', 'https://www.washingtonpost.com/wp-apps/imrs.php?src=https://d1i4t8bqe7zgj6.cloudfront.net/04-07-2021/t_11f92f2366aa4bd991a1fb2d5d35e86a_name_biden_040221.jpg&w=1080', '2021-04-08 06:11:36', '2021-04-08 06:11:36', '2021-04-08 06:11:36'),
(522, 'business-insider-uk', 'Ben Winck', 'US weekly jobless claims climb to 744,000 as unemployment remains persistently high', 'Continuing claims, which track Americans receiving unemployment benefits, dipped to 3.73 million for the week that ended March 27.', 'http://uk.businessinsider.com/weekly-jobless-claims-744000-jobs-recovery-unemployment-benefits-labor-market-2021-4', 'https://i.insider.com/606ef8c530004b0019b2696e?width=1200&format=jpeg', '2021-04-08 04:38:45', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(523, 'business-insider-uk', 'Tom Porter', 'Eric Bolling walks out of BBC interview over Georgia voter law dispute', 'Commentator Aisha Mills claimed Eric Bolling was faking his concern for Black businesses, and he was not pleased.', 'http://uk.businessinsider.com/eric-bolling-walks-out-bbc-interview-georgia-voter-law-2021-4', 'https://i.insider.com/606ed29630004b0019b2693b?width=1200&format=jpeg', '2021-04-08 03:35:11', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(524, 'business-insider-uk', 'Reuters', 'Apple has reportedly delayed iPad and MacBook production due to the global chip shortage', 'A global chip shortage has forced Apple to delay the production of its MacBooks and iPads, but not its iPhones, according to a report.', 'http://uk.businessinsider.com/apple-ipad-macbook-delay-production-global-chip-shortage-2021-4', 'https://i.insider.com/606ee73d70954f0019195d08?width=1200&format=jpeg', '2021-04-08 04:12:33', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(525, 'business-insider-uk', 'Libertina Brandt', 'Investors rush to buy near SpaceX after Elon Musk tweets', 'Phone calls from homebuyers are flooding in days after Musk tweeted about Brownsville, the Gulf Coast city where SpaceX has a rocket-production site.', 'http://uk.businessinsider.com/spacex-rocket-starbase-brownsville-texas-elon-musk-real-estate-2021-4', 'https://i.insider.com/606cd5d830004b0019b26520?width=1200&format=jpeg', '2021-04-08 05:03:28', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(526, 'business-insider-uk', 'Andy Kiersz, Madison Hoff', 'This map shows the highest-paying job in every state', 'Using data from the Bureau of Labor Statistics, we found the highest-paying job in every state and DC. Medical professionals once again top the list.', 'http://uk.businessinsider.com/highest-paying-job-in-every-us-state-2019-2', 'https://i.insider.com/606e21d930004b0019b268bd?width=1200&format=jpeg', '2021-04-08 04:53:11', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(527, 'business-insider-uk', 'Carla Mozée', 'S&P 500 hits record amid higher-than-expected jobless claims and continued Fed support', 'US stocks were at record highs Thursday as the Federal Reserve signaled continued support for economic and labor-market growth.', 'https://markets.businessinsider.com/news/stocks/stock-market-news-stocks-sp500-record-highs-fed-policy-accommodative-2021-4-1030285992', 'https://images2.markets.businessinsider.com/5fb6e5f850e71a0011556537?format=jpeg', '2021-04-08 07:42:02', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(528, 'business-insider-uk', 'Grace Kay', 'Take a look at Adidas\' new running shoes that can be customized with Legos', 'The shoes look like regular Adidas running shoes, but with a twist — they can be customized with Lego bricks.', 'http://uk.businessinsider.com/adidas-new-lego-ultraboost-dna-running-shoes-photos-price-2021-4', 'https://i.insider.com/606f09d34d3e410018b6ff59?width=1200&format=jpeg', '2021-04-08 05:58:02', '2021-04-08 06:11:58', '2021-04-08 06:11:58');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(529, 'business-insider-uk', 'Casey Sullivan, Reed Alexander', 'Warburg Pincus raises total comp up to 30% for analysts and associates', 'Warburg Pincus is raising pay for junior investing-focused workers, and communicated the move as an effort to bring comp in line with market rates.', 'http://uk.businessinsider.com/warburg-pincus-raising-total-comp-analysts-associates-private-equity-30-2021-4', 'https://i.insider.com/606e3c1b30004b0019b268f5?width=1200&format=jpeg', '2021-04-08 04:05:38', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(530, 'business-insider-uk', 'Kate Ward', 'CEO of The Dipp: How I raised $2.5 million in the pandemic', 'Being \"cool\" didn\'t cut it anymore in a world where everyone was suddenly thrust into uncertainty, writes Kate Ward, CEO of The Dipp.', 'http://uk.businessinsider.com/kate-ward-ceo-the-dipp-how-raised-funding-pandemic-2021-4', 'https://i.insider.com/6026e4a3b3c2a800183ccb35?width=1200&format=jpeg', '2021-04-08 05:44:26', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(531, 'business-insider-uk', 'Isobel Asher Hamilton', 'Boston Dynamics\' Spot robot was thrown into an army field test — but it ran out of battery mid-combat', 'The French military exercise was to determine how useful robots like Spot might be in real-life combat situations.', 'http://uk.businessinsider.com/boston-dynamics-spot-robot-french-military-combat-out-of-battery-2021-4', 'https://i.insider.com/606eda5f70954f0019195cf5?width=1200&format=jpeg', '2021-04-08 02:53:18', '2021-04-08 06:11:58', '2021-04-08 06:11:58'),
(532, 'techradar', 'David Lumb', 'Hands on: OnePlus Watch review', 'A pretty-looking smartwatch at a great price with a ton of unknowns', 'https://www.techradar.com/reviews/oneplus-watch', 'https://cdn.mos.cms.futurecdn.net/ozWJwwVjwn7TsVE74eQzWR-1200-80.jpg', '2021-04-07 06:00:07', '2021-04-08 06:11:59', '2021-04-08 06:11:59'),
(533, 'techradar', 'Darren Allan', 'New Apple MacBooks and iPads could get delayed due to chip shortages', 'Various spanners in the production lines according to sources', 'https://www.techradar.com/news/new-apple-macbooks-and-ipads-could-get-delayed-due-to-chip-shortages', 'https://cdn.mos.cms.futurecdn.net/2rheWkttHGStSSygK57rQB-1200-80.jpg', '2021-04-08 05:40:00', '2021-04-08 06:11:59', '2021-04-08 06:11:59'),
(534, 'techradar', 'Samuel Roberts', 'Amazon Prime Video just landed another big new movie', 'Chris Pratt\'s The Tomorrow War lands later this year', 'https://www.techradar.com/news/amazon-prime-video-just-landed-another-big-new-movie', 'https://cdn.mos.cms.futurecdn.net/JovUDgptCGbbnGoDAjGFaQ-1200-80.jpg', '2021-04-08 01:14:36', '2021-04-08 06:11:59', '2021-04-08 06:11:59'),
(535, 'techradar', 'Matt Hanson', 'New Windows 10 update finally fixes a long standing problem – and kills off the old Edge browser', 'Windows 10 File Explorer bug fixed', 'https://www.techradar.com/news/new-windows-10-update-finally-fixes-a-long-standing-problem-and-kills-off-the-old-edge-browser', 'https://cdn.mos.cms.futurecdn.net/hkwvjVHfvVszcYUDPgzzaH-1200-80.jpg', '2021-04-07 02:26:45', '2021-04-08 06:11:59', '2021-04-08 06:11:59'),
(536, 'techradar', 'Tom Bedford', 'New iPad Pro, iPad Mini design leaked', 'More like iPad No changes', 'https://www.techradar.com/news/new-ipad-pro-ipad-mini-design-leaked', 'https://cdn.mos.cms.futurecdn.net/kaDSMJmkUVwkEkHpttzSPX-1200-80.jpg', '2021-04-08 00:17:12', '2021-04-08 06:11:59', '2021-04-08 06:11:59'),
(537, 'techradar', 'Matt Swider', 'PS5 restock: No Target restock today – here are Best Buy and Walmart dates', 'Our PS5 restock Twitter tracker knew that Target having the Sony console back in stock was unlikely today. Here are the likely dates for Best Buy and Walmart.', 'https://www.techradar.com/news/ps5-restock-twitter-sams-club-best-buy-sony-direct-and-target', 'https://cdn.mos.cms.futurecdn.net/KtBgmToAoKnjkncoahtCoH-1200-80.jpg', '2021-04-08 05:38:14', '2021-04-08 06:12:00', '2021-04-08 06:12:00'),
(538, 'nfl-news', 'Nick Shook', 'Emmitt Smith: Cowboys can\'t play \'chicken\' with Dak', 'Emmitt Smith has been down this road with the Cowboys before, and he feels that Dallas and quarterback Dak Prescott eventually will get a contract done.', 'http://www.nfl.com/news/story/0ap3000001113621/article/emmitt-smith-cowboys-cant-play-chicken-with-dak', 'http://static.nfl.com/static/content/public/photo/2020/04/30/0ap3000001112346_thumbnail_200_150.jpg', '2020-05-13 05:34:00', '2021-04-08 06:14:20', '2021-04-23 03:45:07'),
(539, 'nfl-news', 'Grant Gordon', 'Raiders, CB Prince Amukamara agree to terms', 'A former Giants first-round pick and standout with the Bears, cornerback Prince Amukamara and the Raiders have agreed to terms, NFL Network\'s Mike Garafolo and NFL Network Insider Ian Rapoport reported on Tuesday.', 'http://www.nfl.com/news/story/0ap3000001113591/article/raiders-cb-prince-amukamara-agree-to-terms', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113592_thumbnail_200_150.jpg', '2020-05-12 14:30:00', '2021-04-08 06:14:20', '2021-04-23 03:45:07'),
(540, 'nfl-news', 'Grant Gordon', 'Meyer: Haskins needs \'great players,\' \'elite culture\'', 'Urban Meyer believes criticism of Dwayne Haskins is unwarranted and that what the young QB really needs is good leadership and great players around him.', 'http://www.nfl.com/news/story/0ap3000001113584/article/meyer-haskins-needs-great-players-elite-culture', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113581_thumbnail_200_150.jpg', '2020-05-12 13:03:00', '2021-04-08 06:14:20', '2021-04-23 03:45:07'),
(541, 'nfl-news', 'Nick Shook', 'Colts excited about \'1-1 punch\' in RBs Mack, Taylor', 'The Indianapolis Colts added an exciting running back in last month\'s draft in Jonathan Taylor, and they\'re pumped about what the rookie can offer when paired with veteran Marlon Mack.', 'http://www.nfl.com/news/story/0ap3000001113579/article/colts-excited-about-11-punch-in-rbs-mack-taylor', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113578_thumbnail_200_150.jpg', '2020-05-12 11:25:00', '2021-04-08 06:14:20', '2021-04-23 03:45:07'),
(542, 'nfl-news', 'Nick Shook', 'NFL to closely monitor restart of soccer in Europe', 'The Bundesliga German soccer league is set to restart this Saturday and the NFL plans to monitor its developments in addition to other potential soccer re-openings in Europe.', 'http://www.nfl.com/news/story/0ap3000001113571/article/nfl-to-closely-monitor-restart-of-soccer-in-europe', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113569_thumbnail_200_150.jpg', '2020-05-12 10:29:00', '2021-04-08 06:14:20', '2021-04-23 03:45:07'),
(543, 'nfl-news', 'Nick Shook', 'Falcons could bring in competition for Younghoe Koo', 'Younghoe Koo was a second-half kicking sensation for the Falcons in 2019, but how secure is his job in Atlanta?', 'http://www.nfl.com/news/story/0ap3000001113567/article/falcons-could-bring-in-competition-for-younghoe-koo', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113547_thumbnail_200_150.jpg', '2020-05-12 10:04:57', '2021-04-08 06:14:20', '2021-04-23 03:45:07'),
(544, 'nfl-news', 'Jeremy Bergman', 'Jets showing interest in free-agent CB Logan Ryan', 'Jets general manager Joe Douglas continues to try to add veteran depth. A week after inking the ageless Frank Gore to a one-year deal, New York are interested in signing defensive back Logan Ryan.', 'http://www.nfl.com/news/story/0ap3000001113551/article/jets-showing-interest-in-freeagent-cb-logan-ryan', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113542_thumbnail_200_150.jpg', '2020-05-12 08:49:00', '2021-04-08 06:14:20', '2021-04-23 03:45:08'),
(545, 'nfl-news', 'Nick Shook', 'Cards\' Isaiah Simmons to focus on 1 position in NFL', 'Isaiah Simmons\' positional versatility was one of his most intriguing traits during the draft process, but the Arizona Cardinals want their top rookie to focus on just one position during his transition to the NFL.', 'http://www.nfl.com/news/story/0ap3000001113534/article/cards-isaiah-simmons-to-focus-on-1-position-in-nfl', 'http://static.nfl.com/static/content/public/photo/2020/04/20/0ap3000001110176_thumbnail_200_150.jpg', '2020-05-12 06:28:00', '2021-04-08 06:14:20', '2021-04-23 03:45:08'),
(546, 'nfl-news', 'Nick Shook', 'Dolphins\' Tua Tagovailoa tops jersey sales since draft', 'Tua Tagovaiolia isn\'t quite QB1 in Miami, but his Dolphins jersey currently is uni 1 in the NFL. The No. 5 overall pick currently tops the league in jersey sales.', 'http://www.nfl.com/news/story/0ap3000001113525/article/dolphins-tua-tagovailoa-tops-jersey-sales-since-draft', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113541_thumbnail_200_150.jpg', '2020-05-12 05:42:00', '2021-04-08 06:14:20', '2021-04-23 03:45:08'),
(547, 'nfl-news', 'Nick Shook', 'Gase: What Frank Gore brings to Jets is \'hard to teach\'', 'The Jets signed veteran RB Frank Gore ahead of his 37th birthday partially because of his play on the field. But Gore will be expected to contribute off the field as well.', 'http://www.nfl.com/news/story/0ap3000001113519/article/gase-what-frank-gore-brings-to-jets-is-hard-to-teach', 'http://static.nfl.com/static/content/public/photo/2020/05/12/0ap3000001113518_thumbnail_200_150.jpg', '2020-05-12 04:32:00', '2021-04-08 06:14:20', '2021-04-23 03:45:08'),
(548, 'die-zeit', NULL, 'Bundestagswahl: Wer kann für die Union das Kanzleramt retten?', NULL, 'https://www.zeit.de/news/2021-04/08/wer-kann-fuer-die-union-das-kanzleramt-retten', NULL, '2021-04-08 06:04:53', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(549, 'die-zeit', NULL, 'Gesundheit: KV: Impfkampagne in Praxen läuft gut an', NULL, 'https://www.zeit.de/news/2021-04/08/kv-impfkampagne-bei-hausaerzten-gut-angelaufen', NULL, '2021-04-08 05:58:34', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(550, 'die-zeit', NULL, 'Kriminalität: Angriff in Kinderschutzhaus: Mordkommission ermittelt', NULL, 'https://www.zeit.de/news/2021-04/08/angriff-in-kinderschutzhaus-mordkommission-ermittelt', NULL, '2021-04-08 05:56:03', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(551, 'die-zeit', NULL, 'Prozesse: Reine Briefwahl: Verfassungsgericht entscheidet am 3. Mai', NULL, 'https://www.zeit.de/news/2021-04/08/reine-briefwahl-verfassungsgericht-entscheidet-am-3-mai', NULL, '2021-04-08 05:55:46', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(552, 'die-zeit', NULL, 'Kommunen: Müllabfuhr setzt auf Elektromobilität und Biodiesel', NULL, 'https://www.zeit.de/news/2021-04/08/muellabfuhr-setzt-auf-elektromobilitaet-und-biodiesel', NULL, '2021-04-08 05:54:46', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(553, 'die-zeit', NULL, 'Rechnungshof: Bundeshaushalt steht auf «tönernen Füßen»', NULL, 'https://www.zeit.de/news/2021-04/08/bundeshaushalt-steht-auf-toenernen-fuessen', NULL, '2021-04-08 05:53:54', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(554, 'die-zeit', NULL, 'Norwegen: In Seenot geratenes Schiff kommt Küste gesichert näher', NULL, 'https://www.zeit.de/news/2021-04/08/frachter-vor-norwegen-gesichert-oelverschmutzung-abgewendet', NULL, '2021-04-08 05:52:33', '2021-04-08 06:15:03', '2021-04-08 06:15:03'),
(555, 'die-zeit', NULL, 'Hausarztimpfungen: Sprunghafter Anstieg der Corona-Impfungen in Deutschland', 'Am Mittwoch nach Ostern sind 650.000 Impfungen vergeben worden – rund doppelt so viele wie bisher an einem Spitzentag. Ende April dürften die Mengen noch steigen.', 'https://www.zeit.de/wissen/gesundheit/2021-04/corona-impfung-anstieg-hausarzt-praxen-rki-impfstatistik', NULL, '2021-04-08 05:51:46', '2021-04-08 06:15:04', '2021-04-08 06:15:04'),
(556, 'die-zeit', NULL, 'Bundesliga am Freitag: Bielefeld sucht nach Torgefahr im Abstiegskampf', NULL, 'https://www.zeit.de/news/2021-04/08/bielefeld-sucht-nach-torgefahr-im-abstiegskampf', NULL, '2021-04-08 05:50:42', '2021-04-08 06:15:04', '2021-04-08 06:15:04'),
(557, 'die-zeit', NULL, 'Holocaust-Gedenktag: Israel erinnert an die Opfer der Shoah', 'Heute, an \"Yom HaShoah\", stand das ganze Land für zwei Minuten still. So gedenkt Israel alljährlich der sechs Millionen von den Nationalsozialisten ermordeten Juden.', 'https://www.zeit.de/video/2021-04/6247459568001/holocaust-gedenktag-israel-erinnert-an-die-opfer-der-shoah', NULL, '2021-04-08 05:41:56', '2021-04-08 06:15:04', '2021-04-08 06:15:04'),
(558, 'fortune', 'Danielle Abril', 'WeWork’s distorted reality', 'Hulu\'s documentary about WeWork explores the master manipulation of ousted CEO Adam Neumann that ultimately led to the company\'s fall from grace.', 'https://fortune.com/2021/04/08/weworks-distorted-reality/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1252937605.jpg?resize=1200,600', '2021-04-08 05:00:18', '2021-04-08 06:22:21', '2021-04-08 06:22:21'),
(559, 'fortune', 'Claire Zillman, Emma Hinchliffe', 'How adding women executives alters ‘C-Suite thinking’', 'The Broadsheet, Fortune Most Powerful Women by Kristen Bellstrom, Claire Zillman, and Emma Hinchliffe', 'https://fortune.com/2021/04/08/how-adding-women-executives-alters-c-suite-thinking/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1008372432-2-e1617863952846.jpg?resize=1200,600', '2021-04-08 04:51:50', '2021-04-08 06:22:22', '2021-04-08 06:22:22'),
(560, 'fortune', 'Clay Chandler, Grady McGregor', 'Grab, Gojek and Sea: The 3-way battle for Southeast Asia’s $2.8 trillion market', 'Grab, Gojek and Sea are all capturing the attention of global investors.', 'https://fortune.com/2021/04/08/grab-gojek-sea-3-way-battle-southeast-asias-market/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-620181584.jpg?resize=1200,600', '2021-04-08 03:39:03', '2021-04-08 06:22:22', '2021-04-08 06:22:22'),
(561, 'fortune', 'Alan Murray, David Meyer', 'Few businesses can stomach President Biden’s corporate tax plan', 'Don\'t expect to see many CEOs following Jeff Bezos\'s lead.', 'https://fortune.com/2021/04/08/few-businesses-can-stomach-president-bidens-corporate-tax-plan-ceo-daily/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1311330343.jpg?resize=1200,600', '2021-04-08 02:31:01', '2021-04-08 06:22:22', '2021-04-08 06:22:22'),
(562, 'fortune', 'Sheryl Estrada', 'It’s time to align pay with platitudes', '\"Diversity becomes an even greater focus of Wall Street\"', 'https://fortune.com/2021/04/08/its-time-to-align-pay-with-platitudes/', 'https://content.fortune.com/wp-content/uploads/2021/01/GettyImages-1180182934.jpg?resize=1200,600', '2021-04-08 01:00:00', '2021-04-08 06:22:22', '2021-04-08 06:22:22'),
(563, 'fortune', 'Bernhard Warner', 'Investors jump back into tech stocks as bond yields cool off', 'Big cap tech stocks are on a roll over the past month.', 'https://fortune.com/2021/04/08/investors-jump-back-into-tech-stocks-as-bond-yields-cool-off/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1306394025.jpg?resize=1200,600', '2021-04-08 00:49:22', '2021-04-08 06:22:22', '2021-04-08 06:22:22'),
(564, 'fortune', 'Ryan Serhant', 'Ryan Serhant: Why you shouldn’t listen to your gut', 'Fear can prevent you from achieving career success, writes Million Dollar Listing New York cohost Ryan Serhant.', 'https://fortune.com/2021/04/07/ryan-serhant-gut-career-advice/', 'https://content.fortune.com/wp-content/uploads/2021/04/Commentary-Ryan-Serhant-GettyImages-1232025722.jpg?resize=1200,600', '2021-04-07 16:00:00', '2021-04-08 06:22:22', '2021-04-08 06:22:22'),
(565, 'football-italia', 'Football Italia Staff', 'Agent reveals Jorginho price-tag', 'Jorginho’s agent confirms the Chelsea midfielder ‘would like to come back to Italy, but his price-tag is today €50m’ and he expects a renewal offer.', 'http://www.football-italia.net/node/168878', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Jorginho-Ita-1910-Verratti-celeb-epa_2.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(566, 'football-italia', 'Football Italia Staff', 'The messages behind Dybala's celebration', 'Paulo Dybala proved decisive against Napoli on Wednesday and celebrated in the same way as when he was linked with a move away from Juventus in 2019.', 'http://www.football-italia.net/node/168872', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Dybala-2104-Napoli-goal-epa_0.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(567, 'football-italia', 'Football Italia Staff', 'Darmian: 'Inter can't celebrate yet'', 'Matteo Darmian said Inter ‘can’t celebrate’ until the Scudetto has been secured mathematically. ‘We have an important advantage, but…’', 'http://www.football-italia.net/node/168867', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Darmian-2102-celeb-epa.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(568, 'football-italia', 'Football Italia Staff', 'Parma to hire Zenit director Ribalta', 'Multiple reports state that Parma will hire Javier Ribalta as their new technical director after he left Zenit St Petersburg.', 'http://www.football-italia.net/168879/parma-hire-zenit-director-ribalta', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Parma-2103-Roma-celeb-epa_0.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(569, 'football-italia', 'Football Italia Staff', 'Serie A Week 30 referees', 'The AIA has announced the referees for Serie A Week 30, with Fabio Maresca in charge of Parma-Milan and Luca Pairetto overseeing Inter-Cagliari.', 'http://www.football-italia.net/168876/serie-week-30-referees', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Referee-whistle-epa_8_0.jpg.crop_display_13.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(570, 'football-italia', 'Football Italia Staff', ''Icardi and Zanetti were jealous of Gabigol'', 'Agent Wagner Ribeiro said former Inter striker Gabriel Barbosa failed at San Siro because of Mauro Icardi and Javier Zanetti. ‘They were jealous’.', 'http://www.football-italia.net/168875/icardi-and-zanetti-were-jealous-gabigol', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/gabigol-1907-epa_2_2.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(571, 'football-italia', 'Football Italia Staff', 'Buffon: 'Playing out from the back...'', 'Gianluigi Buffon joked with the reports claiming he was fundamental when Juventus are ‘playing out from the back’.', 'http://www.football-italia.net/168874/buffon-playing-out-back', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Buffon-2104-pen-epa_1.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(572, 'football-italia', 'Football Italia Staff', 'Hauge: 'Haaland told me to join Milan'', 'Milan winger Jens Petter Hauge revealed Dortmund striker Erling Haaland ‘recommended’ he moved to the Rossoneri and said Zlatan Ibrahimovic told him to 'enjoy' his time at San Siro.', 'http://www.football-italia.net/168871/hauge-haaland-told-me-join-milan', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Hauge-2104-goal-epa_0.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(573, 'football-italia', 'Football Italia Staff', 'Ibra part of Asterix and Obelix cast', 'Milan striker Zlatan Ibrahimovic will be part of the cast in the new Asterix and Obelix movie, which should be released in 2022.', 'http://www.football-italia.net/168870/ibra-part-asterix-and-obelix-cast', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Zlatan_2004_epa_1.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(574, 'football-italia', 'Football Italia Staff', 'Ajax vs. Roma: both teams in away kits', 'The home shirts are too similar when Ajax and Roma meet in the quarter-finals of the Europa League and thus both games will be played in the away kits.', 'http://www.football-italia.net/168869/ajax-vs-roma-both-teams-away-kits', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Roma-2103-celeb-epa_0.jpg', '2021-04-07 17:00:00', '2021-04-08 07:40:10', '2021-04-08 07:40:10'),
(575, 'ign', NULL, 'Invincible: Exclusive Episode 5 Clip (2021) Steven Yeun, Mahershala Ali - IGN', 'In our exclusive clip from episode 5 of Invincible, watch Mahershala Ali\'s Titan ask Mark Grayson (Steven Yeun) for a favor. Episode 5, titled \"That Actually Hurt,\" premieres on Friday on Amazon Prime Video.\r\n\r\nFrom The Walking Dead creator Robert Kirkman, and based on the Skybound/Image comic of the same name by Kirkman, Cory Walker, and Ryan Ottley, Invincible is an hour-long, adult animated superhero show that revolves around seventeen-year-old Mark Grayson (Yeun), who\'s just like every other guy his age - except that his father is the most powerful superhero on the planet, Omni-Man (J.K. Simmons). But as Mark develops powers of his own, he discovers that his father\'s legacy may not be as heroic as it seems.', 'https://www.ign.com/videos/invincible-exclusive-episode-5-clip-2021-steven-yeun-mahershala-ali', 'https://assets1.ignimgs.com/thumbs/userUploaded/2021/4/7/36190303invincibleblogroll-1617843150119.jpg?width=1280', '2021-04-08 08:12:47', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(576, 'ign', NULL, 'Destroy All Humans! - Nintendo Switch Announcement Trailer - IGN', 'Get another look at the game in this latest trailer, and start the invasion when Destroy All Humans! launches on Nintendo Switch on June 29, 2021.\r\n\r\nThe Nintendo Switch version will include all available skins that were created for the game, including the Skin Pack DLC.', 'https://www.ign.com/videos/destroy-all-humans-nintendo-switch-announcement-trailer', 'https://assets1.ignimgs.com/thumbs/userUploaded/2021/4/8/destroyallhumansnintendoswitchannouncetrailerblogroll3-1617888330813.jpg?width=1280', '2021-04-08 08:12:47', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(577, 'ign', 'Eric Song', 'The Best Dell Deals: Alienware RTX 30 Series Gaming PCs and Gaming Laptops Both Available for Order - IGN', 'New Dell and Alienware RTX 30 Series Gaming Laptops and PCs are available for 2021.', 'https://www.ign.com/articles/the-best-dell-and-alienware-deals-of-2020-gaming-pcs-laptops-monitors-and-more', 'https://assets1.ignimgs.com/2021/03/29/alienwarem15r2-1617047953263.jpg?width=1280', '2021-04-05 13:44:32', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(578, 'ign', NULL, 'Weekly Sale', 'Get special discounts on our Weekly Sale Items! Check back every Monday for new items! Put a Beedle on it! You voted to get Zelda tees on sale, so we\'re giving an extra 15% discount on all tees! Discount is applied at checkout. Weekly Sale Discount cannot be combined with other coupons.', 'https://bit.ly/3dyg1ZJ', 'https://cdn.shopify.com/s/files/1/0255/3842/9014/files/IGNstore_logoFullColor.png?height=628&pad_color=fff&v=1614149703&width=1200', '2021-04-08 08:12:47', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(579, 'ign', 'Matt Purslow', 'Streets of Rage 4: New Characters and Modes Coming Across Paid and Free DLC - IGN', 'Streets of Rage 4 is set to get new free and paid-for DLC later this year.', 'https://www.ign.com/articles/streets-of-rage-4-new-characters-and-modes-coming-across-paid-and-free-dlc', 'https://assets1.ignimgs.com/2021/04/08/streets-of-rage-4-dlc-1617877574069.jpg?width=1280', '2021-04-08 05:00:52', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(580, 'ign', NULL, 'Streets of Rage 4 Mr X. Nightmare DLC - Official Trailer - IGN', 'Are you ready to return to Wood Oak City in Streets of Rage 4? With this new DLC, Mr X Nightmare returns! Estel Aguirre is playable as a new character, with new moves, new weapons and new exclusive tracks!', 'https://www.ign.com/videos/streets-of-rage-4-mr-x-nightmare-dlc-official-trailer', 'https://assets1.ignimgs.com/thumbs/userUploaded/2021/4/8/streets-of-rage-dlc-blog-thumb-1617881171655.jpg?width=1280', '2021-04-08 08:12:47', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(581, 'ign', 'Robert Anderson', 'New SpongeBob Collectables Meme Figures Are Now Available - IGN', 'SpongeBob Squarepants fans have been graced with collectable \'Masterpiece Meme\' figures that encapsulate the famous, and meme-worthy, scenes from the cartoon. Now, in 2021, we\'ve got some brand new additions to check out.', 'https://www.ign.com/articles/new-spongebob-collectables-meme-figures-are-now-available', 'https://assets1.ignimgs.com/2021/04/08/spongebob-meme-figures-ign-collectable-1617884403094.png?width=1280', '2021-04-08 04:29:02', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(582, 'ign', 'Adele Ankers', 'The Witcher: Blood Origin Lead Leaves Series Before It Starts Filming - IGN', 'Jodie Turner-Smith has exited Netflix\'s upcoming Witcher prequel series, The Witcher: Blood Origin, due to a scheduling conflict.', 'https://www.ign.com/articles/the-witcher-blood-origin-jodie-turner-smith-exits-series-before-filming-begins', 'https://assets1.ignimgs.com/2021/01/25/eile-witcher-turner-smith-1611584949761.jpg?width=1280', '2021-04-08 04:10:15', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(583, 'ign', 'Jordan Oloman', 'Call of Duty: Modern Warfare: Two New Maps Quietly Removed A Week After They Were Added - IGN', 'Infinity Ward has now removed two of the maps that were quietly added to Call of Duty: Modern Warfare last week.', 'https://www.ign.com/articles/call-of-duty-modern-warfare-two-new-maps-quietly-removed-a-week-after-they-were-added', 'https://assets1.ignimgs.com/2019/05/30/codmw-anntrailer-blogroll-1559235915299.jpg?width=1280', '2021-04-08 03:32:46', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(584, 'ign', 'Joe Skrebels', 'Resident Evil Village Showcase Announced as New Demo Files Seemingly Appear - IGN', 'Capcom has announced a Resident Evil Village showcase for April 15, and files for a new \'gameplay demo\' appear to have been uploaded to the PlayStation Network.', 'https://www.ign.com/articles/resident-evil-village-showcase-announced-as-new-demo-files-seemingly-appear', 'https://assets1.ignimgs.com/2020/09/25/resi-village-8-1601042897617.jpg?width=1280', '2021-04-08 03:14:21', '2021-04-08 08:12:47', '2021-04-08 08:12:47'),
(585, 'fox-sports', NULL, '', NULL, 'https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.foxsports.com%2Fmlb%2Fstory%2Fmvp-cy-young-rookie-year-awards-mookie-betts-mike-trout-071720%3Futm_campaign%3Dshare_buttons%26utm_medium%3Dfscom%26utm_content%3Dreturn_visit%26utm_term%3Dsf%26utm_source%3Dshare_fb', NULL, '2021-04-08 08:13:01', '2021-04-08 08:13:01', '2021-04-08 08:13:01'),
(586, 'fox-sports', NULL, 'Watch WWE Friday Night SmackDown from July 17th in 3 minutes | FRIDAY NIGHT SMACKDOWN (VIDEO)', 'Friday Night SmackDown returned to the WWE Performance Center as AJ Styles defended the Intercontinental Championship against Matt Riddle, John Morrison took on Braun Strowman, and Bray Wyatt had a message from the swamp.', 'https://www.foxsports.com/wwe/video/1765356611632', 'https://b.fssta.com/uploads/2020/07/Screen_Shot_2020-07-17_at_11.29.34_PM_1280x720_1765356611882.vresize.1200.630.high.6.jpg', '2020-07-17 22:38:09', '2021-04-08 08:13:01', '2021-04-08 08:13:01'),
(587, 'fox-sports', NULL, 'WWE', 'Get the latest WWE news, videos and highlights including extensive FOX Sports coverage of Friday Night Smackdown.', 'https://www.foxsports.com/wwe', 'https://b.fssta.com/uploads/2016/12/default_image.vresize.1200.630.high.0.png', '2021-04-08 08:13:01', '2021-04-08 08:13:01', '2021-04-08 08:13:01'),
(588, 'fox-sports', NULL, '', NULL, 'https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.foxsports.com%2Fwwe%2Fvideo%2F1765356611632%3Futm_campaign%3Dshare_buttons%26utm_medium%3Dfscom%26utm_content%3Dreturn_visit%26utm_term%3Dsf%26utm_source%3Dshare_fb', NULL, '2021-04-08 08:13:01', '2021-04-08 08:13:01', '2021-04-08 08:13:01'),
(589, 'fox-sports', 'FOX Sports', 'The NFL and Daniel Snyder respond to Thursday\'s Washington Post story', 'A Washington Post story Thursday shed light on an alleged culture of sexual harassment in the Washington football franchise.', 'https://www.foxsports.com/nfl/story/daniel-snyder-washington-post-071720', 'https://b.fssta.com/uploads/2020/07/snyder-717.vresize.1200.630.high.3.jpg', '2020-07-17 11:05:11', '2021-04-08 08:13:02', '2021-04-08 08:13:02'),
(590, 'fox-sports', NULL, 'NFL News, Videos, Scores, Teams, Standings, Stats', 'Find live NFL scores, pro football player & team news, NFL videos, rumors, stats, standings, team schedules & fantasy football games on FOX Sports.', 'https://www.foxsports.com/nfl', 'https://b.fssta.com/uploads/2016/12/default_image.vresize.1200.630.high.0.png', '2021-04-08 08:13:02', '2021-04-08 08:13:02', '2021-04-08 08:13:02'),
(591, 'fox-sports', NULL, '', NULL, 'https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.foxsports.com%2Fnfl%2Fstory%2Fdaniel-snyder-washington-post-071720%3Futm_campaign%3Dshare_buttons%26utm_medium%3Dfscom%26utm_content%3Dreturn_visit%26utm_term%3Dsf%26utm_source%3Dshare_fb', NULL, '2021-04-08 08:13:02', '2021-04-08 08:13:02', '2021-04-08 08:13:02'),
(592, 'fox-sports', 'FOX Sports', 'Which two members of the Madden 21 \'99 Club\' would you build around?', 'You only have two superstars that you can build your franchise around. Which members of the Madden 21 \'99 Club\' would you choose?', 'https://www.foxsports.com/nfl/story/99-club-patrick-mahomes-michael-thomas-aaron-donald-christian-mccaffrey-stephon-gilmore-madden-071720', 'https://b.fssta.com/uploads/2020/07/99s.vresize.1200.630.high.21.png', '2020-07-17 14:14:35', '2021-04-08 08:13:02', '2021-04-08 08:13:02'),
(593, 'breitbart-news', 'Pam Key', 'CNN\'s Lemon: Tucker Carlson Is Mainstreaming \'White Supremacist Propaganda to your Neighbors\'', 'CNN anchor Don Lemon said Friday on his show \"Tonight\" that Fox News host Tucker Carlson was mainstreaming \"white supremacist propaganda to your neighbors and your family members.\" | Clips', 'http://www.breitbart.com/clips/2021/04/09/cnns-lemon-tucker-carlson-is-mainstreaming-white-supremacist-propaganda-to-your-neighbors/', 'https://media.breitbart.com/media/2018/12/DonLemoncrop.jpg', '2021-04-09 19:09:40', '2021-04-09 20:41:15', '2021-04-09 20:41:15'),
(594, 'breitbart-news', 'Ian Hanchett', 'TX Mayor: Border Wouldn\'t Be Such \'a Madhouse\' If It Had Same Fence as Capitol, \'We Haven\'t Heard from the Administration\'', 'On Friday\'s broadcast of the Fox News Channel\'s \"Tucker Carlson Tonight,\" Uvalde, TX Mayor Don McLaughlin said that the border is \"a madhouse\" and that | Clips', 'http://www.breitbart.com/clips/2021/04/09/tx-mayor-border-wouldnt-be-such-a-madhouse-if-it-had-same-fence-as-capitol-we-havent-heard-from-the-administration/', 'https://media.breitbart.com/media/2021/04/McLaughlin-49-Thumbnail-640x335.jpg', '2021-04-09 18:34:24', '2021-04-09 20:41:15', '2021-04-09 20:41:15'),
(595, 'breitbart-news', 'Ian Hanchett', 'Padilla: Newsom Recall Is GOP Attacking Newsom Because of Trump\'s Failures on COVID', 'On Friday\'s broadcast of HBO\'s \"Real Time,\" Sen. Alex Padilla (D-CA) said that the recall effort against California Gov. Gavin Newsom (D) is Republicans | Clips', 'http://www.breitbart.com/clips/2021/04/09/padilla-newsom-recall-gop-attacking-newsom-because-of-trumps-failures-on-covid/', 'https://media.breitbart.com/media/2016/08/Alex-Padilla-Getty.jpg', '2021-04-09 20:03:43', '2021-04-09 20:41:15', '2021-04-09 20:41:15'),
(596, 'breitbart-news', 'Charlie Spiering', 'WH Misleadingly Using Former Trump Adviser Gary Cohn to Sell Tax Hike', 'The White House continues citing an old Gary Cohn interview out of context to suggest he is supporting Biden\'s $2.5 trillion spending plan.', 'http://www.breitbart.com/politics/2021/04/09/white-house-misleadingly-using-former-trump-adviser-gary-cohn-to-sell-joe-biden-tax-hike/', 'https://media.breitbart.com/media/2018/09/Gary-Cohn-sneaky-side-ap.jpg', '2021-04-09 18:18:34', '2021-04-09 20:41:16', '2021-04-09 20:41:16'),
(597, 'breitbart-news', 'Kristina Wong', 'Navy\'s Official Twitter Account Features Bald Eagle Wearing a Mask', 'Twitter users criticized the Navy after noticing that its official Twitter account featured its logo with a bald eagle wearing a mask.', 'http://www.breitbart.com/politics/2021/04/09/navys-official-twitter-account-features-bald-eagle-wearing-surgical-mask/', 'https://media.breitbart.com/media/2021/04/U.S.-Navy-Bald-Eagle-Wearing-Mask-640x335.jpg', '2021-04-09 20:16:19', '2021-04-09 20:41:16', '2021-04-09 20:41:16'),
(598, 'breitbart-news', 'Jacob Bliss', 'Dem Sanders Has \'Serious Concerns\' With Joe Biden’s Proposed Budget', 'Sen. Bernie Sanders slammed President Joe Biden’s proposed budget on Friday, saying he has some \"serious concerns.\"', 'http://www.breitbart.com/politics/2021/04/09/democrat-sen-bernie-sanders-has-serious-concerns-with-joe-bidens-proposed-budget/', 'https://media.breitbart.com/media/2021/02/GettyImages-1230690429-640x335.jpg', '2021-04-09 17:24:45', '2021-04-09 20:41:16', '2021-04-10 07:01:57'),
(599, 'breitbart-news', 'Kris W. Kobach', 'Kobach: KS Legislature Votes to Reduce the Age for Concealed Carry', 'The day Biden announced his executive actions to restrict certain firearms, the Kansas legislature took a bold step in the opposite direction.', 'http://www.breitbart.com/politics/2021/04/09/exclusive-kobach-the-kansas-legislature-votes-to-reduce-the-age-for-concealed-carry/', 'https://media.breitbart.com/media/2016/05/backpack-and-concealed-campus-carry-crop-AP.jpg', '2021-04-09 15:35:40', '2021-04-09 20:41:16', '2021-04-09 20:41:16'),
(600, 'breitbart-news', 'Jacob Bliss', 'House Ethics Committee Investigating GOP\'s Matt Gaetz and Tom Reed', 'The House Committee on Ethics announced Friday they opened an investigation on two GOP members, Rep. Matt Gaetz and Rep. Tom Reed.', 'http://www.breitbart.com/politics/2021/04/09/house-ethics-committee-investigating-gop-reps-matt-gaetz-and-tom-reed/', 'https://media.breitbart.com/media/2021/04/matt-gaetz-tom-reed-ap-640x335.png', '2021-04-09 14:29:30', '2021-04-09 20:41:16', '2021-04-09 20:41:16'),
(601, 'breitbart-news', 'Charles Hurt', 'Charles Hurt: The Millionaire Bidens\' Incredible White Privilege', 'For nearly five decades, Mr. Biden has been getting everything wrong in Washington. He has always been a low-watt thinker with verbal dysentery. |', 'http://www.breitbart.com/politics/2021/04/09/charles-hurt-the-millionaire-bidens-incredible-white-privilege/', 'https://media.breitbart.com/media/2020/10/AP_469205480109-640x335.jpg', '2021-04-09 12:42:50', '2021-04-09 20:41:16', '2021-04-09 20:41:16'),
(602, 'breitbart-news', 'Trent Baker', 'FNC\'s Turley: New Biden Gun Control Legislation \'Could Very Well Be Called the Hunter Biden Act\'', 'Friday on Fox News Channel\'s \"America\'s Newsroom,\" network contributor Jonathan Turley weighed in on President Joe Biden pledging to use his executive authority to restrict Second Amendment rights. | Clips', 'http://www.breitbart.com/politics/2021/04/09/fncs-turley-new-biden-gun-control-legislation-could-very-well-be-called-the-hunter-biden-act/', 'https://media.breitbart.com/media/2019/12/AP-PhotoJacquelyn-Martin-640x335.jpg', '2021-04-09 14:13:12', '2021-04-09 20:41:16', '2021-04-09 20:41:16'),
(603, 'entertainment-weekly', 'Omar Sanchez', 'The Princes of <em>The Crown</em> pay tribute to Prince Philip: \'It won\'t be the same without you\'', 'Matt Smith and Tobias Menzies both released tributes to the British royal after his death at the age of 99.', 'https://ew.com/tv/matt-smith-tobias-menzies-statement-prince-philip-death/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B980%2C0%5D&w=2000&h=1000&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F2021%2F04%2F09%2FPrince-Philip-5.jpg', '2021-04-09 16:45:11', '2021-04-09 21:54:56', '2021-04-09 21:54:56'),
(604, 'entertainment-weekly', 'Tyler Aquilina', 'DMX\'s fellow musicians and celebrities pay tribute: \'Your impact and influence will live on\'', 'The hip-hop superstar died Friday at age 50.', 'https://ew.com/music/dmx-dead-celebrities-pay-tribute-reations/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B12008%2C400%5D&w=1599&h=800&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F-0001%2F11%2F30%2Fdmx-3.jpg', '2021-04-09 09:41:13', '2021-04-09 21:54:56', '2021-04-09 21:54:56'),
(605, 'entertainment-weekly', 'Tyler Aquilina', 'LeVar Burton wants <em>Jeopardy</em> producers to know he\'s the best person to host', '\"I think my whole career is an advertisement for being the host of <em>Jeopardy</em>,\" the former <em>Reading Rainbow</em> and <em>Star Trek</em> star tells EW with a laugh.', 'https://ew.com/tv/levar-burton-jeopardy-host-interview/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B980%2C53%5D&w=2000&h=1000&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F2021%2F04%2F09%2FGettyImages-1185354371.jpg', '2021-04-09 16:39:21', '2021-04-09 21:54:56', '2021-04-09 21:54:56'),
(606, 'entertainment-weekly', 'EW Staff', 'What to Watch this Weekend: <em>Shameless </em>series finale brings the Gallagher family saga to an end', 'Also, <em>Wynonna Earp</em> wraps up with a WayHaught wedding, Carey Mulligan hosts <em>SNL</em>, <em>The Nevers</em> finally arrives on HBO, and more.', 'https://ew.com/tv/what-to-watch-this-weekend-shameless-series-finale/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B552%2C25%5D&w=1200&h=600&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F2021%2F04%2F08%2FShameless_1112_1066_R-wtw.jpg', '2021-04-09 02:00:00', '2021-04-09 21:54:56', '2021-04-09 21:54:56'),
(607, 'entertainment-weekly', NULL, 'Prince Harry and Meghan Markle share tribute to Prince Philip: \'You will be greatly missed\'', 'The Duke of Edinburgh died on Friday.', 'https://ew.com/celebrity/prince-harry-meghan-markle-prince-philip-statement/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B980%2C0%5D&w=2000&h=1000&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F2021%2F04%2F09%2FMeghan-Markle-Prince-Harry-Prince-Philip.jpg', '2021-04-09 10:19:29', '2021-04-09 21:54:56', '2021-04-09 21:54:56'),
(608, 'entertainment-weekly', 'Omar Sanchez', 'This Transformers toy can transform by itself, and it\'s <em>only</em> $700', 'Bumblebee would never.', 'https://ew.com/movies/transformers-optimus-prime-toy-700-dollars/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&rect=0%2C11%2C2000%2C1011&poi=%5B1040%2C80%5D&w=2000&h=1000&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F2021%2F04%2F09%2FOP-robot-angle_2000x.jpg', '2021-04-09 15:10:48', '2021-04-09 21:54:56', '2021-04-09 21:54:56'),
(609, 'entertainment-weekly', 'Marcus Jones', 'Friday Five: Gwen Stefani and Saweetie snatch wigs, Tierra Whack wants to build, and more', 'The five best songs we heard this week.', 'https://ew.com/music/music-reviews/friday-five-gwen-stefani-saweetie-tierra-whack/', 'https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=%5B576%2C18%5D&w=1200&h=600&url=https%3A%2F%2Fstatic.onecms.io%2Fwp-content%2Fuploads%2Fsites%2F6%2F2021%2F04%2F09%2FFriday-Five-040921-social.jpg', '2021-04-09 17:09:23', '2021-04-09 21:54:57', '2021-04-09 21:54:57'),
(610, 'reddit-r-all', 'Bill Bostock', 'Feds probing if Matt Gaetz discussed running sham candidate: NYT', 'They\'re investigating whether Gaetz and a Florida lobbyist talked about running a fake candidate to pry votes from the Democrat, The Times reported.', 'https://www.businessinsider.com/feds-investigating-matt-gaetz-sham-candidate-florida-elections-nyt-2021-4', 'https://i.insider.com/607013fc30004b0019b26cd8?width=1200&format=jpeg', '2021-04-09 02:56:50', '2021-04-09 21:55:10', '2021-04-09 21:55:10'),
(611, 'reddit-r-all', NULL, 'Build a Website – Website Builder – Squarespace', 'Squarespace is the all-in-one solution for anyone looking to create a beautiful website. Domains, eCommerce, hosting, galleries, analytics, and 24/7 support all included.', 'https://alb.reddit.com/cr?z=gAAAAABgcHg7tpP63vtKgz8pecubdCxWnVTQLGTMNSQwT8857LA5Apm-KuKFch1zdstsj2NbIydkeqeuoBmULKj_wFDgqSNbPK1QLHrGgL7w5tlrNbWCiIg4BCCinngKv2tiJqTlHI-S4WbtmkM0vaFMPuRstcdS8lTn-ON-yYG232fPsVEavZLEbIqcAHIl3gOoVjXZ6cxac50NmDbV8jbVM7nWYEyzBq7dsd7R8u_Q75nvEFm4EinBAKpo30Logz1uovmDwI0SbjdHjkquopdJssQ9dN7W_45060fk0oMZaUELdA1lE-V5g09_XDCn7cb_eYN6cooLsqqGZUwv9cv-BkKebj9rNLK3M6U60crDUxAPNChqSKO3pI6OJWY5p-uAqF3VjPZHtVq8B8Mg53cR0uCcd01kxvIKSVxuD7UCdBgLaGwYS9Alsj1A5qCG2zB_YQDpISSHSw6FvrvVh7Zv7t2xORV3EC6KMEabhpY1rQqR-UG5W3J-CIqKTnA2Xr9bvLSfG5rD5zS6Z5imqWmKYpmje3QAYf7OWWyPhYIbOW8Fsvo4NIEWTGGG_mOqE2mQYLzm2YJH3ZZJ59Zj0r3_zTGnOPetSDnhoO8ZeOcSgru0Byve7UREEn4_LvT6lIqG-JdjXygElygCnYu0Ox336vNm1ch6ONJuLIQ0xA4cB7S2Zgm7wDB5iXrD_5Fv4HY65pSmiLL1T6WN8uEznhD1QH_8Lh2DbM1D62fVaH9vh0Z0sOekbWa6_eumrpgONDxrvZ9kv0EK2FyZGqJaWFMIm_xv1eFxm7Mi4mjkve-tJwHR7pokHTPurSfwwE7PV_1tuJwGn-7Fdvu61ywxyC3vO0dU5_pcYLHpFfaYv59o_X9wRbFtZIglQlcdbt5GrS1XhZ5MvSqnKzMgQy_tXN_Hi0jv2vkuDzvlSt_Zn0oZnIa1kqXFJRudJ8pC7DXYoPoGk-uH0dtSPzKZ4bcccCbuyk_bX1Di7Z6KGEVCVlsa19aHF0Db2CyJm4JFvPSzOxqDrJXhr90K035_m7IjoLkDC8lJoYjibPSv9GlCdHgNLImjRlFtEsLVoQn8PYrNMaTxc49laN2xudju9dBvH_PCSo-sHunOs7TInDzCmPi3Dofc7tPzrIsa1F6pOaZbZaXzJka6I3mMpwWxeaMoP6v7JWf8yPWsMA1jNB1nbF3yl3fjjX7vhjuzF9LwduOflWgdFuRFb66RIgnnHyJ7EdvKlsDWFXuunhCa14U4oj8DbxevmmXPQQyDDIAMYfOM6nIXFzIjrkuqeDmFHHFr2DZgaDObW6dVIVv0zucSykWI1sxFYv3PW9senPKZR3XygUa-hLcAfCvb', 'http://static1.squarespace.com/static/5134cbefe4b0c6fb04df8065/t/5f46ae558289fe36ae375505/1598467679969/Squarespace-thumbnail.jpg?format=1500w', '2021-04-09 21:55:10', '2021-04-09 21:55:10', '2021-04-09 21:55:10'),
(612, 'reddit-r-all', 'Contributors to Wikimedia projects', 'politician, former Afghan head of state (1979)', NULL, 'https://en.wikipedia.org/wiki/Hafizullah_Amin#Death', 'https://upload.wikimedia.org/wikipedia/commons/9/97/Hafizullah_Amin.jpg', '2001-12-13 13:30:24', '2021-04-09 21:55:10', '2021-04-09 21:55:10'),
(613, 'reddit-r-all', NULL, 'r/interestingasfuck - Sir David Attenborough is the only person to win a BAFTA for a programme in black and white, colour, HD, 3D, and 4K.', '65,760 votes and 659 comments so far on Reddit', 'https://www.reddit.com/r/interestingasfuck/comments/mnf4tv/sir_david_attenborough_is_the_only_person_to_win/', 'https://preview.redd.it/l6t9m6iyu4s61.jpg?auto=webp&s=aeaa111e414439b6d895ec7e13215d646a992d86', '2021-04-09 21:55:11', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(614, 'reddit-r-all', NULL, 'Americans are super-spreaders of COVID-19 misinformation', 'The US ‘infodemic’ has spread to Canada, fueled by social media.', 'https://www.mcgill.ca/newsroom/channels/news/americans-are-super-spreaders-covid-19-misinformation-330229', 'https://www.mcgill.ca/newsroom/files/newsroom/styles/wysiwyg_large/public/channels/image/social-media-phones-people-small.jpg?itok=6dn7x23f', '2021-04-06 05:25:48', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(615, 'reddit-r-all', NULL, 'r/MadeMeSmile - Guy uses his car radio to give his grandmother a birthday surprise.', '19,748 votes and 264 comments so far on Reddit', 'https://www.reddit.com/r/MadeMeSmile/comments/mnfyt6/guy_uses_his_car_radio_to_give_his_grandmother_a/', 'https://external-preview.redd.it/CRA86xDmXXzrkihnuvde6xnJUDjNYRI5Yylw0XKUu8E.png?format=pjpg&auto=webp&s=193c2a9074a2551788d1857ed878ebed556ca723', '2021-04-09 21:55:11', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(616, 'reddit-r-all', 'regian24', 'Also \"mumslims\"', 'Posted in r/facepalm by u/regian24 • 36,317 points and 1,035 comments', 'https://www.reddit.com/r/facepalm/comments/mnffdv/also_mumslims/', 'https://preview.redd.it/r3s9b0yby4s61.png?overlay-align=bottom,left&crop=1200:628.272251309,smart&overlay-height=15p&overlay=%2Fwatermark%2Ft5_2r5rp.png%3Fs%3Dc0ef59cfe3410ff6c0cbe9fc6eccb60cab2c31de&width=1200&height=628.272251309&auto=webp&s=7c50b777f7f2378aa6f7ef4d13fe7123af883e40', '2021-04-09 03:46:19', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(617, 'reddit-r-all', 'https://www.facebook.com/bbcnews', 'Prince Philip has died aged 99, Buckingham Palace announces', 'Prince Philip, the Queen\'s husband of 73 years, had recently spent time in hospital with an infection.', 'https://www.bbc.com/news/uk-11437314', 'https://ichef.bbci.co.uk/news/1024/branded_news/14E96/production/_117345658_gettyimages-52108075-index.jpg', '2021-04-09 21:55:11', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(618, 'reddit-r-all', 'americanthaiguy', 'wHy ArE yOu LiKe This?', 'Posted in r/BlackPeopleTwitter by u/americanthaiguy • 25,134 points and 267 comments', 'https://www.reddit.com/r/BlackPeopleTwitter/comments/mneu1n/why_are_you_like_this/', 'https://preview.redd.it/xwlxk54nr4s61.jpg?overlay-align=bottom,left&crop=1080:565.445026178,smart&overlay-height=15p&overlay=%2Fwatermark%2Ft5_33x33.png%3Fs%3D570033714dd31f2a3a68ecbefde83533ac2cba5f&width=1080&height=565.445026178&auto=webp&s=a30c0a1529a5e1c440743b4353d6d79e40f4ce16', '2021-04-09 03:08:44', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(619, 'reddit-r-all', NULL, 'r/WhitePeopleTwitter - The usual suspect', '34,504 votes and 474 comments so far on Reddit', 'https://www.reddit.com/r/WhitePeopleTwitter/comments/mnezii/the_usual_suspect/', 'https://preview.redd.it/qowei7nct4s61.jpg?auto=webp&s=a48eefc9009e6a1fa69034fdaadbfb28bb21c6c7', '2021-04-09 21:55:11', '2021-04-09 21:55:11', '2021-04-09 21:55:11'),
(620, 'abc-news-au', 'Ben Millington', 'Reigning surfing world champions Carissa Moore, Italo Ferreira win first WSL event of year at Newcastle', 'Reigning women\'s and men\'s surfing world champions Hawaii\'s Carissa Moore and Brazil\'s Italo Ferreira win the first World Surf League event of the year in Newcastle.', 'http://www.abc.net.au/news/2021-04-10/carissa-moore-italo-ferreira-win-world-surf-league-event/100060874', 'https://live-production.wcms.abc-cdn.net.au/3c36d41955fd1b95c8c8055c064c0633?impolicy=wcms_crop_resize&cropH=2813&cropW=5000&xPos=0&yPos=260&width=862&height=485', '2021-04-09 21:45:39', '2021-04-09 21:55:44', '2021-04-10 00:16:59'),
(621, 'abc-news-au', 'ABC News', 'Northern Irish loyalists demand Brexit changes, call for end to street violence', 'Pro-British loyalist militants in Northern Ireland say there has been a \"spectacular collective failure\" to understand their anger.', 'http://www.abc.net.au/news/2021-04-10/northern-irish-loyalists-demand-brexit-changes-end-to-violence/100061074', 'https://live-production.wcms.abc-cdn.net.au/072cce564151f262281281bfd8c68cc8?impolicy=wcms_crop_resize&cropH=2480&cropW=4409&xPos=0&yPos=262&width=862&height=485', '2021-04-09 21:41:50', '2021-04-09 21:55:45', '2021-04-10 00:16:59'),
(622, 'abc-news-au', 'ABC News', 'Harry and Meghan say Prince Philip will be \'greatly missed\' as Buckingham Palace plans Windsor funeral', 'Prince Harry and Meghan are still at home in the US in the wake of Prince Philip\'s death. Will they fly back to the UK in time for the funeral given the state of their relationship with the royal family? Even if they want to, can they?', 'http://www.abc.net.au/news/2021-04-10/prince-philip-funeral-prince-harry-meghan-markle-royal-death/100060696', 'https://live-production.wcms.abc-cdn.net.au/081cc4ec24cfce48d34676383e691685?impolicy=wcms_crop_resize&cropH=722&cropW=1283&xPos=1147&yPos=116&width=862&height=485', '2021-04-09 21:12:40', '2021-04-09 21:55:45', '2021-04-09 21:55:45'),
(623, 'abc-news-au', 'ABC News', 'AFL live ScoreCentre: Bulldogs vs Lions, Saints vs Eagles, Suns vs Blues, Magpies vs Giants live scores, stats and results', 'It\'s a big Saturday of football, with the unbeaten Bulldogs facing Brisbane, then St Kilda takes on West Coast, the Suns host the Blues and Collingwood plays GWS. Follow our live AFL ScoreCentre for all the scores, stats and results.', 'http://www.abc.net.au/news/2021-04-10/afl-live-bulldogs-lions-saints-eagles-suns-blues-magpies-giants/100057780', 'https://live-production.wcms.abc-cdn.net.au/ea72cf16054e3cebc1baac1a809a4107?impolicy=wcms_crop_resize&cropH=1602&cropW=2844&xPos=8&yPos=73&width=862&height=485', '2021-04-09 21:10:19', '2021-04-09 21:55:45', '2021-04-09 21:55:45'),
(624, 'abc-news-au', 'ABC News', 'NRL ScoreCentre: Titans vs Knights, Bulldogs vs Storm, Roosters vs Sharks, live scores, stats and results', 'The Gold Coast Titans host the injury-hit Newcastle Knights. Later, the Bulldogs take on the Storm and the Roosters host the Sharks. Follow our ScoreCentre for all the live scores and stats.', 'http://www.abc.net.au/news/2021-04-10/nrl-live-titans-knights-bulldogs-storm-roosters-sharks/100060256', 'https://live-production.wcms.abc-cdn.net.au/f1a1d400696d3ca59a9418d8da9c275f?impolicy=wcms_crop_resize&cropH=1680&cropW=2983&xPos=17&yPos=51&width=862&height=485', '2021-04-09 21:10:19', '2021-04-09 21:55:45', '2021-04-09 21:55:45'),
(625, 'abc-news-au', 'ABC News', 'Rock climber feared dead after falling 40m from Queensland\'s Mount Ngungun on Sunshine Coast', 'A rock climber in his 20s is feared dead after falling 40 metres from Mount Ngungun in the Glass House Mountains on Queensland\'s Sunshine Coast.', 'http://www.abc.net.au/news/2021-04-10/qld-climber-dies-mount-ngungun-fall-glass-house-mountains/100060944', 'https://live-production.wcms.abc-cdn.net.au/79526e226a53a5d608a17b5ed3fadcc6?impolicy=wcms_crop_resize&cropH=421&cropW=749&xPos=0&yPos=80&width=862&height=485', '2021-04-09 20:28:18', '2021-04-09 21:55:45', '2021-04-09 21:55:45');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(626, 'abc-news-au', 'Markus Mannheim', 'COVID-19 vaccination delays \'inevitable\' as ACT government asks Canberrans to postpone bookings', 'A shipment of Pfizer vaccines arrived in Canberra on Friday, but officials are still working out how new guidelines will affect the rollout.', 'http://www.abc.net.au/news/2021-04-10/pfizer-switch-to-delay-act-vaccination-rollout/100060778', 'https://live-production.wcms.abc-cdn.net.au/a2522f1ddf314cfd9ba392a60e4497fe?impolicy=wcms_crop_resize&cropH=1688&cropW=3000&xPos=0&yPos=180&width=862&height=485', '2021-04-09 20:23:35', '2021-04-09 21:55:45', '2021-04-10 00:16:59'),
(627, 'abc-news-au', 'Elizabeth Byrne', 'Canberra man who filmed people using his toilet with hidden camera jailed', 'Geoffrey Appleby was sentenced to jail over a raft of charges, including possessing child abuse material and secretly filming people using a hidden camera in his bathroom.', 'http://www.abc.net.au/news/2021-04-10/canberra-jailed-filming-toilet-hidden-camera-child-abuse/100059928', 'https://live-production.wcms.abc-cdn.net.au/c2232583689a20110ac3bb4a3bf63eb3?impolicy=wcms_crop_resize&cropH=1568&cropW=2794&xPos=0&yPos=0&width=862&height=485', '2021-04-09 13:32:34', '2021-04-09 21:55:45', '2021-04-10 00:16:59'),
(628, 'abc-news-au', 'ABC News', 'Penrith Panthers slam Canberra Raiders, Sea Eagles secure dramatic win over Warriors', 'The Panthers have sent out a warning to the competition with a 30-10 victory over Canberra. Earlier, Manly beat the Warriors thanks to a last minute Daly Cherry-Evans field goal in Gosford.', 'http://www.abc.net.au/news/2021-04-09/nrl-penrith-panthers-beat-raiders-sea-eagles-beat-warriors/100055390', 'https://live-production.wcms.abc-cdn.net.au/291d928b7910691d0f7138296e4db960?impolicy=wcms_crop_resize&cropH=2261&cropW=4019&xPos=0&yPos=0&width=862&height=485', '2021-04-08 23:50:53', '2021-04-09 21:55:45', '2021-04-10 00:16:59'),
(629, 'abc-news-au', 'Elizabeth Byrne', 'Canberra Aulich law partner Bridie Harders will have charges dropped against her in proceeds of crime case', 'Prosecutors say they will drop charges against Canberra lawyer Bridie Harders, who was charged with conspiracy to deal with the proceeds of crime last year alongside her boss Ben Aulich, becuase they have no chance of success.', 'http://www.abc.net.au/news/2021-04-09/canberra-aulich-law-partner-bridie-harders-charges-dropped/100057608', 'https://live-production.wcms.abc-cdn.net.au/a1f0b0cb9008fa81a63090a81ffff943?impolicy=wcms_crop_resize&cropH=1688&cropW=3000&xPos=0&yPos=60&width=862&height=485', '2021-04-08 15:54:25', '2021-04-09 21:55:45', '2021-04-09 21:55:45'),
(630, 'abc-news-au', 'ABC News', 'Australia\'s Parliament House marks Prince Philip\'s death with 41-gun salute', 'The Australian Federation Guard fires rounds from six M2A2 45mm Howitzer ceremonial guns in the forecourt of Parliament House, in 10-second intervals, to honour the Duke of Edinburgh.', 'http://www.abc.net.au/news/2021-04-10/australian-41-gun-salute-to-mark-passing-prince-philip/100061186', 'https://www.abc.net.au/news/linkableblob/8413676/data/abc-news-og-data.jpg', '2021-04-09 23:43:13', '2021-04-10 00:16:59', '2021-04-10 00:16:59'),
(631, 'abc-news-au', 'ABC News', 'Morphett Vale driver charged after allegedly being drunk and on drugs with child on front passenger\'s lap', 'Police say the Morphett Vale man recorded a blood-alcohol reading of 0.120 and also allegedly tested positive to methamphetamine and cannabis after being pulled over.', 'http://www.abc.net.au/news/2021-04-10/man-allegedly-drunk-and-on-drugs-with-child-in-front-seat/100061174', 'https://live-production.wcms.abc-cdn.net.au/472e99ab3632e0e8c969145b14b321cc?impolicy=wcms_crop_resize&cropH=570&cropW=1013&xPos=8&yPos=0&width=862&height=485', '2021-04-09 23:22:03', '2021-04-10 00:16:59', '2021-04-10 00:16:59'),
(632, 'abc-news-au', 'ABC News', 'NSW coroner receives application for fresh inquest into 1979 Luna Park Ghost Train fire', 'An application seeking a fresh inquest into the 1979 Luna Park Ghost Train fire is sent to the New South Wales state coroner.', 'http://www.abc.net.au/news/2021-04-10/nsw-coroner-and-luna-park-inquiry/100061180', 'https://live-production.wcms.abc-cdn.net.au/f1dfef6581e1bf18ad5d025085bdeab9?impolicy=wcms_crop_resize&cropH=835&cropW=1484&xPos=154&yPos=15&width=862&height=485', '2021-04-09 23:18:42', '2021-04-10 00:16:59', '2021-04-10 00:16:59'),
(633, 'abc-news-au', 'ABC News', 'Adelaide Crows to host Brisbane Lions in AFLW grand final', 'The Crows score a three-goal victory over Melbourne to give themselves a shot at a third AFLW premiership, while the Lions qualify for the season decider following a tight four-point win over the Magpies.', 'http://www.abc.net.au/news/2021-04-10/aflw-adelaide-crows-to-host-brisbane-lions-in-grand-final/100061130', 'https://live-production.wcms.abc-cdn.net.au/c3b706a12466385f6d38704023465016?impolicy=wcms_crop_resize&cropH=826&cropW=1469&xPos=0&yPos=58&width=862&height=485', '2021-04-09 21:54:02', '2021-04-10 00:16:59', '2021-04-10 00:16:59'),
(634, 'abc-news-au', 'ABC News', 'AFL live ScoreCentre: Saints vs Eagles, Suns vs Blues, Magpies vs Giants, Bulldogs vs Lions live scores, stats and results', 'It\'s a big Saturday of AFL, with St Kilda taking on West Coast, the Suns hosting the Blues, and Collingwood playing GWS. Earlier, the Bulldogs stayed unbeaten with a win over Brisbane. Follow our live AFL ScoreCentre for all the scores, stats and results.', 'http://www.abc.net.au/news/2021-04-10/afl-live-saints-eagles-suns-blues-magpies-giants-bulldogs-lions/100057780', 'https://live-production.wcms.abc-cdn.net.au/396f0ba79d9e74b974553b3134bff643?impolicy=wcms_crop_resize&cropH=1689&cropW=3000&xPos=0&yPos=102&width=862&height=485', '2021-04-09 21:10:19', '2021-04-10 00:17:00', '2021-04-10 00:17:00'),
(635, 'the-times-of-india', 'PTI', 'Arizona wildfire destroys 12 homes; 200 people evacuated', 'US News: A small community in south-central Arizona remained under an evacuation notice Friday after crews and air tankers stopped the growth of a wildfire tha', 'http://timesofindia.indiatimes.com/world/us/arizona-wildfire-destroys-12-homes-200-people-evacuated/articleshow/82000382.cms', 'https://static.toiimg.com/thumb/msid-82000599,width-1070,height-580,imgsize-178286,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 15:29:00', '2021-04-10 00:35:46', '2021-04-10 01:15:18'),
(636, 'the-times-of-india', 'TIMESOFINDIA.COM', 'India reports 1,45,384 new Covid cases, another highest one-day surge', 'India News: Daily Covid case count in India set a new record for the fourth straight day, after reporting over 1.45 lakh new cases on Saturday. According to the U', 'http://timesofindia.indiatimes.com/india/india-reports-145384-new-covid-cases-highest-one-day-surge/articleshow/81999440.cms', 'https://static.toiimg.com/thumb/msid-81999905,width-1070,height-580,imgsize-110251,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 14:48:00', '2021-04-10 00:35:46', '2021-04-10 01:15:18'),
(637, 'the-times-of-india', 'Times Of India', 'Coronavirus live updates: Maharashtra reports 55,411 new Covid-19 cases', 'Coronavirus update: India now has more active cases of the coronavirus than at any other time since the beginning of the pandemic. The country\'s active case count crossed the 1-million mark before settling to an all-time high of around 10,46,000 on Friday, even as fresh cases surged to another new peak of over 1.45 lakh. Stay here for all live updates', 'http://timesofindia.indiatimes.com/india/coronavirus-lockdown-in-india-covid-19-vaccine-cases-live-updates-10-april-2021/liveblog/81997722.cms', 'https://static.toiimg.com/thumb/msid-81997722,width-1070,height-580,imgsize-82707,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 08:52:55', '2021-04-10 00:35:46', '2021-04-10 09:08:46'),
(638, 'the-times-of-india', 'TNN', 'Even as Covid vaccine demand rises, firms may take some weeks to up production', 'India News: With a number of states complaining of vaccine shortage and temporarily shutting centres – at a time when the need is to increase the daily rate of ja', 'http://timesofindia.indiatimes.com/india/even-as-covid-vaccine-demand-rises-firms-may-take-some-weeks-to-up-production/articleshow/81995871.cms', 'https://static.toiimg.com/thumb/msid-81995844,width-1070,height-580,imgsize-52266,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 14:26:00', '2021-04-10 00:35:46', '2021-04-10 01:15:18'),
(639, 'the-times-of-india', 'TIMESOFINDIA.COM', '#IndiraNagarkaGunda: Twitter going bonkers over Rahul Dravid\'s new \'angry\' avatar', 'Off the field News: A never-seen-before avatar of legendary Indian cricketer Rahul Dravid has been one of the biggest talking points across the nation and given people in', 'http://timesofindia.indiatimes.com/sports/off-the-field/indiranagarkagunda-twitter-going-bonkers-over-rahul-dravids-new-angry-avatar/articleshow/82001554.cms', 'https://static.toiimg.com/thumb/msid-82001592,width-1070,height-580,imgsize-86757,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 17:04:00', '2021-04-10 00:35:47', '2021-04-10 01:15:18'),
(640, 'the-times-of-india', 'TNN', 'Pandemic explosion sends Gujarat health infra in tailspin', 'Unabated rise in corona cases in Gujarat has triggered a health emergency of sorts. On Friday, Covid-19 cases breached another record at 4,500 cases,', 'http://timesofindia.indiatimes.com/city/ahmedabad/pandemic-explosion-sends-gujarat-health-infra-in-tailspin/articleshow/81998579.cms', 'https://static.toiimg.com/thumb/msid-81998578,width-1070,height-580,imgsize-252684,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 11:42:00', '2021-04-10 00:35:47', '2021-04-10 01:15:18'),
(641, 'the-times-of-india', 'K Shriniwas Rao', 'IPL 2021: Harshal Patel, AB de Villiers help Royal Challengers Bangalore pip Mumbai Indians by two wickets', 'Cricket News: If a five-wicket haul was the cake Harshal Patel ordered for Royal Challengers Bangalore on a very humid Friday evening in Chennai, the young man capp', 'http://timesofindia.indiatimes.com/sports/cricket/ipl/top-stories/ipl-2021-harshal-patel-ab-de-villiers-help-royal-challengers-bangalore-pip-mumbai-indians-by-two-wickets/articleshow/81999018.cms', 'https://static.toiimg.com/thumb/msid-81999078,width-1070,height-580,imgsize-916933,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 13:11:00', '2021-04-10 00:35:47', '2021-04-10 00:35:47'),
(642, 'the-times-of-india', 'TIMESOFINDIA.COM', 'Govt exported vaccines, allowed shortage in India: Sonia at Cong\'s review meet on Covid', 'India News: Addressing a virtual meeting with the chief ministers of the Congress-ruled states and ministers of the party in states where it is in power in allian', 'http://timesofindia.indiatimes.com/india/sonia-gandhi-reviews-efforts-to-tackle-covid-19-in-congress-ruled-states/articleshow/82001601.cms', 'https://static.toiimg.com/thumb/msid-82001580,width-1070,height-580,imgsize-386413,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 17:02:00', '2021-04-10 01:15:18', '2021-04-10 01:15:18'),
(643, 'espn', 'Alden Gonzalez', 'San Diego-area native Joe Musgrove throws first no-hitter in Padres history in win over Texas Rangers', 'Padres right-hander Joe Musgrove pitched the first no-hitter in the history of his hometown team, allowing only one baserunner in a 3-0 victory over the Rangers on Friday night.', 'http://espn.go.com/mlb/story/_/id/31225903/joe-musgrove-throws-first-no-hitter-san-diego-padres-history-texas-rangers', 'https://a2.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0410%2Fr838376_1296x729_16%2D9.jpg', '2021-04-09 18:53:00', '2021-04-10 01:33:53', '2021-04-10 08:59:05'),
(644, 'espn', 'Sarah BarshopESPN Staff Writer ', 'Rusty Hardin - Deshaun Watson did not engage in any sexual encounters that were not \'mutually desired\'', 'Deshaun Watson\'s lawyer said Friday there were some \"consensual encounters\" between the Texans quarterback and some of the women who have filed lawsuits against him, but said Watson never engaged in any acts that were not \"mutually desired.\"', 'http://espn.go.com/nfl/story/_/id/31224333/rusty-hardin-deshaun-watson-never-engaged-acts-plaintiffs-mutually-desired', 'https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0409%2Fr838231_1296x729_16%2D9.jpg', '2021-04-09 13:44:00', '2021-04-10 01:33:54', '2021-04-10 08:59:05'),
(645, 'espn', 'Tim Bontemps', 'Jayson Tatum scores 53 points, drags Boston Celtics past Timberwolves in OT', 'Jayson Tatum finished with a career-high 53 points on Friday night, passing Larry Bird to become the youngest Celtics player with a 50-point game.', 'http://espn.go.com/nba/story/_/id/31226238/jayson-tatum-scores-53-points-drags-boston-celtics-timberwolves-ot', 'https://a2.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0410%2Fr838367_1296x729_16%2D9.jpg', '2021-04-09 20:18:00', '2021-04-10 01:33:54', '2021-04-10 08:59:05'),
(646, 'espn', 'Alden GonzalezESPN Staff Writer ', 'Los Angeles Dodgers\' Dave Roberts concerned Trevor Bauer singled out by Major League Baseball', 'Trevor Bauer\'s name surfaced in a report from The Athletic stating that baseballs from his Wednesday outing against Oakland were collected for inspection after they were found to contain visible markings and felt sticky.', 'http://espn.go.com/mlb/story/_/id/31224218/los-angeles-dodgers-dave-roberts-concerned-trevor-bauer-singled-major-league-baseball', 'https://a4.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0403%2Fr835397_1296x729_16%2D9.jpg', '2021-04-09 13:25:00', '2021-04-10 01:33:54', '2021-04-10 08:59:05'),
(647, 'espn', 'Andrew Lopez', 'New Orleans Pelicans give Zion Williamson keys to offense, drive away with win', 'Zion Williamson on Friday became is the youngest player in league history to have at least 35 points, 15 rebounds and eight assists in an NBA game, doing so in a 101-94 win against the Sixers.', 'http://espn.go.com/nba/story/_/id/31226281/new-orleans-pelicans-give-zion-williamson-keys-offense-drive-away-win', 'https://a4.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0410%2Fr838382_1296x729_16%2D9.jpg', '2021-04-09 20:27:00', '2021-04-10 01:33:54', '2021-04-10 08:59:05'),
(648, 'espn', 'Bob HarigESPN Senior Writer ', 'Justin Rose salvages shaky start with second-round 72 to stay in front at Masters', 'Justin Rose did just enough on Friday to stay ahead of the pack at the Masters.', 'http://espn.go.com/golf/story/_/id/31223841/justin-rose-salvages-shaky-start-second-round-72-stay-front-masters', 'https://a1.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0409%2Fr838084_1296x729_16%2D9.jpg', '2021-04-09 12:20:00', '2021-04-10 01:33:54', '2021-04-10 01:33:54'),
(649, 'espn', NULL, 'Chicago Bulls star Zach LaVine scores 39 points in first half of loss to Atlanta Hawks', 'Zach LaVine scored 39 of his career-high 50 points in the first half Friday but it wasn\'t enough to overcome Trae Young and the Hawks.', 'http://espn.go.com/nba/story/_/id/31225793/chicago-bulls-star-zach-lavine-scores-39-points-first-half-loss-atlanta-hawks', 'https://a2.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0410%2Fr838362_1296x729_16%2D9.jpg', '2021-04-09 18:42:00', '2021-04-10 01:33:54', '2021-04-10 01:33:54'),
(650, 'espn', 'Mark SchlabachESPN Senior Writer ', 'Tiger Woods thought he was in Florida after crash in Los Angeles, according to collision report', 'Tiger Woods didn\'t remember anything about his car wreck on Feb. 23 and believed he was in the state of Florida when a sheriff\'s deputy interviewed him at a Los Angeles area hospital moments after the accident, according to a report released Friday.', 'http://espn.go.com/golf/story/_/id/31222768/tiger-woods-thought-was-florida-crash-los-angeles-according-collision-report', 'https://a1.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0302%2Fr821526_1296x729_16%2D9.jpg', '2021-04-09 09:18:56', '2021-04-10 01:33:54', '2021-04-10 08:59:05'),
(651, 'espn', 'Zach LoweESPN Senior Writer ', 'Ten NBA things I like and don\'t like, including the Nuggets\' devastating stars', 'Let\'s spotlight the Nuggets reaching legitimate contender status, a Jazz dilemma and one rookie flashing a little bravado.', 'http://espn.go.com/nba/insider/story/_/id/31215089/ten-nba-things-like-including-nuggets-devastating-stars', 'https://a1.espncdn.com/combiner/i?img=%2Fphoto%2F2019%2F0122%2Fr492318_1296x729_16%2D9.jpg', '2021-04-09 03:00:00', '2021-04-10 01:33:54', '2021-04-10 08:59:05'),
(652, 'google-news', 'Benjamin Siegel', 'House Ethics Committee opens investigation into Rep. Matt Gaetz', '<ol><li>House Ethics Committee opens investigation into Rep. Matt Gaetz ABC News\r\n</li><li>House Ethics Committee to investigate Matt Gaetz CNN \r\n</li><li>House Ethics Committee Opens Investigation Into Rep. Matt Gaetz | NBC News NOW NBC News\r\n</li><li>Rep. Matt Gaetz Being Investigated By House Ethics Committee NPR\r\n</li><li>House Ethics panel opens investigation into Rep. Matt Gaetz as he faces sex-trafficking allegation The Washington Post\r\n</li><li>View Full Coverage on Google News</li></ol>', 'https://abcnews.go.com/Politics/house-ethics-committee-opens-investigation-rep-matt-gaetz/story?id=76981572', 'https://s.abcnews.com/images/Politics/matt-gaetz_hpMain_20210409-212029_16x9_992.jpg', '2021-04-09 17:30:00', '2021-04-10 01:52:33', '2021-04-10 01:52:33'),
(653, 'google-news', 'Houston Keene', 'McConnell: Biden Supreme Court commission \'direct assault on our nation\'s independent judiciary\'', 'McConnell unloaded on the idea of packing the court and the White House’s plan to form a commission to study the idea of adding justices in a Friday press release, calling the idea a “direct assault on our nation’s independent judiciary.”', 'https://www.foxnews.com/politics/biden-supreme-court-commission-mcconnell-ginsburg-nine', 'https://static.foxnews.com/foxnews.com/content/uploads/2021/04/mcconnell.jpg', '2021-04-09 14:48:28', '2021-04-10 01:52:33', '2021-04-10 01:52:33'),
(654, 'google-news', 'Oliver O\'Connell', 'George Clooney has been offering blunt advice to George Floyd’s team in Chauvin trial emails', 'Passionate about social justice causes, Clooney is in touch with Floyd family lawyer Benjamin Crump', 'https://www.independent.co.uk/news/world/americas/george-clooney-floyd-trial-emails-b1829364.html', 'https://static.independent.co.uk/2021/04/09/20/GettyImages-1169449104.jpg?width=1200&auto=webp&quality=75', '2021-04-09 14:59:44', '2021-04-10 01:52:33', '2021-04-10 01:52:33'),
(655, 'google-news', 'Wilson Wong, Tim Fitzsimons', 'Off-duty Pentagon police officer charged in Maryland shooting that left two dead', 'David Hall Dixon was placed on administrative leave after he was accused of fatally shooting two people he believed were breaking into a car in Maryland, authorities said.', 'https://www.nbcnews.com/news/us-news/duty-pentagon-police-officer-charged-maryland-shooting-left-two-dead-n1263645', 'https://media2.s-nbcnews.com/j/newscms/2021_14/3463074/210408-takoma-overlook-condominiums-ew-1237p_d05ad35f8b2e1de51dbaa5ce8a83ea93.nbcnews-fp-1200-630.jpg', '2021-04-09 09:06:00', '2021-04-10 01:52:33', '2021-04-10 01:52:33'),
(656, 'google-news', 'Kirkland Crawford and Mick McCabe', 'Why Michigan high school sports won\'t be following Whitmer\'s two-week pause suggestion', 'Gov. Gretchen Whitmer is suggesting all Michigan youth sports take a two-week break to mitigate the spread of COVID-19. The MHSAA is gonna pass', 'https://www.freep.com/story/sports/high-school/2021/04/09/michigan-high-school-sports-gretchen-whitmer-2-week-pause-request-mark-uyl/7163402002/', 'https://www.gannett-cdn.com/presto/2019/01/14/PLSJ/605324f4-f36d-49dc-b43b-905563244d50-MarkUyl.jpg?crop=291,167,x0,y76&width=1600&height=800&fit=bounds', '2021-04-09 14:03:18', '2021-04-10 01:52:33', '2021-04-10 01:52:33'),
(657, 'google-news', 'Adrienne DeMoss', 'Kent Moore Cabinets establishes support fund for shooting victims, families', 'Spirit Of Texas Bank said they will match up to the first $10,000 donated', 'https://www.kbtx.com/2021/04/09/kent-moore-cabinets-establishes-support-fund-for-shooting-victims-families/', 'https://gray-kbtx-prod.cdn.arcpublishing.com/resizer/g9bbMvhnAaxvuwL0DUfa0bbXBHs=/980x0/smart/cloudfront-us-east-1.images.arcpublishing.com/gray/IFOTS73ULJDOPGI6I7HNAHAPPA.png', '2021-04-09 14:45:00', '2021-04-10 01:52:33', '2021-04-10 01:52:33'),
(658, 'google-news', 'Guardian staff reporter', 'Scientists alarmed after four gray whales found dead in San Francisco Bay', 'Deaths discovered over a course of nine days are ‘just the tip of the iceberg’ for the species, says expert', 'https://amp.theguardian.com/us-news/2021/apr/09/gray-whales-dead-san-francisco-bay', 'https://i.guim.co.uk/img/media/c2ca2d3295eb4b276fb9b158004096f0566bc850/0_120_1600_960/master/1600.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=8a13e8048bd884fac65ee65bad69395b', '2021-04-09 16:54:00', '2021-04-10 01:52:34', '2021-04-10 01:52:34'),
(659, 'google-news', 'Maggie Haberman, Michael Majchrowicz', 'Matt Gaetz Tells Supporters He Is a Victim of Leaks and Lies', 'The congressman defended himself in his first major public appearance since a Justice Department inquiry came to light last week.', 'https://www.nytimes.com/2021/04/09/us/politics/matt-gaetz-florida.html', 'https://static01.nyt.com/images/2021/04/09/us/09dc-gaetz/09dc-gaetz-facebookJumbo.jpg', '2021-04-09 17:53:32', '2021-04-10 01:52:34', '2021-04-10 01:52:34'),
(660, 'google-news', 'Crystal Bell', 'Semper coronavirus: Almost 40 percent of Marines are declining COVID-19 vaccine', 'Nearly 40 percent of US Marines are declining COVID-19 vaccinations, according to a new report. Some 75,500 Marines have received vaccine shots, CNN reported Friday. But 48,000 other Marines have t…', 'https://nypost.com/2021/04/10/nearly-40-percent-of-marines-are-declining-covid-19-vaccine/', 'https://nypost.com/wp-content/uploads/sites/2/2021/04/us-marines-declining-covid-vaccines-index.jpg?quality=90&strip=all&w=1200', '2021-04-09 20:19:00', '2021-04-10 01:52:34', '2021-04-10 01:52:34'),
(661, 'google-news', 'Sonam Sheth', 'DOJ veterans say the latest twist in the Matt Gaetz sex-trafficking investigation could be the most \'scary\' one yet for the lawmaker', 'Joel Greenberg\'s potential cooperation means someone Gaetz may have conspired with \"is now working with the government,\" an ex-FBI agent said.', 'https://www.businessinsider.com/prosecutors-doj-veterans-react-joel-greenberg-plea-deal-matt-gaetz-2021-4', 'https://s.yimg.com/ny/api/res/1.2/kbqpnYL9Qe0vorqXpAEV.w--/YXBwaWQ9aGlnaGxhbmRlcjt3PTIwMDA7aD0xNTAw/https://s.yimg.com/uu/api/res/1.2/LFugrhAIW9VnuCS3bP79lw--~B/aD0zNjQ0O3c9NDg1OTthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/business_insider_articles_888/c56aee6d8a2af12704a8dde8f2c3a9fa', '2021-04-09 12:19:13', '2021-04-10 01:52:34', '2021-04-10 01:52:34'),
(662, 'al-jazeera-english', 'Al Jazeera', 'Myanmar UN envoy urges no-fly zone as many protesters killed', 'Sixty civilians reported killed overnight and on Saturday in Bago outside Yangon as security forces dismantle barricade.', 'http://www.aljazeera.com/news/2021/4/10/myanmar-un-envoy-urges-no-fly-zone-as-army-crackdown-intensifies', 'https://www.aljazeera.com/wp-content/uploads/2021/04/000_97M8KM.jpg?resize=1024%2C630', '2021-04-09 17:09:05', '2021-04-10 01:52:38', '2021-04-10 01:52:38'),
(663, 'al-jazeera-english', 'Al Jazeera', 'Myanmar military may extend emergency rule by up to two years', 'Spokesman refuses to provide timeline for a new election, says state of emergency could be extended by up to two years.', 'http://www.aljazeera.com/news/2021/4/7/myanmar-military-may-extend-emergency-rule-by-up-to-two-years', 'https://www.aljazeera.com/wp-content/uploads/2021/04/Military-soldiers-from-the-convoy-accompanying-the-press-tour.-March-31-2021_Allegra-Mendelson.jpeg?resize=1200%2C630', '2021-04-06 22:51:38', '2021-04-10 01:52:38', '2021-04-10 01:52:38'),
(664, 'al-jazeera-english', 'Inger Ashing', 'Killings, violence, detention: Myanmar is no place for children', 'Forty-three children have been killed in the two months since Myanmar’s military coup began on February 1.', 'http://www.aljazeera.com/opinions/2021/4/1/killings-violence-detention-myanmar-is-no-place-for-children', 'https://www.aljazeera.com/wp-content/uploads/2021/03/2021-03-27T091948Z_707831446_RC2LJM9W95HT_RTRMADP_3_MYANMAR-POLITICS.jpg?resize=1200%2C630', '2021-04-01 07:02:01', '2021-04-10 01:52:38', '2021-04-10 01:52:38'),
(665, 'al-jazeera-english', 'Al Jazeera', 'Myanmar protesters urge ‘guerrilla strikes’ amid internet cutoff', 'Anti-coup groups share radio frequencies, offline internet resources to circumvent internet curbs amid violence.', 'http://www.aljazeera.com/news/2021/4/2/myanmar-protesters-urge-guerrilla-strikes-amid-internet', 'https://www.aljazeera.com/wp-content/uploads/2021/04/2021-04-01T111632Z_876685270_RC2ZMM9C581D_RTRMADP_3_MYANMAR-POLITICS-PROTESTS.jpg?resize=1200%2C630', '2021-04-02 00:47:10', '2021-04-10 01:52:38', '2021-04-10 01:52:38'),
(666, 'al-jazeera-english', 'Al Jazeera', 'Vaccine shortages hit poor countries as global deliveries stall', 'Fewer than two million COVAX doses were cleared for shipment to 92 countries in the developing world last two weeks.', 'http://www.aljazeera.com/news/2021/4/10/vaccine-shortages-hit-poor-countries-as-global-deliveries-stall', 'https://www.aljazeera.com/wp-content/uploads/2021/03/2021-03-05T132038Z_1369812596_RC215M9M49VB_RTRMADP_3_HEALTH-CORONAVIRUS-KENYA.jpg?resize=1200%2C630', '2021-04-10 00:47:16', '2021-04-10 01:52:38', '2021-04-10 01:52:38'),
(667, 'al-jazeera-english', 'Al Jazeera', 'Australia to end sexual harassment exemption for politicians', 'PM says politicians and judges will no longer be exempt from rules against sexual harassment in the workplace.', 'http://www.aljazeera.com/news/2021/4/8/australia-to-end-sexual-harassment-exemption-for-politicians', 'https://www.aljazeera.com/wp-content/uploads/2021/04/2021-03-11T155107Z_448573495_RC239M9WIHIL_RTRMADP_3_OLYMPICS-IOC.jpg?resize=1200%2C630', '2021-04-07 22:20:46', '2021-04-10 01:52:38', '2021-04-10 01:52:38'),
(668, 'der-tagesspiegel', 'Sandra Dassler', 'Ordnungsamt zählt seit Pandemiebeginn mehr Verstöße', 'Die Zahl der Ordnungswidrigkeiten hat stark zugenommen. Obwohl das Ordnungsamt auf Hinweise angewiesen ist, halten sich Denunziationen in Grenzen.', 'https://www.tagesspiegel.de/berlin/macht-corona-die-berliner-zu-denunzianten-ordnungsamt-zaehlt-seit-pandemiebeginn-mehr-verstoesse/27083706.html', NULL, '2021-04-10 06:01:39', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(669, 'der-tagesspiegel', 'Stefan Hermanns', 'Hertha gegen Mönchengladbach - 1:1', 'Ungarn hatte Kritik geübt wegen der Trennung von Zsolt Petry + Zeckes Kunstwerk für den guten Zweck + Marton Dardai vor Vertragsverlängerung + Mehr im Blog', 'https://www.tagesspiegel.de/sport/liveblog/hertha-bsc-in-der-saison-2020-21-hertha-gegen-moenchengladbach-1-1/23882958.html', 'https://www.tagesspiegel.de/images/berlin-06-03-21-fussball-bundesliga-24-spieltag-hertha-bsc-fc-augsburg-olympiastadion-berlins-trainer-pal-dard/27003844/2-format530.jpg', '2021-04-10 06:00:44', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(670, 'der-tagesspiegel', 'Claus Vetter', 'Das sieht düster aus - jetzt 1:3 bei den Eisbären in Schwenningen', '+ Eisbären wieder auf Reisen + Sixpack gegen Schwenningen + Zwei Spiele, null Punkte, 1:9 Tore gegen München + Rückfall für Labrie + Mehr im Blog +', 'https://www.tagesspiegel.de/sport/liveblog/eisbaeren-berlin-in-der-eishockey-saison-2020-21-das-sieht-duester-aus-jetzt-1-3-bei-den-eisbaeren-in-schwenningen/14539956.html', 'https://www.tagesspiegel.de/images/703126651/27075544/2-format530.jpg', '2021-04-10 05:39:23', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(671, 'der-tagesspiegel', NULL, 'Bundestagsabgeordnete werfen Russland Folterung Nawalnys vor', 'Abgeordnete von Grünen, Union, SPD und FDP haben dem inhaftierten Kreml-Kritiker Nawalny einen Brief geschrieben – sie erheben schwere Vorwürfe gegen Putin.', 'https://www.tagesspiegel.de/politik/wir-wollen-ihnen-mut-zusprechen-bundestagsabgeordnete-werfen-russland-folterung-nawalnys-vor/27083640.html', 'https://www.tagesspiegel.de/images/alexei-nawalny/27083680/1-format530.jpg', '2021-04-10 05:44:23', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(672, 'der-tagesspiegel', 'Albert Funk', 'Harter Lockdown per Gesetz – wie es jetzt weitergeht', 'Per Bundesgesetz wird nun ein harter Lockdown ab dem Inzidenzwert 100 verfügt. Wie es dazu kam, was im Gesetz stehen soll und wie es weitergeht .', 'https://www.tagesspiegel.de/politik/ein-coup-von-merkel-scholz-und-co-harter-lockdown-per-gesetz-wie-es-jetzt-weitergeht/27083144.html', 'https://www.tagesspiegel.de/images/olaf-scholz-und-angela-merkel-in-der-218-sitzung-des-deutschen-bundestages-im-reichstagsgebaeude-berlin-25-03-2021-/27083152/1-format530.jpg', '2021-04-10 05:32:30', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(673, 'der-tagesspiegel', NULL, 'Proteste gegen Liebig-34-Räumung und den Ausbau der A 100', 'Aktivisten demonstrieren gegen die Liebig-34-Räumung und den Ausbau der A100. Am Brandenburger Tor wird die Freilassung des Kreml-Kritikers Nawalny gefordert.', 'https://www.tagesspiegel.de/berlin/demo-samstag-in-berlin-proteste-gegen-liebig-34-raeumung-und-den-ausbau-der-a-100/27083128.html', 'https://www.tagesspiegel.de/images/vor-der-raeumung-von-liebig-34/27083654/1-format530.jpg', '2021-04-10 05:25:23', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(674, 'der-tagesspiegel', NULL, 'Zeugen und Gegenzeugen', 'Im Streit um Chinas Völkermord an den Uiguren haben sich absurde Konstellationen ergeben - auch in Europa. Die Zeitschriftenkolumne.', 'https://www.tagesspiegel.de/kultur/menschenrechte-in-xinjiang-zeugen-und-gegenzeugen/27083572.html', 'https://www.tagesspiegel.de/images/china-xinjiang-uighur-work-on-cotton-plantation-china-autonomous-province-xinjiang-uyghur-worker-prepare-irrigation/27083582/1-format530.jpg', '2021-04-10 05:21:02', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(675, 'der-tagesspiegel', 'Georg Ismar', 'Merkel plant hartes Durchgreifen – Ausgangssperre dann auch in Berlin', 'Bund und Länder verhandeln über eine Änderung des Infektionsschutzgesetzes. Jetzt werden die Pläne von Kanzlerin Merkel konkreter.', 'https://www.tagesspiegel.de/politik/neuer-entwurf-fuer-corona-notbremse-merkel-plant-hartes-durchgreifen-ausgangssperre-dann-auch-in-berlin/27083514.html', 'https://www.tagesspiegel.de/images/file-photo-german-chancellor-angela-merkel-arrives-for-a-news-conference-after-a-virtual-meeting-with-federal-state-governors-at-the-chancellery-in-berlin/27083552/1-format530.jpg', '2021-04-10 04:54:03', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(676, 'der-tagesspiegel', NULL, 'Positiver Corona-Befund bei vier Nationalspielerinnen', 'Nach einem positiven Corona-Test sind vier Spielerinnen in Quarantäne. Das Spiel gegen Australien soll aber wie geplant stattfinden.', 'https://www.tagesspiegel.de/sport/vor-dem-fussball-laenderspiel-gegen-australien-positiver-corona-befund-bei-vier-nationalspielerinnen/27083510.html', 'https://www.tagesspiegel.de/images/rauch/27083516/2-format530.jpg', '2021-04-10 04:40:19', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(677, 'der-tagesspiegel', NULL, 'Das sagt Prinz Charles zum Tod seines Vaters', 'Immer mehr Mitglieder der britischen Königsfamilie reisen nach dem Tod von Prinz Philip zur Queen nach Windsor. Wird auch Harry kommen?', 'https://www.tagesspiegel.de/gesellschaft/panorama/salutschuesse-fuer-verstorbenen-prinz-philip-das-sagt-prinz-charles-zum-tod-seines-vaters/27083400.html', 'https://www.tagesspiegel.de/images/trooping-the-colour-offizielle-geburtstagsparade-fuer-die-queen/27083426/1-format530.jpg', '2021-04-10 03:32:45', '2021-04-10 06:10:45', '2021-04-10 06:10:45'),
(678, 'football-italia', 'Football Italia Staff', 'Liveblog: Serie A Wk30 Saturday', 'Join us for all the build-up and action as it happens from today’s three Serie A games, Spezia-Crotone, Parma-Milan and Udinese-Torino.', 'http://www.football-italia.net/node/168946', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Simy-2013-Cro-celeb-epa_0.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:50', '2021-04-10 07:01:50'),
(679, 'football-italia', 'Football Italia Staff', 'Line-ups: Parma v Milan', 'Milan have to start looking over their shoulders with Zlatan Ibrahimovic and Ante Rebic, while Parma are desperate to avoid relegation and look to Graziano Pellè.', 'http://www.football-italia.net/node/168959', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Ibrahimovic-2102-warmup-epa_4.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:50', '2021-04-10 07:01:50'),
(680, 'football-italia', 'Football Italia Staff', 'Pirlo wants same Juve 'spirit' with Genoa', 'Andrea Pirlo hopes Juventus have ‘the same spirit’ against Genoa that they showed to beat Napoli, but Paulo Dybala is not ready to start yet.', 'http://www.football-italia.net/node/168955', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Pirlo-2102-what-epa_0.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:50', '2021-04-10 07:01:50'),
(681, 'football-italia', 'Football Italia Staff', 'Ballardini ready to give Juve a game', 'Davide Ballardini expects Genoa to enjoy a ‘hard-fought, entertaining match’ against Juventus tomorrow.', 'http://www.football-italia.net/168958/ballardini-ready-give-juve-game', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Ballardini-2101-ti-meno-epa_1.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:50', '2021-04-10 07:01:50'),
(682, 'football-italia', 'Football Italia Staff', 'Serie B: Pescara coach collapses', 'There was a scare in Serie B this afternoon when Pescara coach Gianluca Grassadonia collapsed during a game with Brescia.', 'http://www.football-italia.net/168957/serie-b-pescara-coach-collapses', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/SerieB201920-logo_137.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:51', '2021-04-10 07:01:51'),
(683, 'football-italia', 'Football Italia Staff', 'Iachini wants it all against Atalanta', 'Fiorentina coach Beppe Iachini needs ‘organisation, focus and ability to occupy space in the right way’ in order to surprise Atalanta.', 'http://www.football-italia.net/168956/iachini-wants-it-all-against-atalanta', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Iachini-2011-there-epa_0.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:51', '2021-04-10 07:01:51'),
(684, 'football-italia', 'Football Italia Staff', 'Gasperini sees wide open fight for fourth', 'Gian Piero Gasperini expects the battle for a top four slot to go all the way this season, warning Atalanta against complacency with Fiorentina.', 'http://www.football-italia.net/168954/gasperini-sees-wide-open-fight-fourth', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Gasperini-2103-hold-epa_1.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:51', '2021-04-10 07:01:51'),
(685, 'football-italia', 'Football Italia Staff', 'Fonseca: 'My future is not important'', 'Paulo Fonseca assures his ‘future is not important. Roma is the most important thing’ along with injury updates ahead of Bologna.', 'http://www.football-italia.net/168953/fonseca-my-future-not-important', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Fonseca-2103-crouch-epa_0.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:51', '2021-04-10 07:01:51'),
(686, 'football-italia', 'Football Italia Staff', 'Conte: 'Inter was the ultimate challenge'', 'Antonio Conte insists ‘coming to Inter was the ultimate challenge’ and he is on the verge of winning it, as they face Cagliari for another step towards the Scudetto.', 'http://www.football-italia.net/168952/conte-inter-was-ultimate-challenge', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Conte-2103-celebrate-ata-epa_2.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:51', '2021-04-10 07:01:51'),
(687, 'football-italia', 'Football Italia Staff', 'De Rossi explains COVID hospitalisation', 'Daniele De Rossi reveals why he went to hospital with COVID-19 symptoms. ‘I stood up and nearly fainted. The doctors said if I hadn’t had it checked out…’', 'http://www.football-italia.net/168951/de-rossi-explains-covid-hospitalisation', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/DeRossi-2103-Ita-staff-epa_0.jpg', '2021-04-09 17:00:00', '2021-04-10 07:01:51', '2021-04-10 07:01:51'),
(688, 'breitbart-news', 'Victoria Friedman', 'In Pictures: Britons Pay Respects to Prince Philip, Duke of Edinburgh', 'Gun salutes marked the beginning of the period of mourning for Prince Philip as Britons gathered to pay their respects.', 'http://www.breitbart.com/europe/2021/04/10/gun-salutes-mark-beginning-mourning-prince-philip-britons-pay-respects-pictures/', 'https://media.breitbart.com/media/2021/04/girl-with-flowers-640x335.jpg', '2021-04-10 03:53:18', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(689, 'breitbart-news', 'Breitbart London', 'The Life of Prince Philip: A Timeline', 'LONDON (AP) — 1921: Prince Philip is born on the Greek island of Corfu, the only son of Prince Andrew, younger brother of the king of Greece.', 'http://www.breitbart.com/europe/2021/04/10/the-life-of-prince-philip-a-timeline/', 'https://media.breitbart.com/media/2021/04/Prince-Philip-1-640x335.jpg', '2021-04-09 23:29:36', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(690, 'breitbart-news', 'Chris Tomlinson', 'Woke Blue Tick Twitter Expresses Delight After Death of Prince Philip', 'A number of woke verified Twitter accounts expressed delight in the minutes and hours after the announcement of Prince Philip\'s death.', 'http://www.breitbart.com/europe/2021/04/10/woke-blue-tick-twitter-expresses-delight-after-death-of-prince-philip/', 'https://media.breitbart.com/media/2021/04/GettyImages-138528974-e1618000268466-640x335.jpg', '2021-04-10 00:03:23', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(691, 'breitbart-news', 'Victoria Friedman', 'BBC Opens Page for Complaints About \'Too Much\' Coverage of Duke', 'The BBC has opened a page on its website for viewers to register their complaints about the extent of the coverage of Prince Philip\'s death.', 'http://www.breitbart.com/europe/2021/04/10/bbc-opens-page-encouraging-britons-register-complaints-coverage-prince-philip/', 'https://media.breitbart.com/media/2021/04/Prince-Philip-2-640x335.jpg', '2021-04-10 05:19:33', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(692, 'breitbart-news', 'Ian Hanchett', 'Levi Strauss CEO: \'We Put Our Money Where Our Mouth Is\' on Voting Laws - \'Trying to Thread the Needle\' with \'Complex\' China Situation', 'On Friday\'s \"CNN Newsroom,\" Levi Strauss & Co President and CEO Chip Bergh said that he\'s \"very concerned\" about American democracy and \"we\'re going | Clips', 'http://www.breitbart.com/clips/2021/04/09/levi-strauss-ceo-we-put-our-money-where-our-mouth-is-on-voting-laws-trying-to-thread-the-needle-with-complex-china-situation/', 'https://media.breitbart.com/media/2019/03/wi/ap/21/d7f65b_aptopix-financial-markets-wall-street-levi-strauss-ipo-94214-harmit-singh.jpg', '2021-04-09 22:03:41', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(693, 'breitbart-news', 'Ian Hanchett', 'Padilla: Dakotas Having More Representation in Senate Than CA \'Should Change, on a Number of Fronts\'', 'On Friday\'s broadcast of HBO\'s \"Real Time,\" Sen. Alex Padilla (D-CA) said that the fact that there are four senators representing North and South Dakota | Clips', 'http://www.breitbart.com/clips/2021/04/09/padilla-dakotas-having-more-representation-in-senate-than-ca-should-change-on-a-number-of-fronts/', 'https://media.breitbart.com/media/2020/05/alex-padilla-ap-640x335.jpg', '2021-04-09 19:48:51', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(694, 'breitbart-news', 'Pam Key', 'CNN\'s Lemon: Tucker Carlson Is Mainstreaming \'White Supremacist Propaganda to your Neighbors\'', 'CNN anchor Don Lemon said Friday on his show \"Tonight\" that Fox News host Tucker Carlson was mainstreaming \"white supremacist propaganda to your neighbors and your family members.\" | Clips', 'http://www.breitbart.com/politics/2021/04/09/cnns-lemon-tucker-carlson-is-mainstreaming-white-supremacist-propaganda-to-your-neighbors/', 'https://media.breitbart.com/media/2018/12/DonLemoncrop.jpg', '2021-04-09 19:09:40', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(695, 'breitbart-news', 'Amy Furr', 'MSNBC Host Apologizes for Airing Video of Wrong Black Congressman', 'MSNBC said it mistakenly aired video of the wrong black congressman during a recent report on the death of Rep. Alcee Hastings (D-FL).', 'http://www.breitbart.com/politics/2021/04/08/msnbc-host-apologizes-airing-video-wrong-black-congressman/', 'https://media.breitbart.com/media/2021/04/Hallie_Jackson_2016-640x335.png', '2021-04-08 12:27:25', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(696, 'breitbart-news', 'Jeff Poor', 'FNC\'s Carlson: Jeff Zucker Should \'Transition\' -- Put Him in a \'Sheer Black Strapless Dress,\' He Instantly Understands', 'Friday, Fox News Channel\'s Tucker Carlson offered advice to CNN head Jeff Zucker on the heels of criticism from former network anchor Brooke Baldwin the \"most influential anchors\" on CNN, and highest-paid were men. | Clips', 'http://www.breitbart.com/politics/2021/04/10/fncs-carlson-jeff-zucker-should-transition-put-him-in-a-sheer-black-strapless-dress-he-instantly-understands/', 'https://media.breitbart.com/media/2020/06/Carlson69-640x335.jpg', '2021-04-10 05:34:27', '2021-04-10 07:01:57', '2021-04-10 07:01:57'),
(697, 'engadget', 'https://www.engadget.com/about/editors/jessica-conditt', '\'Vokabulantis\' turns photogrammetry and stop-motion into a poetic platformer | Engadget', 'It\'s mesmerizing.', 'https://www.engadget.com/vokabulantis-stop-motion-video-game-kickstarter-202836987.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/3415b6f1-996f-11eb-b3fc-5ea20e80b0a7', '2021-04-10 07:20:03', '2021-04-10 07:20:03', '2021-04-10 07:20:03'),
(698, 'engadget', 'https://www.engadget.com/about/editors/james-trew', 'How gadgets could unlock the potential of lucid dreaming | Engadget', 'Recent experiments show we can learn in our dreams. What else could we do with the right technology?', 'https://www.engadget.com/how-gadgets-could-unlock-the-magic-potential-of-lucid-dreaming-150039868.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/3871c520-985e-11eb-b7fc-26a713a07094', '2021-04-10 07:20:03', '2021-04-10 07:20:04', '2021-04-10 07:20:04'),
(699, 'engadget', 'https://www.engadget.com/about/editors/kris-naudus', 'Can a gaming mouse filled with holes really be water resistant? | Engadget', 'SteelSeries\' Aerox 3 Wireless is an ultra-light gaming mouse full of holes that shakes off water like a duck.', 'https://www.engadget.com/steelseries-aerox-3-wireless-water-resistant-hands-on-130010412.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/fa4ba570-9896-11eb-bbff-75937da12276', '2021-04-10 07:20:04', '2021-04-10 07:20:04', '2021-04-10 07:20:04'),
(700, 'engadget', 'https://www.engadget.com/about/editors/steve-dent', 'Samsung’s iTest offers a look at Galaxy Android on iPhone | Engadget', 'If you\'re using an iPhone and thinking about switching to a Galaxy device, Samsung has unveiled a website to let you \"sample the other side.\"', 'https://www.engadget.com/samsungs-i-test-gives-you-the-galaxy-experience-on-an-i-phone-105009725.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/b2c10b40-9919-11eb-b3fd-03278b6fa12d', '2021-04-10 07:20:06', '2021-04-10 07:20:06', '2021-04-10 07:20:06'),
(701, 'engadget', 'https://www.engadget.com/about/editors/richard-lawler', 'Logitech is done making Harmony remotes | Engadget', 'Logitech is killing off its line of Harmony remotes, with the remaining devices available only \'while supplies last.\'', 'https://www.engadget.com/harmony-remote-rip-020210167.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/81a25a50-99a0-11eb-aad3-2501a5dc40c8', '2021-04-10 07:20:06', '2021-04-10 07:20:06', '2021-04-10 07:20:06'),
(702, 'engadget', 'https://www.engadget.com/about/editors/stack-commerce', 'Learn to play the piano at your own pace with Skoove | Engadget', 'Skoove is a highly rated piano learning app suited for everyone from beginner level to advanced players. Take lessons generated by having an AI observe your skills or access the massive resource library for additional training.', 'https://www.engadget.com/skoove-145549566.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/18644520-97a3-11eb-bffd-cf5389253acf', '2021-04-10 07:20:08', '2021-04-10 07:20:08', '2021-04-10 07:20:08'),
(703, 'engadget', 'https://www.engadget.com/about/editors/billy-steele', 'Recommended Reading: Painful memories the algorithms won\'t let you forget | Engadget', 'Recommended Reading highlights the week\'s best long-form writing on technology and more.', 'https://www.engadget.com/recommended-reading-digital-memories-and-the-painful-past-140042241.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/bc0d8950-9971-11eb-adf3-4d36c077520f', '2021-04-10 07:20:08', '2021-04-10 07:20:08', '2021-04-10 07:20:08'),
(704, 'engadget', 'https://www.engadget.com/about/editors/mariella-moon', 'Firefox will soon stop supporting Amazon Fire TV and Echo Show devices | Engadget', 'Mozilla is ending Firefox support for the Amazon Fire TV platform and Echo Show devices starting on April 30th.', 'https://www.engadget.com/firefox-stop-supporting-amazon-fire-tv-echo-show-121014000.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/6f2f4e20-99df-11eb-9dfe-34c5a8de84c0', '2021-04-10 07:20:10', '2021-04-10 07:20:10', '2021-04-10 07:20:10'),
(705, 'engadget', 'https://www.engadget.com/about/editors/mariella-moon', 'Alibaba hit with $2.8 billion fine in China antitrust case | Engadget', 'Chinese authorities have slapped Alibaba with a $2.8 billion fine after finishing an anti—trust investigation that looked into alleged monopolistic practices.', 'https://www.engadget.com/alibaba-2-8-billion-fine-china-antitrust-case-055946875.html', 'https://s.yimg.com/os/creatr-images/2020-03/89110bc0-5c56-11ea-9ffb-d702b9499433', '2021-04-10 07:20:10', '2021-04-10 07:20:10', '2021-04-10 07:20:10'),
(706, 'engadget', 'https://www.engadget.com/about/editors/igor-bonifacic', 'Senators criticize Apple\'s refusal to testify in hearing on app store rules | Engadget', 'Apple appears unwilling to take part in an upcoming hearing the Senate plans to hold on anti-competitive app store practices.', 'https://www.engadget.com/apple-app-store-hearing-senate-letter-213435599.html', 'https://s.yimg.com/os/creatr-uploaded-images/2021-04/4d23efc0-997b-11eb-b5d4-e74dd750f5dc', '2021-04-10 07:20:10', '2021-04-10 07:20:10', '2021-04-10 07:20:10'),
(707, 'the-next-web', 'TNW Deals', 'G Cloud is unlimited cloud space to backup all your mobile devices, all for just $39.99', 'TLDR: With a G Cloud Mobile Backup Unlimited Storage Plan subscription, you can backup everything from all your mobile devices to the cloud at almost half off the regular price.\r\n\r\nNomophobia. ...', 'http://thenextweb.com/news/g-cloud-is-unlimited-cloud-space-to-backup-all-your-mobile-devices-all-for-just-39-99', 'https://img-cdn.tnwcdn.com/image/tnw-deals?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2FG-Cloud-1.jpg&signature=3d7ea515d5ad82c9a68ca72105b086f2', '2021-04-09 06:00:03', '2021-04-10 08:58:24', '2021-04-10 08:58:24'),
(708, 'the-next-web', 'Matthew Beedham', 'Watch humans drive slowly in Elon Musk\'s \'revolutionary\' $52M tunnel', 'I\'m going to tell you this entire story in one sentence, because that\'s all it deserves.\r\n\r\nEarlier this week, local reporters in California got another look at Elon Musk\'s 1.5 mile ...', 'http://thenextweb.com/news/humans-drive-slowly-elon-musks-tunnel-broing-company', 'https://img-cdn.tnwcdn.com/image/shift?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2FScreenshot-2021-04-09-at-15.37.30.png&signature=11bfc640f70ad1102440a5a7b4fc25bf', '2021-04-09 05:53:35', '2021-04-10 08:58:24', '2021-04-10 08:58:24'),
(709, 'the-next-web', 'The Cosmic Companion', 'This is why China and Russia want to build a base on the Moon', 'The Russian space agency Roscosmos and China’s National Space Administration (CNSA) recently agreed to establish lunar outposts on, and in orbit around, the Moon. This announcement ...', 'http://thenextweb.com/news/this-is-why-china-and-russia-want-to-build-a-base-on-the-moon-syndication', 'https://img-cdn.tnwcdn.com/image/tnw?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2FMoon-research-base-NASA-hed.jpg&signature=44f71c512e7366f239d90f8e3386f651', '2021-04-09 05:35:59', '2021-04-10 08:58:24', '2021-04-10 08:58:24');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(710, 'the-next-web', 'Thomas Macaulay', 'Watch a cyborg monkey play Pong with its mind, thanks to Elon Musk\'s Neuralink', 'Elon Musk hopes to put computer chips in our brains that will enable \"human-AI symbiosis.\" But for now, he\'s focused on making monkeys play video games.\r\n\r\nMusk\'s Neuralink ...', 'http://thenextweb.com/news/elon-musk-neuralink-cyborg-monkey-plays-pong-brain-implant-bci', 'https://img-cdn.tnwcdn.com/image/neural?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2FUntitled-design-2021-04-09T103956.509.png&signature=33805665a55d8db3d17de692ac85e5f8', '2021-04-09 03:16:13', '2021-04-10 08:58:24', '2021-04-10 08:58:24'),
(711, 'the-next-web', 'Justin Pot', 'Here’s why you should quit', 'Quitters never prosper. Never give up. If at first, you don\'t succeed, try, try again.\r\n\r\nThere are so many sayings with the same basic message: quitting is bad. This idea is instilled ...', 'http://thenextweb.com/news/heres-why-you-should-quit', 'https://img-cdn.tnwcdn.com/image/growth-quarters?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2Fquit-give-up-work-gq.png&signature=bb97fa96ffabf71496f20e187efae4be', '2021-04-09 00:31:40', '2021-04-10 08:58:25', '2021-04-10 08:58:25'),
(712, 'the-next-web', 'Clean Fleet Report', 'Are wind-powered cars a reality or just science fiction?', 'This article was originally published by Martin Banks on Clean Fleet Report, a publication that gives its readers the information they need to move to cars and trucks with best fuel ...', 'http://thenextweb.com/news/wind-powered-cars-scifi-reality-syndication', 'https://img-cdn.tnwcdn.com/image/shift?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2Fwind_direction_indicator_red_white_air_bag_since_wind_wind_vane_regional_aerodrome_anemometer-1355882.jpgd_.jpg&signature=aab217e6f91c6d6f73a73d84c4940146', '2021-04-08 23:33:20', '2021-04-10 08:58:25', '2021-04-10 08:58:25'),
(713, 'the-next-web', 'The Markup', 'Google has a secret blocklist that hides YouTube hate videos from advertisers — but it’s full of holes', 'This story is the first of two parts.\r\n\r\nIf you want to find YouTube videos related to “KKK” to advertise on, Google Ads will block you. But the company failed to block dozens ...', 'http://thenextweb.com/news/google-has-a-secret-blocklist-that-hides-youtube-hate-videos-from-advertisers-but-its-full-of-holes', 'https://img-cdn.tnwcdn.com/image/tnw?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F04%2FGoogle-blocklist-words-hed-Matt-Chase.jpg&signature=1b98b4f6bacb4a73a430fb9c057fbaa6', '2021-04-08 22:24:55', '2021-04-10 08:58:25', '2021-04-10 08:58:25'),
(714, 'espn-cric-info', NULL, 'PCB hands Umar Akmal three-year ban from all cricket | ESPNcricinfo.com', 'Penalty after the batsman pleaded guilty to not reporting corrupt approaches | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/29103103/pcb-hands-umar-akmal-three-year-ban-all-cricket', 'https://a4.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1099495_800x450.jpg', '2020-04-27 03:41:47', '2021-04-10 08:58:27', '2021-04-23 04:45:36'),
(715, 'espn-cric-info', NULL, '\'It was the first time we realised we can also cry after winning a game\'', 'Habibul Bashar, Mohammad Ashraful, Tareq Aziz and Tatenda Taibu recall Bangladesh\'s first win since becoming a Test nation - in an ODI in Harare in 2004', 'https://www.thecricketmonthly.com/story/1221473/-it-was-the-first-time-we-realised-we-can-also-cry-after-winning-a-game', 'https://i.imgci.com/espncricinfo/cricket_monthly/og-the-cricket-monthly.jpg', '2021-04-23 04:45:36', '2021-04-10 08:58:27', '2021-04-23 04:45:36'),
(716, 'espn-cric-info', NULL, 'Sri Lanka don\'t win the 1996 World Cup | ESPNcricinfo.com', 'Because fairy-tales only exist in story books | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/29101950/sri-lanka-had-not-won-1996-world-cup', 'https://a4.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1219948_900x506.jpg', '2020-04-26 17:00:01', '2021-04-10 08:58:28', '2021-04-23 04:45:36'),
(717, 'espn-cric-info', NULL, 'I\'m fighting my own benchmarks - R Ashwin | ESPNcricinfo.com', 'India\'s No. 1 offspinner talks to Manjrekar on his form abroad, injuries and more | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/29102228/fighting-my-own-benchmarks-r-ashwin', 'https://a4.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1219773_1296x729.jpg', '2020-04-24 19:00:09', '2021-04-10 08:58:28', '2021-04-23 04:45:36'),
(718, 'espn-cric-info', NULL, 'Five famous people (and one cat) you didn\'t know have ESPNcricinfo profiles | ESPNcricinfo.com', 'Why do a footballer, a Nobel laureate and a prime minister (no, not Imran Khan) find themselves in the ESPNcricinfo player database? | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/29102695/five-famous-people-one-cat-know-espncricinfo-profiles', 'https://a.espncdn.com/i/cricket/cricinfo/1221668_1296x1296.gif', '2020-04-26 23:20:43', '2021-04-10 08:58:28', '2021-04-23 04:45:36'),
(719, 'espn-cric-info', NULL, 'Akram\'s yorkers, Hegg\'s hits, and Chapple\'s 6 for 18 | ESPNcricinfo.com', 'This week, we relive the glorious one-day triumphs of Lancashire in the 1990s | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/29102935/o-my-akram-my-hegg-long-ago', 'https://a3.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1221634_1296x729.jpg', '2020-04-27 02:24:08', '2021-04-10 08:58:28', '2021-04-23 04:45:37'),
(720, 'espn-cric-info', NULL, 'The Coronavirus soap opera, starring KP, Warnie, Mahela | ESPNcricinfo.com', 'Also featuring a pining Ravi Shastri | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/28979161/andrew-fernando-satirical-look-back-cricket-march-2020', 'https://a3.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1219981_1296x1296.jpg', '2020-04-01 02:15:40', '2021-04-10 08:58:28', '2021-04-23 04:45:37'),
(721, 'espn-cric-info', NULL, 'Five CSK games only hardcore fans will remember | ESPNcricinfo.com', 'From throwing a surprise in the batting order to smashing sixes after sixes, CSK have done it all | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/28974528/five-csk-games-only-hardcore-fans-remember', 'https://a2.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1219712_1296x729.jpg', '2020-03-31 02:23:03', '2021-04-10 08:58:28', '2021-04-23 04:45:37'),
(722, 'espn-cric-info', NULL, '\'This is a ball the whole world will remember\' - Saeed Ajmal v Sachin Tendulkar revisited | ESPNcricinfo.com', 'We asked experts - and one participant - their considered view of the controversial Hawk-Eye projection | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/28973835/this-ball-whole-world-remember-saeed-ajmal-v-sachin-tendulkar-revisited', 'https://a4.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1219912_1296x729.jpg', '2020-03-30 10:45:45', '2021-04-10 08:58:28', '2021-04-23 04:45:37'),
(723, 'espn-cric-info', NULL, 'What we learned from watching the 1992 World Cup final in full again | ESPNcricinfo.com', 'Wides, lbw calls, swing - plenty of things were different in white-ball cricket back then | ESPNcricinfo.com', 'http://www.espncricinfo.com/story/_/id/28970907/learned-watching-1992-world-cup-final-full-again', 'https://a4.espncdn.com/combiner/i?img=%2Fi%2Fcricket%2Fcricinfo%2F1219926_1296x729.jpg', '2020-03-30 07:26:05', '2021-04-10 08:58:28', '2021-04-23 04:45:37'),
(724, 'espn', NULL, 'Brooklyn Nets star Kevin Durant says development, not titles, is what drives him now', 'Kevin Durant has had his \"movie\" ending, winning two NBA titles. What he realized afterward is that it was his development as a player that drives him. \"I want to experience that stuff [winning titles], but it\'s not the end all, be all of why I play.\"', 'http://espn.go.com/nba/story/_/id/31228422/brooklyn-nets-star-kevin-durant-says-development-not-titles-drives-now', 'https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0408%2Fr837526_1296x729_16%2D9.jpg', '2021-04-10 06:17:00', '2021-04-10 08:59:05', '2021-04-10 08:59:05'),
(725, 'espn', 'Jonathan GivonyESPN ', 'Former South Alabama Jaguars guard Michael Flowers transferring to Washington State Cougars', 'Former South Alabama guard Michael Flowers, the top available scorer in the transfer portal, has committed to play at Washington State next season, he told ESPN.', 'http://espn.go.com/mens-college-basketball/story/_/id/31228234/former-south-alabama-jaguars-guard-michael-flowers-transferring-washington-state-cougars', 'https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2021%2F0410%2Fr838400_1296x729_16%2D9.jpg', '2021-04-10 07:55:00', '2021-04-10 08:59:05', '2021-04-10 08:59:05'),
(726, 'the-times-of-india', 'TIMESOFINDIA.COM', 'Maharashtra CM Uddhav Thackeray hints at strict lockdown; key meet on Sunday', 'India News: Maharashtra chief minister Uddhav Thackeray on Saturday hinted at a strict lockdown during an all-party meeting to discuss the grim Covid situation in', 'http://timesofindia.indiatimes.com/india/maharashtra-cm-uddhav-thackeray-hints-at-strict-lockdown-key-meet-on-sunday/articleshow/82008003.cms', 'https://static.toiimg.com/thumb/msid-82008186,width-1070,height-580,imgsize-243977,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-10 02:30:00', '2021-04-10 09:08:46', '2021-04-10 09:08:46'),
(727, 'the-times-of-india', 'TIMESOFINDIA.COM', 'India fastest in world to administer 100 million Covid vaccine shots', 'India News: NEW DELHI: India on Saturday became the fastest country in the world to reach the 100 million vaccination mark, taking just 85 days to achieve the mil.', 'http://timesofindia.indiatimes.com/india/india-fastest-in-world-to-administer-100-million-covid-vaccine-shots/articleshow/82007330.cms', 'https://static.toiimg.com/thumb/msid-82007828,width-1070,height-580,imgsize-150878,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-10 01:53:00', '2021-04-10 09:08:46', '2021-04-10 09:08:46'),
(728, 'the-times-of-india', 'TIMESOFINDIA.COM', 'No gatherings, 50% occupancy in metro, restaurants: Delhi announces fresh Covid curbs', 'NEW DELHI: The Delhi Disaster Management Authority (DDMA) on Saturday imposed fresh restrictions in the national capital amid a worrying surge in coro.', 'http://timesofindia.indiatimes.com/city/delhi/delhi-govt-prohibits-all-public-gatherings-amid-covid-surge/articleshow/82008498.cms', 'https://static.toiimg.com/thumb/msid-82008552,width-1070,height-580,imgsize-198257,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-10 03:17:00', '2021-04-10 09:08:46', '2021-04-10 09:08:46'),
(729, 'the-times-of-india', 'Times Of India', 'CSK vs DC Live Score, IPL 2021: Dhoni\'s Chennai Super Kings take on Pant\'s Delhi Capitals', 'It will be a battle between the \"young apprentice and his master\" when Rishabh Pant\'s Delhi Capitals and Mahendra Singh Dhoni\'s Chennai Super Kings s', 'http://timesofindia.indiatimes.com/sports/cricket/ipl/live-blog/chennai-super-kings-vs-delhi-capitals-csk-vs-dc-live-score-ipl-2021-2nd-match-mumbai/liveblog/82004553.cms', 'https://static.toiimg.com/thumb/msid-82004553,width-1070,height-580,imgsize-759859,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 21:09:05', '2021-04-10 09:08:46', '2021-04-10 09:08:46'),
(730, 'the-times-of-india', 'Chidanand Rajghatta', 'US asserts right of navigation in India waters accusing New Delhi of \'excessive maritime claims\'', 'US News: WASHINGTON: India and the United States are having a rare moment of disagreement in their burgeoning defence ties, with Washington accusing New Delhi .', 'http://timesofindia.indiatimes.com/world/us/us-asserts-right-of-navigation-in-india-waters-accusing-new-delhi-of-excessive-maritime-claims/articleshow/82008079.cms', 'https://static.toiimg.com/thumb/msid-82008092,width-1070,height-580,imgsize-69250,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-10 02:12:00', '2021-04-10 09:08:46', '2021-04-10 09:08:46'),
(731, 'the-times-of-india', 'TIMESOFINDIA.COM', 'Cooch Behar killings: Mamata Banerjee questions central forces, orders CID probe', 'India News: West Bengal chief minister Mamata Banerjee on Saturday questioned the central forces\' version of firing on voters in self-defence in Cooch Behar. As m', 'http://timesofindia.indiatimes.com/india/cooch-behar-killings-mamata-banerjee-questions-self-defence-version-of-central-forces-orders-cid-probe/articleshow/82006165.cms', 'https://static.toiimg.com/thumb/msid-82006340,width-1070,height-580,imgsize-291922,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg', '2021-04-09 23:21:00', '2021-04-10 09:08:46', '2021-04-10 09:08:46'),
(732, 'die-zeit', NULL, 'Testspiel in Wiesbaden: DFB-Frauen trotzen Corona: Sieg über Australien', NULL, 'https://www.zeit.de/news/2021-04/10/dfb-frauen-trotzen-corona-sieg-ueber-australien', NULL, '2021-04-10 08:58:40', '2021-04-10 09:17:17', '2021-04-10 09:17:17'),
(733, 'die-zeit', NULL, 'Eishockey: Nach 2:4 in Schwenningen: Eisbären Berlin bangen um Pföderl', NULL, 'https://www.zeit.de/news/2021-04/10/eisbaeren-verlieren-mit-2-4-bei-den-schwenninger-wild-wings', NULL, '2021-04-10 08:58:30', '2021-04-10 09:17:17', '2021-04-10 09:17:17'),
(734, 'die-zeit', NULL, 'Fußball: Coman, Boateng und Musiala: Flick befürchtet keine Ausfälle', NULL, 'https://www.zeit.de/news/2021-04/10/coman-vorzeitig-raus-bayern-sorgen-werden-groesser', NULL, '2021-04-10 08:58:25', '2021-04-10 09:17:17', '2021-04-10 09:17:17'),
(735, 'die-zeit', NULL, 'Trauer: Tränen und Kanonendonner: Abschied von Prinz Philip', NULL, 'https://www.zeit.de/news/2021-04/10/salutschuesse-fuer-prinz-philip', NULL, '2021-04-10 08:51:34', '2021-04-10 09:17:17', '2021-04-10 09:17:17'),
(736, 'die-zeit', NULL, 'Konservatismus: Wolkige Worte', 'Es fehlt schon an einer seriösen liberalen Partei, und nun ist der Zustand der Union ebenso ein Anlass für Trübsinn. Da hilft auch all ihr Gerede über Werte nichts.', 'https://www.zeit.de/kultur/2021-04/cdu-union-konservativismus-werte-politik', NULL, '2021-04-10 08:50:09', '2021-04-10 09:17:17', '2021-04-10 09:17:17'),
(737, 'die-zeit', NULL, 'Myanmar: 19 Menschen in Myanmar zum Tode verurteilt', 'Das Urteil soll mit der Tötung des Angehörigen eines Militärs zusammenhängen. Derweil schließen sich myanmarische Diplomaten in Berlin dem Protest gegen die Junta an.', 'https://www.zeit.de/politik/ausland/2021-04/myanmar-protest-militaerregime-chaw-kalyar-todesurteile-19-verurteilte-flucht', NULL, '2021-04-10 08:49:37', '2021-04-10 09:17:17', '2021-04-10 09:17:17'),
(738, 'die-zeit', NULL, 'Bundesparteitag: AfD vertagt Wahl von Spitzenkandidaten', NULL, 'https://www.zeit.de/news/2021-04/10/afd-setzt-im-wahlkampf-auf-image-als-anti-verbotspartei', NULL, '2021-04-10 08:48:43', '2021-04-10 09:17:18', '2021-04-10 09:17:18'),
(739, 'die-zeit', NULL, 'Gesundheit: Schwesig: Müssen beim Impfen schneller werden', NULL, 'https://www.zeit.de/news/2021-04/10/schwesig-muessen-beim-impfen-schneller-werden', NULL, '2021-04-10 08:47:51', '2021-04-10 09:17:18', '2021-04-10 09:17:18'),
(740, 'die-zeit', NULL, 'Unfälle: Auto gerät unter Laster: Zwei Menschen sterben auf A4', NULL, 'https://www.zeit.de/news/2021-04/10/auto-geraet-unter-laster-zwei-menschen-sterben-auf-a4', NULL, '2021-04-10 08:46:01', '2021-04-10 09:17:18', '2021-04-10 09:17:18'),
(741, 'die-zeit', NULL, 'Regierung: Althusmann: MPK nicht ausreichend durchsetzungsfähig', NULL, 'https://www.zeit.de/news/2021-04/10/althusmann-mpk-nicht-ausreichend-durchsetzungsfaehig', NULL, '2021-04-10 08:44:38', '2021-04-10 09:17:18', '2021-04-10 09:17:18'),
(742, 'google-news', 'Ben Leonard', 'Supreme Court halts California pandemic restrictions on at-home worship', '“California treats some comparable secular activities more favorably than at-home religious exercise,\" the majority opinion said.', 'https://www.politico.com/news/2021/04/10/supreme-court-california-coronavirus-worship-480702', 'https://static.politico.com/10/10/06bd768848e5ab2ec2089f443cc7/200323-supreme-court-gty-773.jpg', '2021-04-10 06:14:08', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(743, 'google-news', 'The Associated Press', 'Michigan governor urges halt of high school classes, youth sports', 'Faced with the country’s highest rate of new coronavirus infections, Michigan Gov. Gretchen Whitmer on Friday urged a two-week suspension of in-person high school classes, all youth sports and indoor restaurant dining.', 'https://www.nbcnews.com/news/us-news/michigan-governor-urges-halt-high-school-classes-youth-sports-n1263722', 'https://media4.s-nbcnews.com/j/newscms/2021_14/3463760/210410-gretchen-whitmer-mb-1523_b8042a0ac6674ef4630b5c8fe32a573d.nbcnews-fp-1200-630.JPG', '2021-04-10 06:49:00', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(744, 'google-news', 'Chelsey Cox', 'Georgia voting law explained: Here\'s what to know about the state\'s new election rules', 'Republican lawmakers in Georgia have overhauled the state\'s elections. Here\'s a breakdown of what will change under Senate Bill 202.', 'https://www.usatoday.com/story/news/politics/2021/04/10/georgia-new-voting-law-explained/7133587002/', 'https://www.gannett-cdn.com/presto/2021/03/25/USAT/808d57cc-44eb-41bb-b379-c912c74c3170-AP21084679249389.jpg?crop=5137,2890,x0,y261&width=3200&height=1680&fit=bounds', '2021-04-10 03:02:04', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(745, 'google-news', 'Bianca Padró Ocasio', 'Gaetz tells Trump supporters he’s a champion of women, scoffs at ‘smears’', 'Many of the attendees at Friday’s event said they don’t believe the allegations against Gaetz are true.', 'https://www.tampabay.com/news/florida-politics/2021/04/10/gaetz-tells-trump-supporters-hes-a-champion-of-women-scoffs-at-smears/', 'https://www.tampabay.com/resizer/5WSSlL_JjzQHVxybtwy5FSNYj4k=/800x450/smart/cloudfront-us-east-1.images.arcpublishing.com/tbt/GKXCHLDL3YJDOHKCAXG7DUQGV4.jpg', '2021-04-10 04:18:01', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(746, 'google-news', 'WGN Web Desk', 'Man who was with Adam Toledo, 13, at time of fatal shooting charged with felony gun charges', 'CHICAGO — The man who was with 13-year-old Adam Toledo when he was fatally shot by Chicago police has been charged with felony gun charges. Ruben Roman, 21, was charged with felony reckless discharge of a firearm, unlawful use of a weapon by a felon and endangerment of a child. Roman was arrested Friday. Police […]', 'https://wgntv.com/news/man-who-was-with-adam-toledo-13-at-time-of-fatal-shooting-charged-with-felony-gun-charges/', 'https://wgntv.com/wp-content/uploads/sites/5/2021/04/ruben-roman.jpg?w=1280', '2021-04-10 08:49:24', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(747, 'google-news', NULL, 'Covid infections caused by variants growing in Wisconsin, more children getting sick', 'Wisconsin\'s seven-day average of new COVID cases is rising and more cases are being linked to virus variants.', 'https://www.channel3000.com/covid-infections-caused-by-variants-growing-in-wisconsin-more-children-getting-sick/', 'https://wpcdn.us-east-1.vip.tn-cloud.net/www.channel3000.com/content/uploads/2021/04/g/n/variant.jpg', '2021-04-09 16:25:00', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(748, 'google-news', 'Marisa Schultz', 'Rep. Dan Crenshaw says he\'ll be \'blind for about a month\' after eye surgery', 'Rep. Dan Crenshaw, R-Texas, said he underwent emergency surgery Friday for a detached retina in his left eye and will be unable to see as he recovers.', 'https://www.foxnews.com/politics/dan-crenshaw-blind-about-month-eye-surgery', 'https://static.foxnews.com/foxnews.com/content/uploads/2021/01/crenshaw.jpg', '2021-04-10 08:01:57', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(749, 'google-news', 'David Smith', 'The scandal that wasn’t: Republicans deflated as nation shrugs at Hunter Biden revelations', 'Trump and his allies foresaw a ticking timebomb centred on the president’s son – but it has not turned out that way', 'https://amp.theguardian.com/us-news/2021/apr/10/hunter-biden-scandal-republicans-trump', 'https://i.guim.co.uk/img/media/1954dded9b4b3611c5e352126d86f3fe311e4150/0_130_4079_2447/master/4079.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=b3941bd093a35201e9e01507d25aed8a', '2021-04-10 03:46:00', '2021-04-10 09:56:15', '2021-04-10 09:56:15'),
(750, 'google-news', 'Marty Johnson', 'Forensic pathologists testify on Floyd\'s cause of death in Chauvin murder trial | TheHill', 'Testimony from Minneapolis forensic pathologists, including the doctor who performed th...', 'https://thehill.com/homenews/state-watch/547456-forensic-pathologists-testify-on-floyds-cause-of-death-in-chauvin-murder', 'https://thehill.com/sites/default/files/chauvintrial10_4821_wapo.png', '2021-04-09 13:40:10', '2021-04-10 09:56:16', '2021-04-10 09:56:16'),
(751, 'google-news', 'Kerry J. Byrne', 'Army officer held at gunpoint, pepper-sprayed by Virginia cops: lawsuit', 'A US Army officer who was held at gunpoint and pepper-sprayed following a Virginia traffic stop has now filed suit against two police officers alleging racial profiling, according to reports. Lt. C…', 'https://nypost.com/2021/04/10/army-officer-held-at-gunpoint-pepper-sprayed-by-va-cops-suit/', 'https://nypost.com/wp-content/uploads/sites/2/2021/04/Windsor-Police-Department-body-cam-002.jpg?quality=90&strip=all&w=1200', '2021-04-10 07:10:00', '2021-04-10 09:56:16', '2021-04-10 09:56:16'),
(752, 'new-scientist', NULL, 'Female monkeys call to males when they see a predator approaching', 'Female putty-nosed monkeys of West Africa will use calls to enlist the help of males when they see a leopard approach', 'https://www.newscientist.com/article/2274135-female-monkeys-call-to-males-when-they-see-a-predator-approaching/', 'https://images.newscientist.com/wp-content/uploads/2021/04/09134218/female-putty-nose-monkey-c.koloppwcs_web.jpg', '2021-04-09 16:00:00', '2021-04-10 09:58:49', '2021-04-10 09:58:49'),
(753, 'new-scientist', NULL, 'Animals with weird neurons may rewrite the story of brain evolution', 'The neurons of comb jellies are a peculiar shape and use chemicals not found in the brains of other animals – hinting they might have evolved independently of other neurons', 'https://www.newscientist.com/article/2274125-animals-with-weird-neurons-may-rewrite-the-story-of-brain-evolution/', 'https://images.newscientist.com/wp-content/uploads/2021/04/09155128/c0159488_web.jpg', '2021-04-09 16:00:00', '2021-04-10 09:58:49', '2021-04-10 09:58:49'),
(754, 'new-scientist', NULL, 'Basic income trial is testing how money affects child development', 'A pioneering trial is giving mothers in poverty either a large or small cash gift each month for several years to find out whether a basic income changes a baby\'s brain and development', 'https://www.newscientist.com/article/2274144-basic-income-trial-is-testing-how-money-affects-child-development/', 'https://images.newscientist.com/wp-content/uploads/2021/04/09124423/gettyimages-1210311010_web.jpg', '2021-04-09 16:00:00', '2021-04-10 09:58:49', '2021-04-10 09:58:49'),
(755, 'new-scientist', NULL, 'Artificial nervous system senses light and learns to catch like humans', 'A simple artificial nervous system is able to mimic the way humans respond to light and learn to perform basic tasks. The principle could extend to creating more useful robots and prostheses', 'https://www.newscientist.com/article/2274084-artificial-nervous-system-senses-light-and-learns-to-catch-like-humans/', 'https://images.newscientist.com/wp-content/uploads/2021/04/08152646/f0068715-neural_network_artwork_web.jpg', '2021-04-08 16:00:00', '2021-04-10 09:58:49', '2021-04-10 09:58:49'),
(756, 'new-scientist', NULL, 'Covid-19 news: EU drugs regulator reviewing Johnson & Johnson vaccine', 'The latest coronavirus news updated every day including coronavirus cases, the latest news, features and interviews from New Scientist and essential information about the covid-19 pandemic', 'https://www.newscientist.com/article/2237475-covid-19-news-eu-drugs-regulator-reviewing-johnson-johnson-vaccine/', 'https://images.newscientist.com/wp-content/uploads/2021/04/09172155/09-april_daily.jpg', '2021-04-08 16:00:00', '2021-04-10 09:58:50', '2021-04-10 09:58:50'),
(757, 'new-scientist', NULL, 'Why the UK changed covid-19 AstraZeneca vaccine advice for under-30s', 'Guidance in the UK now says healthy people under 30 should be offered a different vaccine – here\'s everything you need to know', 'https://www.newscientist.com/article/2274018-why-the-uk-changed-covid-19-astrazeneca-vaccine-advice-for-under-30s/', 'https://images.newscientist.com/wp-content/uploads/2021/03/24163335/24-march_daily.jpg', '2021-04-06 16:00:00', '2021-04-10 09:58:50', '2021-04-10 09:58:50'),
(758, 'new-scientist', NULL, 'Children are getting long covid and being left with lasting problems', 'UK officials have called the lack of support for children with long covid a “national scandal” and parents are raising alarms about the risks posed by school reopening', 'https://www.newscientist.com/article/mg24933233-600-children-are-getting-long-covid-and-being-left-with-lasting-problems/', 'https://images.newscientist.com/wp-content/uploads/2021/02/24171625/gettyimages-1285347818_web.jpg', '2021-02-23 16:00:00', '2021-04-10 09:58:50', '2021-04-19 08:37:37'),
(759, 'new-scientist', NULL, 'First universal coronavirus vaccine will start human trials this year', 'The world is in urgent need of a vaccine that protects against all coronaviruses, even those we\'ve not met yet, warn scientists, as plans for human trials of potential candidates ramp up', 'https://www.newscientist.com/article/mg24933233-500-first-universal-coronavirus-vaccine-will-start-human-trials-this-year/', 'https://images.newscientist.com/wp-content/uploads/2021/02/24170552/c0485723_web.jpg', '2021-02-23 16:00:00', '2021-04-10 09:58:50', '2021-04-19 08:37:37'),
(760, 'new-scientist', NULL, 'Exclusive: On board the mission to one of the world’s largest icebergs', 'A vast iceberg which separated from Antarctica in 2017 is now breaking up. Oceanographer Povl Abrahamsen reports from a unique mission to study the impact of its demise using underwater robotic gliders', 'https://www.newscientist.com/article/2268299-exclusive-on-board-the-mission-to-one-of-the-worlds-largest-icebergs/', 'https://images.newscientist.com/wp-content/uploads/2021/02/17150953/5_alicemarzocchi-noc_web.jpg', '2021-02-16 16:00:00', '2021-04-10 09:58:50', '2021-04-19 08:37:37'),
(761, 'new-scientist', NULL, 'An unscientific debate over breast milk is spilling into food banks', 'An overzealous push for breastfeeding is affecting availability of baby formula in food banks, worsening problems for the poorest people, writes Clare Wilson', 'https://www.newscientist.com/article/mg24933194-500-an-unscientific-debate-over-breast-milk-is-spilling-into-food-banks/', 'https://images.newscientist.com/wp-content/uploads/2021/01/27144510/final-web-22.1.211.jpg', '2021-01-26 16:00:00', '2021-04-10 09:58:50', '2021-04-10 09:58:50'),
(762, 'reddit-r-all', NULL, 'r/interestingasfuck - Can\'t believe this actually worked', '22,929 votes and 348 comments so far on Reddit', 'https://www.reddit.com/r/interestingasfuck/comments/mo2o80/cant_believe_this_actually_worked/', 'https://preview.redd.it/fp16u94nvbs61.png?auto=webp&s=72c53f71ff404edd9be97a9c78f80a072f3a84ba', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(763, 'reddit-r-all', NULL, 'Train and deploy Machine Learning Models | Microsoft Azure', 'Build, train and deploy machine learning models with an Azure free account.', 'https://alb.reddit.com/cr?z=gAAAAABgcaoSGIKvA7LdEaVfaoNydjWUPyjjwz8TmdPxvMuEoj-6zuJoKtPG6nQe6ux5h4UhaLXBQSzAvZ5GIy5UlFZ-V6vT0HcLbgGHBjN4JWBwLzU0ATRkM9RPw_d_ph6YWyy3kjjQJQvv9_ZQ-ickTyG8Mw-o0ptGcu7Y55gOmbrUcAcqeWCC0-fnLsl6xZIrUJjPfKSp23s4okXb1TMQ5QHeBegkjAn1o547cOah3C_vHuMCiviEaAgnJF4VMUpY6KfyGRDIjo8Hrq2h9BWlKKedi5oGGhRnU0y_0TDHCy3LW_AF1RncVyyP04_UWWdwDR2Pw7Kd1Cjn2bocI9xDgXbK-vlhuYPlNcO_9ZTYNPB0Lups7PLmhXKpmSQgTqXite4wj8byiVO2jVBnl3l7j3-9Itf70Nda4M76800F6xxGvDm0YdPp_zNfjdvaUtkqUfliMNCJeLdh1yG7wBqm_Yf44_Wqi7cdlvhN25Ooy4HOQJQCDvWhVTP6x--ajKq7EQMgYpifE7iioJdTgL3OSF4gF3Esv_79uy_lQ3ItaCh9z8a9NRvibVumFc-gBUlMIzqD8FSrIRARcXInuLYpCh819KAQOtw2_tWsgpIQ3avVDL6W2FCeUwIhJTtYCBHrMfcZvgiHrb6BqD_04h_MQSd8atOU7zEP8M80WHvrY3Zu8X3ZAPg1Gs2PW8o2SbU2X3pBSbPAlwGERM_zVVAV-B8T8MidsNxG3EooDUHDj4jmGw2vOikAPNOfeix5l5P2ZmCipygsSzzZns8-NG5xyniTiCMg2OuZY8o77MHR9R6lLsmWSaAtWjE0pZJQ10TTAMhJ6Q_HZv_-M2VvimrjB2-zpkKkRKpLbeGGWRsL8JIi9rtn5TjnaXIh3nGXave_2ejg-w5QaX6zFd0l3PH_B5sdP_dn2khvkDIH3G9rcV90EI1G6F7tWbI88MqwJhmjPZ--e1SetkB9RMjSp2zKXuYEMV85InXucsLpPWu3g4otgQUF193FZSdryi5SN46eekxPaeU7HFOziJOUUnPhNXQ8LgSE7CnVvcvz-6T0nE1hp4EvuBkm2fZsomHgeekytLJL1LhnqI73q9aWHMKfxE1M-WX2PiUa_muqwny4TVSZxxWhmmC23W7doY1sGNScAaCHWE5V0B14lNO6g4AJmdg3AgmEjQ==', 'https://azurecomcdn.azureedge.net/cvt-5b186237846d7b00c26675f7f4dde80f1ebdfecd943bea9a33f3d93be2cc17eb/images/shared/social/azure-icon-250x250.png', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(764, 'reddit-r-all', 'Clea Skopeliti', 'Norway prime minister fined £1,715 for breaking coronavirus rules with birthday party', 'Erna Solberg was fined for breaking social distancing rules, police say', 'https://www.independent.co.uk/news/world/europe/erna-solberg-pm-covid-fine-b1829013.html?amp', 'https://static.independent.co.uk/2021/04/09/10/2021-03-23T112922Z_890793118_RC2ZGM9MN1TS_RTRMADP_3_HEALTH-CORONAVIRUS-NORWAY-PRIMEMINISTER.JPG?width=1200&auto=webp&quality=75', '2021-04-09 04:10:24', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(765, 'reddit-r-all', 'Imgur', 'When dreams come true', '4948 views on Imgur: The magic of the Internet', 'https://i.imgur.com/CziBoQk.jpg', 'https://i.imgur.com/CziBoQk.jpg?fb', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(766, 'reddit-r-all', NULL, 'r/aww - \"Mom! Don\'t forget the teddy!\" I think my heart just melted', '28,236 votes and 198 comments so far on Reddit', 'https://www.reddit.com/r/aww/comments/mo1006/mom_dont_forget_the_teddy_i_think_my_heart_just/', 'https://external-preview.redd.it/-GcRqyM8qTLq4YWSDAmibiG95ekAa25oxIjsKgChRKQ.png?format=pjpg&auto=webp&s=ffd3d6136dc78ba2b062a5b6a411dde378b453b1', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(767, 'reddit-r-all', NULL, 'r/DnD - Necromancy: for a lasting family bond [oc]', '6,556 votes and 117 comments so far on Reddit', 'https://www.reddit.com/r/DnD/comments/mo2j0y/necromancy_for_a_lasting_family_bond_oc/', 'https://preview.redd.it/0us0ve6mtbs61.jpg?auto=webp&s=e0338d534ff959ed5047a88af2fc8970a9425ae8', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(768, 'reddit-r-all', 'Imgur', 'Work smarter, not harder', '680762 views on Imgur: The magic of the Internet', 'https://i.imgur.com/1g2dGPy.gifv', 'https://i.imgur.com/1g2dGPy.jpg?fbplay', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(769, 'reddit-r-all', NULL, 'r/pics - A foggy bridge.', '16,418 votes and 200 comments so far on Reddit', 'https://www.reddit.com/r/pics/comments/mo0h7l/a_foggy_bridge/', 'https://preview.redd.it/pfh2py02xas61.jpg?auto=webp&s=d4c98b51393c7060badb037b5776112acaead266', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(770, 'reddit-r-all', NULL, 'r/holdmycosmo - HMC while i try to defend myself', '5,489 votes and 272 comments so far on Reddit', 'https://www.reddit.com/r/holdmycosmo/comments/mo2rx3/hmc_while_i_try_to_defend_myself/', 'https://external-preview.redd.it/sFLL03IMSCAzLzXKajKWHO8MTAr6mG4pV2eFvjPE8tg.png?format=pjpg&auto=webp&s=3424be7b906b66c622f8a92e9c383f97793e947c', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(771, 'reddit-r-all', NULL, 'r/therewasanattempt - To relax', '21,664 votes and 266 comments so far on Reddit', 'https://www.reddit.com/r/therewasanattempt/comments/mo0q92/to_relax/', 'https://external-preview.redd.it/F2I-HlI_y9ij7eQr5GkhQ9_CGhFY0s9o2rWQJQwOR34.png?format=pjpg&auto=webp&s=3827e221999961d8cfb5a0cfd82e7c9a82bbf736', '2021-04-10 10:00:40', '2021-04-10 10:00:40', '2021-04-10 10:00:40'),
(772, 'gruenderszene', NULL, 'Diese Deutschen schafften es auf die neuen „30 unter 30“-Forbes-Listen', 'Auch 2021 kürt das Wirtschaftsmagazin Forbes die vielversprechendsten Talente in Rankings. Diese Deutschen sind bei „30 unter 30“ dabei.', 'https://www.businessinsider.de/gruenderszene/business/forbes-30-unter-30-europa-2021/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/Forbes-30u30-2021-e1617985930715.jpg', '2021-04-10 00:00:00', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(773, 'gruenderszene', NULL, 'Der dritte Klarna-Gründer hätte Milliardär sein können — stattdessen hat er sein Geld weggegeben', 'Niklas Adalberth hätte mit dem Fintech-Unternehmen Klarna Milliardär werden können. Stattdessen unterstützt er jetzt soziales Unternehmertum.', 'https://www.businessinsider.de/wirtschaft/startups/klarna-gruender-stieg-vor-milliarden-runde-aus-und-gruendete-non-profit/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/Niklas-Adalberth-800x533.jpg', '2021-04-09 22:00:00', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(774, 'gruenderszene', NULL, 'Auf Druck der Datenschutzbehörde: Zalando muss umstrittene Bewertungs-Software ändern', 'Weniger Bewertungen durch Mitarbeiter und mehr Transparenz: Berliner Datenschützer zwingen den Modehändler, sein Bewertungssystem zu ändern.', 'https://www.businessinsider.de/wirtschaft/handel/zalando-muss-seine-personalsoftware-aendern-urteilt-datenschutzbehoerde/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/111247444-scaled.jpg', '2021-04-09 07:28:08', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(775, 'gruenderszene', NULL, 'Startup-Investor sagt: Wir brauchen die Wende zum Impact-Kapitalismus', 'Gründer und Investor Ferry Heilemann gibt anderen Unternehmern eine Anleitung zum Klimaschutz. Ein Auszug aus seinem neuen Buch.', 'https://www.businessinsider.de/gruenderszene/perspektive/ferry-heilemann-climate-action-guide-buchauszug/', 'https://cdn.businessinsider.de/wp-content/uploads/2020/11/ferry-heilemann.jpg', '2021-04-09 06:25:39', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(776, 'gruenderszene', NULL, 'Wie gut performt dein Onlineshop wirklich?', 'Das Design ist hip, der Content sitzt – doch der Webshop performt einfach nicht? Welche Rolle das technische Setup dabei spielt und wie sich die E-Commerce-Branche besser aufstellen kann. Anzeige', 'https://www.businessinsider.de/gruenderszene/gs-connect/ryte/4-gruende-warum-onlineshop-nicht-performt-ryte/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/03/ryte-ecommerce-performance.jpg', '2021-04-09 06:00:00', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(777, 'gruenderszene', NULL, 'Dorothee Bär fordert Zukunftsministerium für \"Deep Tech\"', 'Alles, was man über Startups wissen muss. Auf einen Blick. Die Kurznachrichten aus der Szene könnt ihr hier verfolgen.', 'https://www.businessinsider.de/gruenderszene/news/startup-ticker-apr21-zukunftsministerium/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/02/202101_GS_Newsticker_Startup_Artikelbild_1230x820-1.jpg', '2021-04-09 05:55:00', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(778, 'gruenderszene', NULL, 'Mit diesem Pitchdeck hat Unu seinen ersten großen Investor überzeugt', 'Das E-Roller-Startup hat zuletzt 18 Millionen Euro erhalten. Für die erste Roller-Generation hat es mit diesem Pitchdeck 2014 Geld bekommen.', 'https://www.businessinsider.de/gruenderszene/automotive-mobility/pitchdeck-unu-2014-r/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/roller_pitchdeck.jpg', '2021-04-09 05:45:00', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(779, 'gruenderszene', NULL, 'Dauerhaft im Homeoffice oder zurück ins Büro? Das glauben Experten', 'Noch sitzen alle im Homeoffice, aber wie wird es nach der Corona-Pandemie aussehen? Einige Firmen verringern bereits ihre Büroflächen.', 'https://www.businessinsider.de/gruenderszene/perspektive/corona-zukunft-buero-homeoffice-experten/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/01/GettyImages-951530586.jpg', '2021-04-09 04:36:28', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(780, 'gruenderszene', NULL, 'Urbanes Leben neu gedacht: So finden Business und Freizeit zusammen', 'Arbeiten, Wohnen, Leben. Wie urbane Konzepte unsere Lebensbereiche verbinden und damit den Alltag von Mitarbeitenden und Unternehmen beeinflussen, zeigt der Berliner Ostkreuz Campus. Anzeige', 'https://www.businessinsider.de/gruenderszene/gs-connect/urbanes-leben-neu-gedacht-colliers-2019-12148/', 'https://cdn.businessinsider.de/wp-content/uploads/2021/04/Colliers_ostkreuz_Campus.jpg', '2021-04-09 02:02:02', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(781, 'gruenderszene', NULL, 'Auxmoney bekommt 250 Millionen für neue Kredite', 'Alles, was man über Fintechs wissen muss. Auf einen Blick. Die Kurznachrichten aus der Branche könnt ihr hier verfolgen.', 'https://www.businessinsider.de/gruenderszene/news/fintech-ticker-april21-auxmoney/', 'https://cdn.businessinsider.de/wp-content/uploads/2020/12/202012_GS_Newsticker_Fintech_Artikelbild_1230x820.png', '2021-04-09 01:35:10', '2021-04-10 10:14:46', '2021-04-10 10:14:46'),
(782, 'ars-technica', 'Jennifer Ouellette', 'Voyagers explores complexities of coming of age in space', 'Director Neil Burger discusses how his film delves into the core of human nature', 'https://arstechnica.com/gaming/2021/04/voyagers-explores-complexities-of-coming-of-age-in-space/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/voyager17-760x380.jpg', '2021-04-10 09:35:14', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(783, 'ars-technica', 'Jonathan M. Gitlin', 'Lego has a new 2,354-piece NASA Space Shuttle set, and it’s awesome', 'The toymaker has had space shuttle sets in the past, but none as detailed as this.', 'https://arstechnica.com/gaming/2021/04/lego-has-a-new-2354-piece-nasa-space-shuttle-set-and-its-awesome/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/Lego-Space-Shuttle-1-760x380.jpg', '2021-04-10 09:00:31', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(784, 'ars-technica', 'Timothy B. Lee', 'Court rules grocery store’s inaccessible website isn’t an ADA violation', 'The Winn-Dixie website isn\'t accessible for blind users with screen readers.', 'https://arstechnica.com/tech-policy/2021/04/appeals-court-rules-stores-dont-need-to-make-their-websites-accessible/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/GettyImages-1189380126-760x380.jpg', '2021-04-10 05:15:53', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(785, 'ars-technica', 'Sam Machkovech', 'Diablo II Resurrected impressions: Unholy cow, man', 'Blizzard Classic follows WarCraft III\'s utter failure with an udder success.', 'https://arstechnica.com/gaming/2021/04/diablo-ii-resurrected-impressions-unholy-cow-man/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/d2-alpha-listing-01-760x380.jpg', '2021-04-10 03:45:14', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(786, 'ars-technica', 'Gregory Barber, wired.com', 'Variant hunters race to find new strains where variant testing lags', 'Scientists across Africa are collaborating to track them down.', 'https://www.wired.com/story/variant-hunters-race-to-find-new-strains-where-testing-lags/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/data-visualization-760x380.jpg', '2021-04-10 03:00:04', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(787, 'ars-technica', 'Jim Salter', 'Apple M1 hardware support merged into Linux 5.13', 'The merge is exciting, but don\'t rush out to buy an Apple M1 for Linux just yet.', 'https://arstechnica.com/gadgets/2021/04/apple-m1-hardware-support-merged-into-linux-5-13/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/asahi-hero-760x380.png', '2021-04-09 14:17:21', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(788, 'ars-technica', 'Beth Mole', 'Russia cries “sabotage” after Slovakia questions quality of Sputnik vaccine', 'Russia now says it wants its vaccine back from Slovakia.', 'https://arstechnica.com/science/2021/04/russia-cries-sabotage-after-slovakia-questions-quality-of-sputnik-vaccine/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/GettyImages-1231459171-760x380.jpeg', '2021-04-09 13:30:50', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(789, 'ars-technica', 'Ron Amadeo', 'Google says the Pixel 5a will launch, but only in two countries', 'The Pixel 5a is getting Google\'s smallest distribution ever, due to a lack of chips?', 'https://arstechnica.com/gadgets/2021/04/google-denies-rumors-the-pixel-5a-is-dead-announces-us-and-japanese-launch/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/02/9c1225d7a1ecc43596d910f81fd395ecef27513984e9162de295fa8900302079-760x380.jpg', '2021-04-09 12:44:22', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(790, 'ars-technica', 'John Timmer', 'The big advance in Elon Musk’s Pong-playing monkey is what you can’t see', 'The company\'s demo looks impressive, but most aspects have been done before.', 'https://arstechnica.com/science/2021/04/the-big-advance-in-elon-musks-pong-playing-monkey-is-what-you-cant-see/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/Screen-Shot-2021-04-09-at-3.48.29-PM-760x380.png', '2021-04-09 12:06:32', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(791, 'ars-technica', 'Sam Machkovech', 'Goldeneye successor unofficially unlocked as free bonus inside another game', 'Entirety of Goldeneye\'s spiritual successor can be found inside of 2016\'s Homefront.', 'https://arstechnica.com/gaming/2021/04/timesplitters-2s-hd-port-unlocked-thanks-to-long-lost-debug-code/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/20210409114635_1-760x380.jpg', '2021-04-09 11:30:46', '2021-04-11 02:49:13', '2021-04-11 02:49:13'),
(792, 'associated-press', 'NASSER KARIMI and JON GAMBRELL', 'Electrical problem strikes Iran\'s Natanz nuclear facility', 'TEHRAN, Iran (AP) — Iran\'s Natanz nuclear site suffered a problem Sunday involving its electrical distribution grid just hours after starting up new advanced centrifuges that more quickly enrich...', 'https://apnews.com/358384f03b1ef6b65f4264bf9a59a458', '', '2021-04-10 20:39:30', '2021-04-11 02:49:57', '2021-04-11 02:49:57'),
(793, 'associated-press', 'The Associated Press', 'The Latest: S Korea to resume AstraZeneca jab for ages 30-60', 'SEOUL, South Korea — South Korea says it will resume administrating AstraZeneca’s coronavirus vaccine to all eligible people between the ages of 30 and 60.Last week, South Korea suspended...', 'https://apnews.com/aa782a033a4084b56296f74474381354', '', '2021-04-11 00:58:33', '2021-04-11 02:49:57', '2021-04-11 02:49:57'),
(794, 'associated-press', 'JILL COLVIN', 'Trump addresses GOP as power to shape national debate wanes', 'WASHINGTON (AP) — Former President Donald Trump insists he\'s enjoying his life off Twitter. The press releases his aides fire off on an increasingly frequent basis are more “elegant,” he says....', 'https://apnews.com/15475effad776332890300bcb2b35bde', '', '2021-04-09 20:26:07', '2021-04-11 02:49:57', '2021-04-11 02:49:57'),
(795, 'associated-press', 'RAF CASERT', 'EU and COVID-19: When a vaccine only adds to the trouble', 'BRUSSELS (AP) — European Union leaders no longer meet around a common oval summit table to broker their famed compromises. Instead, each of the 27 watches the other heads of state or government...', 'https://apnews.com/bfd9b76d425d7a4db001b3c99808476b', '', '2021-04-10 23:16:21', '2021-04-11 02:49:57', '2021-04-11 02:49:57'),
(796, 'associated-press', 'DANICA KIRKA', 'Bouquet-bearing public honors Philip, ignoring COVID warning', 'LONDON (AP) — British authorities have implored people to stay away from royal palaces as they mourn the death of Prince Philip in this time of COVID-19, but they keep coming. Not just to honor...', 'https://apnews.com/f813fea899dd13d146523a8b16f4ec73', '', '2021-04-10 10:46:33', '2021-04-11 02:49:57', '2021-04-11 02:49:57'),
(797, 'associated-press', 'STEVE PEOPLES', 'Trump: The key to Republican success is more Trumpism', 'PALM BEACH, Fla. (AP) — Former President Donald Trump staked his claim to the Republican Party in a closed-door speech to donors Saturday night, casting his populist policies and attack-dog...', 'https://apnews.com/381bf69568bc0bd416e9dbb45aad1af7', '', '2021-04-10 13:15:57', '2021-04-11 02:49:58', '2021-04-11 02:49:58'),
(798, 'associated-press', 'JOE McDONALD and HUIZHONG WU', 'Official: Chinese vaccines\' effectiveness low', 'BEIJING (AP) — In a rare admission of the weakness of Chinese coronavirus vaccines, the country\'s top disease control official says their effectiveness is low and the government is considering...', 'https://apnews.com/675bcb6b5710c7329823148ffbff6ef9', '', '2021-04-10 21:36:40', '2021-04-11 02:49:58', '2021-04-11 02:49:58'),
(799, 'associated-press', 'ROBERT BURNS', 'US-Philippines officials discuss concerns over China\'s ships', 'ABOARD A U.S. MILITARY AIRCRAFT (AP) — Defense Secretary Lloyd Austin on Saturday discussed with his Philippine counterpart China’s recent positioning of “militia vessels” near the Philippines in...', 'https://apnews.com/f113af1b858cabdb2ac369fd503ab16b', '', '2021-04-10 18:32:09', '2021-04-11 02:49:58', '2021-04-11 02:49:58'),
(800, 'associated-press', NULL, 'Ramsey Clark, attorney general under Johnson, dies at 93', 'NEW YORK (AP) — Ramsey Clark, the attorney general in the Johnson administration who became an outspoken activist for unpopular causes and a harsh critic of U.S. policy, has died. He was...', 'https://apnews.com/b7cd1d599e1d7ad7cc0a7152cabfc82c', '', '2021-04-10 16:07:52', '2021-04-11 02:49:58', '2021-04-11 02:49:58'),
(801, 'associated-press', NULL, 'Reports: Myanmar forces kill 82 in single day in city', 'YANGON (AP) — At least 82 people were killed in one day in a crackdown by Myanmar security forces on pro-democracy protesters, according to reports Saturday from independent local media and an...', 'https://apnews.com/db0f248da7e3084123f4c86b9e4db36b', '', '2021-04-10 10:16:57', '2021-04-11 02:49:58', '2021-04-11 02:49:58'),
(802, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Kat Angus\",\"url\":\"https://www.buzzfeed.com/katangus\",\"jobTitle\":\"BuzzFeed Staff\"},{\"@type\":\"Person\",\"name\":\"Jasmin Nahar\",\"url\":\"https://www.buzzfeed.com/jasminnahar\",\"jobTitle\":\"BuzzFeed Staff\"}]', 'These Period-Friendly Swimsuits Are Eco-Friendly, Leakproof, And Actually Comfortable', 'They can absorb the same amount as two tampons(!).', 'https://www.buzzfeed.com/katangus/modibodi-period-friendly-swimwear-review-canada?origin=hpp', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/8/15/enhanced/dbf5998be0e6/original-1610-1617895337-12.jpg?crop=1243:651;3,61%26downsize=1250:*', '2021-04-11 02:56:37', '2021-04-11 02:56:37', '2021-04-11 02:56:37'),
(803, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Natalie Brown\",\"url\":\"https://www.buzzfeed.com/nataliebrown\",\"jobTitle\":\"BuzzFeed Staff\"}]', '49 Ridiculously Clever Ways To Store Basically Anything And Everything', 'Solve *so* many of your storage problems.', 'https://www.buzzfeed.com/nataliebrown/storage-ideas-almost-everything-anything', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/2/22/enhanced/bd95a4263cf8/original-2812-1617401184-14.jpg?crop=1243:651;0,141%26downsize=1250:*', '2021-04-11 02:56:37', '2021-04-11 02:56:37', '2021-04-11 02:56:37'),
(804, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Cassandra Seale\",\"url\":\"https://www.buzzfeed.com/cassandrats\",\"jobTitle\":\"BuzzFeed Contributor\"}]', 'People Are Sharing Ridiculous Myths They Thought About Sex Before Learning The Truth', '\"That pubic hair acted like Velcro.\"', 'https://www.buzzfeed.com/cassandrats/people-are-sharing-the-weird-myths-they-believed-about-sex', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/6/18/enhanced/75d42aa2f052/original-12784-1617735520-36.jpg?crop=2308:1208;67,0%26downsize=1250:*', '2021-04-11 02:56:37', '2021-04-11 02:56:37', '2021-04-11 02:56:37'),
(805, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Hanifah Rahman\",\"url\":\"https://www.buzzfeed.com/hanifahrahman\",\"jobTitle\":\"BuzzFeed Staff\"}]', 'Only A True \"Harry Potter\" Fan Will Be Able To Guess The Movie From Just One Random Scene', 'Do you have the mind of a remembrall?', 'https://www.buzzfeed.com/hanifahrahman/harry-potter-random-scenes', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/10/21/campaign_images/f2496d04ddc5/only-a-true-harry-potter-fan-will-be-able-to-gues-2-5445-1618090255-27_dblbig.jpg', '2021-04-11 02:56:38', '2021-04-11 02:56:38', '2021-04-11 02:56:38'),
(806, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Ivy Richardson\",\"url\":\"https://www.buzzfeed.com/ivyrichardson1\",\"jobTitle\":\"BuzzFeed Staff\"}]', '18 Things You\'ll Only Understand If You Grew Up In A Caribbean Household', 'Some people hoard books, Caribbean people hoard plastic bags.', 'https://www.buzzfeed.com/ivyrichardson1/growing-up-caribbean-household', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/11/10/campaign_images/385d06f95512/18-things-youll-only-understand-if-you-grew-up-in-2-6877-1618135265-22_dblbig.jpg', '2021-04-11 02:56:38', '2021-04-11 02:56:38', '2021-04-11 02:56:38');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(807, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Samantha Wieder\",\"url\":\"https://www.buzzfeed.com/samanthawieder\",\"jobTitle\":\"BuzzFeed Staff\"}]', '16 \"Shark Tank\" Products That Would Make Excellent Mother\'s Day Gifts', 'Welcome to the Shark Tank, mom.', 'https://www.buzzfeed.com/samanthawieder/best-shark-tank-mothers-day-gifts', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/7/17/enhanced/83bbfa37cde3/original-830-1617816105-8.jpg?crop=1581:830;0,0%26downsize=1250:*', '2021-04-11 02:56:38', '2021-04-11 02:56:38', '2021-04-11 02:56:38'),
(808, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Matt Stopera\",\"url\":\"https://www.buzzfeed.com/mjs538\",\"jobTitle\":\"BuzzFeed Staff\"},{\"@type\":\"Person\",\"name\":\"Lauren Yapalater\",\"url\":\"https://www.buzzfeed.com/lyapalater\",\"jobTitle\":\"BuzzFeed Staff\"}]', '48 Famous Gay Couples You May Or May Not Know Are Together In 2021', 'I know we forgot a ton, which I\'m sure you\'ll point out in the comments!', 'https://www.buzzfeed.com/mjs538/a-list-of-famous-gay-couples-1', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/6/18/enhanced/613d46834877/original-12833-1617733196-13.jpg?crop=3794:1992;0,0%26downsize=1250:*', '2021-04-11 02:56:38', '2021-04-11 02:56:38', '2021-04-11 02:56:38'),
(809, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Sumedha Bharpilania\",\"url\":\"https://www.buzzfeed.com/sumedha_bharpilania\",\"jobTitle\":\"BuzzFeed Staff\"}]', '24 Times Indian Food Was Served In Everything But Plates And Bowls', 'Some of these are pretty innovative tbh!', 'https://www.buzzfeed.com/sumedha_bharpilania/indian-food-fails-plate-needed', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/9/5/enhanced/02aa2b1bead2/original-3723-1617947944-19.jpg?crop=1243:651;0,73%26downsize=1250:*', '2021-04-11 02:56:38', '2021-04-11 02:56:38', '2021-04-11 02:56:38'),
(810, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Stephen LaConte\",\"url\":\"https://www.buzzfeed.com/stephenlaconte\",\"jobTitle\":\"BuzzFeed Staff\"}]', 'Women Who Settled For A Partner Who Wasn\'t \"The One\" Are Sharing Their Stories, And It\'s A Perspective You Don\'t Often Hear', '\"I would give my right arm to have my true love, but here we are.\"', 'https://www.buzzfeed.com/stephenlaconte/settling-for-partner-who-isnt-the-one-reddit', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/8/19/enhanced/9e8eabe5ba54/original-1980-1617908526-4.jpg?crop=3565:1872;0,0%26downsize=1250:*', '2021-04-11 02:56:38', '2021-04-11 02:56:38', '2021-04-11 02:56:38'),
(811, 'techradar', 'Bill Thomas', 'Cyberpunk 2077 ray tracing works on AMD graphics cards – but don\'t turn it on', 'Cyberpunk 2077 ray tracing is pretty...rough', 'https://www.techradar.com/news/cyberpunk-2077-ray-tracing-works-on-amd-graphics-cards-but-dont-turn-it-on', 'https://cdn.mos.cms.futurecdn.net/miQAYiykaqwP9hrLiokdyR-1200-80.jpg', '2021-04-10 08:00:27', '2021-04-11 03:45:30', '2021-04-11 03:45:30'),
(812, 'techradar', 'Matt Swider', 'PS5 restock Walmart discount? Here\'s the truth about this secret console \'deal\'', 'Our PS5 Twitter tracker has noticed people are getting partial refunds on their soon-to-ship Sony console. Here\'s why.', 'https://www.techradar.com/news/ps5-restock-walmart-discount', 'https://cdn.mos.cms.futurecdn.net/KtBgmToAoKnjkncoahtCoH-1200-80.jpg', '2021-04-11 00:12:05', '2021-04-11 03:45:30', '2021-04-11 03:45:30'),
(813, 'techradar', 'Tom Bedford', 'Hands on: Nokia X20 review', 'Nokia’s new champ', 'https://www.techradar.com/reviews/nokia-x20', 'https://cdn.mos.cms.futurecdn.net/LoaHiV7tPYUbRHZtT3Hf5W-1200-80.jpg', '2021-04-08 06:30:36', '2021-04-11 03:45:30', '2021-04-11 03:45:30'),
(814, 'techradar', 'Matt Swider', 'Xbox Series X restock: it\'s now harder to buy than PS5 – when and where to get it', 'Our Xbox restock tracker knows where the console will be back in stock next week. Follow the Twitter account below for alerts.', 'https://www.techradar.com/news/xbox-series-x-restock-date-and-tracker-alerts', 'https://cdn.mos.cms.futurecdn.net/sKsrq4UmDh9s6cKBQ2hTN6-1200-80.jpg', '2021-04-10 07:29:39', '2021-04-11 03:45:30', '2021-04-11 03:45:30'),
(815, 'techradar', 'Vic Hood', 'The Last of Us remake is coming to PS5, according to report', 'A new Uncharted game is reportedly in the works, too', 'https://www.techradar.com/news/the-last-of-us-remake-is-coming-to-ps5-according-to-report', 'https://cdn.mos.cms.futurecdn.net/GKPwr4kYZqGn5VqTRc9BD7-1200-80.jpg', '2021-04-09 03:48:28', '2021-04-11 03:45:30', '2021-04-11 03:45:30'),
(816, 'techradar', 'Tom Power', 'Them is an Amazon Prime Video horror series that looks racism square in the face', '‘It was hurtful shooting it… I got very emotional’', 'https://www.techradar.com/news/how-them-on-amazon-prime-video-looks-to-tackle-issues-around-racism-in-america', 'https://cdn.mos.cms.futurecdn.net/w4y4BwzAZFXFidVGJJdPQ6-1200-80.jpg', '2021-04-09 08:00:00', '2021-04-11 03:45:30', '2021-04-11 03:45:30'),
(817, 'football-italia', 'Football Italia Staff', 'Liveblog: Serie A Wk30 Super Sunday', 'Join us for all the build-up and action as it happens from today’s six Serie A games, including Inter-Cagliari, Juventus-Genoa, Sampdoria-Napoli and Fiorentina-Atalanta.', 'http://www.football-italia.net/node/168983', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Lukaku-2012-Cagliari-Carboni-epa.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:32', '2021-04-11 03:45:32'),
(818, 'football-italia', 'Football Italia Staff', 'HT: Cagliari keeping Inter quiet', 'Both goalkeepers had to make saves, but it’s 0-0 at the break between Inter and Cagliari, with Christian Eriksen and Radja Nainggolan chances.', 'http://www.football-italia.net/node/168996', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Young-2104-Cagliari-Zappa-epa.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:32', '2021-04-11 03:45:32'),
(819, 'football-italia', 'Football Italia Staff', 'Marotta: 'You don't win with possession'', 'Beppe Marotta calls Antonio Conte ‘a winner’ and weighs in on the debate over Inter’s lack of beautiful football by quoting Helenio Herrera.', 'http://www.football-italia.net/node/168994', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Marotta-2008-epa_9.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:32', '2021-04-11 03:45:32'),
(820, 'football-italia', 'Football Italia Staff', 'Morata’s Juventus future in doubt', 'Alvaro Morata could return to Atletico Madrid at the end of the season as the Old Lady will try to sign Sergio Aguero, Mauro Icardi or Moise Kean.', 'http://www.football-italia.net/168997/morata%E2%80%99s-juventus-future-doubt', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Morata-2012-Juve-noo_1.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:32', '2021-04-11 03:45:32'),
(821, 'football-italia', 'Football Italia Staff', 'Four players Juve can offer in swap deal for Kean', 'Juventus reportedly want to re-sign their former striker Moise Kean and there are four players they can offer in a swap deal for the Italy international.', 'http://www.football-italia.net/168995/four-players-juve-can-offer-swap-deal-kean', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Kean-2012-celebs-psg-epa_1.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:33', '2021-04-11 03:45:33'),
(822, 'football-italia', 'Football Italia Staff', 'Ibrahimovic ‘ruined Milan’s game’', 'Italian sports papers hit out at Zlatan Ibrahimovic for his red card against Parma: ‘He ruined Milan’s game.’', 'http://www.football-italia.net/168993/ibrahimovic-%E2%80%98ruined-milan%E2%80%99s-game%E2%80%99', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Ibra-2011-Mila-nooo-epa_3.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:33', '2021-04-11 03:45:33'),
(823, 'football-italia', 'Football Italia Staff', 'Cassano: 'Conte parks the bus, it's horrifying'', 'Antonio Cassano blasts Inter boss Antonio Conte for ‘parking the bus’ with ‘the kind of football that gives me the shivers. If I was there, I’d beg the President to fire him.’', 'http://www.football-italia.net/168992/cassano-conte-parks-bus-its-horrifying', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/cassano-cu-epa_9.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:33', '2021-04-11 03:45:33'),
(824, 'football-italia', 'Football Italia Staff', 'Commisso returns to Florence', 'Fiorentina President Rocco Commisso returned to Florence and said he wanted to take some vaccines with him given that Italy's vaccination campaign is slowing down.', 'http://www.football-italia.net/168991/commisso-returns-florence', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Commisso-2011-salutes-epa_1.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:33', '2021-04-11 03:45:33'),
(825, 'football-italia', 'Football Italia Staff', 'Costacurta slams Donnarumma over contract extension', 'Milan legend Alessandro Costacurta is annoyed by Gigio Donnarumma’s attitude: ‘Why does he kiss the shirt and without signing a contract extension?’', 'http://www.football-italia.net/168990/costacurta-slams-donnarumma-over-contract-extension', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Costacurta-2020_3.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:33', '2021-04-11 03:45:33'),
(826, 'football-italia', 'Football Italia Staff', 'Line-ups: Inter v Cagliari', 'Inter start Stefano Sensi and Alexis Sanchez, as they host Radja Nainggolan and Diego Godin’s desperate Cagliari.', 'http://www.football-italia.net/168988/line-ups-inter-v-cagliari', 'https://www.football-italia.net/sites/default/files/imagecache/main_photo/[type]/[nid]/Alexis-2011-celeb-epa_3.jpg', '2021-04-10 17:00:00', '2021-04-11 03:45:33', '2021-04-11 03:45:33'),
(827, 'bloomberg', NULL, 'China Poised to Dominate Digital Currency, Electronic Payments', '', 'https://www.bloomberg.com/opinion/articles/2021-04-10/china-poised-to-dominate-digital-currency-electronic-payments', NULL, '2021-04-10 04:00:10', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(828, 'bloomberg', NULL, 'China Approves Third Sinopharm Covid Vaccine for Clinical Trial', 'China has approved the third Covid-19 vaccine from Sinopharm Group Co. to start clinical trials, the company said.', 'https://www.bloomberg.com/news/articles/2021-04-10/china-approves-third-sinopharm-covid-vaccine-for-clinical-trial', 'https://assets.bwbx.io/images/users/iqjWHBFdfxIU/ikXFbS1sGOfU/v1/1200x800.jpg', '2021-04-09 20:15:00', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(829, 'bloomberg', NULL, 'CureVac Could Win Covid Shot Approval in May, Augsburger Says', '', 'https://www.bloomberg.com/news/articles/2021-04-10/curevac-could-win-covid-shot-approval-in-may-augsburger-says', NULL, '2021-04-09 18:00:00', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(830, 'bloomberg', NULL, 'Prince Philip Dies Aged 99; Boris Johnson Leads Tributes to \'Much-Loved\' Figure', '', 'https://www.bloomberg.com/news/articles/2021-04-09/johnson-leads-tributes-to-u-k-s-prince-philip-who-s-died-at-99', NULL, '2021-04-09 03:51:25', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(831, 'bloomberg', NULL, 'Didi Chuxing Said to Have Filed Confidentially for US IPO', '', 'https://www.bloomberg.com/news/articles/2021-04-09/didi-chuxing-is-said-to-have-filed-confidentially-for-u-s-ipo-knaqvotf', NULL, '2021-04-09 12:11:23', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(832, 'bloomberg', NULL, '\'Godzilla vs. Kong\' to Reach Pandemic Record, Boosting Theaters', '', 'https://www.bloomberg.com/news/articles/2021-04-09/-godzilla-vs-kong-to-reach-pandemic-record-boosting-theaters', NULL, '2021-04-09 12:41:45', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(833, 'bloomberg', '', 'Balance of Power: AFL-CIO\'s Trumka, Amazon Vote', 'Source: , 09:48', 'https://www.bloomberg.com/news/audio/2021-04-09/balance-of-power-afl-cio-s-trumka-amazon-vote', 'https://assets.bwbx.io/s3/bbiz/images/social_fallbacks/bloomberg_default-a4f15fa7ee.jpg', '2021-04-09 12:06:16', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(834, 'bloomberg', NULL, 'Rattled Archegos Stocks VIAC, DISC, FTC, Investable After $194 Billion Blow', '', 'https://www.bloomberg.com/news/articles/2021-04-09/rattled-archegos-stocks-investable-again-after-194-billion-blow', NULL, '2021-04-09 12:11:50', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(835, 'bloomberg', NULL, 'Iran Atomic-Talk Progress Could Set Stage for Blinken, Zarif', '', 'https://www.bloomberg.com/news/articles/2021-04-09/iran-atomic-talks-progress-could-set-stage-for-blinken-and-zarif', NULL, '2021-04-09 01:32:01', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(836, 'bloomberg', NULL, 'European Stocks Post Longest Weekly Winning Streak in 17 Months', '', 'https://www.bloomberg.com/news/articles/2021-04-09/european-stocks-hold-steady-after-notching-two-records-in-a-week', NULL, '2021-04-08 23:20:25', '2021-04-11 03:54:38', '2021-04-11 03:54:38'),
(837, 'hacker-news', NULL, 'The Simplicity of Making Librem 5 Apps – Purism', 'Purism makes premium phones, laptops, mini PCs and servers running free software on PureOS. Purism products respect people\'s privacy and freedom while protecting their security.', 'https://puri.sm/posts/the-simplicity-of-making-librem-5-apps/', 'https://puri.sm/wp-content/uploads/2021/04/librem_5_app_development_docked.png', '2021-04-09 08:46:46', '2021-04-11 07:19:39', '2021-04-11 07:19:39'),
(838, 'hacker-news', 'Dror Poleg', 'The Ponzi Career', 'The future of work is a pyramid scheme, where every person sells his favorite person to the next person.', 'https://www.drorpoleg.com/the-ponzi-career/', 'https://www.drorpoleg.com/content/images/2021/04/The-Ponzi-Career-by-Dror-Poleg.png', '2021-04-09 03:14:24', '2021-04-11 07:19:39', '2021-04-11 07:19:39'),
(839, 'hacker-news', NULL, 'The Shape of Rome', NULL, 'https://www.exurbe.com/the-shape-of-rome/', NULL, '2013-08-14 21:00:33', '2021-04-11 07:19:39', '2021-04-11 07:19:39'),
(840, 'hacker-news', 'Buchenwald and Mittelbau-Dora Memorials Foundation', 'Chronology of the Liberation', 'Website of the Buchenwald and Mittelbau-Dora Memorials Foundation', 'https://www.buchenwald.de/en/399/', NULL, '2021-04-11 07:19:40', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(841, 'hacker-news', NULL, 'M1 dev setup with a virtual Linux box', NULL, 'https://kristiandupont.medium.com/m1-dev-setup-with-a-virtual-linux-box-1a2688231667', NULL, '2021-04-11 07:19:40', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(842, 'hacker-news', 'Zachary Crockett', 'Why Delaware is the sexiest place in America to incorporate a company', 'Nearly 1.5m companies are incorporated in Delaware. How did this tiny state become a mecca for corporate activity?', 'https://thehustle.co/why-delaware-is-the-sexiest-place-in-america-to-incorporate-a-company/', 'https://thehustle.co/wp-content/uploads/2021/04/share-1.jpg', '2021-04-10 09:36:40', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(843, 'hacker-news', 'Matt Stoller', 'When Google\'s Fancy Lawyers Screw Up and Jeopardize Sheryl Sandberg, at $1500/Hour', 'A redacted document showed extremely sensitive information. Google\'s lawyer accidentally made it public.', 'https://mattstoller.substack.com/p/when-googles-fancy-lawyers-screw', 'https://cdn.substack.com/image/fetch/w_1200,c_limit,f_jpg,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fc5c45475-61c0-4d2c-a212-9067ff683ce8_1024x600.jpeg', '2021-04-10 17:06:17', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(844, 'hacker-news', NULL, 'Subjects | Old Book Illustrations', 'Browse the illustration database according to the subjects you are interested in: animals, landscapes, buildings, people...', 'https://www.oldbookillustrations.com/subjects/', 'https://oldbookillustrations.com/wp-content/high-res/-768.jpg', '2021-04-11 07:19:40', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(845, 'hacker-news', NULL, 'Networking', 'TLS Mastery SNMP Mastery The Networknomicon, or SNMP Mastery Networking for System Administrators DNSSEC Mastery Network Flow Analysis Cisco Routers for the Desperate TLS Mastery Transport Layer Se…', 'https://mwl.io/nonfiction/networking#tls', 'https://mwl.io/wp-content/uploads/2021/03/tls-mastery-beastie-cover-2021-03-03-200x300.jpg', '2021-04-08 06:43:42', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(846, 'hacker-news', NULL, 'Atlantic Dawn | Britishseafishing.co.uk', 'Atlantic Dawn was the worlds largest pelagic trawler – and the most controversial fishing vessel to ever be built.', 'https://britishseafishing.co.uk/atlantic-dawn-the-ship-from-hell/', NULL, '2020-12-23 02:47:24', '2021-04-11 07:19:40', '2021-04-11 07:19:40'),
(847, 'bbc-news', 'BBC News', 'Prince Philip: The Queen says his death has \'left a huge void\' - Duke of York', 'Prince Andrew says \"we\'ve lost the grandfather of the nation\", as he leaves a service at Windsor.', 'http://www.bbc.co.uk/news/uk-56710086', 'https://ichef.bbci.co.uk/news/1024/branded_news/7BF8/production/_117963713_hi066704729.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(848, 'bbc-news', 'BBC News', 'Jordan royal family pictured together following \'royal rift\'', 'They appear in public a week after Prince Hamzah was accused of plotting to destabilise the kingdom.', 'http://www.bbc.co.uk/news/world-middle-east-56676274', 'https://ichef.bbci.co.uk/news/1024/branded_news/14DBC/production/_117963458_eysjaa-w8aecxda.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(849, 'bbc-news', 'BBC News', 'St Vincent volcano: Power cuts after another \'explosive event\'', 'Monitors report another \"explosive event\" at a volcano on the now ash-covered Caribbean island of St Vincent.', 'http://www.bbc.co.uk/news/world-latin-america-56707956', 'https://ichef.bbci.co.uk/news/1024/branded_news/A09C/production/_117961114_hi066687273.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(850, 'bbc-news', 'BBC News', 'US army officer sues police over violent traffic stop', 'A black army lieutenant files a lawsuit against two policemen in Virginia after being pepper-sprayed.', 'http://www.bbc.co.uk/news/world-us-canada-56707979', 'https://ichef.bbci.co.uk/news/1024/branded_news/144AC/production/_117961138_p09dbvs3.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(851, 'bbc-news', 'BBC News', 'New Christ statue in Brazil\'s Encantado to be taller than Rio\'s', 'A head and outstretched arms have been added to Christ the Protector in the southern city of Encantado.', 'http://www.bbc.co.uk/news/world-latin-america-56710354', 'https://ichef.bbci.co.uk/news/1024/branded_news/17AA8/production/_117963969_protector4.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(852, 'bbc-news', 'BBC News', 'Elephant calf rescued from bottom of well in India', 'An elephant calf has been rescued from the bottom of a dug well in India\'s Odisha state.', 'http://www.bbc.co.uk/news/world-south-asia-56709546', 'https://ichef.bbci.co.uk/images/ic/400xn/p09dblq2.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(853, 'bbc-news', 'BBC News', 'Covid-19: England and Wales prepare for shops reopening', 'Pints will also be poured in pub gardens, and hairdressers and gyms will reopen in England on Monday.', 'http://www.bbc.co.uk/news/live/uk-56707037', 'https://m.files.bbci.co.uk/modules/bbc-morph-news-waf-page-meta/5.1.0/bbc_news_logo.png', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(854, 'bbc-news', 'BBC News', 'Covid-19: India vaccination crosses 100 million doses', 'But despite the huge inoculation drive, India has just registered another record increase in infections.', 'http://www.bbc.co.uk/news/world-asia-india-56345591', 'https://ichef.bbci.co.uk/news/1024/branded_news/1531E/production/_117741868_mediaitem117741867.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(855, 'bbc-news', 'BBC News', 'Myanmar: \'Dozens killed\' in military crackdown in Bago', 'Activists say more than 80 people were killed in the city of Bago in protests against the military coup.', 'http://www.bbc.co.uk/news/world-asia-56703416', 'https://ichef.bbci.co.uk/news/1024/branded_news/7F53/production/_117959523_mediaitem117959522.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(856, 'bbc-news', 'BBC News', 'China mine rescue: Crews race to free trapped workers in Xinjiang', 'Twenty-one people are trapped underground after a coal mine flooded in the Xinjiang region.', 'http://www.bbc.co.uk/news/world-asia-china-56706520', 'https://ichef.bbci.co.uk/news/1024/branded_news/13A16/production/_117960408_gettyimages-1231371506-1.jpg', '2021-04-11 07:48:33', '2021-04-11 07:48:33', '2021-04-11 07:48:33'),
(857, 'the-hindu', 'Shoumojit Banerjee', 'Coronavirus | Decision on lockdown in two-three days, says Maharashtra Health Minister', 'Uddhav holds meeting with task force amid continued unprecedented case spikes', 'https://www.thehindu.com/news/national/coronavirus-decision-on-lockdown-in-two-three-days-says-maharashtra-health-minister/article34296795.ece', 'https://www.thehindu.com/news/national/pnbr5v/article34296794.ece/ALTERNATES/LANDSCAPE_615/12th-hospital', '2021-04-11 08:17:00', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(858, 'the-hindu', 'Special Correspondent', 'Opposition joins call to cancel board exams', 'Congress leaders say Centre will hold legal liability if CBSE test centres turned into hotspots', 'https://www.thehindu.com/news/national/opposition-joins-call-to-cancel-board-exams/article34297028.ece', 'https://www.thehindu.com/news/national/38gnyd/article32521846.ece/ALTERNATES/LANDSCAPE_615/NKV-CBSE', '2021-04-11 08:46:24', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(859, 'the-hindu', 'Priscilla Jebaraj', 'Visually impaired struggle with NCERT e-textbooks', 'Over 60% of NCERT chapters and over 95% of SCERT books are either totally or partially inaccessible.', 'https://www.thehindu.com/education/half-of-ncert-e-textbooks-not-accessible-to-visually-impaired-finds-study/article34296523.ece', 'https://www.thehindu.com/education/k9n9cv/article34296522.ece/ALTERNATES/LANDSCAPE_615/12th-tab', '2021-04-11 07:15:12', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(860, 'the-hindu', 'Shiv Sahay Singh', 'West Bengal Assembly Elections | Bengal BJP president warns of more Sitalkuchi-like shootings, draws condemnation', '“The kind of naughty boys who got shot in Sitalkuchi in Cooch Behar won’t remain in Bengal. This is just the beginning,” says Dilip Ghosh.', 'https://www.thehindu.com/news/national/other-states/bengal-bjp-president-warns-of-more-shootings-like-sitalkuchi-draws-condemnation/article34295870.ece', 'https://www.thehindu.com/news/national/other-states/1tc8dq/article34295869.ece/ALTERNATES/LANDSCAPE_615/dilip-ghosh', '2021-04-11 05:43:02', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(861, 'the-hindu', 'Vijaita Singh', 'Pangong Tso becomes ‘no-man’s land’ for cattle gazers of Chushul, says councillor', 'The areas around the foothills of Helmet Top, Black Top and Gurung Hill were accessible to the grazers but out of bound this time.', 'https://www.thehindu.com/news/national/pangong-tso-becomes-no-mans-land-for-cattle-gazers-of-chushul-says-councillor/article34295560.ece', 'https://www.thehindu.com/news/national/ksuwng/article34295559.ece/ALTERNATES/LANDSCAPE_615/PangongTso', '2021-04-11 04:32:57', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(862, 'the-hindu', 'Special Correspondent', 'Ready for talks, won\'t abandon protest, says Samyukt Kisan Morcha', 'The government is ready to resume talks whenever farmers come with a proposal, says Narendra Singh Tomar.', 'https://www.thehindu.com/news/national/citing-covid-19-surge-agriculture-minister-urges-farm-unions-to-call-off-protest/article34294594.ece', 'https://www.thehindu.com/news/national/jozf72/article34294593.ece/ALTERNATES/LANDSCAPE_615/Narendra-Singh-Tomar', '2021-04-10 23:16:15', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(863, 'the-hindu', 'Vikas Dhoot', 'Investment projects bounce back in Q4: report', 'Project execution rate highest since March 2021; private sector and government-backed capital spending taking off', 'https://www.thehindu.com/business/Economy/investment-projects-bounce-back-in-q4-report/article34296736.ece', 'https://www.thehindu.com/business/Economy/lnzsjd/article34296735.ece/ALTERNATES/LANDSCAPE_615/Investment', '2021-04-11 08:07:28', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(864, 'the-hindu', 'Sobhana K Nair', 'Fledgling TIPRA changes political equations in Tripura', 'My stand on CAA/NRC vindicated, says former Congress chief Pradyut Manikya', 'https://www.thehindu.com/news/national/other-states/fledgling-tipra-changes-political-equations-in-tripura/article34296814.ece', 'https://www.thehindu.com/news/national/other-states/6affca/article34296988.ece/ALTERNATES/LANDSCAPE_615/Pradyotjpg', '2021-04-11 08:19:55', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(865, 'the-hindu', 'Mathangi Krishnamurthy', 'A manifesto for torn jeans', 'Distressed jeans becomes both a form of rebellion, a plugging out, and an intimate connection with clothing as continuous with the body', 'https://www.thehindu.com/society/a-manifesto-for-torn-jeans/article34278937.ece', 'https://www.thehindu.com/society/a0sgbd/article34278936.ece/ALTERNATES/LANDSCAPE_615/11SMjeans2', '2021-04-10 02:55:00', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(866, 'the-hindu', 'G. Sampath', 'Are you EVM-positive?', 'Last Tuesday, our kitchen tested positive. Every time we took the cake out of the oven, it was lotus-shaped', 'https://www.thehindu.com/opinion/satire-are-you-evm-positive/article34279103.ece', 'https://www.thehindu.com/opinion/agvdgt/article34279102.ece/ALTERNATES/LANDSCAPE_615/11SM-MACHINE', '2021-04-10 02:32:00', '2021-04-11 09:30:02', '2021-04-11 09:30:02'),
(867, 'usa-today', NULL, 'When will everyone be vaccinated for COVID-19? Here\'s how the vaccine rollout is going', 'Explore projections of when the US might achieve herd immunity through vaccines.', 'https://www.usatoday.com/in-depth/graphics/2021/03/12/when-will-everyone-be-vaccinated-for-covid-19-when-will-we-reach-us-herd-immunity-projection/6840512002/', 'https://www.gannett-cdn.com/presto/2021/03/12/USAT/90d815ba-03f0-4975-8857-7f03c8515dcc-vaccine_interactive_promo2.jpg?crop=845,475,x516,y227&width=1200', '2021-03-26 19:49:40', '2021-04-12 06:27:22', '2021-04-24 08:29:25'),
(868, 'usa-today', NULL, 'Celebrating USA TODAY\'s Women of the Year', 'Nominate an inspiring woman to be recognized in USA TODAY’s Women of the Year. @usatoday', 'https://usatodaynetwork.secondstreetapp.com/USA-TODAYs-Women-of-the-Year/?utm_source=usat&utm_medium=flag&utm_campaign=woty-bnm', 'https://media.secondstreetapp.com/4033472?width=1200&height=630', '2021-04-02 05:52:54', '2021-04-12 06:27:22', '2021-04-24 08:29:25'),
(869, 'usa-today', NULL, 'USA TODAY News Quiz: Test your knowledge this week', 'Did you pay attention this week? Take the USA TODAY current events news quiz for the week of March 22.', 'https://www.usatoday.com/storytelling/quiz/news-quiz/2021-04-09/', 'https://www.gannett-cdn.com/presto/2021/04/08/USAT/79a7a9eb-7400-42e2-916b-572bbdf3dd26-AP_George_Floyd_Officer_Trial.jpg', '2021-02-19 09:16:35', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(870, 'usa-today', NULL, 'From stimulus checks to Tax Day 2021: Answers to your questions about IRS changes, COVID relief and more', 'Americans have tons of questions about their stimulus checks and 2020 taxes. Here’s what you need to know about 2021 COVID-relief payments and more.', 'https://www.usatoday.com/story/money/taxes/2021/03/18/stimulus-check-2021-irs-get-my-payment-tax-refund-unemployment/4755282001/', 'https://www.gannett-cdn.com/-mm-/9e1f6e2ee20f44aa1f3be4f71e9f3e52b6ae2c7e/c=0-110-2121-1303/local/-/media/2021/03/16/USATODAY/usatsports/gettyimages-1293522505.jpg?width=1600&height=800&fit=crop', '2021-02-22 09:51:32', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(871, 'usa-today', NULL, 'Protests erupt after death of Daunte Wright, 20-year-old Black man shot by police during traffic stop: What we know', 'The police shooting of Daunte Wright during a traffic stop prompted protests Sunday amid an already tense Minnesota during the trial of Derek Chauvin.', 'https://www.usatoday.com/story/news/nation/2021/04/12/daunte-wright-police-shooting-near-minneapolis-protest-what-to-know/7185768002/', 'https://www.gannett-cdn.com/presto/2021/04/12/USAT/f9582b3d-eeae-4554-aa2d-537ca3ad8e6b-GTY_1232260991.jpg?crop=1023,575,x1,y54&width=1600&height=800&fit=bounds', '2021-04-12 04:13:08', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(872, 'usa-today', NULL, 'Roads, bridges ... and caregivers? Why Biden is pushing a \'radical shift\' to redefine infrastructure', 'Caregiving is the most glaring example of how Biden expanded the traditional definition of infrastructure in his $2 trillion jobs plan.', 'https://www.usatoday.com/in-depth/news/politics/2021/04/12/why-biden-wants-radical-shift-home-aid-seniors-and-elderly/7103830002/', NULL, '2021-04-12 01:01:30', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(873, 'usa-today', NULL, '\'Disturbing\': Windsor, Virginia, police officer fired after using pepper spray at traffic stop', 'A Virginia police officer accused of pepper-spraying a Black and Latino military officer during a traffic stop in December has been fired.', 'https://www.usatoday.com/story/news/nation/2021/04/12/police-pepper-spray-soldier-officer-fired-after-virginia-traffic-stop/7185807002/', 'https://www.gannett-cdn.com/presto/2021/04/12/USAT/b9cbe962-dbd0-4068-9f4f-36c5939d96a2-VA_POLICE_TRAFFIC_STOP.JPG?crop=1911,1075,x0,y5&width=1600&height=800&fit=bounds', '2021-04-12 05:05:55', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(874, 'usa-today', NULL, '\'Really unbelievable\': Severe storms in South leave at least 3 dead, thousands without power in Florida', 'Damaging winds, tornadoes, and isolated large hail were expected across southern Florida into Sunday night', 'https://www.usatoday.com/story/news/weather/2021/04/11/severe-storms-damage-power-outages-tornadoes/7184052002/', 'https://www.gannett-cdn.com/presto/2021/04/11/NSHT/e9204fd7-2b52-40b0-9ba0-b517181eb9f8-Storm_Front.jpg?crop=4014,2258,x0,y0&width=3200&height=1680&fit=bounds', '2021-04-11 16:21:36', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(875, 'usa-today', NULL, 'John Boehner on how history will judge presidents he\'s known. Trump: \'I don\'t think very well\'', 'The good, the bad and the \"brother:\" Ex-speaker John Boehner rates the presidents, from the \"decent\" Gerald Ford to the disappointing Barack Obama.', 'https://www.usatoday.com/in-depth/news/politics/2021/04/11/boehner-rates-presidents-he-has-known-nixon-trump/7113484002/', NULL, '2021-04-12 04:41:54', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(876, 'usa-today', NULL, 'Anthony Neuer makes PBA Tour history by picking up first televised 7-10 split in 30 years', 'Anthony Neuer converted the first 7-10 split during a PBA Tour broadcast since 1991 during his U.S. Open semifinal matchup.', 'https://www.usatoday.com/story/sports/bowling/2021/04/11/anthony-neuer-picks-up-7-10-split-us-open/7185104002/', 'https://www.gannett-cdn.com/presto/2021/04/12/USAT/ffe8e954-3f5e-4a30-9f10-71cbd269f89a-AFP_AFP_1J40LT.JPG?crop=2975,1673,x0,y0&width=1600&height=800&fit=bounds', '2021-04-12 02:57:49', '2021-04-12 06:27:22', '2021-04-12 06:27:22'),
(877, 'the-hindu', 'PTI', 'Expert panel recommends granting approval to COVID-19 vaccine Sputnik V for emergency use in India', 'If approved, Sputnik V will be the third COVID-19 vaccine to be available in India', 'https://www.thehindu.com/sci-tech/health/expert-panel-recommends-granting-approval-to-covid-19-vaccine-sputnik-v-for-emergency-use-in-india/article34301838.ece', 'https://www.thehindu.com/sci-tech/health/ze4g0l/article34301837.ece/ALTERNATES/LANDSCAPE_615/vbk-sputnikv-ap', '2021-04-12 02:41:18', '2021-04-12 06:27:45', '2021-04-12 06:27:45'),
(878, 'the-hindu', 'PTI', 'IIP contracts 3.6% in February; retail inflation rises to 5.52% in March', 'The IIP had grown by 5.2% in February 2020', 'https://www.thehindu.com/business/Industry/iip-contracts-36-in-february-retail-inflation-rises-to-552-in-march/article34303011.ece', 'https://www.thehindu.com/business/Economy/hukmm6/article33559262.ece/ALTERNATES/LANDSCAPE_615/FOODPRICES', '2021-04-12 04:43:22', '2021-04-12 06:27:45', '2021-04-12 06:27:45'),
(879, 'the-hindu', 'Legal Correspondent', 'Rafale deal: SC says it will consider listing writ petition after two weeks', 'Plea urges registration of FIR for cheating, criminal breach of trust and under Prevention of Corruption Act', 'https://www.thehindu.com/news/national/rafale-deal-sc-says-it-will-consider-listing-writ-petition-after-two-weeks/article34301867.ece', 'https://www.thehindu.com/news/national/gkwgbr/article34243195.ece/ALTERNATES/LANDSCAPE_615/Aero-India-2021-airshow', '2021-04-12 02:52:12', '2021-04-12 06:27:45', '2021-04-12 06:27:45'),
(880, 'the-hindu', 'Devesh K. Pandey', 'CBI asks former Maharashtra Minister Anil Deshmukh to join probe on April 14', 'Ex-Maharashtra Home Minister facing corruption allegations', 'https://www.thehindu.com/news/national/other-states/cbi-asks-anil-deshmukh-to-join-probe-on-april-14/article34303327.ece', 'https://www.thehindu.com/news/national/czbl0b/article34294469.ece/ALTERNATES/LANDSCAPE_615/Anil-Deshmukh', '2021-04-12 05:30:56', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(881, 'the-hindu', 'The Hindu', 'West Bengal Assembly elections | Trinamool Congress insulting Scheduled Castes in State: PM Modi', 'PM Modi, addressing a public meeting at Bardhaman town, said a senior leader of the Trinamool Congress has called members of Scheduled Caste population as “beggars”', 'https://www.thehindu.com/elections/west-bengal-assembly/west-bengal-assembly-elections-trinamool-congress-insulting-scheduled-castes-in-state-pm-modi/article34301714.ece', 'https://www.thehindu.com/elections/west-bengal-assembly/b552gw/article34301713.ece/ALTERNATES/LANDSCAPE_615/PM-Modi-in-West-Bengal', '2021-04-12 02:29:51', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(882, 'the-hindu', 'Legal Correspondent', 'SC dismisses plea to scrap 26 verses from Quran, says it is ‘absolutely frivolous’', 'The writ petition, filed by former chief of Uttar Pradesh Shia Central Waqf Board Waseem Rizwi, said the verses ‘promoted terror’.', 'https://www.thehindu.com/news/national/sc-dismisses-plea-to-scrap-26-verses-from-quran-says-it-is-absolutely-frivolous/article34300664.ece', 'https://www.thehindu.com/news/national/wzmvkv/article34272228.ece/ALTERNATES/LANDSCAPE_615/SupremeCourt', '2021-04-11 23:28:20', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(883, 'the-hindu', 'The Hindu Net Desk', 'Coronavirus live updates | Highest-ever spike of 63,294 cases in Maharashtra', 'India reported 1,69,899 fresh cases of COVID-19 as of 11.30 p.m. IST on April 11, marking the biggest single-day spike since the beginning of the pandemic last year.', 'https://www.thehindu.com/news/national/coronavirus-live-april-12-2021-updates/article34299308.ece', 'https://www.thehindu.com/news/national/telangana/ctshh6/article34297266.ece/ALTERNATES/LANDSCAPE_615/hy11-policemask', '2021-04-12 06:27:46', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(884, 'the-hindu', 'Shiv Sahay SinghKolkata', 'West Bengal Assembly elections | Sitalkuchi deaths: Impose ban on Bengal BJP president, Mamata tells EC', 'Entire thing was planned by Amit Shah and Modi was aware of the situation, she says', 'https://www.thehindu.com/elections/west-bengal-assembly/sitalkuchi-deaths-impose-ban-on-bengal-bjp-president-mamata-tells-ec/article34302449.ece', 'https://www.thehindu.com/elections/west-bengal-assembly/f35tvt/article34302448.ece/ALTERNATES/LANDSCAPE_615/Mamata-Banerjee-campaign-for-state-assembly', '2021-04-12 03:49:14', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(885, 'the-hindu', 'The Hindu', 'Wrong shots: On West Bengal poll violence', 'ECI must take measures to prevent violence, and keep the election process fair', 'https://www.thehindu.com/opinion/editorial/wrong-shots-the-hindu-editorial-on-west-bengal-poll-violence/article34296821.ece', 'https://www.thehindu.com/static/theme/default/base/img/og-image.jpg', '2021-04-11 10:45:00', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(886, 'the-hindu', 'The Hindu', 'Enforcing claims: On U.S. challenging India’s maritime rights', 'India will have to deal with the open challenge the U.S. has posed to its maritime claims', 'https://www.thehindu.com/opinion/editorial/enforcing-claims-the-hindu-editorial-on-us-challenging-indias-maritime-rights/article34296826.ece', 'https://www.thehindu.com/static/theme/default/base/img/og-image.jpg', '2021-04-11 10:45:00', '2021-04-12 06:27:46', '2021-04-12 06:27:46'),
(887, 'financial-times', NULL, 'Alibaba shares soar after record antitrust fine', 'Chinese ecommerce group says penalty marks end of probes targeting its online practices', 'https://www.ft.com/content/c10ab6bc-6a1e-4cca-afb9-3798ab928c4c', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F04b9ffca-c9c7-4c06-875b-0fbc62fde9fb.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:50', '2021-04-12 08:29:30'),
(888, 'financial-times', NULL, 'Catch them if you can: the $14bn rise of rapid delivery services', 'Despite Deliveroo’s disappointing IPO, investors are pouring money into ultrafast ‘dark store’ disrupters that have reshaped online grocery delivery during the pandemic', 'https://www.ft.com/content/87cd997e-534a-4b9c-94ce-8ee419efe184', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fb415ed4f-6451-4c40-8f16-6891c95edf0c.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:50', '2021-04-12 08:29:30'),
(889, 'financial-times', NULL, 'Coronavirus latest: US diplomat Blinken says China should have done more to stop pandemic', '', 'https://www.ft.com/content/eaec6871-8306-4c9b-b1c7-dcf9326f8164', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fb28922d7-6144-4a90-82a2-e37d14f63ad7.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:50', '2021-04-12 08:29:30'),
(890, 'financial-times', NULL, 'UK government to announce independent probe into Cameron and Greensill', 'Inquiry will examine former UK prime minister’s contacts with ministers, officials and special advisers', 'https://www.ft.com/content/ade87a61-b1e1-433a-a79f-25fc6b9a0aaf', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F5c40e214-379d-421c-871a-db5fe72b94d0.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:50', '2021-04-12 08:29:30'),
(891, 'financial-times', NULL, 'Investors lament being frozen out of Biden infrastructure plan', 'Asset managers and pension funds hoped public-private partnerships would give opportunities', 'https://www.ft.com/content/69107cd2-0521-4400-a3c1-d32880e0253f', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F06c1a9f7-6a2b-49b4-94ad-8dd65fca902e.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:50', '2021-04-12 08:29:30'),
(892, 'financial-times', NULL, 'CDU leadership backs Armin Laschet’s bid to be German chancellor', 'Move follows Bavarian premier Markus Söder’s entry into race as party slumps in polls', 'https://www.ft.com/content/4367d8c4-2c3c-47d7-86f2-946260cc9b71', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F68c8207d-976a-40c4-8c19-3589df7afef8.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 06:32:50', '2021-04-12 06:32:50', '2021-04-12 06:32:50'),
(893, 'financial-times', NULL, 'Larry Summers: ‘I’m concerned that what is being done is substantially excessive’', 'Former treasury secretary criticises the scale of Biden’s fiscal policy and warns it could lead to overheating and wasted resources', 'https://www.ft.com/content/380ea811-e927-4fe1-aa5b-d213816e9073', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F247e3977-235a-4f68-898c-1906e6fece38.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:50', '2021-04-12 08:29:30'),
(894, 'financial-times', NULL, 'Technology will save emerging markets from sluggish growth', 'Digitisation will transform developing countries even as globalisation contracts', 'https://www.ft.com/content/2356928b-d909-4a1d-b108-7b60983e3d22', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F344ddf39-ff44-4912-b0e1-aed3293d7c0c.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 06:32:51', '2021-04-12 06:32:51', '2021-04-12 06:32:51'),
(895, 'financial-times', NULL, 'US put off derivatives rules for a decade before Archegos blew up', 'Regulation of swaps used by Bill Hwang was pushed back once again by Covid', 'https://www.ft.com/content/7819e714-bf9d-4f83-a6e4-497df534f77c', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F38936662-5593-4cc7-a3d2-713167d690e7.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:51', '2021-04-12 08:29:30'),
(896, 'financial-times', NULL, 'Far-left activist leads in Peru presidential election upset', 'Nationalisation advocate Pedro Castillo likely to face conservative rival in June run-off', 'https://www.ft.com/content/d3306d77-05e3-40e0-8695-426bdb81ee11', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2F9b2c0ccf-9e8f-47d2-b379-3c20e28586fc.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 06:32:51', '2021-04-12 08:29:30'),
(897, 'reddit-r-all', NULL, 'r/pics - Picture of Kosovo mother with baby in breast during exodus in 1999, the second pic is 22 years later', '18,811 votes and 264 comments so far on Reddit', 'https://www.reddit.com/r/pics/comments/mp0s95/picture_of_kosovo_mother_with_baby_in_breast/', 'https://preview.redd.it/x6a7gexucms61.jpg?auto=webp&s=b3e6913762f6d028cb933ef666a3486e3dcd76e8', '2021-04-12 07:13:23', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(898, 'reddit-r-all', NULL, 'r/aww - Rescued chimpanzee thanks Jane Goodall by giving her a hug', '12,825 votes and 181 comments so far on Reddit', 'https://www.reddit.com/r/aww/comments/mp1iaq/rescued_chimpanzee_thanks_jane_goodall_by_giving/', 'https://external-preview.redd.it/MMNHx0xWyp9-0j5paDYERuZ_PR3A7cCq-08bisuF00U.png?format=pjpg&auto=webp&s=bc64b16c1da4fb2dfac1f5fdbdbc800df6bd6812', '2021-04-12 07:13:23', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(899, 'reddit-r-all', NULL, 'The Ordinary Regimen Builder is (finally) here. 🎉 Our regimen builder is backed by no-nonsense science, and uses the information you provide us to recommend products (in the correct order of application) that will best suit your skincare needs, within minutes. No fluff - just clinical formulatio...', 'A little bit of this. A little bit of that. Build a regimen based on your needs.', 'https://alb.reddit.com/cr?z=gAAAAABgc7lg9baCus29IKS75dr7DyjGGxosSc6E5uPq86YKjgHXpG8qmrFxjlBAIH5ia901Eu5mTK2wjH9eZuD0CsD-pByGc2dBmKkl4B-THapLQ0u-k8Zz4Yv9h1xiMHa4nc_bzsiYLNitjae-MGZCPxmt4KO9oAQ9ISR7VfMntS62WRiGKtE1g3oTBAub_IDpFYxrO5lg8sLyl79LNd5ERfvC4KTGofrMAkspKfsRDa6f26JwdrM3nCSFR7Zxh2J2zkAlCpjxBWkVaps0DkAFOooBDbiaKM8DLozSy2PBbyuao5h4uRsaAb14he2kDV_97lqxf8kSJq1mFpnYlgsZ3_-RTQEH1i1mjUdn6C523h3GSl1vxWir19UX1TBmcMtisGSfGC10cYBHditt0UtXVoUJkEN3bmfgtIUQxzPPxHnSFqZNCYhvsZ9kEzDzhpzUn7JWNnv5g7amuUzeHO1qBHZGDo3gc5qLo3o7MAVadNXEwcibrX5y9jeowQjKd2N2JS_jUBEZaExM8W3WdkISkrtKN4WBXGrKm6RJDxX-ucG8zzhq8dpHXdnSmb_ypwZw6EPgXLzbplBON7FnVWKFBbznUrIt-l6eVByt293-Kygf3IFXgBQhDPrMxVJs6sKnQgfVKlp0ttBkEqtxUgPW5TDB1o5GOLBW5c4NC9OYGkplIle0L-m2jWcQO0gIJhXBRTFvpryB1VrTjf1NT_1Cn-pb3B_ZLeSdIt1O9FelJ5W00SRL_w_AYM7ewAsfu4xQVgJ2wK6VVjADmh24l3TgA_t-9VIjj8JueMe9P8UW8ZTdIMXt7RIfEHXkfZhGNp9bGaJ8WxmUUPx7FWsR8hBNZrD4giZYOF2INtYLzL0-nvASobLUt8o9iZs88YEpcinJlapzx8BVNd4_Cga1-bV8LtNY7fyy7O8rLYUApYkJjI_W3I_LqTcg1AkCACpsATUVsXIhAomHrL3GAYNXiNkDk4orALp_scxnj9KUfM24-y_zVcWxzpc=', NULL, '2021-04-12 07:13:23', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(900, 'reddit-r-all', NULL, 'r/funny - C\'mon Handcuffs !', '11,937 votes and 206 comments so far on Reddit', 'https://www.reddit.com/r/funny/comments/mp2bxy/cmon_handcuffs/', 'https://external-preview.redd.it/EGJjmaMQ9jfFq23y5_sVCkx8oMgXXsT8CMFId5HmLu8.png?format=pjpg&auto=webp&s=7bb038487679c867892108d30d57990741f405b7', '2021-04-12 07:13:23', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(901, 'reddit-r-all', 'Brandy Zadrozny, Ellison Barber, Kailani Koenig', '\'White Lives Matter\' rallies flop as hardly anyone shows up', 'Neo-Nazis and other far-right extremists planned rallies in dozens of cities Sunday but hardly anyone showed up.', 'https://www.nbcnews.com/tech/tech-news/white-lives-matter-rallies-flop-hardly-anyone-shows-rcna650', 'https://media1.s-nbcnews.com/j/rockcms/2021-04/932/210411-white-protest-jm-1525_77409d4f72bfc9c40c48f14d604d7256-e649a8_16d2bf423eb4d8c660ef035924fbcfc1879a8d19.nbcnews-fp-1200-630.jpg', '2021-04-11 15:27:36', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(902, 'reddit-r-all', NULL, 'r/nextfuckinglevel - A fan for life. Leonard Fournette is a class act.', '17,701 votes and 219 comments so far on Reddit', 'https://www.reddit.com/r/nextfuckinglevel/comments/mp16be/a_fan_for_life_leonard_fournette_is_a_class_act/', 'https://external-preview.redd.it/fa92iNSTfQfaWeAci50R_K55vaCsjmlJup2MRr5l4g4.png?format=pjpg&auto=webp&s=079d23cd2607f58ca09c43a2a7907ace0964a44d', '2021-04-12 07:13:23', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(903, 'reddit-r-all', NULL, 'r/Wellthatsucks - My car got struck by lightning today.', '19,846 votes and 788 comments so far on Reddit', 'https://www.reddit.com/r/Wellthatsucks/comments/mp0gpw/my_car_got_struck_by_lightning_today/', NULL, '2021-04-12 07:13:23', '2021-04-12 07:13:23', '2021-04-12 07:13:23'),
(904, 'reddit-r-all', NULL, 'r/interestingasfuck - Mount Everest is covered in waste, including 26,500 lbs of human excrement. The Nepalese government now requires climbers to pack 8kg of waste when descending the mountain.', '30,983 votes and 1,070 comments so far on Reddit', 'https://www.reddit.com/r/interestingasfuck/comments/mozwwy/mount_everest_is_covered_in_waste_including_26500/', 'https://preview.redd.it/8zwwfden4ms61.jpg?auto=webp&s=84b70be037af4be2136ae65320829ba445b8e276', '2021-04-12 07:13:24', '2021-04-12 07:13:24', '2021-04-12 07:13:24'),
(905, 'reddit-r-all', NULL, 'r/PoliticalHumor - Cause, You Know', '13,698 votes and 293 comments so far on Reddit', 'https://www.reddit.com/r/PoliticalHumor/comments/mp02eg/cause_you_know/', 'https://preview.redd.it/uaqq4q136ms61.jpg?auto=webp&s=32f907ea68773bab199ffd57de55d14f2562b2df', '2021-04-12 07:13:24', '2021-04-12 07:13:24', '2021-04-12 07:13:24'),
(906, 'reddit-r-all', NULL, 'r/harrypotter - So dang true', '16,457 votes and 174 comments so far on Reddit', 'https://www.reddit.com/r/harrypotter/comments/mp03yi/so_dang_true/', 'https://preview.redd.it/u8u7lmth6ms61.jpg?auto=webp&s=60f6fc4bf0a9fcd2ce15406ae03d6ecb503c0a1c', '2021-04-12 07:13:24', '2021-04-12 07:13:24', '2021-04-12 07:13:24'),
(907, 'handelsblatt', 'Hans-Peter Siebenhaar', 'Grüne Investments: EU-Politiker sehen Gas & Wasserstoff benachteiligt', 'EU-Kommissionspräsidentin von der Leyen hat ein Beschwerdebrief von Europaparlamentariern erreicht. Sie finden, dass der geplante Katalog für nachhaltige Investments zu einseitig ist.', 'https://www.handelsblatt.com/politik/deutschland/gruene-investments-europaabgeordnete-sehen-gas-und-wasserstoff-benachteiligt/27086966.html', 'https://www.handelsblatt.com/images/deutsches-gaskraftwerk/27087310/2-format2003.jpg', '2021-04-12 07:16:21', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(908, 'handelsblatt', 'Jürgen Röder', 'Dax-Umfrage: Unterschiede von US-Börsenrally & Dax-Entwicklung', 'In Deutschland hat eine Börsenwoche ausgereicht, um die Stimmung auf ein moderates Niveau zurückzuholen. Was Anleger nun beachten sollten.', 'https://www.handelsblatt.com/finanzen/anlagestrategie/trends/dax-umfrage-was-die-us-boersenrally-von-der-dax-entwicklung-unterscheidet/27084920.html', 'https://www.handelsblatt.com/images/bulle-und-baer-vor-der-frankfurter-boerse/25938954/23-format2003.jpg', '2021-04-12 06:44:09', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(909, 'handelsblatt', 'Handelsblatt', 'Euro/Dollar: Euro-Kurs steigt leicht an', 'Die überraschend starken Daten aus dem Einzelhandel den Euro. Experten sehen aber beim Dollar mehr Argumente für eine Aufwertung.', 'https://www.handelsblatt.com/finanzen/maerkte/devisen-rohstoffe/euro-dollar-euro-kurs-steigt-leicht-an/27086010.html', 'https://www.handelsblatt.com/images/euro-und-dollar-scheine/26198444/23-format2003.jpg', '2021-04-12 07:08:33', '2021-04-12 07:26:47', '2021-04-12 07:26:47');
INSERT INTO `articles` (`id`, `source_id`, `author`, `title`, `description`, `url`, `urlToImage`, `publishedAt`, `created_at`, `updated_at`) VALUES
(910, 'handelsblatt', 'Dana Heide, Andreas Neuhaus', 'China erhöht Druck auf Alibaba – Ant Group wird zur Finanzholding', 'Chinas Aufsichtsbehörden ordnen eine umfassende Umstrukturierung der Ant Group an. Für den Zahlungsdienstleister bedeutet das eine strengere Regulierung.', 'https://www.handelsblatt.com/technik/it-internet/alibaba-peking-erhoeht-den-druck-auf-jack-ma-ant-group-wird-zur-finanzholding/27087294.html', 'https://www.handelsblatt.com/images/jack-ma/27087800/3-format2003.jpg', '2021-04-12 07:02:37', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(911, 'handelsblatt', 'Handelsblatt', 'Cruise: GM-Firma will Robotaxis ab 2023 nach Dubai bringen', 'Ein Auto ohne Lenkrad und Pedale: Die Tochter des US-Autobauers GM will ab 2023 ihren Robotaxi-Dienst in der Golf-Metropole starten.', 'https://www.handelsblatt.com/technik/it-internet/autonomes-fahren-gm-firma-cruise-will-robotaxis-ab-2023-nach-dubai-bringen/27088100.html', 'https://www.handelsblatt.com/images/testauto-von-cruise/27088116/5-format2003.jpg', '2021-04-12 06:55:27', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(912, 'handelsblatt', 'Anna Kipnis', 'Zwölf Prozent der Deutschen für Laschet - nur wenig Zustimmung für CDU-Entscheid', 'Die Bundesbürger haben eine klare Präferenz, wen die Union als Kanzlerkandidaten ins Rennen schicken sollte. Die Umfrage fällt für den CDU-Chef wenig schmeichelhaft aus.', 'https://www.handelsblatt.com/politik/deutschland/cdu-csu-nur-zwoelf-prozent-der-bundesbuerger-fuer-laschet-als-kanzlerkandidat-der-union/27087772.html', 'https://www.handelsblatt.com/images/armin-laschet/27087934/2-format2003.jpg', '2021-04-12 06:51:21', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(913, 'handelsblatt', 'Handelsblatt', 'HSBC gibt im Streit um Huawei-Finanzchefin Dokumente heraus', 'Huawei will die Auslieferung seiner in Kanada festsitzenden Managerin Meng Wanzhou in die USA verhindern. Die Dokumente sollen dabei helfen.', 'https://www.handelsblatt.com/finanzen/banken-versicherungen/banken/auslieferungsverfahren-hsbc-gibt-im-streit-um-huawei-finanzchefin-dokumente-heraus/27088134.html', 'https://www.handelsblatt.com/images/meng-wanzhou/27088188/2-format2003.jpg', '2021-04-12 06:44:00', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(914, 'handelsblatt', 'Carsten Volkery', 'Poppy Gustafsson: Darktrace-Chefin kündigt Börsengang an', 'Das britische KI-Einhorn will unter der Führung von Poppy Gustafsson an die Börse. Betrugsvorwürfe gegen den größten Investor belasten das Vorhaben.', 'https://www.handelsblatt.com/unternehmen/dienstleister/boersengang-milliarden-ipo-von-tech-firma-darktrace-soll-standort-london-staerken/27087406.html', 'https://www.handelsblatt.com/images/poppy-gustafsson/27087546/3-format2003.png', '2021-04-12 06:41:41', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(915, 'handelsblatt', 'Handelsblatt', 'Wirecard News: Strafrechtliche Ermittlungen zu Bafin-Rolle', 'Die Staatsanwaltschaft Frankfurt prüft die Rolle der Finanzaufsicht im Wirecard-Skandal. Bislang wird gegen unbekannte Personen ermittelt.', 'https://www.handelsblatt.com/finanzen/banken-versicherungen/banken/finanzaufsicht-staatsanwaltschaft-eroeffnet-im-fall-wirecard-ermittlungsverfahren-zur-bafin-rolle-/27088060.html', 'https://www.handelsblatt.com/images/bafin-in-frankfurt/27088110/2-format2003.jpg', '2021-04-12 06:33:00', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(916, 'handelsblatt', 'Maike Telgheder', 'Asthmaspray Corona: Asthmaspray gegen schwere Corona-Verläufe', 'Eine Studie der Universität Oxford zeigt, dass ein handelsübliches Asthmaspray vor schweren Covid-19-Verläufen schützt. SPD-Gesundheitsexperte Lauterbach nennt es einen „Gamechanger“.', 'https://www.handelsblatt.com/technik/medizin/corona-medikamente-gamechanger-asthma-spray-schuetzt-vor-schweren-covid-19-verlaeufen/27087570.html', 'https://www.handelsblatt.com/images/asthma-medikament/27087876/2-format2003.jpg', '2021-04-12 06:32:54', '2021-04-12 07:26:47', '2021-04-12 07:26:47'),
(917, 'fortune', 'Lucinda Shen', 'Honest Company plots a comeback in its IPO', 'Jessica Alba’s consumer product startup tests the public markets', 'https://fortune.com/2021/04/12/honest-company-plots-a-comeback-in-its-ipo/', 'https://content.fortune.com/wp-content/uploads/2016/09/530546918.jpg?resize=1200,600', '2021-04-12 07:00:10', '2021-04-12 07:30:01', '2021-04-12 07:30:01'),
(918, 'fortune', 'Aaron Pressman', 'Why these Amazon workers voted no to joining a union', 'A majority of Amazon workers at a Bessemer, Alabama, warehouse voted against joining the Retail, Wholesale, and Department Store Union.', 'https://fortune.com/2021/04/12/why-these-amazon-workers-voted-no-to-joining-a-union/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1232002700-e1618233140165.jpg?resize=1200,600', '2021-04-12 06:10:16', '2021-04-12 07:30:01', '2021-04-12 07:30:01'),
(919, 'fortune', 'Emma Hinchliffe', 'Companies earned the ‘great place to work’ honor this year by supporting women and caregivers', 'The Broadsheet, Fortune Most Powerful Women by Kristen Bellstrom, Claire Zillman, and Emma Hinchliffe', 'https://fortune.com/2021/04/12/best-companies-to-work-for-supporting-women-caregivers/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1208017151.jpg?resize=1200,600', '2021-04-12 04:31:39', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(920, 'fortune', 'Alan Murray, David Meyer', 'What’s the best company to work for?', 'Fortune\'s annual ranking is out today.', 'https://fortune.com/2021/04/12/whats-the-best-company-to-work-for-2021-ceo-daily/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1231050985.jpg?resize=1200,600', '2021-04-12 01:42:53', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(921, 'fortune', 'Bernhard Warner', 'Goldman Sachs to investors: look out for these two warning signs as earnings season arrives', 'It\'s shaping up to be a risk-off Monday.', 'https://fortune.com/2021/04/12/goldman-sachs-to-investors-look-out-for-these-two-warning-signs-as-earnings-season-arrives/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1306394029.jpg?resize=1200,600', '2021-04-12 01:14:06', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(922, 'fortune', 'Sheryl Estrada', 'DoorDash’s CFO measures success with this metric', 'The pandemic “accelerated the adoption curve for on demand delivery,” Prabir Adarkar said.', 'https://fortune.com/2021/04/12/doordashs-cfo-measures-success-with-this-metric/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1225395831.jpg?resize=1200,600', '2021-04-12 01:00:00', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(923, 'fortune', 'Azella Perryman', 'Tech’s work-from-home boom is leaving frontline workers behind. How leaders can close the gap', 'In the COVID and post–George Floyd era, what works for headquarters staff doesn’t always meet the needs of essential workers.', 'https://fortune.com/2021/04/12/tech-industry-wfh-work-from-home-frontline-workers-lyft-ecommerce-operations/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1247754273-e1617969681939.jpg?resize=1200,600', '2021-04-12 03:00:00', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(924, 'fortune', 'Paul Polman', 'Corporate greenwashing is all the rage. How can we stop it?', 'Commentary: Corporations seeking a strong ESG reputation are greenwashing their activities as they relate to climate change.', 'https://fortune.com/2021/04/11/greenwashing-esg-businesses-corporations-climate-change/', 'https://content.fortune.com/wp-content/uploads/2021/04/web_GettyImages-1211399445.jpg?resize=1200,600', '2021-04-11 05:00:00', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(925, 'fortune', 'Tom C.W. Lin', 'Politicians empowered the very corporate activism they now face in Georgia', 'Commentary: Politicians have for decades worked to give businesses like Delta and Coca-Cola a greater role in government.', 'https://fortune.com/2021/04/10/delta-coca-cola-companies-georgia-voting-law/', 'https://content.fortune.com/wp-content/uploads/2021/04/web_GettyImages-1263005089.jpg?resize=1200,600', '2021-04-10 03:00:00', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(926, 'fortune', 'Kimberly Jones', 'The secret sauce for keeping women in the workforce', 'No one should have to choose between working and having a family. With the right support, it’s more than possible to have both.', 'https://fortune.com/2021/04/09/women-in-the-workforce-working-parents-flexibility/', 'https://content.fortune.com/wp-content/uploads/2021/04/GettyImages-1149030074-e1617967252844.jpg?resize=1200,600', '2021-04-09 08:30:55', '2021-04-12 07:30:02', '2021-04-12 07:30:02'),
(927, 'bild', NULL, 'Frankfurt: Fahndung nach Raub: Trio überfällt Logistik-Firma mit Knarre | Regional', 'Dunkle Klamotten, düstere Typen: Die Polizei in Hessen fahndet nach drei Räubern!', 'http://www.bild.de/regional/frankfurt/frankfurt-aktuell/frankfurt-fahndung-nach-raub-trio-ueberfaellt-logistik-firma-mit-knarre-76039398.bild.html', 'https://www.bild.de/assets/img/social-fallback.jpg', '2021-04-12 06:52:47', '2021-04-12 07:30:48', '2021-04-12 07:30:48'),
(928, 'bild', 'J.F. Langhausen', 'Bürokratie: Wir müssen unser Haus in Heiligenhaus (NRW) abreißen!', 'Seit über 40 Jahren wohnt Familie hier. Schon als kleines Kind spielte Kilian Birkhofer (30) in dem alten Fachwerkhaus am Stadtrand von Heiligenhaus (NRW).Vor zwei Jahren übergab ihm sein Vater feierlich die Schlüssel. Der Plan: Kilian sollte hier mit seiner Frau Julia (27) eine neue Familie gründen. Jetzt sagt die Behörde: Das Gebäude dürfte es gar nicht geben!Lesen Sie mit BILD-Plus, wie es jetzt für das junge Paar weitergeht weitergeht! *** BILDplus Inhalt ***', 'http://www.bild.de/bild-plus/news/2021/news/verrueckte-buerokratiegeschichte-wir-muessen-unser-haus-abreissen-76018778.bild.html', 'https://bilder.bild.de/fotos/buerokratie-wir-muessen-unser-haus-in-heiligenhaus-nrw-abreissen--a28933dcf885477ebf4d2b7e89d444e0-76020172/Bild/5,club=bildplus.bild.jpg', '2021-04-12 06:50:10', '2021-04-12 07:30:48', '2021-04-12 07:30:48'),
(929, 'bild', NULL, 'Rechtsmedizin sicher: Es handelt sich um einen menschlichen Knochen | Regional', 'Nach dem Knochenfund am Elbstrand bei Drage, steht fest, dass es sich um einen menschlichen Kieferknochen handelt.', 'http://www.bild.de/regional/hamburg/hamburg-aktuell/rechtsmedizin-sicher-es-handelt-sich-um-einen-menschlichen-knochen-76037870.bild.html', 'https://images.bild.de/60742906d7c3ae0001959334/548bb7160b55a61c49d285f2ee1b86e9/1/3?w=1280', '2021-04-12 06:47:01', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(930, 'bild', NULL, 'Rätsel um den Toten von Blomberg gelöst? Neffe in U-Haft | Regional', 'Das Rätsel um den Waldtoten von Blomberg scheint gelöst. Vier Monate nach dem Auffinden der Leiche sitzt ein Mann (41) in U-Haft.', 'http://www.bild.de/regional/ruhrgebiet/ruhrgebiet-aktuell/raetsel-um-den-toten-von-blomberg-geloest-neffe-in-u-haft-76038082.bild.html', 'https://images.bild.de/607426c5d7c3ae0001959333/fc90857fc8e1e118361f65062e47096e/1/2?w=1280', '2021-04-12 06:46:58', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(931, 'bild', 'Franziska Ringleben und Sybill Schneider (Fotos)', 'In Schleswig-Holstein darf die Außengastronomie öffnen - „Wir haben uns unfassbar auf diesen Tag gefreut!“', 'Ab heute dürfen in Schleswig-Holstein die Gastronomen ihre Terrassen wieder öffnen. Voraussetzung: Die Sieben-Tage-Inzidenz liegt stabil unter 100.Lesen Sie mit BILD-Plus, was Wirte und Gäste an der schönen Ostsee-Küste sagen. *** BILDplus Inhalt ***', 'http://www.bild.de/bild-plus/news/2021/news/in-schleswig-holstein-darf-die-aussengastronomie-oeffnen-wir-haben-uns-unfassbar-76036448.bild.html', 'https://bilder.bild.de/fotos/in-schleswig-holstein-darf-die-aussengastronomie-oeffnen-wir-haben-uns-unfassbar-auf-diesen-tag-gefr-62d11c4516c8408c804e254335086395-76038644/Bild/4,club=bildplus.bild.jpg', '2021-04-12 06:39:31', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(932, 'bild', NULL, 'Obwohl er kein Gewerbe hatte: Ex-Wirt beantragte Corona-Hilfe | Regional', 'Übers Internet stellte der Gastwirt (47) Antrag auf Corona-Hilfe, bekam wenige Tage später 9000 Euro ausgezahlt. Keine gute Idee.', 'http://www.bild.de/regional/duesseldorf/duesseldorf-aktuell/obwohl-er-kein-gewerbe-hatte-ex-wirt-beantragte-corona-hilfe-76041134.bild.html', 'https://images.bild.de/607452b40e92240001cf78a3/bd19ddaf51f425eff495cf93e113426f/1/2?w=1280', '2021-04-12 06:38:13', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(933, 'bild', NULL, 'Häftling war 413 Tage auf der Flucht: Auf Kindergeburtstag geschnappt | Regional', '413 Tage war Santa Fu-Häftling Ganija F. auf der Flucht. Doch jetzt schlugen Fahnder der Hamburger Polizei zu und nahmen den Krininellen wieder in Haft.', 'http://www.bild.de/regional/hamburg/hamburg-aktuell/haeftling-war-413-tage-auf-der-flucht-auf-kindergeburtstag-geschnappt-76040094.bild.html', 'https://images.bild.de/60744ba8d7c3ae0001959388/5c41c3a67cb824d945305d5b33e2c22c/1/4?w=1280', '2021-04-12 06:33:02', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(934, 'bild', 'MARKUS BALCZUWEIT', 'Werder Bremen: Wird Wechsel von Ex-Assistent Ilia Gruev zum Eigentor?', 'Am 22. März gaben Werder und Arminia überraschend den Abgang von Ilia Gruev nach Bielefeld bekannt. Rächt sich der Wechsel nun?', 'http://www.bild.de/sport/fussball/fussball/werder-bremen-wird-wechsel-von-ex-assistent-ilia-gruev-zum-eigentor-76038860.bild.html', 'https://bilder.bild.de/fotos/werder-bremen-wird-wechsel-von-ex-assistent-ilia-gruev-zum-eigentor--5696f9b4d3d6405a9960c8ca14027b49-76039792/Bild/2.bild.jpg', '2021-04-12 06:30:20', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(935, 'bild', NULL, 'LIVE-Ticker: Laschet macht Druck auf Söder', 'In einer CSU-Präsidiumsschalte hat sich die Parteispitze am Montagnachmittag nach Teilnehmerangaben einmütig für Parteichef Markus Söder als Kanzlerkandidaten der Union ausgesprochen. Sämtliche Redne', 'http://www.bild.de/politik/inland/politik-inland/laschet-soeder-krimi-um-die-k-frage-von-cdu-und-csu-im-live-ticker-76034792.bild.html', 'https://bilder.bild.de/fotos/live-ticker-laschet-macht-druck-auf-soeder-244959ed7b364d6eae64129a9a5bf988-76040524/Bild/10.bild.jpg', '2021-04-12 06:29:10', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(936, 'bild', NULL, 'Kerpen: Senioren-Paar brutal im eigenen Haus ausgeraubt | Regional', 'Die Täter nahmen u.a. Schmuck mit, flohen. Wenig später fand die Polizei das mutmaßliche Fluchtfahrzeug – die Ermittlungen laufen.', 'http://www.bild.de/regional/koeln/koeln-aktuell/kerpen-senioren-paar-brutal-im-eigenen-haus-ausgeraubt-76040490.bild.html', 'https://images.bild.de/607450d353d1510001b6887c/f47df07513204a309d34369049073e23/1/3?w=1280', '2021-04-12 06:20:45', '2021-04-12 07:30:49', '2021-04-12 07:30:49'),
(937, 'business-insider-uk', 'Andrew Dunn', 'GSK vaccine research: failures, departures, uncertain future', 'The world\'s largest vaccine business is facing muscular threats from the biotech industry, with researchers leaving in the past year.', 'http://uk.businessinsider.com/gsk-vaccine-research-covid-departures-uncertain-future-2021-4', 'https://i.insider.com/607055e230004b0019b26d64?width=1200&format=jpeg', '2021-04-12 07:13:07', '2021-04-12 07:31:06', '2021-04-12 07:31:06'),
(938, 'business-insider-uk', 'Cheryl Teh, Tom Porter', 'Protests flare and National Guard deployed after 20-year-old Black man shot in traffic stop near Minneapolis', 'The family of Daunte Wright, 20, said he was pulled over for displaying an air freshener.', 'https://www.insider.com/protests-flare-in-minneapolis-after-young-black-man-shot-2021-4', 'https://i.insider.com/6073b5374943790018bb1d72?width=1200&format=jpeg', '2021-04-12 04:15:04', '2021-04-12 07:31:06', '2021-04-12 07:31:06'),
(939, 'business-insider-uk', 'Ben Winck', 'Biden likely to cut about $700 billion from his infrastructure plan in compromise, Goldman says', 'Goldman also predicted the infrastructure package will be a solitary reconciliation bill with a 25% corporate tax rate, not Biden\'s desired 28%.', 'http://uk.businessinsider.com/biden-infrastructure-spending-plan-tax-hikes-compromise-democrats-goldman-sachs-2021-4', 'https://i.insider.com/607451553e3fe7001882a146?width=1200&format=jpeg', '2021-04-12 07:06:09', '2021-04-12 07:31:06', '2021-04-12 07:31:06'),
(940, 'business-insider-uk', 'Grace Dean', 'Larry Page, Sergey Brin net worths reach $100B: Bloomberg', 'Larry Page and Sergey Brin are two of eight centibillionaires in the world thanks to surging tech stocks. They join Jeff Bezos, Elon Musk, and others.', 'http://uk.businessinsider.com/google-larry-page-sergey-brin-net-worth-billionaire-wealth-bloomberg-2021-4', 'https://i.insider.com/60148f6c6dfbe10018e00e66?width=1200&format=jpeg', '2021-04-12 02:13:10', '2021-04-12 07:31:06', '2021-04-12 07:31:06'),
(941, 'business-insider-uk', 'Caroline Hroncich, May Teng', 'Lululemon retail employees describe a toxic culture', 'Insider spoke with more than a dozen current and former retail employees who said they believe the company is only a welcoming place for some workers.', 'http://uk.businessinsider.com/lululemon-retail-employees-describe-toxic-culture-2021-3', 'https://i.insider.com/6040ea57b46d720018b04ce7?width=1200&format=jpeg', '2021-04-12 04:00:00', '2021-04-12 07:31:06', '2021-04-12 07:31:06'),
(942, 'business-insider-uk', 'Eric Bahn and Beatrice Kim', 'How 2 parents in San Francisco find work-life balance: Eric Bahn and Beatrice Kim', 'Eric Bahn is a cofounder and general partner at Hustle Fund, an early-stage venture capital firm. His wife, Beatrice Kim, runs a life-coaching practice.', 'http://uk.businessinsider.com/eric-bahn-beatrice-kim-bay-area-working-parents-work-life-balance-2021-4', 'https://i.insider.com/60744c3d3e3fe7001882a13b?width=1200&format=jpeg', '2021-04-11 08:02:00', '2021-04-12 07:31:06', '2021-04-12 07:31:06'),
(943, 'business-insider-uk', 'Grace Dean', 'MyPillow CEO Mike Lindell\'s social-media site Frank is now set to launch on April 20', 'MyPillow CEO Mike Lindell is launching a social-media site focused on free speech that he says will be a cross between Twitter and YouTube.', 'http://uk.businessinsider.com/mike-lindell-mypillow-frank-social-media-site-launch-date-2021-4', 'https://i.insider.com/605096363c6489001943b4d3?width=1200&format=jpeg', '2021-04-12 04:54:28', '2021-04-12 07:31:07', '2021-04-12 07:31:07'),
(944, 'business-insider-uk', 'Avery Hartmans', 'Elon Musk vs. Bill Gates: Why they\'re feuding over the coronavirus', 'While the Microsoft billionaire and the Tesla titan have never had a particularly cozy relationship, things have heated up over the past year.', 'http://uk.businessinsider.com/elon-musk-bill-gates-feud-coronavirus-electric-cars-2020-9', 'https://i.insider.com/5f73621874fe5b0018a8dfd0?width=1200&format=jpeg', '2021-04-12 06:03:39', '2021-04-12 07:31:07', '2021-04-12 07:31:07'),
(945, 'business-insider-uk', 'Chris Stokel-Walker', 'Teaching people how to make better Google Sheets earned me $34,000 in a year', 'Andrew Kamphey set up Better Sheets last April after he challenged himself to launch a new venture within 24 hours.', 'http://uk.businessinsider.com/teaching-people-how-to-make-better-google-sheets-earned-me-34000-in-a-year-2021-4', 'https://i.insider.com/6074108c3e3fe7001882a0df?width=1200&format=jpeg', '2021-04-12 03:30:00', '2021-04-12 07:31:07', '2021-04-12 07:31:07'),
(946, 'business-insider-uk', 'Grace Panetta', 'Joel Greenberg accused of wide-ranging misconduct in office: NYT', 'Greenberg, who faces 33 federal charges, is an associate of Rep. Matt Gaetz and a key player in the federal investigation into the congressman.', 'http://uk.businessinsider.com/joel-greenberg-accused-of-wide-ranging-misconduct-in-office-nyt-2021-4', 'https://i.insider.com/5af9c3fa42e1cc1b98150b23?width=1200&format=jpeg', '2021-04-12 06:25:13', '2021-04-12 07:31:07', '2021-04-12 07:31:07'),
(947, 'independent', 'Sean O\'Grady', 'The pubs may have reopened – but forget about going for a casual drink', 'Taking things step by step, watching the infection numbers and above all maintaining social distance and hygiene regimes, will make sure we don’t have to throw everything into reverse. Can you imagine?', 'http://www.independent.co.uk/voices/pubs-lockdown-easing-covid-b1830071.html', 'https://static.independent.co.uk/2021/04/11/19/reopen1.jpg?width=1200&auto=webp&quality=75', '2021-04-12 03:16:30', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(948, 'independent', 'Myra Ali', 'Sound of Metal is shining a light on deafness – but Hollywood is still failing disabled women like me', 'I want a disabled actress to be a lead alongside a mainstream actor like Leonardo DiCaprio – but change the narrative, so that his character thinks he’s the lucky one to have her', 'http://www.independent.co.uk/voices/sound-of-metal-riz-ahmed-disability-b1830172.html', 'https://static.independent.co.uk/2021/03/15/15/Film_-_Awards_Season_87779.jpg?width=1200&auto=webp&quality=75', '2021-04-12 06:37:43', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(949, 'independent', 'Bel Trew', 'As rampant inflation takes hold, Lebanon is at risk of collapse', 'The political elite must put their differences aside right now and come together to bail out this sinking ship, writes Bel Trew', 'http://www.independent.co.uk/independentpremium/voices/lebanon-lira-beirut-hunger-covid-corruption-b1829781.html', 'https://static.independent.co.uk/2021/04/11/14/GettyImages-1232199501.jpg?width=1200&auto=webp&quality=75', '2021-04-11 05:56:45', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(950, 'independent', 'Zoe Tidman', 'Prince Philip news – live: Harry ‘arrives in UK for funeral’ as Scottish parliament recalled for tribute', 'Follow the latest updates', 'http://www.independent.co.uk/news/uk/home-news/prince-philip-news-live-harry-royals-b1829961.html', 'https://static.independent.co.uk/2021/04/12/08/newFile-15.jpg?width=1200&auto=webp&quality=75', '2021-04-11 23:52:12', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(951, 'independent', 'Chiara Giordano', 'Coronavirus news – live: Shops and pub gardens reopen as officer warns police cannot tackle all Covid breaches', 'Follow the latest updates as social distancing restrictions ease in England', 'http://www.independent.co.uk/news/health/coronavirus-news-live-lockdown-easing-covid-b1829930.html', 'https://static.independent.co.uk/2021/04/12/07/1312026367.jpg?width=1200&auto=webp&quality=75', '2021-04-11 23:15:26', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(952, 'independent', 'Samuel Lovett', 'Inhaled asthma drug shortens Covid recovery and could be ‘significant for world,’ study finds', 'Hope that GPs will be able to start treating Covid patients at home with cheap and readily available medicine', 'http://www.independent.co.uk/news/health/covid-treatment-drug-asthma-hospital-b1830127.html', 'https://static.independent.co.uk/2020/08/19/11/breaking-news.png?width=1200&auto=webp&quality=75', '2021-04-12 06:00:20', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(953, 'independent', 'Kate Devlin', 'Baroness Shirley Williams death: Former minister dies, aged 90', 'The former minister and Liberal Democrat peer, Baroness Williams of Crosby, has died at the age of 90.', 'http://www.independent.co.uk/news/uk/politics/baroness-shirley-williams-death-age-cause-b1830191.html', 'https://static.independent.co.uk/2020/08/19/11/breaking-news.png?width=1200&auto=webp&quality=75', '2021-04-12 06:50:07', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(954, 'independent', 'Tom Batchelor', 'Brexit news – live: Labour says Cameron has questions to answer over lobbying row as UK exports to EU plunge', 'Latest developments from Westminster', 'http://www.independent.co.uk/news/uk/politics/boris-johnson-news-live-brexit-b1829934.html', 'https://static.independent.co.uk/2021/04/12/07/PRI190224204.jpg?width=1200&auto=webp&quality=75', '2021-04-11 23:09:41', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(955, 'independent', 'Shaun Lintern', 'A&Es ‘swamped’ with patients over fears of AstraZeneca blood clots', 'Emergency doctors report ‘huge numbers’ of patients concerned about headaches after jab', 'http://www.independent.co.uk/news/health/astrazeneca-accident-and-emergency-headaches-b1830013.html', 'https://static.independent.co.uk/2021/04/12/10/GettyImages-900804958.jpg?width=1200&auto=webp&quality=75', '2021-04-12 02:32:38', '2021-04-12 07:34:57', '2021-04-12 07:34:57'),
(956, 'financial-times', NULL, 'Ant ordered to restructure by Chinese regulators', 'Lending services could be severely weakened by separating them from Alipay payment platform', 'https://www.ft.com/content/5c14c1d1-bd9e-4654-9a12-93c4ac46792d', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fdb355fb1-6024-4747-af00-07559491fa96.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 08:29:30', '2021-04-12 08:29:30'),
(957, 'financial-times', NULL, 'Millionaire businessman Guillermo Lasso elected Ecuador’s president', 'Government bonds surge as former banker pulls off remarkable win over leftist Andrés Arauz', 'https://www.ft.com/content/afbe5585-89fb-4fd0-ac97-6eb27af05a37', 'https://www.ft.com/__origami/service/image/v2/images/raw/https%3A%2F%2Fd1e00ek4ebabms.cloudfront.net%2Fproduction%2Fd7341470-8e0a-42fd-9ae6-3a9757370764.jpg?source=next-opengraph&fit=scale-down&width=900', '2021-04-12 08:29:30', '2021-04-12 08:29:30', '2021-04-12 08:29:30'),
(958, 'ars-technica', 'Eric Berger', 'The era of reusability in space has begun', '\"We’re on the cusp of some bigger initiatives.\"', 'https://arstechnica.com/science/2021/04/the-era-of-reusability-in-space-has-begun/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/MEV_CGI_Shot_4_Still_3840x2160_v02_CC_200615-760x380.jpg', '2021-04-13 04:36:25', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(959, 'ars-technica', 'Timothy B. Lee', 'This is Intel’s plan to dominate driverless car technology', 'Intel says its driverless tech will be ready in 2023—I\'m skeptical.', 'https://arstechnica.com/tech-policy/2021/04/this-is-intels-plan-to-dominate-driverless-car-technology/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/Udelv-Driven-by-Mobileye_night-760x380.png', '2021-04-13 02:45:31', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(960, 'ars-technica', 'John Timmer', 'New wooden satellite is part advertising, part student project', 'A CubeSat with plywood sides is planned for a Rocketlab launch.', 'https://arstechnica.com/science/2021/04/finland-may-beat-japan-in-the-wooden-satellite-space-race/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/wisawoodsat_rendering_upsidedown-760x380.jpg', '2021-04-12 14:49:53', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(961, 'ars-technica', 'Samuel Axon', 'Report: Apple plans Apple TV/HomePod and iPad/HomePod hybrid products', 'Also: Mini LED display supply might make the new iPad Pro hard to find.', 'https://arstechnica.com/gadgets/2021/04/report-apple-plans-apple-tv-homepod-and-ipad-homepod-hybrid-products/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/HomePod9-1-1440x960-760x380.jpg', '2021-04-12 14:22:43', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(962, 'ars-technica', 'Jim Salter', 'Free Software Foundation and RMS issue statements on Stallman’s return', 'Today, Stallman and the FSF board issued joint statements concerning his return.', 'https://arstechnica.com/gadgets/2021/04/free-software-foundation-and-rms-issue-statements-on-stallmans-return/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/Richard_Stallman_at_LibrePlanet_2019-760x380.jpg', '2021-04-12 13:59:17', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(963, 'ars-technica', 'Beth Mole', 'It’s too late for vaccines to save Michigan, CDC director explains', 'Vaccines take weeks to work; distancing and other health measures work immediately.', 'https://arstechnica.com/science/2021/04/its-too-late-for-vaccines-to-save-michigan-cdc-director-explains/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/03/GettyImages-1231790696-760x380.jpeg', '2021-04-12 12:01:29', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(964, 'ars-technica', 'Jim Salter', 'Microsoft acquires Nuance—makers of Dragon speech rec—for $16 billion', 'Nuance\'s deep-learning-based speech recognition serves 77% of US hospitals.', 'https://arstechnica.com/gadgets/2021/04/microsoft-acquires-nuance-makers-of-dragon-speech-rec-for-16-billion/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/GettyImages-128755111-dragon-medical-760x380.jpg', '2021-04-12 11:42:20', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(965, 'ars-technica', 'Jon Brodkin', 'Charter must pay $19 million for tricking customers into switching ISPs', 'Charter mailed false ads to convince users Windstream was going out of business.', 'https://arstechnica.com/tech-policy/2021/04/charter-must-pay-19-million-for-tricking-customers-into-switching-isps/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/getty-pinocchio-760x380.jpg', '2021-04-12 11:25:11', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(966, 'ars-technica', 'Jennifer Ouellette', 'Archaeologists find “lost golden city” buried under sand for 3,400 years', 'It\'s the \"second most important archaeological discovery since the tomb of Tutankhamun.”', 'https://arstechnica.com/science/2021/04/archaeologists-find-lost-golden-city-buried-under-sand-for-3400-years/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/luxorTOP-760x380.jpg', '2021-04-12 11:06:51', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(967, 'ars-technica', 'Kyle Orland', 'How long can Epic afford to throw money at the Epic Games Store?', 'Exclusives and free games drive massive losses, but it\'s just a drop in the Epic bucket.', 'https://arstechnica.com/gaming/2021/04/how-long-can-epic-afford-to-throw-money-at-the-epic-games-store/', 'https://cdn.arstechnica.net/wp-content/uploads/2021/04/egsfree-760x380.jpeg', '2021-04-12 10:33:53', '2021-04-13 05:12:45', '2021-04-13 05:12:45'),
(968, 'hacker-news', 'Luca Rossi', 'The True Meaning of Technical Debt 💸', '\"Know your enemy, know yourself, and in a hundred battles you will never be defeated\"', 'https://refactoring.fm/p/the-true-meaning-of-technical-debt', 'https://cdn.substack.com/image/fetch/w_1200,c_limit,f_jpg,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0a9b293-1f19-4d42-81ec-351c1af69f42_2068x1386.png', '2020-12-10 23:35:11', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(969, 'hacker-news', 'View all posts by bjornstahl →', 'The Dawn of a new Command Line Interface', 'disclaimer: this is a technical post aimed at developers being somewhat aware of the problem space. There will be a concluding ‘the day of…’ post aimed at end users where some of …', 'https://arcan-fe.com/2017/07/12/the-dawn-of-a-new-command-line-interface/', 'https://arcanfe.files.wordpress.com/2017/07/family1-e1499867076999.png', '2018-01-21 13:18:20', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(970, 'hacker-news', 'replit', 'Kaboom!!', 'a fun JavaScript game programming library & environment', 'https://replit.com/kaboom', 'https://replit.com/public/images/sm.png', '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(971, 'hacker-news', NULL, 'Vincent Chan: Inside PayPal', NULL, 'http://paulgraham.com/paypal.html', NULL, '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(972, 'hacker-news', NULL, 'natto.dev | interactive JavaScript space', NULL, 'https://natto.dev', 'https://natto.dev/twitter.png', '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(973, 'hacker-news', 'r4j0x00', 'Add chrome 0day · r4j0x00/exploits@7ba55e5', '', 'https://github.com/r4j0x00/exploits/commit/7ba55e5ab034d05877498e83f144e187d3ddb160', 'https://avatars.githubusercontent.com/u/31346934?s=400&v=4', '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(974, 'hacker-news', NULL, 'How many Devices can you Connect to the I2C Bus?', 'If you ever posted that question on any discussion forum for Arduino users, electronic enthusiasts and fellow engineers, you will get answers like this: · \"You have a 7-bit address. That means you can address up to 127 slaves.\" · \"The number of devices connected to the bus is only limited by the total allowed bus capacitance of 400 pF.\" · \"Short answer: it depends!\" Well, thank you Internet! I\'m feeling smarter already! But seriously, how many sensors can I connect to my Arduino using the I2C bus? The last answer was, despite being the most irritating, arguably the most correct one, but only because the question was so vague! So, let\'s try to rephrase that question. When you say \"sensor\", do you mean a sensor mounted on a breakout board? Yes? Now that makes a huge difference! So, the question now becomes: how many breakout boards can you connect on the I2C bus? This is problem is much easier to solve, and I\'m sorry to say, the answer is way lower than 127.', 'https://www.bluedot.space/tutorials/how-many-devices-can-you-connect-on-i2c-bus/', 'https://image.jimcdn.com/app/cms/image/transf/none/path/s9044904ce8b43c5c/image/i39e552938bd0ec33/version/1505721195/image.jpg', '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(975, 'hacker-news', NULL, 'Senior Product Engineer | Streak', 'Simple Collaboration. Collaborate with a single click. Share contacts, email, files, and anything else needed to get the job done. Multipurpose. Manage your deals, support queue (and more) inside Gmail. Replace multiple external systems with Streak. Works with Google Apps. Streak connects securely to Google Apps.', 'https://www.streak.com/careers/product-engineer', NULL, '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(976, 'hacker-news', 'Stephen Nellis', 'Intel in talks to produce chips for automakers within six to nine months -CEO', 'The chief executive of Intel Corp told Reuters on Monday the company is in talks to start producing chips for car makers to alleviate a shortage that has idled automotive factories.', 'https://www.reuters.com/article/us-usa-semiconductors-idUSKBN2BZ2C4', 'https://static.reuters.com/resources/r/?m=02&d=20210412&t=2&i=1558176389&r=LYNXMPEH3B17N&w=800', '2021-04-12 10:18:24', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(977, 'hacker-news', NULL, 'Gitlet.js – Git implemented in 1k lines of JavaScript', NULL, 'http://gitlet.maryrosecook.com/docs/gitlet.html', NULL, '2021-04-13 05:12:50', '2021-04-13 05:12:50', '2021-04-13 05:12:50'),
(978, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Kat Angus\",\"url\":\"https://www.buzzfeed.com/katangus\",\"jobTitle\":\"BuzzFeed Staff\"}]', '8 Sofas From Article That\'ll Make Your Home Look Like A Grown-Up Actually Lives There', 'There\'s one for every budget.', 'https://www.buzzfeed.com/katangus/article-sofas-canada?origin=hpp', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/12/19/campaign_images/83bbfa37cde3/8-sofas-from-article-thatll-make-your-home-look-l-2-9131-1618255736-1_dblbig.jpg', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(979, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Stephen LaConte\",\"url\":\"https://www.buzzfeed.com/stephenlaconte\",\"jobTitle\":\"BuzzFeed Staff\"}]', '15 Musicians Who Have Admitted They Regret Their Past Problematic Songs', 'Katy Perry explained why \"I Kissed A Girl\" doesn\'t age well.', 'https://www.buzzfeed.com/stephenlaconte/musicians-who-regret-problematic-songs', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/9/20/enhanced/4b34c94ad75b/original-4914-1617999279-2.jpg?crop=1243:650;0,60%26downsize=1250:*', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(980, 'buzzfeed', 'Dan Vergano', 'Johnson & Johnson Vaccine Paused To Investigate Blood Clots', 'Of the more than 6.8 million doses of the Johnson & Johnson vaccine administered so far in the US, federal authorities are investigating 6 cases of rare and severe blood clotting.', 'https://www.buzzfeednews.com/article/danvergano/us-pause-johnson-johnson-covid-vaccine', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/13/13/campaign_images/9e8eabe5ba54/us-recommends-pausing-the-johnson-johnson-vaccine-2-9663-1618319586-8_dblbig.jpg?resize=1200:*', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(981, 'buzzfeed', 'Ben Henry', 'Pete Davidson Seemingly Confirms Phoebe Dynevor Romance', 'Pete and Phoebe are apparently \"officially dating\" and \"going strong\" after weeks of rumors.', 'https://www.buzzfeednews.com/article/benhenry/pete-davidson-phoebe-dynevor-bridgerton-dating', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/13/11/enhanced/f2496d04ddc5/original-9557-1618314230-2.jpg?crop=1581:830;0,0', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(982, 'buzzfeed', 'Ellie Bate', 'The CW Releases First Official Live-Action \"Powerpuff Girls\" Photo', 'The cartoon-accurate dresses are nowhere in sight.', 'https://www.buzzfeednews.com/article/eleanorbate/cw-powerpuff-girls-live-action-photo-costume-controversy', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/13/10/asset/385d06f95512/sub-buzz-10221-1618309317-10.jpg?crop=1144:599;0,88', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(983, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Jonathan Mazzei\",\"url\":\"https://www.buzzfeed.com/jonathanmazzei\",\"jobTitle\":\"BuzzFeed Staff\"},{\"@type\":\"Person\",\"name\":\"Yi Yang\",\"url\":\"https://www.buzzfeed.com/yiyang\",\"jobTitle\":\"BuzzFeed Staff\"}]', '36 Futuristic Products That’ll Probably Make You Feel Like You’re Living In 3021', 'Welcome to the future.', 'https://www.buzzfeed.com/jonathanmazzei/futuristic-products-3021', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/8/21/campaign_images/0756e66fe1e2/36-futuristic-products-thatll-probably-make-you-f-2-3147-1617918445-0_dblbig.jpg', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(984, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Jen Abidor\",\"url\":\"https://www.buzzfeed.com/jenniferabidor\",\"jobTitle\":\"BuzzFeed Staff\"}]', '17 \"Legally Blonde\" Tweets That Prove The Movie Holds Up Like A Perm With Ammonium Thioglycolate', '\"What, like it\'s hard?\"', 'https://www.buzzfeed.com/jenniferabidor/legally-blonde-tweets', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/12/21/enhanced/385d06f95512/original-9257-1618261335-23.jpg?crop=1581:830;0,0%26downsize=1250:*', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(985, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Jonathan Mazzei\",\"url\":\"https://www.buzzfeed.com/jonathanmazzei\",\"jobTitle\":\"BuzzFeed Staff\"}]', '40 Things To Help You Be Less Of A Mess This Spring', 'Just some things to help you spring clean all the different areas of your life', 'https://www.buzzfeed.com/jonathanmazzei/things-to-help-you-be-less-messy', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/8/16/campaign_images/0756e66fe1e2/40-things-to-help-you-be-less-of-a-mess-this-spri-2-2524-1617897852-32_dblbig.jpg', '2021-04-13 06:22:38', '2021-04-13 06:22:38', '2021-04-13 06:22:38'),
(986, 'buzzfeed', '[{\"@type\":\"Person\",\"name\":\"Genevieve Scarano\",\"url\":\"https://www.buzzfeed.com/genevievescarano\",\"jobTitle\":\"BuzzFeed Staff\"}]', '26 Things To Upgrade Your Balcony, Deck, Or Porch This Spring', 'Comfy seating, railing flower pots, and more things that\'ll give your outdoor space a spring makeover.', 'https://www.buzzfeed.com/genevievescarano/things-upgrade-balcony-deck-porch-spring', 'https://img.buzzfeed.com/buzzfeed-static/static/2021-04/9/21/enhanced/dbf5998be0e6/original-4196-1618004335-25.jpg?crop=1581:830;0,0%26downsize=1250:*', '2021-04-13 06:22:39', '2021-04-13 06:22:39', '2021-04-13 06:22:39'),
(987, 'talksport', 'talkSPORT', 'Kudela banned for racially abusing Rangers star Kamara, Lingard ‘expected back at Man United’, Liverpool ‘c...', '', 'https://talksport.com/football/863792/kudela-rangers-kamara-lingard-man-united-liverpool-kane-haaland-football-news-live/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/TALKSPORT-Blog-14th-April.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 05:49:55', '2021-04-14 07:45:17', '2021-04-14 07:45:17'),
(988, 'talksport', 'Michael Benson', 'Frank Warren believes Anthony Joshua vs Tyson Fury will likely be pushed back to August or September,...', '', 'https://talksport.com/sport/boxing/865320/frank-warren-anthony-joshua-tyson-fury-august-september/', 'https://talksport.com/wp-content/uploads/sites/5/2020/03/WarrenFuryJoshuaHearn.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 04:20:50', '2021-04-14 07:45:17', '2021-04-14 07:45:17'),
(989, 'talksport', 'Oliver Dawnay', 'Slavia Prague’s Ondrej Kudela banned for ten games for racially abusing Glen Kamara as Rangers man r...', '', 'https://talksport.com/football/865392/ondrej-kudela-ban-racist-abuse-glen-kamara-rangers/', 'https://talksport.com/wp-content/uploads/sites/5/2021/03/NINTCHDBPICT000642331875-e1616516771449.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 05:59:52', '2021-04-14 07:45:17', '2021-04-14 07:45:17'),
(990, 'talksport', 'Oliver Dawnay', 'Rangers legend Ally McCoist condemns social media video of Neil Lennon and says ‘invasion of privacy’ of fo...', '', 'https://talksport.com/football/865096/ally-mccoist-neil-lennon-video-celtic-disgrace/', 'https://talksport.com/wp-content/uploads/sites/5/2021/02/TALKSPORT-McCoist-Lennon.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 01:55:43', '2021-04-14 07:45:17', '2021-04-14 07:45:17'),
(991, 'talksport', 'Joe Coleman', 'Dana White confirms Conor McGregor vs Dustin Poirier trilogy fight will take place on July 10 in front of...', '', 'https://talksport.com/sport/mma/865322/conor-mcgregor-dustin-poirier-3-date-venue-fans-dana-white/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/Ey7j6JPUYAcCpjc.jpg?strip=all&quality=100&w=900&h=506&crop=1', '2021-04-14 03:54:43', '2021-04-14 07:45:17', '2021-04-14 07:45:17'),
(992, 'talksport', 'Joe Coleman', 'Brighton ace Yves Bissouma ‘the player Thomas Partey wishes he was’ and is ‘exactly what Manchester United...', '', 'https://talksport.com/football/865001/yves-bissouma-thomas-partey-manchester-united-transfer-rumours/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/NINTCHDBPICT000645497738.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 00:19:23', '2021-04-14 07:45:17', '2021-04-14 07:45:17'),
(993, 'talksport', 'Joe Coleman', 'Chelsea warned they will get ‘cut apart’ by the likes of PSG or Real Madrid after surviving late scare fro...', '', 'https://talksport.com/football/864920/chelsea-psg-real-madrid-porto-champions-league-semi-final/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/TALKSPORT-Mount.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-13 13:07:45', '2021-04-14 07:45:18', '2021-04-14 07:45:18'),
(994, 'talksport', 'talkSPORT', 'Harry Kane future: Tottenham ace reportedly eyes Manchester United or Man City move despite potential...', '', 'https://talksport.com/football/865065/harry-kane-transfer-news-tottenham-man-united-man-city-psg/', 'https://talksport.com/wp-content/uploads/sites/5/2021/03/NINTCHDBPICT000641565284.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 02:44:28', '2021-04-14 07:45:18', '2021-04-14 07:45:18'),
(995, 'talksport', 'Sean O\'Brien', 'Rangers boss Steven Gerrard told to use Crystal Palace as stepping stone for Liverpool job to avoid...', '', 'https://talksport.com/football/864950/rangers-steven-gerrard-crystal-palace-liverpool-job-graeme-souness/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/TALKSPORT-GERRARD-SOUNESS.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 00:14:10', '2021-04-14 07:45:18', '2021-04-14 07:45:18'),
(996, 'talksport', 'Sean O\'Brien', 'Allan Saint-Maximin injects joy into uninspiring Newcastle like Paul Gascoigne and David Ginola, dazzling...', '', 'https://talksport.com/football/864775/allan-saint-maximin-newcastle-hatem-ben-arfa-twitter-skill/', 'https://talksport.com/wp-content/uploads/sites/5/2021/04/TALKSPORT-ALLAN-SAINT-MAXIMIN-1.jpg?strip=all&quality=100&w=1200&h=800&crop=1', '2021-04-14 02:58:47', '2021-04-14 07:45:18', '2021-04-14 07:45:18'),
(997, 'bild', NULL, 'Vorerst keine Lockerungen: Mehrere Städte verschieben Modellprojekt-Start | Regional', 'Eigentlich sollte es ab kommendem Montag mit neuen Freiheiten für ihre Bürger losgehen. Doch mehrere Kommunen verschieben den Start als Modellregion.', 'http://www.bild.de/regional/ruhrgebiet/ruhrgebiet-aktuell/stadt-verschiebt-start-des-modellregionen-projekts-vorerst-keine-lockerungen-in-76064474.bild.html', 'https://images.bild.de/6076e649fd3b4a000195033a/ee857013af752991ff6acdc624ef7f7d/1/2?w=1280', '2021-04-14 07:09:33', '2021-04-14 07:45:59', '2021-04-14 07:45:59'),
(998, 'bild', NULL, 'Unfall in Mönchengladbach: Fußgänger stand plötzlich auf der Straße | Regional', 'Eine Autofahrerin konnte Dienstagabend dem Mann noch ausweichen, aber der VW-Fahrer erfasste den Fußgänger. Er wurde lebensgefährlich verletzt.', 'http://www.bild.de/regional/duesseldorf/duesseldorf-aktuell/unfall-in-moenchengladbach-fussgaenger-stand-ploetzlich-auf-der-strasse-76060056.bild.html', 'https://images.bild.de/607696cdfd3b4a00019502a9/6fcc46ddc565e30553d265c5d0bbb41b/1/2?w=1280', '2021-04-14 07:07:38', '2021-04-14 07:45:59', '2021-04-14 07:45:59'),