-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleOutput.json
More file actions
1006 lines (1006 loc) · 92.4 KB
/
sampleOutput.json
File metadata and controls
1006 lines (1006 loc) · 92.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"status": "ok",
"totalResults": 3887,
"articles": [
{
"source": { "id": null, "name": "Www.ad.nl" },
"author": "Tim Hartman",
"title": "Oranje schrijft cricketgeschiedenis en de wereld geniet mee: ‘Alsof Marokko op het WK voetbal van Nederland of Spanje wint’",
"description": "De Nederlandse cricketers schreven dinsdag WK-geschiedenis met de overwinning op grootmacht Zuid-Afrika. De derde WK-zege ooit nadat in 2007 Schotland en in 2003 Namibië werd verslagen. Maar winst tegen zo'n topland: dat is uniek. ,,Alsof Marokko heeft gewonn…",
"url": "https://www.ad.nl/andere-sporten/oranje-schrijft-cricketgeschiedenis-en-de-wereld-geniet-mee-alsof-marokko-op-het-wk-voetbal-van-nederland-of-spanje-wint~aaae94ecb/",
"urlToImage": "https://images0.persgroep.net/rcs/s3aGmTGxys9wjBJrfHNVPuCXnFU/diocontent/236638411/_focus/0.38/0.54/_fill/1200/630/?appId=21791a8992982cd8da851550a453bd7f&quality=0.7",
"publishedAt": "2023-10-18T14:30:26Z",
"content": "Met samenvattingDe Nederlandse cricketers schreven dinsdag WK-geschiedenis met de overwinning op grootmacht Zuid-Afrika. De derde WK-zege ooit nadat in 2007 Schotland en in 2003 Namibië werd verslage… [+165 chars]"
},
{
"source": { "id": null, "name": "Www.ad.nl" },
"author": "Tim Hartman",
"title": "Oranje schrijft cricketgeschiedenis en de wereld geniet mee: ‘Verbijsterend resultaat, de meest iconische zege ooit’",
"description": "De Nederlandse cricketers schreven dinsdag WK-geschiedenis met de overwinning op grootmacht Zuid-Afrika. De derde WK-zege ooit nadat in 2007 Schotland en in 2003 Namibië werd verslagen. Maar winst tegen zo'n topland: dat is uniek. ,,Alsof Marokko heeft gewonn…",
"url": "https://www.ad.nl/andere-sporten/oranje-schrijft-cricketgeschiedenis-en-de-wereld-geniet-mee-verbijsterend-resultaat-de-meest-iconische-zege-ooit~aaae94ecb/",
"urlToImage": "https://images0.persgroep.net/rcs/s3aGmTGxys9wjBJrfHNVPuCXnFU/diocontent/236638411/_focus/0.38/0.54/_fill/1200/630/?appId=21791a8992982cd8da851550a453bd7f&quality=0.7",
"publishedAt": "2023-10-18T14:30:26Z",
"content": "De Nederlandse cricketers schreven dinsdag WK-geschiedenis met de overwinning op grootmacht Zuid-Afrika. De derde WK-zege ooit nadat in 2007 Schotland en in 2003 Namibië werd verslagen. Maar winst te… [+149 chars]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": null,
"title": "NZ's Santner takes 'astonishing' running catch",
"description": "New Zealand's Mitchell Santner takes a stunning diving catch to dismiss Afghanistan captain Hashmatullah Shahidi in the ICC Cricket World Cup 2023 match in Chennai.",
"url": "https://www.bbc.co.uk/sport/av/cricket/67144499",
"urlToImage": "https://ichef.bbci.co.uk/news/1024/cpsprodpb/D5E4/production/_131465745_p0gm7zxj.jpg",
"publishedAt": "2023-10-18T14:14:54Z",
"content": "New Zealand's Mitchell Santner takes a stunning diving catch to dismiss Afghanistan captain Hashmatullah Shahidi in the ICC Cricket World Cup 2023 match in Chennai.\r\nFOLLOW LIVE: New Zealand v Afghan… [+33 chars]"
},
{
"source": { "id": "al-jazeera-english", "name": "Al Jazeera English" },
"author": "Al Jazeera",
"title": "India vs Bangladesh: ICC Cricket World Cup 2023 match preview",
"description": "India will opt against rotating their players as they look to bag their fourth win against Bangladesh.",
"url": "https://www.aljazeera.com/sports/2023/10/18/india-vs-bangladesh-icc-cricket-world-cup-2023-preview",
"urlToImage": "https://www.aljazeera.com/wp-content/uploads/2023/10/2023-10-10T063117Z_2095799941_UP1EJAA0I440X_RTRMADP_3_CRICKET-WORLDCUP-ENG-BGD-1697635045.jpg?resize=1620%2C1080",
"publishedAt": "2023-10-18T14:07:53Z",
"content": "Who: India vs Bangladesh\r\nWhen: Thursday, October 19, 2pm (08:30 GMT)\r\nlist of 3 itemslist 1 of 3\r\nlist 2 of 3\r\nlist 3 of 3\r\nend of list\r\nWhere: MCA International Stadium, Pune, India\r\nIn-form India … [+3404 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "AFP",
"title": "Five great Australia-Pakistan cricket moments",
"description": "Five-time champions Australia renew their cricketing rivalry with Pakistan at the Cricket World Cup in Bengaluru on Friday. AFP Sport takes a look at five memorable performances and moments between the two teams over the years.",
"url": "https://timesofindia.indiatimes.com/sports/cricket/icc-world-cup/news/five-great-australia-pakistan-cricket-moments-ahead-of-odi-world-cup-match-in-bengaluru/articleshow/104532043.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104532011,width-1070,height-580,imgsize-51538,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T14:04:52Z",
"content": "Most runs by an Indian batter vs Bangladesh in World Cups"
},
{
"source": { "id": null, "name": "Bleeding Cool News" },
"author": "Ray Flook",
"title": "Gen V: Astroglide Gets Lubed Up Over Jensen Ackles/Soldier Boy Return",
"description": "The last time we checked in on how things were going with personal lubricant company Astroglide, it was doing its part to support Michele Fazekas & Tara Butters' Gen V by offering a special online discount tied into the premiere of Prime Video's spinoff from …",
"url": "https://bleedingcool.com/tv/gen-v-astroglide-gets-lubed-up-over-jensen-ackles-soldier-boy-return/",
"urlToImage": "https://bleedingcool.com/wp-content/uploads/2023/10/sbgenv-1-1200x628.jpg",
"publishedAt": "2023-10-18T14:03:08Z",
"content": "Posted in: Amazon Studios, Preview, Trailer, TV | Tagged: amazon, gen v, preview, prime video, the boys, trailer\r\nIt looks like Jensen Ackles' Soldier Boy has a fan in Astroglide, so you can just ima… [+9457 chars]"
},
{
"source": { "id": null, "name": "POLITICO.eu" },
"author": "Graham Lanktree, Emilio Casalicchio",
"title": "Rishi Sunak cools on plans to sign India trade deal in October",
"description": "Negotiators have yet to finalize terms on a number of key issues from tariffs to inter-company work visas.",
"url": "https://www.politico.eu/article/uk-rishi-sunak-delay-trade-deal-with-india/",
"urlToImage": "https://www.politico.eu/cdn-cgi/image/width=1200,height=630,fit=crop,quality=80,onerror=redirect/wp-content/uploads/2023/10/18/GettyImages-1669845687-scaled.jpg",
"publishedAt": "2023-10-18T13:46:02Z",
"content": "LONDON Prime Minister Rishi Sunak has cooled on plans to travel to India later this month to strike a trade deal as intense negotiations continue and conflict erupts in the Middle East.\r\nOn Wednesday… [+2755 chars]"
},
{
"source": { "id": null, "name": "Roanoke Times" },
"author": "Lee Media Studio, The Associated Press",
"title": "Biden pledges solidarity with Israelis; Jordan falls short on House speaker ballot; Britney Spears writes of abortion | Hot off the Wire podcast",
"description": "On today's podcast: President Biden discusses the Gaza hospital blast, Rep. Jim Jordan will try again to become House speaker, sports highlights and entertainment news.",
"url": "https://roanoke.com/news/nation-world/biden-pledges-solidarity-with-israelis-jordan-falls-short-on-house-speaker-ballot-britney-spears-writes/article_1be2fc61-9d36-583b-afbd-9124a54a0dca.html",
"urlToImage": "https://bloximages.newyork1.vip.townnews.com/roanoke.com/content/tncms/assets/v3/editorial/1/be/1be2fc61-9d36-583b-afbd-9124a54a0dca/652fcc6c9f32d.preview.jpg?crop=1739%2C913%2C4%2C37&resize=1200%2C630&order=crop%2Cresize",
"publishedAt": "2023-10-18T13:30:00Z",
"content": "On this version of Hot off the Wire:\r\nTEL AVIV, Israel (AP) President Joe Biden says an explosion at a Gaza Strip hospital appears to have been caused by the other team, not Israel. Biden told Israel… [+12309 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "TOI Sports Desk",
"title": "Kohli rated as biggest impact player for his phenomenal fielding in WC",
"description": "Batting maestro Virat Kohli's exceptional fielding skills have played a pivotal role in India's undefeated streak during the ICC World Cup's initial 13 days. His contribution to the team goes beyond his batting abilities.",
"url": "https://timesofindia.indiatimes.com/sports/cricket/icc-world-cup/news/virat-kohli-rated-as-biggest-impact-player-for-his-phenomenal-fielding-in-world-cup/articleshow/104531269.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104531236,width-1070,height-580,imgsize-44894,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T13:28:48Z",
"content": "World Cup, India vs Bangladesh: There are no big teams in the World Cup, says Virat KohliIndian cricketer Virat Kohli praised Bangladesh captain Shakib Al Hasan's bowling skills ahead of their match … [+188 chars]"
},
{
"source": { "id": "the-irish-times", "name": "The Irish Times" },
"author": "Nathan Johns",
"title": "Irish international cricket umpire Paul Reynolds dies after long illness",
"description": "Reynolds has been on the International Cricket Council’s panel of international umpires since 2018",
"url": "https://www.irishtimes.com/sport/2023/10/18/irish-international-cricket-umpire-paul-reynolds-dies-after-long-illness/",
"urlToImage": "https://www.irishtimes.com/resizer/89iELkWeQrvVTXav96meYiDNf1c=/1200x630/filters:format(jpg):quality(70)/cloudfront-eu-central-1.images.arcpublishing.com/irishtimes/34MTOESPPBBMNDTGZSG6SNMICM.jpg",
"publishedAt": "2023-10-18T13:25:18Z",
"content": "Irish international cricket umpire Paul Reynolds has died at the age 50 after a long illness.\r\nReynolds has been a member of the International Cricket Councils international umpires panel since 2018,… [+2526 chars]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": null,
"title": "Afghanistan drop four New Zealand chances",
"description": "Watch as Afghanistan's fielders drop four catches against New Zealand in their 2023 ICC Cricket World Cup match in Chennai.",
"url": "https://www.bbc.co.uk/sport/av/cricket/67144497",
"urlToImage": "https://ichef.bbci.co.uk/news/1024/cpsprodpb/87C4/production/_131465743_p0gm7bq4.jpg",
"publishedAt": "2023-10-18T13:02:34Z",
"content": "Watch as Afghanistan's fielders drop four catches against New Zealand in their 2023 ICC Cricket World Cup match in Chennai.\r\nFOLLOW LIVE: New Zealand v Afghanistan\r\nAvailable to UK users only."
},
{
"source": { "id": null, "name": "NDTV News" },
"author": null,
"title": "World Cup: Breathtaking Pics Of Dharamshala Cricket Stadium Stuns Internet",
"description": "The International Cricket Council (ICC) on Tuesday shared a breathtaking picture of the Himachal Pradesh Cricket Association Stadium (HPCA) in Dharamshala.",
"url": "https://www.ndtv.com/offbeat/world-cup-breathtaking-pics-of-dharamshala-cricket-stadium-stuns-internet-4493105",
"urlToImage": "https://c.ndtvimg.com/2023-10/dshai15o_dharamshala-cricket-stadium_625x300_18_October_23.jpg",
"publishedAt": "2023-10-18T12:58:08Z",
"content": "The image was captured during the Netherlands-South Africa match.\r\nThe International Cricket Council (ICC) on Tuesday shared breathtaking pictures of the Himachal Pradesh Cricket Association Stadium … [+1725 chars]"
},
{
"source": { "id": null, "name": "Berliner Morgenpost" },
"author": "© dpa-infocom, dpa:231018-99-611320/2 (dpa)",
"title": "Kricket-Weltmeisterschaft: Pakistan beschwert sich über respektlose Fans bei Kricket-WM",
"description": "Das Pakistan Cricket Board (PCB) hat nach einem Spiel gegen den Erzrivalen Indien bei der Kricket-Weltmeisterschaft in Indien eine Beschwerde gegen indische Zuschauer eingelegt.",
"url": "https://www.morgenpost.de/sport/article239830553/Pakistan-beschwert-sich-ueber-respektlose-Fans-bei-Kricket-WM.html",
"urlToImage": "https://img.morgenpost.de/img/sport/crop239830551/2252602763-w820-cv16_9-q85/Kricket-WM.jpg",
"publishedAt": "2023-10-18T12:56:28Z",
"content": "Islamabad/Delhi. Das Pakistan Cricket Board (PCB) hat nach einem Spiel gegen den Erzrivalen Indien bei der Kricket-Weltmeisterschaft in Indien eine Beschwerde gegen indische Zuschauer eingelegt. \r\nGr… [+914 chars]"
},
{
"source": { "id": null, "name": "FRANCE 24 English" },
"author": "FRANCE24",
"title": "Five great Australia-Pakistan cricket moments",
"description": "AFP Sport takes a look at five memorable performances and moments between the two teams over the years:\nSensational Sarfraz (March 15, 1979)\nPakistan fast bowler Sarfraz Nawaz single-handedly destroyed Australia's batting with match-winning figures of 9-86 --…",
"url": "https://www.france24.com/en/live-news/20231018-five-great-australia-pakistan-cricket-moments",
"urlToImage": "https://s.france24.com/media/display/7202dc38-6db4-11ee-8c02-005056bf30b7/w:1280/p:16x9/75a040d31aabb3deb3a8df99a7a850720e71ba3b.jpg",
"publishedAt": "2023-10-18T12:47:07Z",
"content": "Bengaluru (India) (AFP) Five-time champions Australia renew their cricketing rivalry with Pakistan at the Cricket World Cup in Bengaluru on Friday. AFP Sport takes a look at five memorable performanc… [+3247 chars]"
},
{
"source": { "id": null, "name": "Livemint" },
"author": "mint",
"title": "Cricket, Chandrayaan and the menace of ambush marketing",
"description": "Sponsorship contracts must fully protect and clearly spell out the rights of a sponsor in relation to their ability to freely market and advertise their brands",
"url": "https://www.livemint.com/opinion/first-person/cricket-chandrayaan-and-the-menace-of-ambush-marketing-11697630765631.html",
"urlToImage": "https://www.livemint.com/lm-img/img/2023/10/18/1600x900/CRICKET-WORLDCUP-IND-PAK--289_1697294765673_1697632363867.JPG",
"publishedAt": "2023-10-18T12:42:13Z",
"content": "As the Cricket World Cup is underway, the frenzy is at its peak with historic victories and record-breaking performances. All advertising opportunities are being exploited, not only to congratulate T… [+5761 chars]"
},
{
"source": { "id": "rt", "name": "RT" },
"author": "RT",
"title": "Signing of India-UK trade pact hits hurdle – FT",
"description": "Rishi Sunak will not sign a trade deal with New Delhi “on arbitrary deadlines,” a London official has told Financial Times Read Full Article at RT.com",
"url": "https://www.rt.com/india/585253-india-uk-free-trade-deal-hurdles/",
"urlToImage": "https://mf.b37mrtl.ru/files/2023.10/article/652fcf6120302763346200d0.jpg",
"publishedAt": "2023-10-18T12:33:22Z",
"content": "India and Britain are unlikely to sign a free-trade agreement (FTA) this month as London is seeking “better terms” in the area of “goods and services,” the Financial Times reported on Wednesday, quot… [+3063 chars]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": null,
"title": "World Cup: India v Bangladesh - clips, radio & text",
"description": "Follow live text, in-play video clips and radio commentary as India play Bangladesh in the Men's Cricket World Cup 2023.",
"url": "https://www.bbc.co.uk/sport/live/cricket/66858253",
"urlToImage": "https:////m.files.bbci.co.uk/modules/bbc-morph-sport-seo-meta/1.23.3/images/bbc-sport-logo.png",
"publishedAt": "2023-10-18T12:31:45Z",
"content": "Bangladesh: Liton Das, Tanzid Hasan, Najmul Hossain Shanto (c), Mehidy Hasan Miraz, Mushfiqur Rahim (wk), Towhid Hridoy, Mahmudullah, Nasum Ahmed, Hasan Mahmud, Mustafizur Rahman, Shoriful Islam.\r\nIn… [+172 chars]"
},
{
"source": { "id": null, "name": "Khabarhub.com" },
"author": "Khabarhub",
"title": "Tri-nation T20 series: Nepal wins UAE by 7 wickets",
"description": "KATHMANDU: Nepal secured a commanding victory in the tri-nation T20I series at home, triumphing over UAE by 7 wickets following a stellar 93-run partnership between captain Rohit Paudel and Dipendra Singh Airi. In the match held on Wednesday, Nepal comfortabl…",
"url": "https://english.khabarhub.com/2023/18/322846/",
"urlToImage": "https://english.khabarhub.com/wp-content/uploads/2023/10/Nepal-vs-UAE.jpg",
"publishedAt": "2023-10-18T12:08:01Z",
"content": "KATHMANDU: Nepal secured a commanding victory in the tri-nation T20I series at home, triumphing over UAE by 7 wickets following a stellar 93-run partnership between captain Rohit Paudel and Dipendra … [+854 chars]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "Lovisha Darad",
"title": "PVR-Inox Q2 likely to be back in black amid strong box office collections",
"description": "Brokerages estimate the multiplex chain operator to report profit at Rs 153 crore in Q2FY24 from a loss of Rs 81 crore booked in the previous quarter",
"url": "https://www.moneycontrol.com/news/business/earnings/pvr-inox-q2-likely-to-be-back-in-black-amid-strong-box-office-collections-11555901.html",
"urlToImage": "https://images.moneycontrol.com/static-mcnews/2021/08/PVR-gurgaon-770x433.jpg",
"publishedAt": "2023-10-18T11:29:11Z",
"content": "PVR-Inox is set to report a standout performance in the July-September quarter for 2023-24 (Q2FY24) thanks to back-to-back strong movie releases that aided box office collections, projected analysts.… [+3893 chars]"
},
{
"source": { "id": null, "name": "FRANCE 24 English" },
"author": "FRANCE24",
"title": "Pakistan 'under extra pressure' in India with no fans",
"description": "Pakistan were thrashed by seven wickets on Saturday at Ahmedabad's 132,000-capacity stadium where there was only a handful of Pakistani supporters.\n\nBabar Azam's team slumped from a solid 155-2 in the 30th over to be dismissed for a paltry 191.\n\n\"I think we w…",
"url": "https://www.france24.com/en/live-news/20231018-pakistan-under-extra-pressure-in-india-with-no-fans",
"urlToImage": "https://s.france24.com/media/display/df2e0524-6da7-11ee-8181-005056a90321/w:1280/p:16x9/70efadd1a34055bf356f4c59c0ffca8bb9b880dc.jpg",
"publishedAt": "2023-10-18T11:17:07Z",
"content": "Bengaluru (India) (AFP) Pakistan paid a heavy price for being \"under extra pressure\" in their World Cup defeat by arch-rivals India, said batsman Saud Shakeel, who Wednesday lamented the absence of t… [+2313 chars]"
},
{
"source": { "id": null, "name": "DIE WELT" },
"author": "Thomas Heuzeroth, Sebastian Freier",
"title": "„Die ganze Welt schaut auf Sie, Satya Nadella“",
"description": "Microsoft-Chef Satya Nadella wird mit dem Axel Springer Award geehrt. Axel-Springer-CEO Mathias Döpfner und Digitalminister Volker Wissing betonen bei der besonderen Verleihung den Wandel Microsofts und den innovativen Geist Nadellas. Überrascht wird er von e…",
"url": "https://www.welt.de/wirtschaft/article248058602/Axel-Springer-Award-Die-ganze-Welt-schaut-auf-Sie-Satya-Nadella.html",
"urlToImage": "https://img.welt.de/img/wirtschaft/mobile248059680/2711359607-ci16x9-w1200/Preisverleihung-des-Axel-Springer-Awards-6.jpg",
"publishedAt": "2023-10-18T11:15:25Z",
"content": "Neonfarbene Lichter pulsieren am Dienstagabend den Axel-Springer-Neubau in Berlin. Das Gebäude erinnert eher an das Innere einer riesigen Rechenzentrale, die von elektrischen Impulsen durchzogen wird… [+11375 chars]"
},
{
"source": { "id": null, "name": "Nakedcapitalism.com" },
"author": "Lambert Strether",
"title": "Links 10/18/2023",
"description": "Our select-cuts daily links",
"url": "https://www.nakedcapitalism.com/2023/10/links-10-18-2023.html",
"urlToImage": "https://www.nakedcapitalism.com/wp-content/uploads/2023/10/gabor_gaza.png",
"publishedAt": "2023-10-18T10:58:37Z",
"content": "Watch Two Men Pull a Drowning Red Deer Out Of a Well in Mexico Field & Stream\r\nCrocodile sex frenzy triggered by Chinook helicopters and thunder in central Queensland ABC Australia\r\nHow to financ… [+7880 chars]"
},
{
"source": { "id": "der-tagesspiegel", "name": "Der Tagesspiegel" },
"author": "Kit Holden",
"title": "Sport im Fernsehen: Schluss mit Fußball, zeigt uns Cricket!",
"description": "So viel Sendezeit für eine einzige Sportart – Fußball ist überall und nervt. Wir halten flammende Plädoyers für Disziplinen, die mehr Aufmerksamkeit verdient hätten. Teil 5: Cricket.",
"url": "https://www.tagesspiegel.de/sport/sport-im-fernsehen-schluss-mit-fussball-zeigt-uns-cricket-10619923.html",
"urlToImage": "https://www.tagesspiegel.de/sport/images/cricket-icc-mens-wc-2023-ind-pak-odi/alternates/BASE_16_9_W1400/cricket-icc-mens-wc-2023-ind-pak-odi.jpeg",
"publishedAt": "2023-10-18T10:50:01Z",
"content": "Ahmedabad ist eine große Stadt, sowohl von der Fläche als auch von der Bevölkerung her etwa zweimal so groß wie Berlin. Doch am vergangenen Samstag, als Indien sein zweites WM-Spiel gegen Pakistan be… [+365 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "shows.acast.com",
"title": "Diplomacy up in smoke: Biden visits Israel",
"description": "A fatal explosion at a hospital-cum-shelter has led to outrage and the canceling of the very summit that the US president had flown in for. America’s support for Israel is unwavering but could this escalation prompt the involvement of regional neighbours? Mod…",
"url": "https://biztoc.com/x/046af83c6b47b677",
"urlToImage": "https://c.biztoc.com/p/046af83c6b47b677/s.webp",
"publishedAt": "2023-10-18T10:43:40Z",
"content": "A fatal explosion at a hospital-cum-shelter has led to outrage and the canceling of the very summit that the US president had flown in for. Americas support for Israel is unwavering but could this es… [+242 chars]"
},
{
"source": { "id": "news24", "name": "News24" },
"author": "Herman Mostert",
"title": "Sport | 5 talking points | Proteas v Netherlands: 'Bulldog' Van der Merwe a thorn in SA's side",
"description": "Herman Mostert highlights five talking points after South Africa's shock 38-run Cricket World Cup loss to the Netherlands in Dharamshala.",
"url": "https://www.news24.com/sport/cricket/worldcup/5-talking-points-proteas-v-netherlands-bulldog-van-der-merwe-a-thorn-in-sas-side-20231018",
"urlToImage": "https://cdn.24.co.za/files/Cms/General/d/9603/67415210dbea4e2ba8b4ea9abd172b40.jpg",
"publishedAt": "2023-10-18T10:39:34Z",
"content": "Late innings rally gave Dutch a sniff\r\nAfter winning the toss and opting to bowl first, the Proteas bowlers dominated initially and seemingly had the Netherlands on the ropes at 50/4 and again at 140… [+171 chars]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": null,
"title": "Tribe ton keeps Jersey's European hopes alive",
"description": "Jersey batter Asa Tribe hits a century against Ireland to help the islanders to their first win at the European Cricket Championship in Spain.",
"url": "https://www.bbc.co.uk/sport/cricket/67145453",
"urlToImage": "https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/E284/production/_131288975_mediaitem131288974.jpg",
"publishedAt": "2023-10-18T10:18:31Z",
"content": "Asa Tribe made his international 50-over debut for Jersey against Canada in a World Cup qualifier in March 2023\r\nAsa Tribe's knock of 122 kept Jersey's European Cricket Championship hopes alive as th… [+1579 chars]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": "cbc-news", "name": "CBC News" },
"author": null,
"title": "Northern Ontario squash coaches welcome the sport's inclusion into the Olympics",
"description": "Squash coaches in northern Ontario say they expect the inclusion of the sport in the Olympics to boost its popularity locally.",
"url": "https://www.cbc.ca/news/canada/sudbury/squash-olympics-northern-ontario-1.6999274",
"urlToImage": "https://i.cbc.ca/1.6999305.1697577279!/fileImage/httpImage/image.jpeg_gen/derivatives/16x9_620/mike-mccue-and-clifford-laming.jpeg",
"publishedAt": "2023-10-18T10:00:00Z",
"content": "A squash coach in Timmins expects the sport's inclusion in the 2028 Los Angeles Olympics will help boost its popularity in northern Ontario.\r\n\"As we start to see things on the radio and TV about the … [+2101 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "ET Online",
"title": "Rahul Gandhi is an 'unpadh baccha', lacks knowledge about politics: Himanta Biswa Sarma",
"description": "Assam Chief Minister Himanta Biswa Sarma dismissed Gandhi's knowledge about politics and highlights the involvement of Gandhi's own family in politics. He also points out the difference between the roles of Amit Shah's son and Rajnath Singh's son. The remarks…",
"url": "https://economictimes.indiatimes.com/news/politics-and-nation/rahul-gandhi-is-an-unpadh-baccha-lacks-knowledge-about-politics-himanta-biswa-sarma/articleshow/104523805.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104523947,width-1200,height-630,imgsize-65648,overlay-economictimes/photo.jpg",
"publishedAt": "2023-10-18T09:42:46Z",
"content": "Hitting out at Congress leader Rahul Gandhi for his recent remarks on dynasty politics, Assam Chief Minister Himanta Biswa Sarma referred to Gandhi as an \"unpadh baccha\" (illiterate child) who lacks … [+1449 chars]"
},
{
"source": { "id": null, "name": "Trendhunter.com" },
"author": null,
"title": "Special Edition Blue Bikes - Revolt Motors' 'India Blue' Bike Focuses on Aesthetics (TrendHunter.com)",
"description": "(TrendHunter.com) The ‘Rv400 India Blue' is a special edition electric bike from Revolt Motors, a company that claims to offer India’s first AI-enabled smart electric bike. The Rv400 India Blue has a...",
"url": "https://www.trendhunter.com/trends/rv400-india-blue",
"urlToImage": "https://cdn.trendhunterstatic.com/thumbs/517/rv400-india-blue.jpeg?auto=webp",
"publishedAt": "2023-10-18T09:42:03Z",
"content": "The 'Rv400 India Blue' is a special edition electric bike from Revolt Motors, a company that claims to offer Indias first AI-enabled smart electric bike. The Rv400 India Blue has a glossy blue finish… [+891 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "forbes.com",
"title": "Cricket World Cup: England Not Panicking Yet, Says Coach Matthew Mott",
"description": "England coach Matthew Mott said the team is not panicking just yet, but they have found themselves under more pressure than expected after a rocky start to their World Cup defense in India. England, who won the 50-overs title in 2019, started their campaign w…",
"url": "https://biztoc.com/x/3a41fb63983486d2",
"urlToImage": "https://c.biztoc.com/p/3a41fb63983486d2/s.webp",
"publishedAt": "2023-10-18T09:34:06Z",
"content": "England coach Matthew Mott said the team is not panicking just yet, but they have found themselves under more pressure than expected after a rocky start to their World Cup defense in India.England, w… [+312 chars]"
},
{
"source": { "id": null, "name": "Www.nu.nl" },
"author": "onze sportredactie",
"title": "Totaalcricket leidt tot WK-stunt Nederland: 'Iedereen is even belangrijk'",
"description": "De Nederlandse cricketers hebben dinsdag met een speciale speelstijl voor een stunt gezorgd op het WK cricket in India. Volgens aanvoerder Scott Edwards won zijn ploeg dankzij 'totaalcricket' met een verschil van 38 runs van topland Zuid-Afrika.",
"url": "https://www.nu.nl/sport-overig/6285821/totaalcricket-leidt-tot-wk-stunt-nederland-iedereen-is-even-belangrijk.html",
"urlToImage": "https://media.nu.nl/m/xecxvy7agttr_wd1280/totaalcricket-leidt-tot-wk-stunt-nederland-iedereen-is-even-belangrijk.jpg",
"publishedAt": "2023-10-18T09:33:32Z",
"content": "18 okt 2023 om 11:33 Update: een minuut geleden \r\nDe Nederlandse cricketers hebben dinsdag met een speciale speelstijl voor een stunt gezorgd op het WK cricket in India. Volgens aanvoerder Scott Edwa… [+2142 chars]"
},
{
"source": { "id": null, "name": "FRANCE 24 English" },
"author": "FRANCE24",
"title": "Pakistan complains to ICC over 'inappropriate' conduct of Indian crowd",
"description": "Babar Azam's Pakistan lost to India at Ahmedabad's 132,000-seater stadium where just 10 Pakistani expatriate fans were believed to have gained tickets for the tournament's marquee match-up.\n\nTeam captain Azam was booed at the toss while video on social media …",
"url": "https://www.france24.com/en/live-news/20231018-pakistan-complains-to-icc-over-inappropriate-conduct-of-indian-crowd",
"urlToImage": "https://s.france24.com/media/display/f32911f0-6d97-11ee-81fd-005056bfb2b6/w:1280/p:16x9/134eb186ca49dca5ca1f3a0350b80151e4f1accb.jpg",
"publishedAt": "2023-10-18T09:23:08Z",
"content": "New Delhi (AFP) The Pakistan Cricket Board has lodged a complaint with the sports' world governing body over \"inappropriate conduct\" towards its players during the World Cup match against arch-rivals… [+1593 chars]"
},
{
"source": { "id": null, "name": "Forbes" },
"author": "Manasi Pathak, Contributor, \n Manasi Pathak, Contributor\n https://www.forbes.com/sites/manasipathak/",
"title": "Cricket World Cup: England Not Panicking Yet, Says Coach Matthew Mott",
"description": "England coach Matthew Mott said the team is not panicking, but they have found themselves under more pressure than expected after a poor start in their World Cup defense.",
"url": "https://www.forbes.com/sites/manasipathak-1/2023/10/18/cricket-world-cup-england-not-panicking-yet-says-coach-matthew-mott/",
"urlToImage": "https://imageio.forbes.com/specials-images/imageserve/652fa006a92f20be05a9ebd1/0x0.jpg?format=jpg&height=900&width=1600&fit=bounds",
"publishedAt": "2023-10-18T09:13:43Z",
"content": "England's captain Jos Buttler (C) along with his teammates, prepare to field during the 2023 ICC ... [+] Men's Cricket World Cup one-day international (ODI) match between England and Afghanistan at t… [+2267 chars]"
},
{
"source": { "id": null, "name": "AllAfrica - Top Africa News" },
"author": "aps@aps.sn (APS)",
"title": "Afrique: Le CIO intègre cinq nouvelles disciplines pour les JO de 2028",
"description": "[APS] Dakar -- Le Comité international olympique (CIO) a entériné lundi cinq nouveaux sports dans le programme des Jeux Olympiques 2028 prévus à Los Angeles (Etats-Unis).",
"url": "https://fr.allafrica.com/stories/202310180117.html",
"urlToImage": "https://cdn08.allafrica.com/static/images/structure/aa-logo-rgba-no-text-square.png",
"publishedAt": "2023-10-18T09:11:46Z",
"content": "Dakar — Le Comité international olympique (CIO) a entériné lundi cinq nouveaux sports dans le programme des Jeux Olympiques 2028 prévus à Los Angeles (Etats-Unis).\r\nIl s'agit du baseball/softball, du… [+1001 chars]"
},
{
"source": { "id": "marca", "name": "Marca" },
"author": "TOMÁS CAMPOS",
"title": "España pasa por el aro: así afrontamos los cinco nuevos deportes olímpicos en Los Angeles 2028",
"description": "Con las medallas como quimera, el objetivo más realista es estar presente en el squash, luchar por una clasificación histórica en béisbol/sóftbol y flag football y buscar el milagro en lacrosse y cricket Leer",
"url": "https://www.marca.com/olimpismo/2023/10/18/652e7de3268e3e81638b45b4.html",
"urlToImage": "https://phantom-marca.unidadeditorial.es/2b8221e1b8a5e7aa8ccec35f1dd3631d/resize/1200/f/jpg/assets/multimedia/imagenes/2023/10/17/16975577287572.jpg",
"publishedAt": "2023-10-18T09:11:17Z",
"content": "Medio millón de personas juega al lacrosse en Estados Unidos, donde es habitual ver algún partido en un parque público. Pese a ello, muy poca gente ha oído hablar de esta disciplina en España, donde … [+12202 chars]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "Hindi.Moneycontrol.com Team, Moneycontrol Hindi",
"title": "रिजवान के नमाज पढ़ने के खिलाफ शिकायत करने वाले वकील की बढ़ीं मुसीबतें, दावा-आतंकवादी समूह से मिल रही हैं धमकियां",
"description": "दिल्ली के एक वकील विनीत जिंदल को हाल ही में आतंकवादी ऑर्गेनाइजेशन की ओर से जान से मारने की धमकियां मिल रही हैं। दरअसल विनीत जिंदल ने पाकिस्तानी बल्लेबाज मोहम्मद रिजवान के खिलाफ शिकायत दर्ज करवाई थी। 17 अक्टूबर को जिंदल ने अपने एक्स वेरिफाइड अकाउंट से एख पोस्ट…",
"url": "https://hindi.moneycontrol.com/news/india/cricket/advocate-complained-about-the-rizwan-namaz-during-match-recieves-death-threats-from-terrorist-organistaion-1553911.html",
"urlToImage": "https://images.moneycontrol.com/static-hindinews/2023/10/muhammadrizwan-725x435.jpg",
"publishedAt": "2023-10-18T09:07:25Z",
"content": "ICC , BCCI, PCB ICC 6 ICC , BCCI PCB 14"
},
{
"source": { "id": "abc-news-au", "name": "ABC News (AU)" },
"author": "ABC News",
"title": "Warner calls for umpires to be held accountable at Cricket World Cup",
"description": "David Warner has called for more transparency around the accuracy of individual umpire's decisions and greater accountability for their calls.",
"url": "https://www.abc.net.au/news/2023-10-18/david-warner-hits-out-at-umpires-at-cricket-world-cup/102994258",
"urlToImage": "https://live-production.wcms.abc-cdn.net.au/e17eb2688b0d2d94b4b1b07faa4b1b36?impolicy=wcms_crop_resize&cropH=2813&cropW=5000&xPos=0&yPos=370&width=862&height=485",
"publishedAt": "2023-10-18T08:45:15Z",
"content": "David Warner has called for individual umpire statistics to be shown on the big screen during matches in a bid to improve the accountability of cricket's on-field officials.\r\nKey points:\r\n<ul><li>Dav… [+3322 chars]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": null,
"title": "All you need to know about 2023 Women's Big Bash",
"description": "All you need to know about the schedule, format and teams as the Women's Big Bash League returns on Thursday 19 October.",
"url": "https://www.bbc.co.uk/sport/cricket/67103066",
"urlToImage": "https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/BA1D/production/_131454674_gettyimages-1444682821.jpg",
"publishedAt": "2023-10-18T08:20:10Z",
"content": "Adelaide Strikers beat Sydney Sixers in the 2022 WBBL final\r\nThe Women's Big Bash League (WBBL) returns on Thursday with the ninth edition of one of the world's leading franchise tournaments. \r\nEight… [+5569 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Shivendra Kumar",
"title": "Penny stock Toyam Sports hits 5% upper circuit. Here’s why",
"description": "The film delves into the realm of mixed martial arts (MMA) and the primary objective of the web series is to popularise MMA among the Indian MMA athletes.",
"url": "https://economictimes.indiatimes.com/markets/stocks/news/penny-stock-toyam-sports-hits-5-upper-circuit-heres-why/articleshow/104520470.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104520456,width-1200,height-630,imgsize-15210,overlay-etmarkets/photo.jpg",
"publishedAt": "2023-10-18T07:48:30Z",
"content": "Penny stock Toyam Sports jumped 5% upper circuit to hit the day's high of Rs 6.61 on the BSE in Wednesday's trade following the announcement of its sports web series, Kumite 1 Warrior Hunt making an … [+1771 chars]"
},
{
"source": { "id": null, "name": "Www.gva.be" },
"author": "gva.be",
"title": "“Programma uitbreiden met de sport die de status van een religie heeft”: Cricket wordt een nieuwe olympische goudmijn",
"description": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook een geopolitieke realiteit.",
"url": "https://www.gva.be/cnt/dmf20231018_92792437",
"urlToImage": "https://static.gva.be/Assets/Images_Upload/2023/10/17/74dc3eab-cde2-4f7a-8334-035db92af91f.jpg?maxheight=460&maxwidth=629",
"publishedAt": "2023-10-18T07:45:01Z",
"content": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook e… [+25 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "forbes.com",
"title": "Netherlands’ World Cup Success Underlines Growth In Smaller Cricket Nations",
"description": "The cricket World Cup had not started well. Mired by ticketing issues, low crowds, Pakistan fans and journalists being denied visas and one-sided matches - with the elephant in the room being the apathy for the 50-over format - this World Cup had been mostly …",
"url": "https://biztoc.com/x/6dc8185f6290c913",
"urlToImage": "https://c.biztoc.com/p/6dc8185f6290c913/s.webp",
"publishedAt": "2023-10-18T07:42:05Z",
"content": "The cricket World Cup had not started well. Mired by ticketing issues, low crowds, Pakistan fans and journalists being denied visas and one-sided matches - with the elephant in the room being the apa… [+305 chars]"
},
{
"source": { "id": null, "name": "Aajtak.in" },
"author": "aajtak.in",
"title": "LIVE: अफगानिस्तान ने जीता टॉस, न्यूजीलैंड की बल्लेबाजी... विलियमसन OUT",
"description": "World Cup 2023, New Zealand vs Afghanistan Live Cricket Score: आईसीसी क्रिकेट वर्ल्ड कप 2023 का मैच नंबर 16 न्यूजीलैंड और अफगानिस्तान के बीच चेन्नई के एमए चिदम्बरम स्टेडियम में हैं. अफगानिस्तान ने पिछले मैच में इंग्लैंड को हराकर वर्ल्ड कप 2023 का सबसे बड़ा …",
"url": "https://www.aajtak.in/sports/cricket/story/new-zealand-vs-afghanistan-world-cup-2023-match-16-live-cricket-score-tom-latham-vs-hashmatullah-shahidi-devon-conway-rachin-ravindra-rashid-khan-mujeeb-ur-rahman-naveen-ul-haq-tspo-1801588-2023-10-18",
"urlToImage": "https://akm-img-a-in.tosshub.com/aajtak/images/story/202310/trent_boult-sixteen_nine.png",
"publishedAt": "2023-10-18T07:40:26Z",
"content": "New Zealand vs Afghanistan ICC Cricket World cup 2023 Live Cricket Score: 2023 16 (18 ) . . . . . \r\n . .\r\n2 . . 2015 , 6 . 2019 - , 7 . , . \r\n XI: , , , (), , , (), , , , , .\r\n - XI: , , , , (/),… [+9 chars]"
},
{
"source": { "id": null, "name": "Khabarhub.com" },
"author": "Khabarhub",
"title": "Tri-nation T20 series: Nepal wins toss against UAE, opts to bowl first",
"description": "KATHMANDU: Nepal has chosen to field first in the tri-nation T20 series’ opening game against UAE today. Captain Rohit Paudel decided to bowl first after winning the toss at the Mulpani Cricket Ground. Nepal is playing T20 cricket against UAE for the first ti…",
"url": "https://english.khabarhub.com/2023/18/322800/",
"urlToImage": "https://english.khabarhub.com/wp-content/uploads/2023/10/Nepal-vs-UAE.jpg",
"publishedAt": "2023-10-18T07:35:44Z",
"content": "KATHMANDU: Nepal has chosen to field first in the tri-nation T20 series’ opening game against UAE today.\r\nCaptain Rohit Paudel decided to bowl first after winning the toss at the Mulpani Cricket Grou… [+818 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Economic Times",
"title": "Afghanistan vs New Zealand | AFG vs NZ Live Score Updates, ICC World Cup 2023: ICC Cricket Ranking",
"description": "One just knows that It is going to be an epic clash if the match is in the M. A. Chidambaram stadium a.k.a Chepauk in Chennai. It is time for match number 16 of this marquee tournament, the ICC World Cup as the Afghans take on the Black Caps. The New Zealand…",
"url": "https://economictimes.indiatimes.com/news/sports/afghanistan-vs-new-zealand-live-score-updates-icc-cricket-world-cup-16th-odi-afg-vs-nz-match-score-today-18-october-2023/liveblog/104519952.cms",
"urlToImage": "https://economictimes.indiatimes.com/thumb/msid-104519952,width-600,resizemode-4,imglength-70772/news/sports/afghanistan-vs-new-zealand-live-score-updates-icc-cricket-world-cup-16th-odi-afg-vs-nz-match-score-today-18-october-2023.jpg",
"publishedAt": "2023-10-18T07:32:01Z",
"content": "One just knows that It is going to be an epic clash if the match is in the M. A. Chidambaram stadium a.k.a Chepauk in Chennai. It is time for match number 16 of this marquee tournament, the ICC World… [+1559 chars]"
},
{
"source": { "id": null, "name": "Forbes" },
"author": "Tristan Lavalette, Contributor, \n Tristan Lavalette, Contributor\n https://www.forbes.com/sites/tristanlavalette/",
"title": "Netherlands’ World Cup Success Underlines Growth In Smaller Cricket Nations",
"description": "The Netherlands have been flying the flag for smaller cricket nations in a World Cup confined to just 10 teams.",
"url": "https://www.forbes.com/sites/tristanlavalette/2023/10/18/netherlands-world-cup-success-underlines-growth-in-smaller-cricket-nations/",
"urlToImage": "https://imageio.forbes.com/specials-images/imageserve/652f4a3997473676e17ca9fa/0x0.jpg?format=jpg&height=900&width=1600&fit=bounds",
"publishedAt": "2023-10-18T07:27:33Z",
"content": "The Netherlands produced a major upset over South Africa (Photo by MONEY SHARMA/AFP via Getty ... [+] Images)\r\nAFP via Getty Images\r\nThe cricket World Cup had not started well. Mired by ticketing iss… [+4144 chars]"
},
{
"source": { "id": null, "name": "Nieuwsblad.be" },
"author": "nieuwsblad.be",
"title": "“Programma uitbreiden met de sport die de status van een religie heeft”: Cricket wordt een nieuwe olympische goudmijn",
"description": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook een geopolitieke realiteit.",
"url": "https://www.nieuwsblad.be/cnt/dmf20231018_92541831",
"urlToImage": "https://static.nieuwsblad.be/Assets/Images_Upload/2023/10/17/74dc3eab-cde2-4f7a-8334-035db92af91f.jpg?maxheight=460&maxwidth=638",
"publishedAt": "2023-10-18T06:57:51Z",
"content": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook e… [+25 chars]"
},
{
"source": { "id": null, "name": "Hbvl.be" },
"author": "hbvl.be",
"title": "“Programma uitbreiden met de sport die de status van een religie heeft”: Cricket wordt een nieuwe olympische goudmijn",
"description": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook een geopolitieke realiteit.",
"url": "https://www.hbvl.be/cnt/dmf20231018_92541831",
"urlToImage": "https://static.hbvl.be/Assets/Images_Upload/2023/10/17/74dc3eab-cde2-4f7a-8334-035db92af91f.jpg?maxheight=460&maxwidth=629",
"publishedAt": "2023-10-18T06:57:51Z",
"content": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook e… [+25 chars]"
},
{
"source": { "id": null, "name": "Independent.ie" },
"author": "Rohith Nair",
"title": "‘We pride ourselves on playing total cricket’ – Dutch captain on how they shocked South Africa in World Cup",
"description": "The Netherlands' belief in playing \"total cricket\" helped them secure their biggest victory at a World Cup when they beat high-flying South Africa by 38 runs on Tuesday, captain Scott Edwards said.",
"url": "https://www.independent.ie/sport/other-sports/cricket/we-pride-ourselves-on-playing-total-cricket-dutch-captain-on-how-they-shocked-south-africa-in-world-cup/a1248388568.html",
"urlToImage": "https://focus.independent.ie/thumbor/7rwKAq8I6Q4ZXipcaiVhxFTJVyU=/0x0:3238x2158/3238x2158/prod-mh-ireland/23d75ed2-7b8e-4384-832b-78dab4451cac/8ba8ba2b-2636-4dc9-aa17-d79ff08f675b/23d75ed2-7b8e-4384-832b-78dab4451cac.jpg",
"publishedAt": "2023-10-18T06:51:35Z",
"content": "The Netherlands' belief in playing \"total cricket\" helped them secure their biggest victory at a World Cup when they beat high-flying South Africa by 38 runs on Tuesday, captain Scott Edwards said.\r\n… [+200 chars]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Gaurav Gupta",
"title": "IPL: Shane Bond quits Mumbai Indians bowling coach job",
"description": "Shane Bond has resigned from his position as the bowling coach for the Mumbai Indians cricket team. Bond had been with the team for nine seasons and was involved in their four IPL title victories. In a statement, Bond expressed his gratitude to the team and m…",
"url": "https://timesofindia.indiatimes.com/sports/cricket/ipl/top-stories/ipl-shane-bond-quits-mumbai-indians-bowling-coach-job/articleshow/104518462.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104518405,width-1070,height-580,imgsize-48672,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T06:46:55Z",
"content": "World Cup: Netherlands stun South Africa"
},
{
"source": { "id": null, "name": "PerthNow" },
"author": "Clare Rigden",
"title": "Seven unveils programming schedule for 2024, promises ‘biggest game-changer Australian streaming’",
"description": "The Seven Network has revealed a major game changer for sport fans next year with AFL and cricket set to debut in full on 7Plus.",
"url": "https://www.perthnow.com.au/business/seven-unveils-programming-schedule-for-2024-promises-biggest-game-changer-australian-streaming-c-12243415",
"urlToImage": "https://images.perthnow.com.au/publication/C-12243415/c5bacf5d61956bdf98ab2f3a7bf955a093bb7424-16x9-x0y157w3000h1688.jpg?imwidth=1200",
"publishedAt": "2023-10-18T06:44:13Z",
"content": "The Seven Network has revealed a major game changer for sport fans next year with AFL and cricket set to debut in full on 7Plus.\r\nThis will mark the first time Australias biggest and most popular spo… [+4761 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Javed Farooqui",
"title": "Legends League Cricket ropes in two new franchises",
"description": "Two new franchises, Urbanrisers Hyderabad and Southern Superstars, have been added to the Legends League Cricket. Urbanrisers Hyderabad will be owned by Urbanrise Group/Trident Power, while Southern Superstars will be owned by a consortium represented by KLO …",
"url": "https://economictimes.indiatimes.com/news/sports/legends-league-cricket-ropes-in-two-new-franchises/articleshow/104517715.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104517999,width-1200,height-630,imgsize-9380,overlay-economictimes/photo.jpg",
"publishedAt": "2023-10-18T06:32:39Z",
"content": "The Urbanrisers Hyderabad franchise will be owned by Urbanrise Group/Trident Power, and the Southern Superstars franchise has been awarded to the consortium represented by KLO Sports, which was forme… [+2143 chars]"
},
{
"source": { "id": null, "name": "CNA" },
"author": null,
"title": "South Africa let standards slip and pay the price against Netherlands",
"description": "There will be honest conversations in the South Africa camp after a stunning 38-run defeat by the Netherlands on Tuesday put the brakes on their impressive Cricket World Cup campaign in India, captain Temba Bavuma said. South Africa were clinical in victories…",
"url": "https://www.channelnewsasia.com/sport/south-africa-let-standards-slip-and-pay-price-against-netherlands-3854821",
"urlToImage": "https://onecms-res.cloudinary.com/image/upload/s--UwXUmYuf--/fl_relative,g_south_east,l_one-cms:core:watermark:reuters,w_0.1/f_auto,q_auto/c_fill,g_auto,h_676,w_1200/v1/one-cms/core/2023-10-18t062831z_1_lynxmpej9h093_rtroptp_3_cricket-worldcup-aus-zaf.jpg?itok=kWJ0ylRh",
"publishedAt": "2023-10-18T06:28:31Z",
"content": "There will be honest conversations in the South Africa camp after a stunning 38-run defeat by the Netherlands on Tuesday put the brakes on their impressive Cricket World Cup campaign in India, captai… [+1805 chars]"
},
{
"source": { "id": "news24", "name": "News24" },
"author": "sport",
"title": "Sport | Dutch skipper hails charges after shocking Proteas: 'A big win over one of the favourites'",
"description": "Netherlands captain Scott Edwards hailed Tuesday's stunning World Cup triumph over South Africa as a \"big win\" as Proteas skipper Temba Bavuma admitted the 38-run loss would \"hurt\".",
"url": "https://www.news24.com/sport/cricket/worldcup/dutch-skipper-hails-charges-after-shocking-proteas-a-big-win-over-one-of-the-favourites-20231018",
"urlToImage": "https://cdn.24.co.za/files/Cms/General/d/3869/cceee0b04b294c549719e711165fe68f.jpg",
"publishedAt": "2023-10-18T06:26:48Z",
"content": "<ul><li>Netherlands captain Scott Edwards is proud of his team after they beat \"one of the favourites\" in South Africa at the Cricket World Cup. </li><li>Edwards scored a vital 78 not out as the Dutc… [+3362 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "ET Online",
"title": "2 weeks after his divorce, cricketer Shikhar Dhawan bonds with son Zoravar in Australia over video call & Gulzar poem",
"description": "Indian cricketer Shikhar Dhawan shared a heartfelt moment on his Instagram account, expressing his love for his son, Zoravar, after his divorce from ex-wife Aesha Mukerji. The post captured a screenshot of a video call between Dhawan and his son, showcasing t…",
"url": "https://economictimes.indiatimes.com/magazines/panache/2-weeks-after-his-divorce-cricketer-shikhar-dhawan-bonds-with-son-zoravar-in-australia-over-video-call-gulzar-poem/articleshow/104515341.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104517661,width-1200,height-630,imgsize-11026,overlay-etpanache/photo.jpg",
"publishedAt": "2023-10-18T06:18:52Z",
"content": "In a heartfelt moment, Indian cricketer Shikhar Dhawan recently shared a glimpse of his emotional journey post-divorce on his Instagram account. The cricketer, who has been going through a challengin… [+2207 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Amit Karmarkar",
"title": "Pune's gift to World Cup: An upset that still resonates, 27 years on",
"description": "Pune will be hosting its first World Cup game since Kenya's upset victory against West Indies in 1996. The game, which took place on February 29, 1996, remains one of the biggest upsets in cricket history. Pune's Nehru stadium will again be hosting a World Cu…",
"url": "https://timesofindia.indiatimes.com/sports/cricket/icc-world-cup/news/punes-gift-to-world-cup-an-upset-that-still-resonates-27-years-on/articleshow/104517351.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104517285,width-1070,height-580,imgsize-65528,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T06:10:12Z",
"content": "World Cup: Netherlands stun South Africa"
},
{
"source": { "id": "abc-news-au", "name": "ABC News (AU)" },
"author": "ABC News",
"title": "Dutch-Australian inspires one of Cricket World Cup's greatest upsets",
"description": "A cricket player who grew up in Australia has become a national hero in The Netherlands after leading the team to a remarkable upset win at the ODI World Cup in India.",
"url": "https://www.abc.net.au/news/2023-10-18/dutch-australian-cricket-world-cups-greatest-upsets/102993468",
"urlToImage": "https://live-production.wcms.abc-cdn.net.au/e92a224b618cbf63eeecb6230f931774?impolicy=wcms_crop_resize&cropH=2408&cropW=4280&xPos=161&yPos=238&width=862&height=485",
"publishedAt": "2023-10-18T05:57:35Z",
"content": "Born in Tonga, raised in Melbourne and, now, an ODI World Cup hero for The Netherlands in India it's been quite the cricketing journey for Scott Edwards.\r\nThe 27-year-old captained the Oranje to a st… [+4246 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Manuja Veerappa",
"title": "Garden City roots for Pakistan ahead of Australia match",
"description": "Students from Jammu and Kashmir were among the first to queue up for tickets to watch Pakistan's World Cup match against Australia in Bengaluru. They were unable to purchase tickets online and saw this as their only opportunity to experience the World Cup. Th…",
"url": "https://timesofindia.indiatimes.com/sports/cricket/icc-world-cup/news/world-cup-garden-city-roots-for-pakistan-ahead-of-australia-match/articleshow/104516381.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104516723,width-1070,height-580,imgsize-171966,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T05:49:39Z",
"content": "World Cup: Netherlands stun South Africa"
},
{
"source": { "id": null, "name": "Sylhetmirror.com" },
"author": "Enamul Haque Renu",
"title": "NZ vs AFG head-to-head:team prediction, match preview",
"description": "New Zealand and India are the only teams who remain unbeaten after playing three matches in the World Cup and the former have a chance at taking the top spot at least temporarily when they face Afghanistan on Wednesday. The match will be played at the MA Chid…",
"url": "https://sylhetmirror.com/2023/10/18/nz-vs-afg-head-to-headteam-prediction-match-preview/",
"urlToImage": "https://sylhetmirror.com/files/uploads/2023/10/Uuytg.jpg",
"publishedAt": "2023-10-18T05:42:51Z",
"content": "New Zealand and India are the only teams who remain unbeaten after playing three matches in the World Cup and the former have a chance at taking the top spot at least temporarily when they face Afgha… [+2445 chars]"
},
{
"source": { "id": null, "name": "The Indian Express" },
"author": "Express News Service",
"title": "Pimpri Chinchwad cop who won Rs 1.5 crore on fantasy cricket platform suspended, to face departmental inquiry now",
"description": "The sub-inspector earned the money during the ongoing ICC Men's World Cup.",
"url": "https://indianexpress.com/article/cities/pune/pimpri-chinchwad-cop-fantasy-cricket-suspended-world-cup-8988402/",
"urlToImage": "https://images.indianexpress.com/2023/10/1600x900-12.jpg",
"publishedAt": "2023-10-18T05:32:26Z",
"content": "The sub-inspector from Pimpri Chinchwad police who had won Rs 1.5 crore on a fantasy cricket platform has been suspended from active duty following a preliminary inquiry ordered against him a week ag… [+1269 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Manuja Veerappa",
"title": "Pakistan team hit by fever in Bengaluru",
"description": "The Pakistan cricket team, after their defeat against India, finally hit the nets in Bengaluru. Some players had fallen ill upon arrival, resulting in the cancellation of practice. However, most of them have since recovered and are under observation by the te…",
"url": "https://timesofindia.indiatimes.com/sports/cricket/icc-world-cup/news/world-cup-pakistan-team-hit-by-fever-in-bengaluru/articleshow/104515704.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104515639,width-1070,height-580,imgsize-109786,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T05:25:52Z",
"content": "World Cup: Netherlands stun South Africa"
},
{
"source": { "id": null, "name": "AllAfrica - Top Africa News" },
"author": "newsdesk@scrolla.africa (Scrolla)",
"title": "Dutch Dominate Proteas in Dharamsala",
"description": "[Scrolla] It was a reality check for the high flyers, and another major upset for underdogs and neutrals to revel in, as South Africa was comprehensively beaten by the Netherlands on Tuesday at the ICC Cricket World Cup.",
"url": "https://allafrica.com/stories/202310180035.html",
"urlToImage": "https://cdn08.allafrica.com/static/images/structure/aa-logo-rgba-no-text-square.png",
"publishedAt": "2023-10-18T05:25:40Z",
"content": "It was a reality check for the high flyers, and another major upset for underdogs and neutrals to revel in, as South Africa was comprehensively beaten by the Netherlands on Tuesday at the ICC Cricket… [+1211 chars]"
},
{
"source": { "id": null, "name": "CNA" },
"author": null,
"title": "Dutch captain Edwards credits 'total cricket' for win over South Africa",
"description": "The Netherlands' belief in playing \"total cricket\" helped them secure their biggest victory at a World Cup when they beat high-flying South Africa by 38 runs on Tuesday, captain Scott Edwards said.\"Total football\" was a concept pioneered by Dutch coach Rinus …",
"url": "https://www.channelnewsasia.com/sport/dutch-captain-edwards-credits-total-cricket-win-over-south-africa-3854686",
"urlToImage": "https://onecms-res.cloudinary.com/image/upload/s--Es51XgHc--/fl_relative,g_south_east,l_one-cms:core:watermark:reuters,w_0.1/f_auto,q_auto/c_fill,g_auto,h_676,w_1200/v1/one-cms/core/2023-10-18t051320z_1_lynxmpej9h06i_rtroptp_3_cricket-odi-zaf-nld.jpg?itok=glqd5B-k",
"publishedAt": "2023-10-18T05:13:20Z",
"content": "The Netherlands' belief in playing \"total cricket\" helped them secure their biggest victory at a World Cup when they beat high-flying South Africa by 38 runs on Tuesday, captain Scott Edwards said.\r\n… [+1779 chars]"
},
{
"source": { "id": null, "name": "SB Nation" },
"author": "Kelvin Beattie",
"title": "On This Day (October 18th 1952): Sunderland beat Boro without star striker Trevor Ford!",
"description": "A rare hard-fought victory over Middlesborough on their patch minus five of our regulars - including hotshot Trevor Ford - gave rise to much optimism that we really were title contenders once again. Was this going to be our year?",
"url": "https://rokerreport.sbnation.com/2023/10/18/23920741/on-this-day-october-18th-1952-sunderland-beat-boro-without-star-striker-trevor-ford",
"urlToImage": "https://cdn.vox-cdn.com/thumbor/hw243658e16hA2MZNa9igyq3Y2Y=/0x73:3825x2076/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25009085/637420216.jpg",
"publishedAt": "2023-10-18T05:00:00Z",
"content": "Billy Bingham | Photo by Barratts/PA Images via Getty Images\r\n\n \n\n\n A rare hard-fought victory over Middlesborough on their patch minus five of our regulars - including hotshot Trevor Ford - gave ris… [+6693 chars]"
},
{
"source": { "id": "espn-cric-info", "name": "ESPN Cric Info" },
"author": "ESPNcricinfo staff",
"title": "Nati dance and a trek in Dharamsala",
"description": "Netherlands' World Cup fun",
"url": "https://www.espncricinfo.com/story/the-buzz-nati-dance-and-a-trek-in-dharamsala-1403914",
"urlToImage": "https://img1.hscicdn.com/image/upload/f_auto/lsci/db/PICTURES/CMS/369300/369305.6.jpg",
"publishedAt": "2023-10-18T04:57:10Z",
"content": "Needless to say, the boys absolutely loved joining in the traditional Nati dance during our welcome in Dharamsala.\r\nSo much to experience in India. One host venue at a time. pic.twitter.com/cKJ0pLQda… [+55 chars]"
},
{
"source": { "id": null, "name": "Business Today" },
"author": "Business Today Desk",
"title": "'Who asked Rizwan to perform Namaz in playground': Former Pak spinner slams PCB over complaint to ICC about Ahmedabad crowd",
"description": "Former Pakistan leg-spinner Danish Kaneria has slammed the Pakistan Cricket Board (PCB), who recently complained to the International Cricket Council (ICC) alleging inappropriate behaviour from the Ahmedabad crowd towards Pakistan players during the World Cup…",
"url": "https://www.businesstoday.in/latest/trends/story/who-asked-rizwan-to-perform-namaz-in-playground-former-pak-spinner-slams-pcb-over-complaint-to-icc-about-ahmedabad-crowd-402388-2023-10-18",
"urlToImage": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202310/ezgif-sixteen_nine_255.jpg",
"publishedAt": "2023-10-18T04:54:30Z",
"content": "Former Pakistan leg-spinner Danish Kaneria has slammed the Pakistan Cricket Board (PCB), who recently complained to the International Cricket Council (ICC) alleging inappropriate behaviour from the A… [+3234 chars]"
},
{
"source": { "id": null, "name": "Business Today" },
"author": "Business Today Desk",
"title": "This cricketer went from Uber Eats delivery boy to Cricket World Cup 2023 star",
"description": "Paul van Meekeren made a significant impact by taking two crucial wickets, Aiden Markram and Marco Jansen, which dealt severe blows to South Africa's pursuit of the 245-run target.",
"url": "https://www.businesstoday.in/latest/trends/story/this-cricketer-went-from-uber-eats-delivery-boy-to-cricket-world-cup-2023-star-402384-2023-10-18",
"urlToImage": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202310/paul-van-meekeren-appeals-for-a-wicket-during-the-icc-men-s-t20-world-cup-match-between-zimbabwe-and-netherlands-1920x1080-sixteen_nine.png",
"publishedAt": "2023-10-18T04:52:43Z",
"content": "The Netherlands pulled off a remarkable upset in the ICC Cricket World Cup 2023 by defeating the previously unbeaten South African team, marking their first victory of the tournament. They successful… [+2429 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "ET Online",
"title": "More delay in India-UK FTA, India 'struggling to differentiate between what it needs & wants'",
"description": "The free trade agreement between India and the United Kingdom is facing further delays due to disagreements, particularly regarding trade in goods and services. India is struggling to differentiate between its wants and needs in the negotiations. The two coun…",
"url": "https://economictimes.indiatimes.com/news/economy/foreign-trade/more-delay-in-india-uk-fta-india-struggling-to-differentiate-between-what-it-needs-wants/articleshow/104514474.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104514728,width-1200,height-630,imgsize-2294211,overlay-economictimes/photo.jpg",
"publishedAt": "2023-10-18T04:50:43Z",
"content": "The much anticipated free trade agreement between India and the United Kingdom is likely to be delayed yet again owing to certain differences between the two countries, especially on the question of … [+2799 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Nikunj Dalmia",
"title": "Golden decade of airlines is coming, I see a lot of profitability for next 10 years: Akasa Air CEO",
"description": "“Before the end of the year, now there may be 75 days left, we will be placing a three-digit aircraft order and we have got the cash on hand to place a three-digit aircraft order. So, absolutely, we should be able to see through 2032 here very shortly with th…",
"url": "https://economictimes.indiatimes.com/markets/expert-view/golden-decade-of-airlines-is-coming-i-see-a-lot-of-profitability-for-next-10-years-akasa-air-ceo/articleshow/104514447.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104514578,width-1200,height-630,imgsize-15460,overlay-etmarkets/photo.jpg",
"publishedAt": "2023-10-18T04:47:29Z",
"content": "Vinay Dube, CEO, Akasa Air, says today India has got a very attractive set of prices. If you look at what a ticket costs in India for a thousand kilometre journey and you compare it to what a ticket … [+22781 chars]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": null, "name": "COMPUTER BILD" },
"author": "Rainer Schuldt",
"title": "Microsoft-CEO Satya Nadella mit Axel Springer Award geehrt",
"description": "Auszeichnung für Satya Nadella: Der CEO von Microsoft erhielt für seine Leistungen den Axel Springer Award in Berlin verliehen.",
"url": "https://www.computerbild.de/artikel/cb-News-Internet-Satya-Nadella-mit-Axel-Springer-Award-geehrt-36968301.html",
"urlToImage": "https://i.computer-bild.de/imgs/1/5/0/7/4/3/5/5/asa.jpeg-868442c46840d540.jpg",
"publishedAt": "2023-10-18T04:40:00Z",
"content": "Auszeichnung für Satya Nadella: Der CEO von Microsoft erhielt für seine Leistungen den Axel Springer Award in Berlin verliehen.\r\nDie erste KI-Laudatio, die je bei einem Axel Springer Award gehalten w… [+1997 chars]"
},
{
"source": { "id": null, "name": "The Japan Times" },
"author": "John Gunning",
"title": "Sumo's Olympic dream requires fresh approach",
"description": "A new variant of the sport wouldn't replace the professional or amateur versions, but would instead create a new path to participation and fandom.",
"url": "https://www.japantimes.co.jp/sports/2023/10/18/sumo/sumo-olympic-dream-fresh-approach/",
"urlToImage": "https://www.japantimes.co.jp/japantimes/uploads/images/2023/10/18/258136.jpg",
"publishedAt": "2023-10-18T04:21:00Z",
"content": "The International Olympic Committee this week announced the addition of five new sports to the program for the 2028 Los Angeles Games.\r\nBaseball and softball will continue their run of being in-again… [+176 chars]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "PTI",
"title": "Revolt Motors looks to ramp up sales infra, roll out new products",
"description": "The company, which was acquired by RattanIndia Enterprises earlier this year, also plans to enter international markets.",
"url": "https://www.moneycontrol.com/news/business/revolt-motors-looks-to-ramp-up-sales-infra-roll-out-new-products-11552241.html",
"urlToImage": "https://images.moneycontrol.com/static-mcnews/2023/01/revolt-noida-164412839616x9-770x433.png",
"publishedAt": "2023-10-18T04:09:55Z",
"content": "Electric bike maker Revolt Motors is looking to scale up sales infrastructure, roll out new products as part of its growth plans over the next few years, a top company official said.\r\nThe company, wh… [+2245 chars]"
},
{
"source": { "id": null, "name": "Aajtak.in" },
"author": "कृष्ण कुमार",
"title": "साउथ अफ्रीका के दुश्मन बने 'अपने', नीदरलैंड्स के 3 खिलाड़ियों ने किया पुराने देश का बेड़ा गर्क",
"description": "SA vs NED World Cup 2023 Highlights: वर्ल्ड कप 2023 के मैच नंबर 15 में 17 अक्टूबर को एक और बड़ा उलटफेर देखने को मिला. इस मैच में नीदरलैंड्स ने टूर्नामेंट में अब तक अजेय चल रही दक्षिण अफ्रीकी टीम 38 रनों से पटखनी दी. मैच में नीदरलैंड्स की टीम में शामिल 3 खिल…",
"url": "https://www.aajtak.in/sports/cricket/story/south-africa-vs-netherlands-world-cup-2023-match-15-live-cricket-highlights-south-african-players-in-netherlands-cricket-team-roelof-van-der-merwe-sybrand-engelbrecht-sybrand-engelbrecht-tspo-1801419-2023-10-18",
"urlToImage": "https://akm-img-a-in.tosshub.com/aajtak/images/story/202310/roelof_van_der_merwe_south_africa_vs_netherlands-sixteen_nine.jpg",
"publishedAt": "2023-10-18T03:40:46Z",
"content": "South african players in Netherlands World cup 2023 cricket team: , 17 . , . '' - . . . \r\n . . . \r\n , . , . 32 (21 , 1 , 10 ) . 112/6 (27 ) . 245/8 (43 ) . 207 . \r\n, , . . . \r\n 2023 \r\n , () \r… [+699 chars]"
},
{
"source": { "id": null, "name": "Business Today" },
"author": "Business Today Desk",
"title": "New Zealand vs Afghanistan World Cup 2023: When and where to watch, venue, squads, key players, weather forecast and pitch report",
"description": "New Zealand vs Afghanistan 2023 update: The match comes days after Afghanistan emerged victorious against England in Delhi.",
"url": "https://www.businesstoday.in/latest/trends/story/new-zealand-vs-afghanistan-world-cup-2023-when-and-where-to-watch-venue-squads-key-players-weather-forecast-and-pitch-report-402375-2023-10-18",
"urlToImage": "https://akm-img-a-in.tosshub.com/businesstoday/images/story/202310/ezgif-sixteen_nine_254.jpg",
"publishedAt": "2023-10-18T03:35:47Z",
"content": "New Zealand vs Afghanistan World Cup update: The nail-biting match between New Zealand vs Afghanistan (NZ vs AFG) is all set to take place on October 18 at the MA Chidambaram Stadium in Chennai. The … [+4256 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "K Kumaraswamy",
"title": "World Cup: 'A Virat Kohli century is around the corner'",
"description": "Surendra Bhave, a former national selector, believes that the Gahunje Stadium in Pune will see a dominating performance by the Indian cricket team in their upcoming match against Bangladesh. Bhave praised the mental aptitude of players like Virat Kohli and em…",
"url": "https://timesofindia.indiatimes.com/sports/cricket/icc-world-cup/news/world-cup-india-vs-bangladesh-a-virat-kohli-century-is-around-the-corner/articleshow/104513058.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104513012,width-1070,height-580,imgsize-43238,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T03:33:58Z",
"content": "Will Virat Kohli fire on all cylinders in 2023 World Cup?"
},
{
"source": { "id": null, "name": "kicker" },
"author": "kicker",
"title": "NFL will Stars die Olympia-Teilnahme im Flag Football ermöglichen",
"description": "2028 bei den Olympischen Spielen in Los Angeles ist Flag Football erstmals im Programm. Die NFL hat zuletzt nicht nur Lobbyarbeit betrieben, sondern will jetzt den Stars auch eine Teilnahme ermöglichen.",
"url": "https://www.kicker.de/nfl-will-stars-die-olympia-teilnahme-im-flag-football-ermoeglichen-974154/artikel",
"urlToImage": "https://derivates.kicker.de/image/upload/c_crop,x_0,y_201,w_3456,h_1944/w_1200,q_auto/v1/2023/10/18/04976154-11ca-4121-b218-2116b07e7dc8.jpeg",
"publishedAt": "2023-10-18T03:20:00Z",
"content": "2028 bei den Olympischen Spielen in Los Angeles ist Flag Football erstmals im Programm. Die NFL hat zuletzt nicht nur Lobbyarbeit betrieben, sondern will jetzt den Stars auch eine Teilnahme ermöglich… [+1993 chars]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "Hindi.Moneycontrol.com Team, Moneycontrol Hindi",
"title": "ICC Cricket World Cup 2023 Points Table: क्या छिन जाएगा टीम इंडिया के सिर से नंबर 1 का ताज, न्यूजीलैंड के मुकाबले के बाद बदलेगा प्वाइंट्स टेबल का हाल",
"description": "इस वर्ल्ड कप में कुल 48 मैच खेले जाएंगे। 5 अक्टूबर से शुरू हुए इस जीत के अभियान में आज 16वां मैच होने जा रहा है। 5 अक्टूबर को इंग्लैंड बनाम न्यूजीलैंड से इस वर्ल्ड कप की शुरुआत हुई। तब से लेकर अब तक न्यूजीलैंड और भारत में नंबर वन पर रहने के लिए रस्साकसी जारी…",
"url": "https://hindi.moneycontrol.com/news/india/cricket/icc-cricket-world-cup-2023-points-table-team-standings-top-rankings-latest-updates-on-18-october-1552731.html",
"urlToImage": "https://images.moneycontrol.com/static-hindinews/2023/10/pointstableODI-1-725x435.jpg",
"publishedAt": "2023-10-18T03:12:19Z",
"content": "6 , 7 , 8 , 9 , 10 11 , 12 , 13 , 14 , 15 , 16 17 -"
},
{
"source": { "id": null, "name": "Khabarhub.com" },
"author": "Khabarhub",
"title": "Triangular Series: Nepal set to face UAE",
"description": "KATHMANDU: Nepal is gearing up to clash with the United Arab Emirates (UAE) today, Wednesday, in the inaugural game of the triangular series, also featuring Hong Kong. The match, scheduled to commence at 1 p.m., will take place at the Mulpani Cricket Ground. …",
"url": "https://english.khabarhub.com/2023/18/322719/",
"urlToImage": "https://english.khabarhub.com/wp-content/uploads/2023/09/Nepali-Cricketers-preparing-for-Asian-Games.jpg",
"publishedAt": "2023-10-18T03:00:05Z",
"content": "KATHMANDU: Nepal is gearing up to clash with the United Arab Emirates (UAE) today, Wednesday, in the inaugural game of the triangular series, also featuring Hong Kong.\r\nThe match, scheduled to commen… [+911 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "TNN",
"title": "MCA ease past DPCG, in last 16",
"description": "MUMBAI: Mumbai Cricket Association (MCA), Bandra started in positive fashion recording a comfortable 3-0 win against Dadar Parsee Colony Gymkhana (DPC.",
"url": "https://timesofindia.indiatimes.com/city/mumbai/mca-ease-past-dpcg-in-last-16/articleshow/104511735.cms",
"urlToImage": "https://static.toiimg.com/thumb/msid-104521169,width-1070,height-580,imgsize-620752,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg",
"publishedAt": "2023-10-18T02:40:48Z",
"content": "Simple tips to raise polite and soft-spoken children"
},
{
"source": { "id": null, "name": "The Japan Times" },
"author": "Amy Tennery",
"title": "NFL wants to clear a path to Olympics for players",
"description": "The Super Bowl may be the National Football League's ultimate prize, but the NFL said on Tuesday it wants to see their players on the Olympic stage going for gold after flag football was added to the program for the Los Angeles 2028 Games.",
"url": "https://www.japantimes.co.jp/sports/2023/10/18/more-sports/nfl-olympic-path-players/",
"urlToImage": "https://www.japantimes.co.jp/japantimes/uploads/images/2023/10/18/258049.jpg",
"publishedAt": "2023-10-18T02:34:00Z",
"content": "New York The Super Bowl may be the National Football League's ultimate prize, but the NFL said on Tuesday it wants to see their players on the Olympic stage going for gold after flag football was add… [+385 chars]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "Hindi.Moneycontrol.com Team, Moneycontrol Hindi",
"title": "Cricket World Cup 2023 NZ vs AFG: क्या कीवियों के विजय रथ को रोक पाएंगे अफगानी प्लेयर, जानिए क्या कहते हैं आंकड़े",
"description": "ICC World Cup 2023 का आगाज 5 अक्टूबर को अहमदाबाद स्टेडियम में इंग्लैंड बनाम न्यूजीलैंड की भिड़ंत से शुरू हुआ। इस क्रिकेट के महाकुंभ में 46 दिनों में 48 मैच होंगे। 10 टीमें 10 क्रिकेट ग्राउंड्स में वर्ल्ड कप की ट्रॉफी को अपने नाम करने की कोशिश करेंगी। पहली बार…",
"url": "https://hindi.moneycontrol.com/news/india/cricket/icc-cricket-world-cup-2023-new-zealand-vs-afghanistan-match-timings-playing-11-team-squad-1552611.html",
"urlToImage": "https://images.moneycontrol.com/static-hindinews/2023/10/nzafg-725x435.jpg",
"publishedAt": "2023-10-18T02:26:53Z",
"content": ": , , , (), , , , , , --,"
},
{
"source": { "id": null, "name": "Thehillstimes.in" },
"author": "The Hills Times",
"title": "Gurbaz reprimanded for breaching ICC’s Code of Conduct",
"description": "New Delhi, Oct 17 (PTI) Afghanistan batter Rahmanullah Gurbaz has been handed an official reprimand for breaching level 1 of the ICC Code of Conduct during their epic World Cup match against England. Gurbaz was found to have breached Article 2.2 of the ICC Co…",
"url": "https://thehillstimes.in/sports/gurbaz-reprimanded-for-breaching-iccs-code-of-conduct",
"urlToImage": null,
"publishedAt": "2023-10-18T01:35:30Z",
"content": "New Delhi, Oct 17 (PTI) Afghanistan batter Rahmanullah Gurbaz has been handed an official reprimand for breaching level 1 of the ICC Code of Conduct during their epic World Cup match against England.… [+1108 chars]"
},
{
"source": { "id": null, "name": "Standaard.be" },
"author": "Ruben Mooijman",
"title": "Cricket wordt een nieuwe olympische goudmijn",
"description": "Na 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erkent ook een geopolitieke realiteit.",
"url": "https://www.standaard.be/cnt/dmf20231017_95752187",
"urlToImage": "https://static.standaard.be/Assets/Images_Upload/2023/10/17/74dc3eab-cde2-4f7a-8334-035db92af91f.jpg?maxheight=416&maxwidth=568",
"publishedAt": "2023-10-18T01:00:00Z",
"content": "Sport \r\nNa 128 jaar keert cricket terug op de Olympische Spelen. Die beslissing moet in Los Angeles 2028 niet alleen extra dollars in het laatje brengen, maar het Internationaal Olympisch Comité erke… [+33 chars]"
},
{
"source": { "id": "bild", "name": "Bild" },
"author": "Patricia Platiel und Hans-Jörg Vehlewald",
"title": "Axel Springer Award - Cricket, Hightech und viel Glamour",
"description": "Microsoft-Chef und Cricket-Fan Satya Nadella erhielt eine berührende Überraschung!Foto: NIELS STARNICK / BILD",
"url": "https://www.bild.de/geld/wirtschaft/wirtschaft/axel-springer-award-cricket-hightech-und-viel-glamour-85781610.bild.html",
"urlToImage": "https://images.bild.de/652ee2b840217b49cb4520f4/48e4814704e98870a30051eb36a15b59,255058cc?w=1280",
"publishedAt": "2023-10-17T23:01:33Z",
"content": "Ganz große Bühne und eine berührende Überraschung für Microsoft-Chef und Cricket-Fan Satya Nadella (56)!\r\nDer in Indien geborene Konzern-Chef (220 000 Mitarbeiter, Umsatz: 200 Milliarden Dollar) wurd… [+2077 chars]"
},
{
"source": { "id": null, "name": "New Zealand Herald" },
"author": null,
"title": "New Zealand v Afghanistan prediction, Cricket World Cup 2023, where to watch, squads",
"description": "The Black Caps look to make it four from four in India.",
"url": "https://www.nzherald.co.nz/sport/new-zealand-v-afghanistan-prediction-cricket-world-cup-2023-where-to-watch-squads/WP3NMVP4ABEFDGUU7KCJ7CQUTU/",
"urlToImage": "https://www.nzherald.co.nz/resizer/H1XEk22Jyps56BQuxx7g54Q3RQc=/1200x675/smart/filters:quality(70)/cloudfront-ap-southeast-2.images.arcpublishing.com/nzme/ZPQEX4EKQJHCFKV7B4ZRALFRQQ.jpg",
"publishedAt": "2023-10-17T22:58:16Z",
"content": "After upsetting England, Afghanistan now switch focus to the other finalist from the 2019 Cricket World Cup, the unbeaten Black Caps.\r\nNew Zealand have had a strong start to the tournament with big w… [+1739 chars]"
},
{
"source": { "id": "fox-sports", "name": "Fox Sports" },
"author": null,
"title": "Phillies star Bryce Harper wants to play in 2028 LA Olympics",
"description": "Philadelphia Phillies slugger Bryce Harper said it would be a dream to play for Team USA when baseball returns for the 2028 Los Angeles Games.",
"url": "https://www.foxsports.com/stories/mlb/bryce-harper-of-the-phillies-wants-to-play-in-the-2028-la-olympics",
"urlToImage": "https://a57.foxsports.com/statics.foxsports.com/www.foxsports.com/content/uploads/2023/10/1408/814/38856d4b-Harper.jpg?ve=1&tl=1",
"publishedAt": "2023-10-17T22:54:48Z",
"content": "Bryce Harper wants to take a swing at the Olympics.\r\nThe Philadelphia Phillies slugger said it would be a dream to play for Team USA when baseball returns for the 2028 Los Angeles Games. Harper, who … [+2993 chars]"
},
{
"source": { "id": "abc-news-au", "name": "ABC News (AU)" },
"author": "ABC News",
"title": "Aussie cricketers give financial support to netballers amid bitter pay dispute",
"description": "Australia's netballers are promised financial support from the nation's cricketers, amid an ugly pay dispute with Netball Australia.",
"url": "https://www.abc.net.au/news/2023-10-18/aussie-cricketers-give-financial-support-netballers-pay-dispute/102990072",
"urlToImage": "https://live-production.wcms.abc-cdn.net.au/603b39e32fa7ce9a42f057ad0fce495f?impolicy=wcms_crop_resize&cropH=2813&cropW=5000&xPos=0&yPos=3&width=862&height=485",
"publishedAt": "2023-10-17T22:28:42Z",
"content": "Australia's cricketers have thrown their weight behind the country's netballers amid a bitter pay dispute with Netball Australia, creating an unprecedented financial fund to help support the players.… [+2780 chars]"
},
{
"source": { "id": "abc-news-au", "name": "ABC News (AU)" },
"author": "ABC News",
"title": "Netherlands stuns South Africa in Dharamsala for famous win at Cricket World Cup",
"description": "The form book goes out the window again at the Cricket World Cup, as the Netherlands holds its nerve to beat group leaders South Africa in a rain-shortened game in Dharamsala.",
"url": "https://www.abc.net.au/news/2023-10-18/netherlands-stuns-south-africa-at-cricket-world-cup/102989790",
"urlToImage": "https://live-production.wcms.abc-cdn.net.au/828f43230147774d173486d4dbab5e14?impolicy=wcms_crop_resize&cropH=2239&cropW=3981&xPos=0&yPos=120&width=862&height=485",
"publishedAt": "2023-10-17T21:42:37Z",
"content": "The Netherlands has caused a stunning upset by beating South Africa by 38 runs in a rain-shortened match to inflict a first defeat on the Proteas in the Cricket World Cup in Dharamsala. \r\nBeaten in t… [+2632 chars]"
},
{
"source": { "id": null, "name": "New York Post" },
"author": "Action Network",
"title": "ESPN BET Ohio Promo Code: Potential $1K Welcome Bonus | October 2023",
"description": "When ESPN BET Ohio finally launches, we're expecting great things, including a potential $1,000 welcome offer: here's what you need to know!",
"url": "https://nypost.com/article/espn-bet-ohio-promo-code/",
"urlToImage": "https://nypost.com/wp-content/uploads/sites/2/2023/09/ESPN-Microphone-pic.jpg?quality=75&strip=all&w=1024",
"publishedAt": "2023-10-17T21:00:00Z",
"content": "Commercial content, 21+ \r\nSports betting in Ohio has flourished since the state’s online launch on January 1, 2023. Nearly one year later, sports bettors in Ohio are about to have another sports bett… [+14432 chars]"
},
{
"source": { "id": null, "name": "Thehillstimes.in" },
"author": "The Hills Times",
"title": "Any act of terrorism regardless of motivation unjustifiable: NSA Doval",
"description": "NEW DELHI, Oct 17: Terrorism continues to constitute one of the most serious threats to international peace and regardless of its motivation or cause, the menace is “unjustifiable”, NSA Ajit Doval said on Tuesday. In an address at a conclave of NSAs of India …",
"url": "https://thehillstimes.in/national/any-act-of-terrorism-regardless-of-motivation-unjustifiable-nsa-doval",
"urlToImage": null,
"publishedAt": "2023-10-17T20:45:30Z",
"content": "NEW DELHI, Oct 17: Terrorism continues to constitute one of the most serious threats tointernational peace and regardless of its motivation or cause, the menace is unjustifiable, NSA AjitDoval said o… [+2855 chars]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": null,
"title": "'Iconic' Netherlands shock will 'make the front page'",
"description": "The Netherlands' shock World Cup victory over South Africa will \"make the front page\" and is \"iconic and memorable\".",
"url": "https://www.bbc.co.uk/sport/cricket/67140802",
"urlToImage": "https://ichef.bbci.co.uk/live-experience/cps/624/cpsprodpb/9A47/production/_131459493_gettyimages-1741142495.jpg",
"publishedAt": "2023-10-17T19:46:55Z",
"content": "Under dark skies, the famous Himalayan backdrop barely visible, the Dharamsala outfield became a sea of orange in the midst of Dutch joy. \r\nIt was a famous 38-run victory over World Cup contenders So… [+3711 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "ANI",
"title": "PCB lodges formal protest with ICC over delay in journalists' visas for CWC 2023",
"description": "The Pakistan Cricket Board (PCB) has filed a formal complaint with the International Cricket Council (ICC) regarding delays in visas for Pakistani journalists and the absence of a visa policy for Pakistani fans during the ongoing World Cup. The PCB has also l…",
"url": "https://economictimes.indiatimes.com/news/sports/pcb-lodges-formal-protest-with-icc-over-delay-in-journalists-visas-for-cwc-2023/articleshow/104507321.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-104507323,width-1200,height-630,imgsize-7212,overlay-economictimes/photo.jpg",
"publishedAt": "2023-10-17T19:18:04Z",
"content": "HDFC Bank Q2 Profit Beats Estimates, up at 15,976crHDFC Banks net profit in the September quarter, the first since its merger with its mortgage-lending parent, Monday beat estimates on a surge in tre… [+750 chars]"
},
{
"source": { "id": "cbc-news", "name": "CBC News" },
"author": null,
"title": "These Windsorites are excited for their sports to be showcased at future Olympics",
"description": "Lacrosse and squash players, and a cricket coach all from Windsor weigh in on the Olympic committee's decision to add five new sports to the summer program.",
"url": "https://www.cbc.ca/news/canada/windsor/windsor-sports-reaction-olympics-1.6999045",
"urlToImage": "https://i.cbc.ca/1.6999053.1697568320!/fileImage/httpImage/image.jpg_gen/derivatives/16x9_620/windsor-athletes-react-to-olympic-news.jpg",
"publishedAt": "2023-10-17T19:04:06Z",
"content": "Sarah Khan says she has her eyes squarely set on the 2028 Olympics now that squash has been added to the program of events.\r\nThe 21-year-old from Windsor plays professionally and is currently ranked … [+4915 chars]"
},
{
"source": { "id": null, "name": "Www.nrc.nl" },
"author": "NRC",
"title": "Nederlandse cricketers zorgen voor stunt op WK met zege op Zuid-Afrika",
"description": "WK cricket: Zuid-Afrika geldt al jaren als een van de beste cricketlanden ter wereld. Dat outsider Nederland er nu met de overwinning vandoor gaat, hadden weinig analisten durven voorspellen.",
"url": "https://www.nrc.nl/nieuws/2023/10/17/nederlandse-cricketers-zorgen-voor-stunt-op-wk-met-zege-op-zuid-afrika-a4177607",
"urlToImage": "https://images.nrc.nl/fTl1F8v3-acJ_iEt2SOUedcXFoM=/1200x627/smart/filters:no_upscale()/s3/static.nrc.nl/wp-content/uploads/2023/10/web-1710spocricket.jpg",
"publishedAt": "2023-10-17T18:49:24Z",
"content": "De Nederlandse cricketers hebben dinsdag voor een stunt gezorgd door op het WK in India te winnen van Zuid-Afrika. De ploeg van bondscoach Ryan Cook won in Dharamsala met 38 runs verschil van de numm… [+1113 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "PTI",
"title": "Netherlands cause another big World Cup upset, stun South Africa by 38 runs",
"description": "Put in to bat in challenging conditions after the rain reduced the contest to 43 over a side, the Netherlands found themselves reeling at 140 for seven before their captain Scott Edwards staged a remarkable recovery with an unbeaten 78 off 69 balls to take hi…",
"url": "https://economictimes.indiatimes.com/news/sports/netherlands-cause-another-big-world-cup-upset-stun-south-africa-by-38-runs/articleshow/104506970.cms",