-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews_posts.json
8072 lines (8072 loc) · 851 KB
/
news_posts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "1",
"title": "Who will benefit from our oil?",
"description": "From the publishers desk In July 2019, Kaieteur News conducted an extensive review of 130 oil contracts to better understand the extent to which the Guyana-ExxonMobil deal is fraught with unfair provisions. The findings were alarming. On a daily basis, Kaieteur News will expose these alarming provisions. Today, we start with the provision that speaks ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/who-will-benefit-from-our-oil/",
"image": null,
"published": "2020-09-14 20:11:19.210464",
"code": "gy"
},
{
"id": "2",
"title": "ExxonMobil says it put Payara FPSO on hold",
"description": "ExxonMobil now claims that it has put on hold, the Payara project Floating Production, Storage, and Offloading (FPSO) vessel, called Prosperity. Work had recently started on the construction of the vessel, despite the fact that the Guyana government has not greenlit the project. In its recent press statement announcing the Redtail-1 discovery, Exxon noted, of ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/exxonmobil-says-it-put-payara-fpso-on-hold/",
"image": null,
"published": "2020-09-14 20:11:19.230743",
"code": "gy"
},
{
"id": "3",
"title": "ExxonMobil slapped with another lawsuit for climate change deception",
"description": "By Kiana Wilburg The City of Charleston, South Carolina (SC), has slapped ExxonMobil and 23 other fossil fuel giants for their deception on climate change, the contributions of their operations to this global phenomenon, and the inherent costs to now deal with the consequences of increasing floods and rising temperatures in that American city. Other ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/exxonmobil-slapped-with-another-lawsuit-for-climate-change-deception/",
"image": null,
"published": "2020-09-14 20:11:19.331436",
"code": "gy"
},
{
"id": "4",
"title": "Murdered Berbice teens laid to rest",
"description": "The murdered Berbice teens Joel, 19, and Isaiah Henry, 16, were yesterday laid to rest in a memorable, grand and primarily peaceful manner. A little over a week ago Guyana was rocked by the news that the butchered bodies of the teenagers were found dumped in clumps of bushes next to a coconut Estate in ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/murdered-berbice-teens-laid-to-rest/",
"image": null,
"published": "2020-09-14 20:11:19.349145",
"code": "gy"
},
{
"id": "5",
"title": "Attorney for five persons that were arrested and released says police on fishing expedition",
"description": "Brutal slaying of the Henry boys While, the Guyana Police Force has gone silent on the status of the investigation into the brutal slaying of 16-year-old Isaiah Henry and his cousin 18-year-old Joel Henry of No. 3 Village, West Coast Berbice, a lawyer for some of the persons arrested has accused the police of going ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/attorney-for-five-persons-that-were-arrested-and-released-says-police-on-fishing-expedition/",
"image": null,
"published": "2020-09-14 20:11:19.366568",
"code": "gy"
},
{
"id": "6",
"title": "Bandit shoots man in retaliation after stumbling over fan",
"description": "A bandit yesterday startled a family of four in their bedroom and shot the husband before escaping with cash and valuables. Wounded is Hardeo Seeram, 35, of Golden Grove, East Bank Demerara. The robbery and shooting incident took place at around 02:00Hrs at the familys home. According to Hardeos wife, she, their two daughters, ages ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/bandit-shoots-man-in-retaliation-after-stumbling-over-fan/",
"image": null,
"published": "2020-09-14 20:11:19.492648",
"code": "gy"
},
{
"id": "7",
"title": "Housing Ministry to reintroduce Turnkey home project",
"description": "The Ministry of Housing and Water will embark on reintroducing the Turnkey Home Project that will see low-income families benefiting significantly. This was announced by the Minister within the Ministry, Susan Rodrigues on the NCN programme Budget 2020. The Minister also announced that with reintroducing the project, the beneficiaries will now be able to choose ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/housing-ministry-to-reintroduce-turnkey-home-project/",
"image": null,
"published": "2020-09-14 20:11:19.533636",
"code": "gy"
},
{
"id": "8",
"title": "Boat crash leaves miner dead, passenger injured",
"description": "A boat crash on Saturday last has left a miner dead and another passenger seriously injured. Dead is Kary Henry, 39, of Jawalla Village Upper Mazaruni, Region Seven. The incident took place at around 23:00Hrs in the Mazaruni River at Bush Cow Landing. According to police reports, Henry and the other man were heading from ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/boat-crash-leaves-miner-dead-passenger-injured/",
"image": null,
"published": "2020-09-14 20:11:19.551289",
"code": "gy"
},
{
"id": "9",
"title": "Ministry of Health releases guidelines for disposing bodies",
"description": "Guyana gets 56th COVID-19 death The Ministry of Health (MOH) has recorded the countrys 56th COVID -19 fatality. The latest death is an 83 -year-old woman from Region 4 (Demerara-Mahaica) who died while receiving care at a medical facility. The test sample was collected from the deceased at the time of admission and tested positive ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/ministry-of-health-releases-guidelines-for-disposing-bodies/",
"image": null,
"published": "2020-09-14 20:11:19.586108",
"code": "gy"
},
{
"id": "10",
"title": "Four arrested for Bath businessmans murder",
"description": "Sources close to the investigations of the murder of Experiment, Bath Settlement West Coast Berbice businessman, Mohomed Raymond Haniff disclosed that four persons were arrested in connection with his murder. Haniff was chopped to his head and neck Saturday night after three masked men invaded his premises. Currently the wife of Haniff and four suspects ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/four-arrested-for-bath-businessmans-murder/",
"image": null,
"published": "2020-09-14 20:11:19.644183",
"code": "gy"
},
{
"id": "11",
"title": "Tailor shot in the foot during suspected armed robbery",
"description": "A tailor from Onderneeming Sandpit on the Essequibo Coast was shot in the foot Saturday night during an attempted armed robbery. Based on information reaching Kaieteur News, the 39-year-old man, Narindra Persaud, was on his veranda with his wife at the time of the robbery. The man said that sometime around 19:45 hrs two masked ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/tailor-shot-in-the-foot-during-suspected-armed-robbery/",
"image": null,
"published": "2020-09-14 20:11:19.669839",
"code": "gy"
},
{
"id": "12",
"title": "Stagnant infrastructural projects to be completed with speed and diligence Edghill",
"description": "With $34.4 billion budgeted for the Public Works Ministry for 2020, the new Peoples Progressive Party Civic (PPP/C) administration plans to complete a number of transformational projects that were left stagnant by the previous A Partnership For National Unity + Alliance For Change (APNU+AFC) government. Public Works Minister, Juan Edghill during his 2020 budget speech ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/stagnant-infrastructural-projects-to-be-completed-with-speed-and-diligence-edghill/",
"image": null,
"published": "2020-09-14 20:11:19.734268",
"code": "gy"
},
{
"id": "13",
"title": "De country getting sell out",
"description": "We leaders selling out we country, piece by piece. And when you stand up and talk about it, you getting lawsuit. Wan day we gan wake up and de Canadians gan own all we gold fields; de Chinese gan be controlling all we forests, de Russians gan be in charge of we bauxite and de ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/de-country-getting-sell-out/",
"image": null,
"published": "2020-09-14 20:11:19.860901",
"code": "gy"
},
{
"id": "14",
"title": "Stray bullet grazes mans head at barbecue",
"description": "A graphic designer last night had his head grazed by a stray bullet while in attendance at a private barbecue at Meadow Bank Gardens, Georgetown. The graphic designer was identified as David Grant, 27 of Aubrey Barker Road, South Ruimveldt and an employee Banks DIH Limited. It is unclear as to what really transpired; however ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/stray-bullet-grazes-mans-head-at-barbecue/",
"image": null,
"published": "2020-09-14 20:11:19.932266",
"code": "gy"
},
{
"id": "15",
"title": "Exxon got the nerve to tell us Guyana will lose $$billions",
"description": "3rd WELL PAYARA Imagine yuh gat 10 water bottle factories around the world. Dem ah mek 5000 bottle water ah day, which costing dem between $40 to $50 per bottle. De 5000 bottle is wah dem have customer for. Yuh come to Guyana and set up two factories and the cost is only $8 a ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/exxonmobil-needs-guyana-more-than-guyana-needs-exxonmobil/",
"image": null,
"published": "2020-09-14 20:11:19.990059",
"code": "gy"
},
{
"id": "16",
"title": "ExxonMobil, take your knee off our neck",
"description": "making falsehood appear as truth It is said that hypocrisy is the audacity to preach integrity from a den of corruption. We have had too many of false saviours. Their empty promises mean no good. A liar begins by making falsehood appear like truth, and ends with making truth itself appear like falsehood. With ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/exxon-take-your-knee-off-the-guyanese-peoples-neck/",
"image": null,
"published": "2020-09-14 20:11:20.112975",
"code": "gy"
},
{
"id": "17",
"title": "Tenant in your own home",
"description": "Imagine someone walks into your home, orders you to move into the lower flat and takes over the running of the entire property. It is your home, you have the transport for it. But you have no say in how it is run. You have become a tenant in your own home. Every month, he ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/tenant-in-your-own-home/",
"image": null,
"published": "2020-09-14 20:11:20.247902",
"code": "gy"
},
{
"id": "18",
"title": "Govt. and Opposition building a house WITHOUT a plan",
"description": "Guyana took a US$20M loan from the World Bank and part of that money was used to hire a law firm to review our oil laws. But Guyana has not yet established policy guidelines for the oil and gas sector. This is equivalent to Granger building a house without a plan. The contract of the ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/govt-and-opposition-building-a-house-without-a-plan/",
"image": null,
"published": "2020-09-14 20:11:20.286451",
"code": "gy"
},
{
"id": "19",
"title": "Exxon makes Guyana into a checker rather than a partner",
"description": "Who makes out a contract with a business partner and dont give themselves a say as to how much money is being spent during its establishment and operations? Do you know of anyone in this world who would do that? Yes, yes the Govt. of Guyana. It entered into a contract with Exxon which gives ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/exxon-makes-guyana-into-a-checker-rather-than-a-partner/",
"image": null,
"published": "2020-09-14 20:11:20.309590",
"code": "gy"
},
{
"id": "20",
"title": "GFF to invest $20M in first female friendly facilities",
"description": " Anns Grove and New Amsterdam to be first By Franklin Wilson According to President of the Guyana Football Federation (GFF) Wayne Forde, plans are moving ahead nicely with regards to a proposed Memorandum of Understanding (MoU) between the custodians of the Anns Grove Community Centre Ground, East Coast Demerara and the GFF that would ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/gff-to-invest-20m-in-first-female-friendly-facilities-anns-grove-and-new-amsterdam-to-be-first/",
"image": null,
"published": "2020-09-14 20:11:20.330132",
"code": "gy"
},
{
"id": "21",
"title": "Daring to Believe in Guyanese Ability: The Story of IAST",
"description": "Guyana is a country with no shortage of experts a conversation in a minibus, at the street corner, or in the line at Churchs Chicken or Qik Serv Banks outlets, is certain to unearth at least one expert. Ask any Guyanese they are replete with answers related to political solutions, business ideas, development, ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/daring-to-believe-in-guyanese-ability-the-story-of-iast/",
"image": null,
"published": "2020-09-14 20:11:20.350102",
"code": "gy"
},
{
"id": "22",
"title": "$25M for drilling of new well in Port Kaituma",
"description": " jobs to be provided for residents The Ministry of Housing and Water, has budgeted a total of $25M for the drilling of a new potable water well and the installation of a new water supply network in Port Kaituma, Region One, and jobs will be provided for persons living in the area when the ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/25m-for-drilling-of-new-well-in-port-kaituma-jobs-to-be-provided-for-residents/",
"image": null,
"published": "2020-09-14 20:11:20.370789",
"code": "gy"
},
{
"id": "23",
"title": "Ramsammy promises to push decriminalization of suicide, support for mental health initiatives",
"description": "Former Health Minister, Dr. Leslie Ramsammy has promised to push for the decriminalization of suicide as part of efforts to tackle the mental health issues under the new dispensation. During a virtual discussion at the observance of World Suicide Prevention Day held on September 11 last, Ramsammy who was recently appointed to an advisory position ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/ramsammy-promises-to-push-decriminalization-of-suicide-support-for-mental-health-initiatives/",
"image": null,
"published": "2020-09-14 20:11:20.482583",
"code": "gy"
},
{
"id": "24",
"title": "Religious leaders promote peace in National Day of Prayer",
"description": "Religious leaders from around the country yesterday joined to offer messages of peace and to promote harmony as they observed a National Day of Prayer. On Friday, the Minister of Human Services and Social Security, Dr. Vindhya Persaud, hosted a virtual meeting with different religious leaders, who agreed to participate in a National Day of ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/religious-leaders-promote-peace-in-national-day-of-prayer/",
"image": null,
"published": "2020-09-14 20:11:20.517823",
"code": "gy"
},
{
"id": "25",
"title": "Supenaam woman killed by jealous ex-lover died of multiple incision wounds",
"description": "suspect still in custody Lunisa Peters, the twenty-four years old woman who was stabbed by her ex-lover last Friday, died as a result of multiple incision wounds. This was revealed by the postmortem examination report, which was done last Saturday by state pathologist, Dr. Nehaul Singh. Last Friday, Peters was allegedly stabbed by her ex-lover, ",
"source": "Kaieteur News",
"link": "https://www.kaieteurnewsonline.com/2020/09/14/supenaam-woman-killed-by-jealous-ex-lover-died-of-multiple-incision-wounds-suspect-still-in-custody/",
"image": null,
"published": "2020-09-14 20:11:20.565080",
"code": "gy"
},
{
"id": "26",
"title": "Trotman warns about undermining of Venezuela border controversy case",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/trotman-warns-about-undermining-of-venezuela-border-controversy-case/\\\" title=\\\"Trotman warns about undermining of Venezuela border controversy case\\\" rel=\\\"nofollow\\\"><img width=\\\"948\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/raphael-trotman-dpi-948x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/raphael-trotman-dpi-948x800.jpg 948w, https://s1.stabroeknews.com/images/2020/09/raphael-trotman-dpi-593x500.jpg 593w, https://s1.stabroeknews.com/images/2020/09/raphael-trotman-dpi-768x648.jpg 768w, https://s1.stabroeknews.com/images/2020/09/raphael-trotman-dpi-119x100.jpg 119w, https://s1.stabroeknews.com/images/2020/09/raphael-trotman-dpi.jpg 960w\\\" sizes=\\\"(max-width: 948px) 100vw, 948px\\\" /></a><p>APNU+AFC MP Raphael Trotman today issued a veiled warning to the government not to commit to anything during the upcoming visit of US Secretary of State, Mike Pompeo that could jeopardise Guyanas pursuit of a judicial settlement of the border controversy with Venezuela.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/trotman-warns-about-undermining-of-venezuela-border-controversy-case/\\\">Trotman warns about undermining of Venezuela border controversy case</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/trotman-warns-about-undermining-of-venezuela-border-controversy-case/",
"image": null,
"published": "2020-09-14 20:11:21.370901",
"code": "gy"
},
{
"id": "27",
"title": "Cessna found on Nine Miles Airstrip, three foreigners held",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/cessna-found-on-nine-miles-airstrip-three-foreigners-held/\\\" title=\\\"Cessna found on Nine Miles Airstrip, three foreigners held\\\" rel=\\\"nofollow\\\"><img width=\\\"1067\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/redandwhitecessna-1067x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/redandwhitecessna-1067x800.jpg 1067w, https://s1.stabroeknews.com/images/2020/09/redandwhitecessna-667x500.jpg 667w, https://s1.stabroeknews.com/images/2020/09/redandwhitecessna-768x576.jpg 768w, https://s1.stabroeknews.com/images/2020/09/redandwhitecessna-1200x900.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/redandwhitecessna-133x100.jpg 133w, https://s1.stabroeknews.com/images/2020/09/redandwhitecessna.jpg 1280w\\\" sizes=\\\"(max-width: 1067px) 100vw, 1067px\\\" /></a><p>The GPF today said that yesterday at about 10. 20 pm Police from Issano, Region 7, acting on information received went to the 9 Miles Airstrip , Issano , Middle Mazaruni River where they found a Red and white 206 Cessna suspected to be a Brazilian aircraft along with three male foreign nationals: a 38-year-old pilot, from Boa Vista, Brazil; a 29-year-old pilot from Tumeremo, Venezuela; and a 35-year-old internet technician from Manaus, Brazil were found.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/cessna-found-on-nine-miles-airstrip-three-foreigners-held/\\\">Cessna found on Nine Miles Airstrip, three foreigners held</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/cessna-found-on-nine-miles-airstrip-three-foreigners-held/",
"image": null,
"published": "2020-09-14 20:11:21.397228",
"code": "gy"
},
{
"id": "28",
"title": "Two more COVID-19-related deaths push Jamaicas total to 42",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/jamaica/two-more-covid-19-related-deaths-push-jamaicas-total-to-42/\\\" title=\\\"Two more COVID-19-related deaths push Jamaicas total to 42\\\" rel=\\\"nofollow\\\"><img width=\\\"750\\\" height=\\\"494\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/doc.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/doc.jpg 750w, https://s1.stabroeknews.com/images/2020/09/doc-150x100.jpg 150w\\\" sizes=\\\"(max-width: 750px) 100vw, 750px\\\" /></a><p>(Jamaica Observer) A Corporate Area schoolteacher is heaping praises on members of the local medical community today after a frightening brush with what she believed was the dangerous novel coronavirus.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/jamaica/two-more-covid-19-related-deaths-push-jamaicas-total-to-42/\\\">Two more COVID-19-related deaths push Jamaicas total to 42</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/jamaica/two-more-covid-19-related-deaths-push-jamaicas-total-to-42/",
"image": null,
"published": "2020-09-14 20:11:21.440739",
"code": "gy"
},
{
"id": "29",
"title": "Race tensions high over Jamaicans death in New Jersey",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/jamaica/race-tensions-high-over-jamaicans-death-in-new-jersey/\\\" title=\\\"Race tensions high over Jamaicans death in New Jersey\\\" rel=\\\"nofollow\\\"><img width=\\\"437\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/j-nj-437x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/j-nj-437x800.jpg 437w, https://s1.stabroeknews.com/images/2020/09/j-nj-273x500.jpg 273w, https://s1.stabroeknews.com/images/2020/09/j-nj-55x100.jpg 55w, https://s1.stabroeknews.com/images/2020/09/j-nj.jpg 574w\\\" sizes=\\\"(max-width: 437px) 100vw, 437px\\\" /></a><p>(Jamaica Gleaner) The fresh probe launched into the controversial death of Jamaica-born Rasheed Edwards has forced some residents of a New Jersey township to raise questions over the transparency of the police and post-mortem reports.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/jamaica/race-tensions-high-over-jamaicans-death-in-new-jersey/\\\">Race tensions high over Jamaicans death in New Jersey</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/jamaica/race-tensions-high-over-jamaicans-death-in-new-jersey/",
"image": null,
"published": "2020-09-14 20:11:21.462730",
"code": "gy"
},
{
"id": "30",
"title": "Trinidad Top Cop responds to PMs tongue-lashing over issue of race",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/trinidad-top-cop-responds-to-pms-tongue-lashing-over-issue-of-race/\\\" title=\\\"Trinidad Top Cop responds to PMs tongue-lashing over issue of race\\\" rel=\\\"nofollow\\\"><img width=\\\"777\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/07/gary-griffith6-777x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/07/gary-griffith6-777x800.jpg 777w, https://s1.stabroeknews.com/images/2020/07/gary-griffith6-485x500.jpg 485w, https://s1.stabroeknews.com/images/2020/07/gary-griffith6-768x791.jpg 768w, https://s1.stabroeknews.com/images/2020/07/gary-griffith6-1491x1536.jpg 1491w, https://s1.stabroeknews.com/images/2020/07/gary-griffith6-1200x1236.jpg 1200w, https://s1.stabroeknews.com/images/2020/07/gary-griffith6-97x100.jpg 97w, https://s1.stabroeknews.com/images/2020/07/gary-griffith6.jpg 1840w\\\" sizes=\\\"(max-width: 777px) 100vw, 777px\\\" /></a><p>(Trinidad Express) Police Commissioner Gary Griffith yesterday called on Prime Minister Dr Keith Rowley to retract his statements regarding the Bayside Towers incident, saying it was all about race and colour.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/trinidad-top-cop-responds-to-pms-tongue-lashing-over-issue-of-race/\\\">Trinidad Top Cop responds to PMs tongue-lashing over issue of race</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/trinidad-top-cop-responds-to-pms-tongue-lashing-over-issue-of-race/",
"image": null,
"published": "2020-09-14 20:11:21.478720",
"code": "gy"
},
{
"id": "31",
"title": "Trinidad: Jack Warner discharged, begins home quarantine",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/trinidad-jack-warner-discharged-begins-home-quarantine/\\\" title=\\\"Trinidad: Jack Warner discharged, begins home quarantine\\\" rel=\\\"nofollow\\\"><img width=\\\"1200\\\" height=\\\"719\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/jack-1200x719.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/jack-1200x719.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/jack-750x449.jpg 750w, https://s1.stabroeknews.com/images/2020/09/jack-768x460.jpg 768w, https://s1.stabroeknews.com/images/2020/09/jack-1536x920.jpg 1536w, https://s1.stabroeknews.com/images/2020/09/jack-150x90.jpg 150w, https://s1.stabroeknews.com/images/2020/09/jack.jpg 1920w\\\" sizes=\\\"(max-width: 1200px) 100vw, 1200px\\\" /></a><p>(Trinidad Guardian) Former government minister Jack Warner has been discharged from the Couva Hospital where he was warded as a COVID-19 patient.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/trinidad-jack-warner-discharged-begins-home-quarantine/\\\">Trinidad: Jack Warner discharged, begins home quarantine</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/trinidad-jack-warner-discharged-begins-home-quarantine/",
"image": null,
"published": "2020-09-14 20:11:21.500576",
"code": "gy"
},
{
"id": "32",
"title": "Beyonc leads Trinidad-born hairstylist to Afro-natural passion",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/beyonce-leads-trinidad-born-hairstylist-to-afro-natural-passion/\\\" title=\\\"Beyonc leads Trinidad-born hairstylist to Afro-natural passion\\\" rel=\\\"nofollow\\\"><img width=\\\"800\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/bey-j-800x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/bey-j-800x800.jpg 800w, https://s1.stabroeknews.com/images/2020/09/bey-j-500x500.jpg 500w, https://s1.stabroeknews.com/images/2020/09/bey-j-768x768.jpg 768w, https://s1.stabroeknews.com/images/2020/09/bey-j-100x100.jpg 100w, https://s1.stabroeknews.com/images/2020/09/bey-j.jpg 935w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\" /></a><p>(Trinidad Guardian) One of the standout hair moments in Beyoncs film Black is King is a 30-foot-long braided wig.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/beyonce-leads-trinidad-born-hairstylist-to-afro-natural-passion/\\\">Beyonc leads Trinidad-born hairstylist to Afro-natural passion</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/beyonce-leads-trinidad-born-hairstylist-to-afro-natural-passion/",
"image": null,
"published": "2020-09-14 20:11:21.590634",
"code": "gy"
},
{
"id": "33",
"title": "Justice cries resonate as Henry cousins laid to rest",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/justice-cries-resonate-as-henry-cousins-laid-to-rest/\\\" title=\\\"Justice cries resonate as Henry cousins laid to rest\\\" rel=\\\"nofollow\\\"><img width=\\\"303\\\" height=\\\"215\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/henry-boys.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/henry-boys.jpg 303w, https://s1.stabroeknews.com/images/2020/09/henry-boys-141x100.jpg 141w\\\" sizes=\\\"(max-width: 303px) 100vw, 303px\\\" /></a><p>Cries for justice rose louder yesterday as the two teenagers hacked to death last weekend were memorialised in emotional ceremonies in the city before being laid to rest in the Number 5 Village, West Coast Berbice (WCB) burial ground.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/justice-cries-resonate-as-henry-cousins-laid-to-rest/\\\">Justice cries resonate as Henry cousins laid to rest</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/justice-cries-resonate-as-henry-cousins-laid-to-rest/",
"image": null,
"published": "2020-09-14 20:11:21.619444",
"code": "gy"
},
{
"id": "34",
"title": "No agenda yet for Pompeo visit Todd - -advance team arrives",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/no-agenda-yet-for-pompeo-visit-todd/\\\" title=\\\"No agenda yet for Pompeo visit Todd\\\" rel=\\\"nofollow\\\"><img width=\\\"960\\\" height=\\\"720\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/Pompeo-Detail.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/Pompeo-Detail.jpg 960w, https://s1.stabroeknews.com/images/2020/09/Pompeo-Detail-667x500.jpg 667w, https://s1.stabroeknews.com/images/2020/09/Pompeo-Detail-768x576.jpg 768w, https://s1.stabroeknews.com/images/2020/09/Pompeo-Detail-133x100.jpg 133w\\\" sizes=\\\"(max-width: 960px) 100vw, 960px\\\" /></a><p>With an agenda not yet fixed, a United States government team arrived yesterday in Guyana and will today begin preparations for Secretary of State Michael Pompeos visit later this week, Minister of Foreign Affairs Hugh Todd said.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/no-agenda-yet-for-pompeo-visit-todd/\\\">No agenda yet for Pompeo visit Todd</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/no-agenda-yet-for-pompeo-visit-todd/",
"image": null,
"published": "2020-09-14 20:11:21.692252",
"code": "gy"
},
{
"id": "35",
"title": "Five in custody over murder of Bath businessman",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/five-in-custody-over-murder-of-bath-businessman/\\\" title=\\\"Five in custody over murder of Bath businessman\\\" rel=\\\"nofollow\\\"><img width=\\\"636\\\" height=\\\"723\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/Mohamed-Haniff-1.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/Mohamed-Haniff-1.jpg 636w, https://s1.stabroeknews.com/images/2020/09/Mohamed-Haniff-1-440x500.jpg 440w, https://s1.stabroeknews.com/images/2020/09/Mohamed-Haniff-1-88x100.jpg 88w\\\" sizes=\\\"(max-width: 636px) 100vw, 636px\\\" /></a><p>Four more persons are now in custody over the alleged home invasion which ended with the murder of Bath Settlement businessman, Mohamed Haniff, bringing the total number of persons detained to five.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/five-in-custody-over-murder-of-bath-businessman/\\\">Five in custody over murder of Bath businessman</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/five-in-custody-over-murder-of-bath-businessman/",
"image": null,
"published": "2020-09-14 20:11:21.781159",
"code": "gy"
},
{
"id": "36",
"title": "Pompeos visit not tied to Payara permit Bharrat",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/pompeos-visit-not-tied-to-payara-permit-bharrat/\\\" title=\\\"Pompeos visit not tied to Payara permit Bharrat\\\" rel=\\\"nofollow\\\"><img width=\\\"560\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/08/DSC_3308-560x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/08/DSC_3308-560x800.jpg 560w, https://s1.stabroeknews.com/images/2020/08/DSC_3308-350x500.jpg 350w, https://s1.stabroeknews.com/images/2020/08/DSC_3308-768x1097.jpg 768w, https://s1.stabroeknews.com/images/2020/08/DSC_3308-1075x1536.jpg 1075w, https://s1.stabroeknews.com/images/2020/08/DSC_3308-1200x1715.jpg 1200w, https://s1.stabroeknews.com/images/2020/08/DSC_3308-70x100.jpg 70w, https://s1.stabroeknews.com/images/2020/08/DSC_3308.jpg 1240w\\\" sizes=\\\"(max-width: 560px) 100vw, 560px\\\" /></a><p>Minister of Natural Resources Vickram Bharrat says that US Secretary of State Michael Pompeos visit this week is in no way tied to permits being processed for ExxonMobils Payara well and that the US oil major must meet the necessary requirements and environmental standards before any approval is granted.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/pompeos-visit-not-tied-to-payara-permit-bharrat/\\\">Pompeos visit not tied to Payara permit Bharrat</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/pompeos-visit-not-tied-to-payara-permit-bharrat/",
"image": null,
"published": "2020-09-14 20:11:21.852299",
"code": "gy"
},
{
"id": "37",
"title": "US oil executives were worried last year about impact of gas flaring - -leaked tape reveals",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/us-oil-executives-were-worried-last-year-about-impact-of-gas-flaring/\\\" title=\\\"US oil executives were worried last year about impact of gas flaring\\\" rel=\\\"nofollow\\\"><img width=\\\"650\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/ron-ness-650x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/ron-ness-650x800.jpg 650w, https://s1.stabroeknews.com/images/2020/09/ron-ness-406x500.jpg 406w, https://s1.stabroeknews.com/images/2020/09/ron-ness-768x945.jpg 768w, https://s1.stabroeknews.com/images/2020/09/ron-ness-81x100.jpg 81w, https://s1.stabroeknews.com/images/2020/09/ron-ness.jpg 925w\\\" sizes=\\\"(max-width: 650px) 100vw, 650px\\\" /></a><p>A secret recording of US oil executives at a gathering last year in Colorado revealed that they were worried that some producers were intentionally flaring or burning off far too much natural gas, threatening the industrys image, the New York Times (NYT) yesterday reported.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/us-oil-executives-were-worried-last-year-about-impact-of-gas-flaring/\\\">US oil executives were worried last year about impact of gas flaring</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/us-oil-executives-were-worried-last-year-about-impact-of-gas-flaring/",
"image": null,
"published": "2020-09-14 20:11:21.876549",
"code": "gy"
},
{
"id": "38",
"title": "Harbour bridge retractor span fixed - -normal marine traffic to resume today",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/harbour-bridge-retractor-span-fixed/\\\" title=\\\"Harbour bridge retractor span fixed\\\" rel=\\\"nofollow\\\"><img width=\\\"1200\\\" height=\\\"675\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/workonretractor-1200x675.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/workonretractor-1200x675.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/workonretractor-750x422.jpg 750w, https://s1.stabroeknews.com/images/2020/09/workonretractor-768x432.jpg 768w, https://s1.stabroeknews.com/images/2020/09/workonretractor-150x84.jpg 150w, https://s1.stabroeknews.com/images/2020/09/workonretractor.jpg 1280w\\\" sizes=\\\"(max-width: 1200px) 100vw, 1200px\\\" /></a><p>Repairs to a section of the retractor span on the Demerara Harbour Bridge (DHB) were completed yesterday and openings for marine traffic are expected to return to normal from today.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/harbour-bridge-retractor-span-fixed/\\\">Harbour bridge retractor span fixed</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/harbour-bridge-retractor-span-fixed/",
"image": null,
"published": "2020-09-14 20:11:21.953150",
"code": "gy"
},
{
"id": "39",
"title": "Patentia residents still suffering with COVID-19 fallout - -some skeptical about taking vaccine",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/patentia-residents-still-suffering-with-covid-19-fallout/\\\" title=\\\"Patentia residents still suffering with COVID-19 fallout\\\" rel=\\\"nofollow\\\"><img width=\\\"600\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/Roger-Henry-600x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/Roger-Henry-600x800.jpg 600w, https://s1.stabroeknews.com/images/2020/09/Roger-Henry-375x500.jpg 375w, https://s1.stabroeknews.com/images/2020/09/Roger-Henry-768x1024.jpg 768w, https://s1.stabroeknews.com/images/2020/09/Roger-Henry-75x100.jpg 75w, https://s1.stabroeknews.com/images/2020/09/Roger-Henry.jpg 774w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" /></a><p>Almost half a year since the pandemic lockdown, families are still struggling to put food on the table and while a COVID-19 vaccine could be a major breakthrough, there is skepticism as it relates to possible side effects.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/patentia-residents-still-suffering-with-covid-19-fallout/\\\">Patentia residents still suffering with COVID-19 fallout</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/patentia-residents-still-suffering-with-covid-19-fallout/",
"image": null,
"published": "2020-09-14 20:11:22.012921",
"code": "gy"
},
{
"id": "40",
"title": "Two more COVID deaths, 41 new cases",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/two-more-covid-deaths-41-new-cases/\\\" title=\\\"Two more COVID deaths, 41 new cases\\\" rel=\\\"nofollow\\\"><img width=\\\"554\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/covid-pic-554x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/covid-pic-554x800.jpg 554w, https://s1.stabroeknews.com/images/2020/09/covid-pic-346x500.jpg 346w, https://s1.stabroeknews.com/images/2020/09/covid-pic-69x100.jpg 69w, https://s1.stabroeknews.com/images/2020/09/covid-pic.jpg 642w\\\" sizes=\\\"(max-width: 554px) 100vw, 554px\\\" /></a><p>Another two persons have died from COVID-19 as revealed by the Ministry of Healths dashboard for yesterday, taking the death toll to fifty-six.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/two-more-covid-deaths-41-new-cases/\\\">Two more COVID deaths, 41 new cases</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/two-more-covid-deaths-41-new-cases/",
"image": null,
"published": "2020-09-14 20:11:22.045900",
"code": "gy"
},
{
"id": "41",
"title": "Bandits raid Roman Catholic Church office again",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/bandits-raid-roman-catholic-church-office-again/\\\" title=\\\"Bandits raid Roman Catholic Church office again\\\" rel=\\\"nofollow\\\"><img width=\\\"600\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/cath1-600x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/cath1-600x800.jpg 600w, https://s1.stabroeknews.com/images/2020/09/cath1-375x500.jpg 375w, https://s1.stabroeknews.com/images/2020/09/cath1-75x100.jpg 75w, https://s1.stabroeknews.com/images/2020/09/cath1.jpg 720w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\" /></a><p>For the second time in just over a month, bandits broke and entered a building which houses the Roman Catholic Church and carted off a quantity of cash and other valuables.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/bandits-raid-roman-catholic-church-office-again/\\\">Bandits raid Roman Catholic Church office again</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/bandits-raid-roman-catholic-church-office-again/",
"image": null,
"published": "2020-09-14 20:11:22.086932",
"code": "gy"
},
{
"id": "42",
"title": "Massy Group continuing to support suicide prevention",
"description": "<p>In observance of this years World Suicide Prevention Day, the Massy Group is once again collaborating with government agencies and NGOs to promote suicide prevention and mental health awareness to promote a range of activities.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/massy-group-continuing-to-support-suicide-prevention/\\\">Massy Group continuing to support suicide prevention</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/massy-group-continuing-to-support-suicide-prevention/",
"image": null,
"published": "2020-09-14 20:11:22.120616",
"code": "gy"
},
{
"id": "43",
"title": "Over 24,000 Guyanese have registered for online learning via Coursera - ministry",
"description": "<p>The Ministry of Education yesterday said that over 24,000 Guyanese have registered for online learning on global platform Coursera and the deadline for applications has now been extended to October 31, 2020.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/over-24000-guyanese-have-registered-for-online-learning-via-coursera/\\\">Over 24,000 Guyanese have registered for online learning via Coursera</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/over-24000-guyanese-have-registered-for-online-learning-via-coursera/",
"image": null,
"published": "2020-09-14 20:11:22.192418",
"code": "gy"
},
{
"id": "44",
"title": "Guyanese man missing in Barbados found",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/guyanese-man-missing-in-barbados-found/\\\" title=\\\"Guyanese man missing in Barbados found\\\" rel=\\\"nofollow\\\"><img width=\\\"450\\\" height=\\\"303\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/Monesh-Persaud.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/Monesh-Persaud.jpg 450w, https://s1.stabroeknews.com/images/2020/09/Monesh-Persaud-250x167.jpg 250w, https://s1.stabroeknews.com/images/2020/09/Monesh-Persaud-150x100.jpg 150w\\\" sizes=\\\"(max-width: 450px) 100vw, 450px\\\" /></a><p>(Barnados Nation) The Royal Barbados Police Force (RBPF) said yesterday 35-year-old Monesh Persaud has been found alive.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/guyana/guyanese-man-missing-in-barbados-found/\\\">Guyanese man missing in Barbados found</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/guyana/guyanese-man-missing-in-barbados-found/",
"image": null,
"published": "2020-09-14 20:11:22.283773",
"code": "gy"
},
{
"id": "45",
"title": "Windies T20 World Cup squad just got interesting - following the just concluded CPL",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/sports/windies-t20-world-cup-squad-just-got-interesting/\\\" title=\\\"Windies T20 World Cup squad just got interesting\\\" rel=\\\"nofollow\\\"><img width=\\\"568\\\" height=\\\"568\\\" src=\\\"https://s1.stabroeknews.com/images/2020/06/hetmyer3.png\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/06/hetmyer3.png 568w, https://s1.stabroeknews.com/images/2020/06/hetmyer3-500x500.png 500w, https://s1.stabroeknews.com/images/2020/06/hetmyer3-100x100.png 100w\\\" sizes=\\\"(max-width: 568px) 100vw, 568px\\\" /></a><p>Competition for places in West Indies T20 side, particularly the World Cup squad, got more interesting following the conclusion of this years Caribbean Premier League (CPL).</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/windies-t20-world-cup-squad-just-got-interesting/\\\">Windies T20 World Cup squad just got interesting</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/windies-t20-world-cup-squad-just-got-interesting/",
"image": null,
"published": "2020-09-14 20:11:22.305986",
"code": "gy"
},
{
"id": "46",
"title": "Introduction",
"description": "<p>The four hour long Budget Speech 2020 presented by Bishop Juan Edghill was one of many firsts: the latest Budget in the history of this country, the first budget of the Irfaan Ali Administration, the first presented outside of the Public Buildings and significantly the first presented by an Administration of which no substantive the Minister of Finance has been appointed.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/introduction-7/\\\">Introduction</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/introduction-7/",
"image": null,
"published": "2020-09-14 20:11:22.450769",
"code": "gy"
},
{
"id": "47",
"title": "Connell aspires to lead WI Women to series win",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/sports/connell-aspires-to-lead-wi-women-to-series-win/\\\" title=\\\"Connell aspires to lead WI Women to series win\\\" rel=\\\"nofollow\\\"><img width=\\\"900\\\" height=\\\"680\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/connell14.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/connell14.jpg 900w, https://s1.stabroeknews.com/images/2020/09/connell14-662x500.jpg 662w, https://s1.stabroeknews.com/images/2020/09/connell14-768x580.jpg 768w, https://s1.stabroeknews.com/images/2020/09/connell14-132x100.jpg 132w\\\" sizes=\\\"(max-width: 900px) 100vw, 900px\\\" /></a><p>West Indies womens team pacer, Shamilia Connell, has set her sights on leading the side to a series win over England in the five-match T20I series later this month.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/connell-aspires-to-lead-wi-women-to-series-win/\\\">Connell aspires to lead WI Women to series win</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/connell-aspires-to-lead-wi-women-to-series-win/",
"image": null,
"published": "2020-09-14 20:11:22.472745",
"code": "gy"
},
{
"id": "48",
"title": "Highlights",
"description": "<p>2019<br />\\n Growth in Real GDP of 5.4% compared with an initial target of 4.9%.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/highlights-6/\\\">Highlights</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/highlights-6/",
"image": null,
"published": "2020-09-14 20:11:22.498754",
"code": "gy"
},
{
"id": "49",
"title": "Emergency budget is a step in the right direction",
"description": "<p>Dear Editor,<br />\\nI am obliged to respond to the former Minister of Finance Winston Jordan in relation to his statements in the Stabroek News of September 12th 2020 in the news item `Private sector budget has eroded revenue base, pumped up deficit Jordan<br />\\nMr.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/emergency-budget-is-a-step-in-the-right-direction/\\\">Emergency budget is a step in the right direction</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/emergency-budget-is-a-step-in-the-right-direction/",
"image": null,
"published": "2020-09-14 20:11:22.593880",
"code": "gy"
},
{
"id": "50",
"title": "FIFA handbook to help develop womens game",
"description": "<p>Another developmental boost is scheduled to be received by the local womens game with footballs governing body, the International Federation of Association Football (FIFA), issuing the inaugural Womens Football Administrator Handbook, which aims to increase female participation in the discipline.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/fifa-handbook-to-help-develop-womens-game/\\\">FIFA handbook to help develop womens game</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/fifa-handbook-to-help-develop-womens-game/",
"image": null,
"published": "2020-09-14 20:11:22.648813",
"code": "gy"
},
{
"id": "51",
"title": "2020 Policy Issues and Targets",
"description": "<p>Introduction<br />\\nThe rather extensive sub-theme of the 2020 Budget was Protecting our People in a COVID-19 Environment, Strengthening Democracy and the Rule of Law, Incentivising Growth and Job Creation, Enhancing Welfare.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/2020-policy-issues-and-targets/\\\">2020 Policy Issues and Targets</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/2020-policy-issues-and-targets/",
"image": null,
"published": "2020-09-14 20:11:22.671133",
"code": "gy"
},
{
"id": "52",
"title": "Ramson Jr., pleased with allocation",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/sports/ramson-jr-pleased-with-allocation/\\\" title=\\\"Ramson Jr., pleased with allocation\\\" rel=\\\"nofollow\\\"><img width=\\\"567\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/08/DSC_3319-567x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/08/DSC_3319-567x800.jpg 567w, https://s1.stabroeknews.com/images/2020/08/DSC_3319-354x500.jpg 354w, https://s1.stabroeknews.com/images/2020/08/DSC_3319-768x1083.jpg 768w, https://s1.stabroeknews.com/images/2020/08/DSC_3319-1089x1536.jpg 1089w, https://s1.stabroeknews.com/images/2020/08/DSC_3319-1200x1693.jpg 1200w, https://s1.stabroeknews.com/images/2020/08/DSC_3319-71x100.jpg 71w, https://s1.stabroeknews.com/images/2020/08/DSC_3319.jpg 1276w\\\" sizes=\\\"(max-width: 567px) 100vw, 567px\\\" /></a><p>Minister of Culture, Youth and Sports, Charles Ramson Jr., is pleased with the sectors allocation but revealed that much more is to be expected from the 2021 budget for sport.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/ramson-jr-pleased-with-allocation/\\\">Ramson Jr., pleased with allocation</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/ramson-jr-pleased-with-allocation/",
"image": null,
"published": "2020-09-14 20:11:22.695743",
"code": "gy"
},
{
"id": "53",
"title": "Pompeo visit raises serious questions",
"description": "<p>Dear Editor,<br />\\nI have to admit that my eyebrows could not be raised any higher by the initial brief reporting on Saturday afternoon by the Stabroek News of the planned visit of US Secretary of State Mike Pompeo to Guyana, that The two-day trip would be seen as an expression of confidence in the PPP/C government and a signal of deeper cooperation between the two countries.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/pompeo-visit-raises-serious-questions/\\\">Pompeo visit raises serious questions</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/pompeo-visit-raises-serious-questions/",
"image": null,
"published": "2020-09-14 20:11:22.719163",
"code": "gy"
},
{
"id": "54",
"title": "Issues on which Guyana cannot support US",
"description": "<p>Dear Editor,<br />\\nA few things are on my mind as I write this letter but I will limit it to two issues.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/issues-on-which-guyana-cannot-support-us/\\\">Issues on which Guyana cannot support US</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/issues-on-which-guyana-cannot-support-us/",
"image": null,
"published": "2020-09-14 20:11:22.827028",
"code": "gy"
},
{
"id": "55",
"title": "The Government of Guyana Financial Plan 2020",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/features/the-government-of-guyana-financial-plan-2020/\\\" title=\\\"The Government of Guyana Financial Plan 2020\\\" rel=\\\"nofollow\\\"><img width=\\\"1200\\\" height=\\\"628\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/ram2-1200x628.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/ram2-1200x628.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/ram2-750x392.jpg 750w, https://s1.stabroeknews.com/images/2020/09/ram2-768x402.jpg 768w, https://s1.stabroeknews.com/images/2020/09/ram2-150x78.jpg 150w, https://s1.stabroeknews.com/images/2020/09/ram2.jpg 1409w\\\" sizes=\\\"(max-width: 1200px) 100vw, 1200px\\\" /></a><p>The main elements of the 2020 Plan are:<br />\\nTotal current revenues are projected to decrease by $14,109 million to $226,476 million or by 5.9%.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/the-government-of-guyana-financial-plan-2020/\\\">The Government of Guyana Financial Plan 2020</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/the-government-of-guyana-financial-plan-2020/",
"image": null,
"published": "2020-09-14 20:11:22.850942",
"code": "gy"
},
{
"id": "56",
"title": "Pollard arrives to join Mumbai after CPL conquest",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/sports/pollard-arrives-to-join-mumbai-after-cpl-conquest/\\\" title=\\\"Pollard arrives to join Mumbai after CPL conquest\\\" rel=\\\"nofollow\\\"><img width=\\\"422\\\" height=\\\"280\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/pollard14.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/pollard14.jpg 422w, https://s1.stabroeknews.com/images/2020/09/pollard14-250x167.jpg 250w, https://s1.stabroeknews.com/images/2020/09/pollard14-150x100.jpg 150w\\\" sizes=\\\"(max-width: 422px) 100vw, 422px\\\" /></a><p>ABU DHABI, United Arab Emirates, CMC Explosive all-rounder Kieron Pollard arrived here Saturday to begin his stint with reigning champions Mumbai Indians in the Indian Premier League, fresh from leading Trinbago Knight Riders to their historic capture of the Caribbean Premier League.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/pollard-arrives-to-join-mumbai-after-cpl-conquest/\\\">Pollard arrives to join Mumbai after CPL conquest</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/pollard-arrives-to-join-mumbai-after-cpl-conquest/",
"image": null,
"published": "2020-09-14 20:11:22.873450",
"code": "gy"
},
{
"id": "57",
"title": "Who Gets What in 2020",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/features/who-gets-what-in-2020/\\\" title=\\\"Who Gets What in 2020\\\" rel=\\\"nofollow\\\"><img width=\\\"1200\\\" height=\\\"688\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/ramb5-1200x688.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/ramb5-1200x688.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/ramb5-750x430.jpg 750w, https://s1.stabroeknews.com/images/2020/09/ramb5-768x440.jpg 768w, https://s1.stabroeknews.com/images/2020/09/ramb5-150x86.jpg 150w, https://s1.stabroeknews.com/images/2020/09/ramb5.jpg 1359w\\\" sizes=\\\"(max-width: 1200px) 100vw, 1200px\\\" /></a><p>Analysis of expenditure</p>\\n<p>Introduction<br />\\nUnder normal circumstances, the caption of this section would be by and large accurate.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/who-gets-what-in-2020/\\\">Who Gets What in 2020</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/who-gets-what-in-2020/",
"image": null,
"published": "2020-09-14 20:11:22.954304",
"code": "gy"
},
{
"id": "58",
"title": "We need to focus on dispute resolution and respect for one another",
"description": "<p>Dear Editor,<br />\\nSomething has been incrementally transforming the Guyana I once knew.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/we-need-to-focus-on-dispute-resolution-and-respect-for-one-another/\\\">We need to focus on dispute resolution and respect for one another</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/we-need-to-focus-on-dispute-resolution-and-respect-for-one-another/",
"image": null,
"published": "2020-09-14 20:11:22.978945",
"code": "gy"
},
{
"id": "59",
"title": "England win second ODI after dramatic Australia collapse",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/sports/england-win-second-odi-after-dramatic-australia-collapse/\\\" title=\\\"England win second ODI after dramatic Australia collapse\\\" rel=\\\"nofollow\\\"><img width=\\\"1156\\\" height=\\\"656\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/england14.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/england14.jpg 1156w, https://s1.stabroeknews.com/images/2020/09/england14-750x426.jpg 750w, https://s1.stabroeknews.com/images/2020/09/england14-768x436.jpg 768w, https://s1.stabroeknews.com/images/2020/09/england14-150x85.jpg 150w\\\" sizes=\\\"(max-width: 1156px) 100vw, 1156px\\\" /></a><p>MANCHESTER, England, Reuters) England won the second ODI by 24 runs to level their three-match series against Australia after the visitors, chasing a modest target of 232, suffered a dramatic collapse yesterday.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/england-win-second-odi-after-dramatic-australia-collapse/\\\">England win second ODI after dramatic Australia collapse</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/england-win-second-odi-after-dramatic-australia-collapse/",
"image": null,
"published": "2020-09-14 20:11:23.061489",
"code": "gy"
},
{
"id": "60",
"title": "Hamilton on brink of Schumi record after three-in-one win",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/sports/hamilton-on-brink-of-schumi-record-after-three-in-one-win/\\\" title=\\\"Hamilton on brink of Schumi record after three-in-one win\\\" rel=\\\"nofollow\\\"><img width=\\\"768\\\" height=\\\"432\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/lewis-hamilton18.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/lewis-hamilton18.jpg 768w, https://s1.stabroeknews.com/images/2020/09/lewis-hamilton18-750x422.jpg 750w, https://s1.stabroeknews.com/images/2020/09/lewis-hamilton18-150x84.jpg 150w\\\" sizes=\\\"(max-width: 768px) 100vw, 768px\\\" /></a><p>(Reuters) Six-time world champion Lewis Hamilton took his tally of Formula One wins to 90 and the brink of Michael Schumachers record yesterday, but he said it felt like he had just done three in a day.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/hamilton-on-brink-of-schumi-record-after-three-in-one-win/\\\">Hamilton on brink of Schumi record after three-in-one win</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/hamilton-on-brink-of-schumi-record-after-three-in-one-win/",
"image": null,
"published": "2020-09-14 20:11:23.089218",
"code": "gy"
},
{
"id": "61",
"title": "2020 Budget Measures",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/features/2020-budget-measures/\\\" title=\\\"2020 Budget Measures\\\" rel=\\\"nofollow\\\"><img width=\\\"843\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/ramb10-843x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/ramb10-843x800.jpg 843w, https://s1.stabroeknews.com/images/2020/09/ramb10-527x500.jpg 527w, https://s1.stabroeknews.com/images/2020/09/ramb10-768x729.jpg 768w, https://s1.stabroeknews.com/images/2020/09/ramb10-1200x1139.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/ramb10-105x100.jpg 105w, https://s1.stabroeknews.com/images/2020/09/ramb10.jpg 1440w\\\" sizes=\\\"(max-width: 843px) 100vw, 843px\\\" /></a><p>In this section we consider the measures announced by the Minister, analyse them, evaluate their impact and discuss the extent to which they provide useful economic benefits to stakeholders.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/2020-budget-measures/\\\">2020 Budget Measures</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/2020-budget-measures/",
"image": null,
"published": "2020-09-14 20:11:23.109512",
"code": "gy"
},
{
"id": "62",
"title": "Four more weeks of COVID-19 restrictions in Trinidad",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/four-more-weeks-of-covid-19-restrictions-in-trinidad/\\\" title=\\\"Four more weeks of COVID-19 restrictions in Trinidad\\\" rel=\\\"nofollow\\\"><img width=\\\"420\\\" height=\\\"279\\\" src=\\\"https://s1.stabroeknews.com/images/2020/08/rowley17.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/08/rowley17.jpg 420w, https://s1.stabroeknews.com/images/2020/08/rowley17-250x167.jpg 250w, https://s1.stabroeknews.com/images/2020/08/rowley17-150x100.jpg 150w\\\" sizes=\\\"(max-width: 420px) 100vw, 420px\\\" /></a><p>(Trinidad Guardian) Public health restrictions implemented a month ago to roll back on the reopening of the economy as the countrys COVID-19 spread worsened will be extended for another four weeks, Prime Minister Dr Keith Rowley announced on Saturday.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/four-more-weeks-of-covid-19-restrictions-in-trinidad/\\\">Four more weeks of COVID-19 restrictions in Trinidad</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/trinidad/four-more-weeks-of-covid-19-restrictions-in-trinidad/",
"image": null,
"published": "2020-09-14 20:11:23.214147",
"code": "gy"
},
{
"id": "63",
"title": "It appears that the Church has gone silent since March 2nd",
"description": "<p>Dear Editor,<br />\\nJohn Wesley, the founder of the Methodist Church, proclaimed that the Methodist Church was raised up to spread scriptural holiness for the reformation of the nation.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/it-appears-that-the-church-has-gone-silent-since-march-2nd/\\\">It appears that the Church has gone silent since March 2nd</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/it-appears-that-the-church-has-gone-silent-since-march-2nd/",
"image": null,
"published": "2020-09-14 20:11:23.309859",
"code": "gy"
},
{
"id": "64",
"title": "Commentary and Analysis",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/features/commentary-and-analysis-3/\\\" title=\\\"Commentary and Analysis\\\" rel=\\\"nofollow\\\"><img width=\\\"470\\\" height=\\\"710\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/rambud12.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/rambud12.jpg 470w, https://s1.stabroeknews.com/images/2020/09/rambud12-331x500.jpg 331w, https://s1.stabroeknews.com/images/2020/09/rambud12-66x100.jpg 66w\\\" sizes=\\\"(max-width: 470px) 100vw, 470px\\\" /></a><p>Pro-Poor Policies<br />\\nThe word poor was used two times and the word poverty once in the 2020 Budget while in the last (2019) Budget Speech of the Coalition Government the word poverty was used five times.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/commentary-and-analysis-3/\\\">Commentary and Analysis</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/commentary-and-analysis-3/",
"image": null,
"published": "2020-09-14 20:11:23.354378",
"code": "gy"
},
{
"id": "65",
"title": "U.S. Open offers glimpse of tennis future in pandemic era",
"description": "<p>NEW YORK, (Reuters) The U.S. Open finishes yesterday having largely pulled off what was once seen as impossible: hosting an international sports mega-event amid the COVID-19 outbreak.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/u-s-open-offers-glimpse-of-tennis-future-in-pandemic-era/\\\">U.S. Open offers glimpse of tennis future in pandemic era</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/u-s-open-offers-glimpse-of-tennis-future-in-pandemic-era/",
"image": null,
"published": "2020-09-14 20:11:23.388660",
"code": "gy"
},
{
"id": "66",
"title": "Billionaire Bloomberg to spend $100 million in Florida to help Biden",
"description": "<p>NEW YORK, (Reuters) Michael Bloomberg, who spent $1 billion of his own money on a failed 2020 presidential bid, will inject at least $100 million to help Democrat Joe Bidens campaign against President Donald Trump in Florida.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/billionaire-bloomberg-to-spend-100-million-in-florida-to-help-biden/\\\">Billionaire Bloomberg to spend $100 million in Florida to help Biden</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/billionaire-bloomberg-to-spend-100-million-in-florida-to-help-biden/",
"image": null,
"published": "2020-09-14 20:11:23.444985",
"code": "gy"
},
{
"id": "67",
"title": "To achieve lower energy costs, govt would have to revamp power sector, boost regulator",
"description": "<p>Dear Editor,<br />\\nIn your September 1, 2020 edition of Stabroek News you carried an article captioned Ali promises private sector 60% cut in energy costs over three years.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/to-achieve-lower-energy-costs-govt-would-have-to-revamp-power-sector-boost-regulator/\\\">To achieve lower energy costs, govt would have to revamp power sector, boost regulator</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/to-achieve-lower-energy-costs-govt-would-have-to-revamp-power-sector-boost-regulator/",
"image": null,
"published": "2020-09-14 20:11:23.480504",
"code": "gy"
},
{
"id": "68",
"title": "Pompeos visit should be postponed to a more appropriate time",
"description": "<p>Dear Editor,<br />\\nFor a few days in Guyana, there were rumours of a pending visit of a top US official: it is now clear that the rumours were not without foundation.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/pompeos-visit-should-be-postponed-to-a-more-appropriate-time/\\\">Pompeos visit should be postponed to a more appropriate time</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/pompeos-visit-should-be-postponed-to-a-more-appropriate-time/",
"image": null,
"published": "2020-09-14 20:11:23.559628",
"code": "gy"
},
{
"id": "69",
"title": "Renegotiating the Petroleum Contract",
"description": "<p>Paragraph 4.130 of the Budget Speech states emphatically that the PPP/C will immediately engage the oil and gas companies in better contract administration/renegotiation.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/renegotiating-the-petroleum-contract/\\\">Renegotiating the Petroleum Contract</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/renegotiating-the-petroleum-contract/",
"image": null,
"published": "2020-09-14 20:11:23.597376",
"code": "gy"
},
{
"id": "70",
"title": "Head coach DAntoni says farewell to Rockets",
"description": "<p>Houston coach Mike DAntoni said farewell to the Rockets yesterday after four seasons.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/head-coach-dantoni-says-farewell-to-rockets/\\\">Head coach DAntoni says farewell to Rockets</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/head-coach-dantoni-says-farewell-to-rockets/",
"image": null,
"published": "2020-09-14 20:11:23.619668",
"code": "gy"
},
{
"id": "71",
"title": "Cuba shuts down interprovincial transportation due to new COVID-19 fears",
"description": "<p>HAVANA, (Reuters) Cuban state media reported on Saturday interprovincial transportation would be shut down and a curfew in Havana extended until the end of the month as a surge in COVID-19 cases in the capital spreads to other areas.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/news/regional/cuba-shuts-down-interprovincial-transportation-due-to-new-covid-19-fears/\\\">Cuba shuts down interprovincial transportation due to new COVID-19 fears</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/news/regional/cuba-shuts-down-interprovincial-transportation-due-to-new-covid-19-fears/",
"image": null,
"published": "2020-09-14 20:11:23.765871",
"code": "gy"
},
{
"id": "72",
"title": "Pogacar beats Roglic as defending champion Bernal cracks",
"description": "<p>COL DU GRAND COLOMBIER, France, (Reuters) Tadej Pogacar beat fellow Slovenian and overall leader Primoz Roglic to win the 15th stage of the Tour de France as defending champion Egan Bernal all but abandoned his crown after a brutal failure yesterday.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/sports/pogacar-beats-roglic-as-defending-champion-bernal-cracks/\\\">Pogacar beats Roglic as defending champion Bernal cracks</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/sports/pogacar-beats-roglic-as-defending-champion-bernal-cracks/",
"image": null,
"published": "2020-09-14 20:11:23.825903",
"code": "gy"
},
{
"id": "73",
"title": "Moving forward better Guyana",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/features/in-the-diaspora/moving-forward-better-guyana/\\\" title=\\\"Moving forward better Guyana\\\" rel=\\\"nofollow\\\"><img width=\\\"1067\\\" height=\\\"800\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/Diaspora-pic-1067x800.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/Diaspora-pic-1067x800.jpg 1067w, https://s1.stabroeknews.com/images/2020/09/Diaspora-pic-667x500.jpg 667w, https://s1.stabroeknews.com/images/2020/09/Diaspora-pic-768x576.jpg 768w, https://s1.stabroeknews.com/images/2020/09/Diaspora-pic-1200x900.jpg 1200w, https://s1.stabroeknews.com/images/2020/09/Diaspora-pic-133x100.jpg 133w, https://s1.stabroeknews.com/images/2020/09/Diaspora-pic.jpg 1440w\\\" sizes=\\\"(max-width: 1067px) 100vw, 1067px\\\" /></a><p>By Alissa Trotz<br />\\nAlissa Trotz is Editor of the<br />\\nIn the Diaspora Column<br />\\nOn Friday September 11th (birth anniversary of Andaiye, social justice warrior and co-founder of Red Thread), Red Thread invited all Guyanese to a virtual speakout streamed live on Facebook (you can view it on Red Thread Women: Crossroads Womens Centre).</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/in-the-diaspora/moving-forward-better-guyana/\\\">Moving forward better Guyana</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/in-the-diaspora/moving-forward-better-guyana/",
"image": null,
"published": "2020-09-14 20:11:23.850695",
"code": "gy"
},
{
"id": "74",
"title": "Pompeos visit and Venezuela",
"description": "<p>Dear Editor,<br />\\nI dont have to scratch my head to figure out the startling announcement of this surprise visit of US Secretary of State, Mike Pompeo, to Guyana.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/opinion/letters/pompeos-visit-and-venezuela/\\\">Pompeos visit and Venezuela</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/opinion/letters/pompeos-visit-and-venezuela/",
"image": null,
"published": "2020-09-14 20:11:23.877373",
"code": "gy"
},
{
"id": "75",
"title": "Conclusion",
"description": "<a href=\\\"https://www.stabroeknews.com/2020/09/14/features/conclusion-8/\\\" title=\\\"Conclusion\\\" rel=\\\"nofollow\\\"><img width=\\\"434\\\" height=\\\"574\\\" src=\\\"https://s1.stabroeknews.com/images/2020/09/rambud13.jpg\\\" class=\\\"webfeedsFeaturedVisual wp-post-image\\\" alt=\\\"\\\" loading=\\\"lazy\\\" style=\\\"display: block; margin: auto; margin-bottom: 15px;max-width: 100%;\\\" link_thumbnail=\\\"1\\\" srcset=\\\"https://s1.stabroeknews.com/images/2020/09/rambud13.jpg 434w, https://s1.stabroeknews.com/images/2020/09/rambud13-378x500.jpg 378w, https://s1.stabroeknews.com/images/2020/09/rambud13-76x100.jpg 76w\\\" sizes=\\\"(max-width: 434px) 100vw, 434px\\\" /></a><p>As Minister Edghill proudly declared this administration is decidedly pro-Guyana, pro-private sector.</p>\\n<p>The article <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com/2020/09/14/features/conclusion-8/\\\">Conclusion</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://www.stabroeknews.com\\\">Stabroek News</a>.</p>",
"source": "Stabroek News",
"link": "https://www.stabroeknews.com/2020/09/14/features/conclusion-8/",
"image": null,
"published": "2020-09-14 20:11:23.898845",
"code": "gy"
},
{
"id": "76",
"title": "APNU/AFC Govt owes GPL $13.1B Indar",
"description": "<p>As the 2020 budget debates continue, Junior Minister of Public Works Deodat Indar has revealed that the previous administration had not paid the Guyana Power and Light Inc. (GPL) some $13.1B for electricity. Upon looking at the books of GPL, I have found that there is $13.1B that the government of the past five years </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/apnu-afc-govt-owes-gpl-13-1b-indar/\\\">APNU/AFC Govt owes GPL $13.1B Indar</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/apnu-afc-govt-owes-gpl-13-1b-indar/",
"image": null,
"published": "2020-09-14 20:11:24.942017",
"code": "gy"
},
{
"id": "77",
"title": "MoH to add Remdesivir to COVID-19 treatment plan",
"description": "<p>The Ministry of Health announced that plans are in the pipeline to purchase the drug Remdesivir to treat patients who have fallen critically-ill as a result of the novel coronavirus disease 2019 (COVID-19). Remdesivir is an anti-viral drug administered by Intravenous (IV) Therapy to COVID-19 patients suffering from severe symptoms. It is known as a </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/moh-to-add-remdesivir-to-covid-19-treatment-plan/\\\">MoH to add Remdesivir to COVID-19 treatment plan</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/moh-to-add-remdesivir-to-covid-19-treatment-plan/",
"image": null,
"published": "2020-09-14 20:11:24.958259",
"code": "gy"
},
{
"id": "78",
"title": "Second illegal aircraft located with dead man on board",
"description": "<p>The Guyana Police Force has confirmed that a second aircraft which crash-landed in Region Seven (Cuyuni Mazaruni) has been located with a dead man, believed to be the pilot, on board. This was confirmed by Divisional Commander Dion Moore who said investigations are ongoing. This second aircraft was accompanying another, a red and white </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/second-illegal-aircraft-located-with-dead-man-on-board/\\\">Second illegal aircraft located with dead man on board</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/second-illegal-aircraft-located-with-dead-man-on-board/",
"image": null,
"published": "2020-09-14 20:11:24.974081",
"code": "gy"
},
{
"id": "79",
"title": "Speaker cautions Opposition MP Shurwayne Holder during maiden Parliamentary presentation",
"description": "<p>During his maiden presentation before the National Assembly, Opposition Member of Parliament Shurwayne Holder was cautioned by Speaker Manzoor Nadir over making statements without being able to present factual evidence. Holder commenced his maiden address by accusing the Government of instructing the Department of Public Information (DPI) to halt the broadcast of the Oppositions contributions </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/speaker-cautions-opposition-mp-shurwayne-holder-during-maiden-parliamentary-presentation/\\\">Speaker cautions Opposition MP Shurwayne Holder during maiden Parliamentary presentation</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/speaker-cautions-opposition-mp-shurwayne-holder-during-maiden-parliamentary-presentation/",
"image": null,
"published": "2020-09-14 20:11:24.993915",
"code": "gy"
},
{
"id": "80",
"title": "Budget Debates 2020: Hamilton flays APNU/AFC for understaffing Labour Dept",
"description": "<p>Minister of Labour, Joseph Hamilton, kicked off the Governments side of the 2020 Budget Debates by slamming the former APNU/AFC for its handling of labour-related issues as well as severely understaffing the then Department of Labour. The APNU/AFC had converted the pre-2015 Ministry of Labour into the Department of Labour within the Ministry of Social </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/budget-debates-2020-hamilton-flays-apnu-afc-for-understaffing-labour-dept/\\\">Budget Debates 2020: Hamilton flays APNU/AFC for understaffing Labour Dept</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/budget-debates-2020-hamilton-flays-apnu-afc-for-understaffing-labour-dept/",
"image": null,
"published": "2020-09-14 20:11:25.011809",
"code": "gy"
},
{
"id": "81",
"title": "Mohameds family denies involvement in Ponzi Scheme operations",
"description": "<p>The principals of the popular Mohameds Enterprises have refuted a fake article circulating on social media which suggests that they were involved in the Ponzi Scheme that was being operated by Cuban national Yuri Garcia-Dominiguez and his Guyanese wife, Ateeka Ishmael. According to the article, Nazar and his son Azruddin are being investigated by the </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/mohameds-family-denies-involvement-in-ponzi-scheme-operations/\\\">Mohameds family denies involvement in Ponzi Scheme operations</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/mohameds-family-denies-involvement-in-ponzi-scheme-operations/",
"image": null,
"published": "2020-09-14 20:11:25.029489",
"code": "gy"
},
{
"id": "82",
"title": "BUDGET DEBATES 2020: APNU/AFC Trotman commends Mining Sector initiatives",
"description": "<p>As Day 1 of the 2020 Budget Debates commenced, Opposition Member of Parliament commended the Peoples Progressive Party/Civic (PPP/C) for the slew of measures announced for the Mining Sector. Trotman served as Minister of Natural Resources under the APNU/AFC Coalition. However, at the same time, Trotman took time to sound a word of caution when </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/budget-debates-2020-apnu-afc-trotman-commends-mining-sector-initiatives/\\\">BUDGET DEBATES 2020: APNU/AFC Trotman commends Mining Sector initiatives</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/budget-debates-2020-apnu-afc-trotman-commends-mining-sector-initiatives/",
"image": null,
"published": "2020-09-14 20:11:25.055834",
"code": "gy"
},
{
"id": "83",
"title": "5 in custody for illegal fuel bust at Parika",
"description": "<p>Five persons are in custody following the discovery of 1,600 gallons of fuel, in two vessels, at the Parika Stelling, East Bank Essequibo (EBE). The bust was made by the Guyana Energy Agency (GEA) on Friday last just about 21:15h. It is reported that the first vessel was captained by a 56-year-old from Metem-Meer-Zorg on </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/5-in-custody-for-illegal-fuel-bust-at-parika/\\\">5 in custody for illegal fuel bust at Parika</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/5-in-custody-for-illegal-fuel-bust-at-parika/",
"image": null,
"published": "2020-09-14 20:11:25.075838",
"code": "gy"
},
{
"id": "84",
"title": "Three foreign nationals in police custody after illegal aircraft discovered in Region 7",
"description": "<p>Three foreign nationals are in a police custody after they were discovered in an illegal aircraft in Region 7 (Cuyuni- Mazaruni). Police say that the aircraft was discovered at 9 Miles, Issano. The foreign nationals told police that they were headed for neighbouring Suriname when their aircraft developed mechanical issues. They were forced to land. </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/three-foreign-nationals-in-police-custody-after-illegal-aircraft-discovered-in-region-7/\\\">Three foreign nationals in police custody after illegal aircraft discovered in Region 7</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/three-foreign-nationals-in-police-custody-after-illegal-aircraft-discovered-in-region-7/",
"image": null,
"published": "2020-09-14 20:11:25.092414",
"code": "gy"
},
{
"id": "85",
"title": "Conditional survey to determine phased reopening of sugar estates Agriculture Minister",
"description": "<p>says reopening of estates is not a political gimmick A conditional survey currently underway will guide the Peoples Progressive Party Civic Government on how it proceeds with the reopening of the three closed sugar estates with an objective to revive the cash-strapped and heavily indebted industry. This is according to Agriculture Minister Zulfikar Mustapha, during </p>\\n<p>The post <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com/conditional-survey-to-determine-phased-reopening-of-sugar-estates-agriculture-minister/\\\">Conditional survey to determine phased reopening of sugar estates Agriculture Minister</a> appeared first on <a rel=\\\"nofollow\\\" href=\\\"https://guyanatimesgy.com\\\">Guyana Times</a>.</p>",
"source": "Guyana Times",
"link": "https://guyanatimesgy.com/conditional-survey-to-determine-phased-reopening-of-sugar-estates-agriculture-minister/",
"image": null,
"published": "2020-09-14 20:11:25.112896",
"code": "gy"
},
{
"id": "86",
"title": "BUDGET 2020: APNU/AFC Govt owes GPL $13.1B Indar",
"description": "As the 2020 budget debates continue, Junior Minister of Public Works Deodat Indar has revealed that the previous administration had not paid the Guyana Power and Light Inc. (GPL) some $13.1B for electricity. Upon looking at the books of GPL, I have found that there is $13.1B that the government of the past five years ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/budget-2020-apnu-afc-govt-owes-gpl-13-1b-indar/",
"image": null,
"published": "2020-09-14 20:11:25.727562",
"code": "gy"
},
{
"id": "87",
"title": "BUDGET 2020: Opposition MP calls for increased private sector minimum wage",
"description": "Even though it was the former APNU/AFC Administration that failed to finalise the increase of the private sector minimum wage, Opposition Member of Parliament Coretta McDonald is now calling on the new PPP/C Administration to do so. During her maiden presentation in the National Assembly, McDonald who is also a longstanding leader of the ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/budget-2020-opposition-mp-calls-for-increased-private-sector-minimum-wage/",
"image": null,
"published": "2020-09-14 20:11:25.746557",
"code": "gy"
},
{
"id": "88",
"title": "Govt adding Remdesivir to drug inventory for treatment of COVID-19",
"description": "Minister of Health, Dr. Frank Anthony says plans are in train to purchase the drug Remdesivir to treat patients who have fallen critically-ill as a result of the novel coronavirus disease 2019 (COVID-19). Remdesivir is an anti-viral drug administered by Intravenous (IV) Therapy to COVID-19 patients suffering from severe symptoms. It is known as a ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/govt-adding-remdesivir-to-drug-inventory-for-treatment-of-covid-19/",
"image": null,
"published": "2020-09-14 20:11:25.759204",
"code": "gy"
},
{
"id": "89",
"title": "6 arrested as investigation continues into death of WCB taxi driver",
"description": "As the Police Force continues to investigate the circumstances surrounding the death of a 47-year-old taxi driver of West Coast Berbice (WCB), the mans wife and son are among six persons in custody assisting with the probe. Mohamed Haniff, of Experiment WCB, was found dead in home. His wife, Basmattie Gopaul told investigators her husband ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/6-arrested-as-investigation-continues-into-death-of-wcb-taxi-driver/",
"image": null,
"published": "2020-09-14 20:11:25.771809",
"code": "gy"
},
{
"id": "90",
"title": "Missing aircraft found with dead man on-board",
"description": "Authorities in Region Seven (Cuyuni-Mazaruni) have located the second aircraft which crash-landed in Guyana last evening. There was a dead man on-board. This was confirmed by Divisional Commander Dion Moore who said investigations are ongoing. This second aircraft was accompanying another, a red and white 206 Cessna which was discovered at the 9 Miles Airstrip ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/missing-aircraft-found-with-dead-man-on-board/",
"image": null,
"published": "2020-09-14 20:11:25.784948",
"code": "gy"
},
{
"id": "91",
"title": "Police, rice farmers clash over drying of paddy, use of combines on Corentyne highway",
"description": "The Guyana Police Force (GPF) and the Rice Producers Association (RPA) are at loggerheads over combines being allowed to traverse the Corentyne Highway. They are also clashing over whether it is allowed for paddy to be dried on the roadways. Over the years, combines have been traversing the roadway while several sections are being used ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/police-rice-farmers-clash-over-drying-of-paddy-use-of-combine-on-corentyne-highway/",
"image": null,
"published": "2020-09-14 20:11:25.797752",
"code": "gy"
},
{
"id": "92",
"title": "Windies women fine-tuning and building momentum ahead of England clash",
"description": "After two weeks of intense training since arriving in Derby for the Sandals West Indies Womens Tour of England 2020, the West Indies Women played their first practice match.The next step, as they increase preparations ahead of the five-match Vitality T20 International series against England Women starting on September 21 at the Incora County Ground. ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/windies-women-fine-tuning-and-building-momentum-ahead-of-england-clash/",
"image": null,
"published": "2020-09-14 20:11:25.810215",
"code": "gy"
},
{
"id": "93",
"title": "BUDGET 2020: This is not an elections campaign, its the Parliament of Guyana Teixeira tells Opposition MP",
"description": "As the $330B budget debate kicked off this morning in the National Assembly, Minister of Parliamentary Affairs and PPP/C Member of Parliament had cause to rebuke an Opposition Member of Parliament over statements he made, which according to her, lacked the basis of fact. Opposition Member of Parliament, Shurwayne Holder, commenced his maiden address by ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/this-is-not-an-elections-campaign-its-the-parliament-of-guyana-teixeira-tells-opposition-mp/",
"image": null,
"published": "2020-09-14 20:11:25.823192",
"code": "gy"
},
{
"id": "94",
"title": "BUDGET 2020: Hamilton slams APNU/AFC for severely understaffing Labour Dept",
"description": "The former APNU/AFC government was today flayed by Minister of Labour, Joseph Hamilton, for the lack of attention it paid to labour-related issues during its time in office. Hamilton, during the 2020 budget debates, explained that when he took office, the Ministry of Labour [formerly Department] was staffed with 87 persons. However, he noted that ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/budget-2020-hamilton-slams-apnu-afc-for-severely-understaffing-labour-dept/",
"image": null,
"published": "2020-09-14 20:11:25.837163",
"code": "gy"
},
{
"id": "95",
"title": "Mohameds family refutes involvement in Ponzi Scheme operations",
"description": "The principals of the popular Mohameds Enterprises have refuted a fake article circulating on social media which suggests that they were involved in the Ponzi Scheme that was being operated by Cuban national Yuri Garcia-Dominiguez and his Guyanese wife, Ateeka Ishmael. According to the article, Nazar and his son Azruddin are being investigated by the ",
"source": "INewsGy",
"link": "https://www.inewsguyana.com/mohameds-family-refutes-involvement-in-ponzi-scheme-operations/",
"image": null,
"published": "2020-09-14 20:11:25.854351",
"code": "gy"
},
{
"id": "96",
"title": "Dead man, suspected cocaine found aboard second aircraft",
"description": "A second aircraft was Monday afternoon found in the Issano area with a dead man and a quantity of suspected cocaine, police said. The identity of the pilot was not immediately known, but Region Seven Police Commander Superintendent Dion Moore said the crashed plane is a Beechcraft. The registration markings were not yet available. Mr. ...",
"source": "Demerara Waves",
"link": "https://demerarawaves.com/2020/09/14/dead-man-suspected-cocaine-found-aboard-second-aircraft/",
"image": null,
"published": "2020-09-14 20:11:26.699967",
"code": "gy"
},
{
"id": "97",
"title": "APNU+AFC warns of hot mess from Pompeos visit",
"description": "Opposition Leader Joseph Harmon on Monday said he would be tabling a question in the National Assembly about the impending visit of United States (US) Secretary of State, Mike Pompeo. Opposition A Partnership for National Unity+Alliance For Change (APNU+AFC) parliamentarian Raphael Trotman warned against the pomp of a certain foreign signatory leaving Guyana in a ...",
"source": "Demerara Waves",
"link": "https://demerarawaves.com/2020/09/14/apnuafc-warns-of-hot-mess-from-pompeos-visit/",
"image": null,
"published": "2020-09-14 20:11:26.722743",
"code": "gy"
},
{
"id": "98",
"title": "Brazilians, Venezuelan arrested after Brazilian plane lands on Issano airstrip",
"description": "Police say two Brazilians and a Venezuelan were late Sunday arrested after they landed aboard a plane on the Issano Airstrip in Middle Mazaruni. Nothing illegal was found aboard the Cessna 206 bearing registration marking, PR-FMJ. Those arrested after the red and white plane landed at about 10:20 PM were a 38 year old pilot, ...",
"source": "Demerara Waves",
"link": "https://demerarawaves.com/2020/09/14/brazilians-venezuelan-arrested-after-brazilian-plane-lands-on-issano-airstrip/",
"image": null,
"published": "2020-09-14 20:11:26.739635",
"code": "gy"
},
{
"id": "99",
"title": "Guyanese dies in road accident in Antigua",
"description": "A Guyanese man died in a road accident in Antigua when the speeding vehicle he lost control of the speeding vehicle and flipped several times on a newly-constructed road, authorities said. He has been identified as Vijai Persaud, an employee of Meridian Construction company. Antigua Newsroom reports that at about 11:55 Saturday night, the Guyanese ...",
"source": "Demerara Waves",
"link": "https://demerarawaves.com/2020/09/14/guyanese-dies-in-road-accident-in-antigua/",
"image": null,
"published": "2020-09-14 20:11:26.754745",
"code": "gy"
},
{
"id": "100",
"title": "Police force virtually silent on investigation into West Berbice killings",
"description": "The Guyana Police Force on Sunday remained virtually tight-lipped for a fourth straight day on the status of investigations into the several killings on the West Coast Berbice over the past week. Home Affairs Minister Robeson Benn also could not provide any useful information, instead merely saying that the police were continuing their investigations and ...",
"source": "Demerara Waves",
"link": "https://demerarawaves.com/2020/09/13/police-force-virtually-silent-on-investigation-into-west-berbice-killings/",
"image": null,
"published": "2020-09-14 20:11:26.772012",
"code": "gy"