-
Notifications
You must be signed in to change notification settings - Fork 6
/
content.json
1214 lines (1214 loc) · 70.5 KB
/
content.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
{
"science": [
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Lesley Evans Ogden",
"title": "Someone is wrecking the ozone layer again. They must be stopped",
"description": "For the health of our planet, and ourselves, we must find and foil those who breach crucial environmental treaties, says Lesley Evans Ogden",
"url": "https://www.newscientist.com/article/2169337-someone-is-wrecking-the-ozone-layer-again-they-must-be-stopped/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/17171134/am1wr2.jpg",
"publishedAt": "2018-05-17T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "John Wenz",
"title": "Frankenstein planets may form from the wreckage of dead worlds",
"description": "When stars die, they can explode and destroy any planets nearby. But new worlds could arise out of the debris and some could reach the mass of 10 Earths",
"url": "https://www.newscientist.com/article/2169193-frankenstein-planets-may-form-from-the-wreckage-of-dead-worlds/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/17150234/disintegrating_asteroid.jpg",
"publishedAt": "2018-05-17T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Colin Barras",
"title": "Harsh: Europe’s cannabis died just as the first farmers arrived",
"description": "Cannabis – the source of the drug marijuana – virtually disappeared from Europe just as farmers arrived, so they didn’t get the chance to grow it for another 4500 years",
"url": "https://www.newscientist.com/article/2169163-harsh-europes-cannabis-died-just-as-the-first-farmers-arrived/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/17113640/fnc092.jpg",
"publishedAt": "2018-05-17T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Niall Firth",
"title": "Drones plus AI help to spot sick trees and plants in time",
"description": "Drones fitted with multispectral cameras are scanning forests for beetle attack, and orchards and vineyards for signs of disease before it’s too late",
"url": "https://www.newscientist.com/article/2169172-drones-plus-ai-help-to-spot-sick-trees-and-plants-in-time/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/17112801/gettyimages-819381878.jpg",
"publishedAt": "2018-05-17T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Helen Thomson",
"title": "Aha! What happens in your brain when you have a lightbulb moment",
"description": "We now know what happens in your brain when inspiration strikes. The insight may lead to new brain stimulation techniques that put you in problem-solving mode",
"url": "https://www.newscientist.com/article/2168976-aha-what-happens-in-your-brain-when-you-have-a-lightbulb-moment/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/15173534/gettyimages-611975304-800x533.jpg",
"publishedAt": "2018-05-17T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Jessica Hamzelou",
"title": "The US isn’t fertile enough to sustain itself without immigrants",
"description": "For every 1000 women in the US, only around 1760 children are born, meaning the US population cannot replace itself without immigration",
"url": "https://www.newscientist.com/article/2169119-the-us-isnt-fertile-enough-to-sustain-itself-without-immigrants/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/16162209/gettyimages-750919735.jpg",
"publishedAt": "2018-05-17T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Michael Le Page",
"title": "Lizards keep evolving toxic green blood and we don’t know why",
"description": "All the green-blooded lizards in the world live in New Guinea, but it turns out the trait has evolved there independently at least four times",
"url": "https://www.newscientist.com/article/2169131-lizards-keep-evolving-toxic-green-blood-and-we-dont-know-why/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/16170443/rodriguez1hr.jpg",
"publishedAt": "2018-05-16T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Debora MacKenzie",
"title": "Trump’s Iran U-turn could restart the global nuclear arms race",
"description": "The US has demonstrated that it cannot be trusted to stick to its word on arms control deals. The result may be a return to the dark days of growing nuclear arsenals",
"url": "https://www.newscientist.com/article/mg23831781-300-trumps-iran-u-turn-could-restart-the-global-nuclear-arms-race/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/15101551/rexfeatures_9665919k.jpg",
"publishedAt": "2018-05-16T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Lara Williams",
"title": "Keep the facts front and centre in Ireland’s abortion debate",
"description": "Research can offer plenty of evidence to back the case for relaxing Ireland’s near total abortion ban in the country’s upcoming referendum, says Lara Williams",
"url": "https://www.newscientist.com/article/mg23831781-400-keep-the-facts-front-and-centre-in-irelands-abortion-debate/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/15104236/new-scientist-19.05.18.jpg",
"publishedAt": "2018-05-16T00:00:00Z"
},
{
"source": {
"id": "new-scientist",
"name": "New Scientist"
},
"author": "Leah Crane",
"title": "Some of the universe’s first stars have actually been seen",
"description": "Using four of the world’s most powerful telescopes, we’ve spotted stars from just 250 million years after the big bang in a galaxy billions of light years away",
"url": "https://www.newscientist.com/article/2169090-some-of-the-universes-first-stars-have-actually-been-seen/",
"urlToImage": "https://d1o50x50snmhul.cloudfront.net/wp-content/uploads/2018/05/16152031/gettyimages-878246050.jpg",
"publishedAt": "2018-05-16T00:00:00Z"
}
],
"nature": [
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Alexandra Genova",
"title": "Along These Shifting Borders, Life is Full of Unease and Adversity",
"description": "For people near the borders of these Russian-supported separatist territories in Georgia, uncertainty is a constant struggle.",
"url": "https://www.nationalgeographic.com/photography/proof/2018/05/russia-georgia-abkhazia-south-ossetia-moving-border-territory-culture.html",
"urlToImage": "https://www.nationalgeographic.com/content/dam/photography/PROOF/2018/May/house-divided/04-house-divided-sulakauri.jpg",
"publishedAt": "2018-05-17T17:22:44.8569952Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": null,
"title": "Experience an Air Safari Through Kenya",
"description": "This safari both indulges and educates its guests.",
"url": "https://www.nationalgeographic.com/travel/destinations/africa/kenya/things-to-do-air-safari.html",
"urlToImage": "https://www.nationalgeographic.com/content/dam/travel/2018-digital/air-safari/air-safari-kenya-01.jpg",
"publishedAt": "2018-05-17T17:22:44.4926459Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": null,
"title": "Discover Moscow's Colorful Cathedrals and Striking Palaces",
"description": "These iconic sites occupy the heart of the Russian nation.",
"url": "https://www.nationalgeographic.com/travel/world-heritage/kremlin-red-square.html",
"urlToImage": "https://yourshot.nationalgeographic.com/u/fQYSUbVfts-T7odkrFJckdiFeHvab0GWOfzhj7tYdC0uglagsDGOWbH7I3w4m1q6symi_2xmQX5VzAAZGoJYf_hisOxbt_dBClEwLcoDEXIKR2AnRiKSaM_jjbYnSvwk2yAZWAXuW2aNcKXNGr9lbfieuIxFrEJIeRkMZj46EwCOUAwPPjLb5IQk76Gy-3U0ZQiUbJHWdxroZ1IzSQUwXRonsJQf/",
"publishedAt": "2018-05-17T17:22:44.0732443Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Elaina Zachos",
"title": "This Is the Age When Puppies Are the Cutest, According to Science",
"description": "Puppies reach “peak cuteness” between six and eight weeks old, which could provide some insight into how dogs evolved alongside people.",
"url": "https://news.nationalgeographic.com/2018/05/puppies-dogs-cute-evolution-animals-spd.html",
"urlToImage": "https://news.nationalgeographic.com/content/dam/news/2018/05/16/puppy-peak-cuteness/01-puppy-peak-cuteness-NationalGeographic_2283134.jpg",
"publishedAt": "2018-05-17T17:22:43.8590394Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Elaina Zachos",
"title": "Can People Really Mistake a Bear for a Dog, as This Family Claims?",
"description": "Obvious differences set wild animals apart from domesticated ones, but mix-ups happen more often than you might think.",
"url": "https://news.nationalgeographic.com/2018/05/black-bear-dog-adoption-animals-spd.html",
"urlToImage": "https://pmdvod.nationalgeographic.com/NG_Video/497/263/smpost_1526497519276.jpg",
"publishedAt": "2018-05-17T17:22:43.6238134Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Amy Rankin",
"title": "A Tarantula Sheds Its Skin in New Time-Lapse Video",
"description": "This venomous, but docile, Mexican red-kneed tarantula can be seen molting over seven hours in just 40 seconds.",
"url": "https://news.nationalgeographic.com/2018/05/tarantula-shedding-molting-video-timelapse-slow-motion-animals-spd.html",
"urlToImage": "https://pmdvod.nationalgeographic.com/NG_Video/584/174/smpost_1526503200326.jpg",
"publishedAt": "2018-05-17T17:22:43.3575846Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Nina Strochlic",
"title": "This Is What Daily Life in North Korea Looks Like",
"description": "In a country where behavior is tightly controlled, a photographer captures individuality on the streets and in the businesses of Pyongyang.",
"url": "https://www.nationalgeographic.com/magazine/2018/06/north-korea-pyongyang-portraits.html",
"urlToImage": "https://www.nationalgeographic.com/content/dam/magazine/rights-exempt/2018/06/north-korea/north-korea-portraits-pyongyang-individuality-1.jpg",
"publishedAt": "2018-05-17T17:22:43.1723815Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Heather Brady",
"title": "Vintage Photos of Royalty Around the World",
"description": "As Britain prepares for its next royal wedding, take a look at these images of royalty from the National Geographic archives.",
"url": "https://www.nationalgeographic.com/photography/proof/2018/05/vintage-photos-royalty-king-queen-princess-prince-royal-wedding-culture.html",
"urlToImage": "https://www.nationalgeographic.com/content/dam/photography/rights-exempt/PROMO-royalty-vintage.jpg",
"publishedAt": "2018-05-17T17:22:42.9811987Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Marie McGrory",
"title": "This Man Photographed Mount Fuji for 7 Years—Here's the Result",
"description": "Despite taking hundreds of trips to Japan's iconic mountain, this photographer has never climbed it.",
"url": "https://www.nationalgeographic.com/travel/destinations/asia/japan/mount-fuji-photographs-cover-image.html",
"urlToImage": "https://www.nationalgeographic.com/content/dam/travel/2018-digital/your-shot-cover-contest-winner-mt-fuji/cherry-blossoms-mt-fuji-japan.jpg",
"publishedAt": "2018-05-17T17:22:42.7239508Z"
},
{
"source": {
"id": "national-geographic",
"name": "National Geographic"
},
"author": "Sarah Gibbens",
"title": "No, Hawaii's Volcano Won't Trigger a Mega-Tsunami",
"description": "Here are all the ways the Hawaiian eruption won't cause problems, according to experts.",
"url": "https://news.nationalgeographic.com/2018/05/kilauea-volcano-tsunami-explosive-hawaii-myths-explained-science.html",
"urlToImage": "https://pmdvod.nationalgeographic.com/NG_Video/920/415/smpost_1526081897846.jpg",
"publishedAt": "2018-05-17T17:22:41.9652238Z"
}
],
"tech": [
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Romain Dillet",
"title": "It turns out Apple could build its new campus in North Carolina",
"description": "The Washington Post reported just yesterday that Apple was talking with Virginia officials for a new campus in Northern Virginia. But WRAL is now reporting that Apple is about to announce a new campus in North Carolina. According to WRAL’s sources, it’s “a do…",
"url": "https://techcrunch.com/2018/05/17/it-turns-out-apple-could-build-its-new-campus-in-north-carolina/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/downtown_durham.jpg?w=679",
"publishedAt": "2018-05-17T17:20:14Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Brian Heater",
"title": "Another smart luggage maker shutters in the wake of airline ban",
"description": "Two weeks after Bluesmart called it quits, another smart luggage maker is pulling the plug. New York-based travel startup Raden posted a note (spotted by The Verge) on its site announcing that the company is “no longer in operation.” Unlike Bluesmart, which s…",
"url": "https://techcrunch.com/2018/05/17/another-smart-luggage-maker-shutters-in-the-wake-of-airline-ban/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2017/11/raden_preview.jpeg?w=711",
"publishedAt": "2018-05-17T17:12:15Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Frederic Lardinois",
"title": "Contentstack doubles down on its headless CMS",
"description": "It’s been about two years since Build.io launched Contentstack, a headless content management system for the enterprise. Contentstack was always a bit of an odd product at Build.io, which mostly focuses on providing integration tools like Flow for large compa…",
"url": "https://techcrunch.com/2018/05/17/contentstack-doubles-down-on-its-headless-cms/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/contentstack-plaque-2.jpg?w=533",
"publishedAt": "2018-05-17T16:21:18Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Sarah Perez",
"title": "Instagram officially launches re-sharing of posts to Stories",
"description": "No, it’s not a “regram” option. Sorry! But today, Instagram is officially launching a new feature that will allow users to re-share someone’s Instagram post with their friends via Instagram Stories – something it confirmed was testing earlier this year. The …",
"url": "https://techcrunch.com/2018/05/17/instagram-officially-launches-re-sharing-of-posts-to-stories/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/gettyimages-540936038.jpg?w=601",
"publishedAt": "2018-05-17T16:09:01Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Megan Rose Dickey",
"title": "Facebook's accessibility ambitions",
"description": "Facebook’s work around accessibility took center stage in 2016 when it launched something called automatic alt-text for people using screen readers to identify what’s displayed, AAT uses object recognition technology to generate descriptions of photos on Face…",
"url": "https://techcrunch.com/2018/05/17/facebooks-accessibility-ambitions/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/gettyimages-953382756.jpg?w=565",
"publishedAt": "2018-05-17T16:00:14Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Issie Lapowsky",
"title": "Gruesome Jihadi Content Still Flourishes on Facebook and Google+",
"description": "Despite improvements to algorithmic filtering, Facebook and Google+ still host scores of ISIS and related content and accounts that sometimes stay up for months.",
"url": "https://www.wired.com/story/jihadi-content-still-on-facebook-google/",
"urlToImage": "https://media.wired.com/photos/5afcd0cbcc8dc93d6a8e7637/191:100/pass/jihad_fb_google.jpg",
"publishedAt": "2018-05-17T16:00:00Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Connie Loizos",
"title": "In the next few weeks, you can spend time with any one of these VCs and it will all go to charity",
"description": "Five years ago, we told you about a venture capital auction, wherein dozens of VCs donated their time toward a great good — helping fund research at the Leukemia & Lymphoma Society, one of the world’s largest voluntary health organizations dedicated to fundin…",
"url": "https://techcrunch.com/2018/05/17/in-the-next-few-weeks-you-can-spent-time-with-any-one-of-these-vcs-and-it-will-all-go-to-charity/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/ucsf_20160227_biden_300b.jpg?w=631",
"publishedAt": "2018-05-17T15:58:04Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Matthew Lynley",
"title": "Pluralsight pops more than 30% in its public debut",
"description": "Pluralsight is having a pretty good day in its debut as a public company, with its shares popping more than 30% after its first trade following its IPO. There’ll be a little bit of debate as to whether Pluralsight might have left some money on the table in it…",
"url": "https://techcrunch.com/2018/05/17/pluralsight-pops-more-than-30-in-its-public-debut/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2017/04/pluralsight-ceo-sign2.jpg?w=600",
"publishedAt": "2018-05-17T15:28:17Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Sarah Perez",
"title": "Instagram opens a San Francisco office",
"description": "Last year, Facebook was reportedly scouting for office space in San Francisco in order to find a space suitable to house some 100 Instagram employees. Today, the company is officially confirming its San Francisco plans with an announcement that it has leased …",
"url": "https://techcrunch.com/2018/05/17/instagram-opens-a-san-francisco-office/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/20180511_igsf_officespace-234.jpg?w=600",
"publishedAt": "2018-05-17T15:22:52Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Brian Heater",
"title": "Apple brings its coding lessons to schools for students who are blind and deaf",
"description": "Apple this morning announced another expansion of Everyone Can Code, bringing its Swift coding curricula to a number of US schools focused on students who are blind and deaf. The current list includes eight schools in California, New York, Florida, Illinois, …",
"url": "https://techcrunch.com/2018/05/17/apple-brings-its-coding-lessons-to-schools-for-students-who-are-blind-and-deaf/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/apple_everyone_can_code_for_blind_and_deaf_students_05172018.jpg?w=711",
"publishedAt": "2018-05-17T15:19:32Z"
},
{
"source": {
"id": "techcrunch",
"name": "TechCrunch"
},
"author": "Josh Constine",
"title": "Boosted Boards founders launch heavy-duty scooter renter Skip",
"description": "All electric scooters are not created equal. I’ve found ones from Spin, Bird, and Lime to often be broken, shaky, or out of battery. But now the founders of Boosted Boards, which makes the steadiest and safest-feeling electric skateboards, are bringing their …",
"url": "https://techcrunch.com/2018/05/17/skip-scooters/",
"urlToImage": "https://techcrunch.com/wp-content/uploads/2018/05/skip-scooters.jpg?w=740",
"publishedAt": "2018-05-17T15:02:08Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Michael Hardy",
"title": "Mesmerizing Photos of Finland's Icebound Archipelago",
"description": "These drones-eye aerial shots capture a Scandinavian summer destination in off-season transition.",
"url": "https://www.wired.com/story/finland-icebound-archipelago-photography/",
"urlToImage": "https://media.wired.com/photos/5afc50f6b6133764df4880c7/191:100/pass/Oliver-Morin_6.jpg",
"publishedAt": "2018-05-17T15:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Matt Jancer",
"title": "More Artists Are Writing Songs in the Key of AI",
"description": "Collaborating with the likes of Sony’s Flow Machine and IBM’s Watson, music producers, K-pop stars, and YouTubers are enlisting AI to crank out hits.",
"url": "https://www.wired.com/story/music-written-by-artificial-intelligence/",
"urlToImage": "https://media.wired.com/photos/5ac79fadb507c70af20e5a0a/191:100/pass/wired_conductor_savage_r1.jpg",
"publishedAt": "2018-05-17T14:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Megan Molteni",
"title": "Spermbots Offer a Promising New Way to Target Cancer",
"description": "After discovering that sperm could be coaxed into carrying chemotherapy drugs, researchers shifted their focus from inducing life to slaying reproductive cancer.",
"url": "https://www.wired.com/story/spermbots-offer-a-promising-new-way-to-target-cancer/",
"urlToImage": "https://media.wired.com/photos/5adf8332e79d8d6a6f76a552/191:100/pass/spermbots_web.jpg",
"publishedAt": "2018-05-17T13:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Graeme McMillan",
"title": "5 Comics to Read Before You See 'Deadpool 2'",
"description": "Want to know what's up with Josh Brolin's character Cable? Here's your primer.",
"url": "https://www.wired.com/story/deadpool-2-comics-pull-list/",
"urlToImage": "https://media.wired.com/photos/5afcdf1fb2da0a7f98d58f75/191:100/pass/Deadpool.jpg",
"publishedAt": "2018-05-17T13:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Jeffrey Van Camp",
"title": "LG’s G7 ThinQ Can’t Think For Itself, And That’s OK",
"description": "LG’s G7 may confuse your houseplants for ham, but it’s still a top Android phone.",
"url": "https://www.wired.com/review/review-lg-g7-thinq/",
"urlToImage": "https://media.wired.com/photos/5afcd3caad8a3c6fb73a00cd/191:100/pass/LG-G7-Front-and-Back-SOURCE-LG.jpg",
"publishedAt": "2018-05-17T13:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Jessi Hempel",
"title": "What Happened to Internet.org, Facebook's Grand Plan to Wire the World?",
"description": "Five years ago Mark Zuckerberg debuted a bold vision of global internet. It didn’t go as planned—forcing Facebook to reckon with the limits of its own ambition.",
"url": "https://www.wired.com/story/what-happened-to-facebooks-grand-plan-to-wire-the-world/",
"urlToImage": "https://media.wired.com/photos/5afb30ef57c02d59cb85a7f5/191:100/pass/InternetOrg-FA.jpg",
"publishedAt": "2018-05-17T11:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Aarian Marshall",
"title": "Is Tesla's Autopilot Safe? Finding Out Demands Better Data",
"description": "Elon Musk has made bold claims about his sort of self-driving feature’s saving lives, but the truth is far trickier, and harder to reach.",
"url": "https://www.wired.com/story/tesla-autopilot-crash-safety/",
"urlToImage": "https://media.wired.com/photos/5afb65229b5e39125120fecf/191:100/pass/GettyImages-628733168.jpg",
"publishedAt": "2018-05-17T11:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Garrett M. Graff",
"title": "4 Key Takeaways From Mueller’s First Year—and What’s Next",
"description": "One year in, Robert Mueller’s investigation into Trump and Russia appears poised to connect all the pieces of the puzzle.",
"url": "https://www.wired.com/story/4-key-takeaways-from-muellers-first-yearand-whats-next/",
"urlToImage": "https://media.wired.com/photos/5afcda5f3733a15a44c5d0eb/191:100/pass/Mueller1Year-699354966.jpg",
"publishedAt": "2018-05-17T11:00:00Z"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Matt Simon",
"title": "The Complete History And Future of Robots",
"description": "Here's the WIRED guide to catch you up on everything you should know about robotics.",
"url": "https://www.wired.com/story/wired-guide-to-robots/",
"urlToImage": "https://media.wired.com/photos/5afb702b95d5844ec4ac0544/191:100/pass/RobotGuideFA_Variant.png",
"publishedAt": "2018-05-17T11:00:00Z"
}
],
"movies": [
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Chancellor Agard",
"title": "Marvel Movie Club: Black Panther's end-credits scenes, explained - EW.com (blog)",
"description": "EW.com (blog) Marvel Movie Club: Black Panther's end-credits scenes, explained EW.com (blog) SPOILER ALERT: This articles contains spoilers from the movie Black Panther, which opened nationwide Friday. Read at your own risk! As we count down to the long-await…",
"url": "http://ew.com/movies/2018/02/16/black-panther-end-credits-scenes-explained/",
"urlToImage": "https://ewedit.files.wordpress.com/2017/07/blackpanther596d2f1f9d9a1.jpg?crop=0px%2C316px%2C2700px%2C1419px&resize=1200%2C630",
"publishedAt": "2018-02-16T21:28:47Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Derek Lawrence",
"title": "Joss Whedon exits DC's Batgirl movie",
"description": "Joss Whedon exits DC's Batgirl movie ew.com",
"url": "http://ew.com/movies/2018/02/22/joss-whedon-exits-batgirl-movie/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/gettyimages-610736962.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-02-22T21:28:00Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "James Hibberd",
"title": "HBO's Fahrenheit 451 movie gets first trailer",
"description": "HBO's Fahrenheit 451 movie gets first trailer ew.com",
"url": "http://ew.com/tv/2018/02/26/hbo-fahrenheit-451-trailer/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/mv5bmjewndgzmzq1of5bml5banbnxkftztgwoda2njy5mji-_v1_sy1000_cr0014991000_al_.jpg?crop=335px%2C60px%2C996px%2C523px&resize=1200%2C630",
"publishedAt": "2018-02-26T18:55:17Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Joey Nolfi",
"title": "Tom Hanks' Mr. Rogers movie plot details revealed",
"description": "Tom Hanks' Mr. Rogers movie plot details revealed ew.com",
"url": "http://ew.com/movies/2018/03/19/tom-hanks-mr-rogers-movie-you-are-my-friend-plot-details/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/03/2way16.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-03-19T23:13:25Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Christopher Rosen",
"title": "Ready Player One premiere reviews praise Steven Spielberg movie",
"description": "Ready Player One premiere reviews praise Steven Spielberg movie ew.com",
"url": "http://ew.com/movies/2018/03/12/steven-spielberg-ready-player-one-premiere-reviews/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/rp1-jb-02140r.jpg?crop=409px%2C53px%2C2027px%2C1065px&resize=1200%2C630",
"publishedAt": "2018-03-12T12:00:54Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Natalie Abrams",
"title": "Captain Marvel movie to feature key Guardians, SHIELD characters",
"description": "Captain Marvel movie to feature key Guardians, SHIELD characters ew.com",
"url": "http://ew.com/movies/2018/03/26/captain-marvel-cast-guardians-shield-characters/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/03/shield-guardians.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-03-26T17:59:43Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Clark Collis",
"title": "Halloween: Jamie Lee Curtis says new movie is 'terrifying'",
"description": "Halloween: Jamie Lee Curtis says new movie is 'terrifying' ew.com",
"url": "http://ew.com/movies/2018/02/16/jamie-lee-curtis-halloween-movie-terrifying/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/halloween-117_halloween_la_hires_rgb.jpg?crop=0px%2C84px%2C2700px%2C1419px&resize=1200%2C630",
"publishedAt": "2018-02-16T16:54:04Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Nick Romano",
"title": "Catwoman writer John Rogers says film was sh— movie",
"description": "Catwoman writer John Rogers says film was sh— movie ew.com",
"url": "http://ew.com/movies/2018/02/24/catwoman-writer-john-rogers-sh-movie/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/catwoman.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-02-24T21:34:05Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Piya Sinha-roy",
"title": "Blindspotting trailer: Daveed Diggs movie has high stakes",
"description": "Blindspotting trailer: Daveed Diggs movie has high stakes ew.com",
"url": "http://ew.com/movies/2018/04/19/blindspotting-daveed-diggs-trailer/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/04/blindspotting.jpg?crop=150px%2C234px%2C2981px%2C1566px&resize=1200%2C630",
"publishedAt": "2018-04-19T13:03:01Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Clark Collis",
"title": "John Carpenter will provide score for new Halloween movie",
"description": "John Carpenter will provide score for new Halloween movie ew.com",
"url": "http://ew.com/movies/2018/04/20/john-carpenter-halloween-score/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/01/shutterstock_editorial_8129068a_huge.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-04-20T16:21:31Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "James Hibberd",
"title": "Steven Spielberg to make D.C. Comics movie 'Blackhawk'",
"description": "Steven Spielberg to make D.C. Comics movie 'Blackhawk' ew.com",
"url": "http://ew.com/movies/2018/04/17/steven-spielberg-blackhawk/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/04/blackhawk.jpg?crop=0px%2C211px%2C1710px%2C898px&resize=1200%2C630",
"publishedAt": "2018-04-17T22:01:50Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "David Canfield",
"title": "Shia LaBeouf will play his father in a movie about himself",
"description": "Shia LaBeouf will play his father in a movie about himself ew.com",
"url": "http://ew.com/movies/2018/03/17/shia-labeouf-biopic-father/",
"urlToImage": "https://ewedit.files.wordpress.com/2017/07/ap_16336125445027.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-03-17T17:18:17Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Derek Lawrence",
"title": "Avengers: Infinity War tickets presale sets new superhero movie record",
"description": "Avengers: Infinity War tickets presale sets new superhero movie record ew.com",
"url": "http://ew.com/movies/2018/03/16/avengers-infinity-war-presales-record/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/03/infinitywar5aa86b6fdaeb5.jpg?crop=0px%2C153px%2C2700px%2C1418px&resize=1200%2C630",
"publishedAt": "2018-03-16T21:55:56Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Devan Coggan",
"title": "In the Heights movie rights return to Lin-Manuel Miranda from Weinstein Co.",
"description": "In the Heights movie rights return to Lin-Manuel Miranda from Weinstein Co. ew.com",
"url": "http://ew.com/movies/2018/04/05/in-the-heights-creators-regain-movie-rights-from-weinstein-co/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/04/heightsbway177r.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-04-05T20:23:44Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Nick Romano",
"title": "Sopranos movie: Prequel The Many Saints of Newark coming from David Chase",
"description": "Sopranos movie: Prequel The Many Saints of Newark coming from David Chase ew.com",
"url": "http://ew.com/movies/2018/03/08/sopranos-movie-prequel-david-chase/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/03/gettyimages-50555794.jpg?crop=0px%2C95px%2C2700px%2C1418px&resize=1200%2C630",
"publishedAt": "2018-03-08T18:18:44Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Christian Holub",
"title": "Black Panther is the most-tweeted-about movie of all time",
"description": "Black Panther is the most-tweeted-about movie of all time ew.com",
"url": "http://ew.com/movies/2018/03/20/black-panther-most-tweeted-movie-all-time/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/blackpanther5a8bb490c8fa2.jpg?crop=0px%2C372px%2C2700px%2C1418px&resize=1200%2C630",
"publishedAt": "2018-03-20T17:05:08Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Samantha Highfill",
"title": "Scooby-Doo Mystery Gang members Daphne and Velma get their own movie",
"description": "Scooby-Doo Mystery Gang members Daphne and Velma get their own movie ew.com",
"url": "http://ew.com/movies/2018/03/26/daphne-velma-scooby-doo-movie/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/03/daphne_velma.jpg?crop=3px%2C53px%2C2700px%2C1418px&resize=1200%2C630",
"publishedAt": "2018-03-26T17:06:12Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Christian Holub",
"title": "Black Panther becomes fourth biggest movie at domestic box office",
"description": "Black Panther becomes fourth biggest movie at domestic box office ew.com",
"url": "http://ew.com/movies/2018/04/03/black-panther-fourth-biggest-movie-domestic-box-office/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/blackpanther5a8bb48a5db9b.jpg?crop=0px%2C182px%2C2700px%2C1418px&resize=1200%2C630",
"publishedAt": "2018-04-03T18:54:18Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Anthony Breznican",
"title": "IT sequel: Jessica Chastain in talks to join cast of Stephen King movie",
"description": "IT sequel: Jessica Chastain in talks to join cast of Stephen King movie ew.com",
"url": "http://ew.com/movies/2018/02/20/jessica-chastain-it-sequel-stephen-king/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/02/chastain-it.jpg?crop=501px%2C37px%2C2167px%2C1139px&resize=1200%2C630",
"publishedAt": "2018-02-20T19:49:07Z"
},
{
"source": {
"id": "entertainment-weekly",
"name": "Entertainment Weekly"
},
"author": "Nick Romano",
"title": "Kim Possible movie: Sadie Stanley, Sean Giambrone cast as leads",
"description": "Kim Possible movie: Sadie Stanley, Sean Giambrone cast as leads ew.com",
"url": "http://ew.com/tv/2018/04/25/kim-possible-movie-cast-sadie-stanley-sean-giambrone/",
"urlToImage": "https://ewedit.files.wordpress.com/2018/04/149194_0323.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2018-04-25T17:44:26Z"
}
],
"art": [
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Savannah Robinson",
"title": "An Art Colony Thrives On Skid Row",
"description": "Most Los Angles residents think of Skid Row as a dark and disturbing place. This dynamic arts community wants to change that.",
"url": "https://www.huffingtonpost.com/entry/art-skid-row_us_5ad0ba82e4b0edca2cb92662",
"urlToImage": "https://img.huffingtonpost.com/asset/5ad0c3851e00008e0b7b16e2.jpeg?cache=rJkfvoy0S0&ops=1200_630",
"publishedAt": "2018-04-14T14:01:43Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Kelsey Borresen",
"title": "30 Award-Winning Pics That Will Change How You See Wedding Photography",
"description": "They're works of art. ",
"url": "https://www.huffingtonpost.com/entry/incredible-wedding-photos_us_5ad63f53e4b016a07ea1400a",
"urlToImage": "https://img.huffingtonpost.com/asset/5ad633c01f0000270616d628.jpeg?cache=O1e5ICwi1U&ops=1200_630",
"publishedAt": "2018-04-18T16:00:32Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Lee Moran",
"title": "Graphic Street Art Of Trump Shooting Schoolchildren Sparks Outcry",
"description": "\"People can't handle the truth, especially when it's painted out in a picture for them.\"",
"url": "https://www.huffingtonpost.com/entry/donald-trump-street-art-mass-shooting-school_us_5ac486a5e4b093a1eb205828",
"urlToImage": "https://img.huffingtonpost.com/asset/5ac488461f0000280616c47c.jpeg?cache=Hw2XcITZCr&ops=1200_630",
"publishedAt": "2018-04-04T09:54:40Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Reuters",
"title": "Paranormal Radio Show Host Art Bell Dies At 72",
"description": "Bell, who created the popular show \"Coast to Coast AM,\" died on Friday the 13th.",
"url": "https://www.huffingtonpost.com/entry/art-bell-death_us_5ad23ac0e4b0edca2cba533b",
"urlToImage": "https://img.huffingtonpost.com/asset/5ad240621f0000260616d24e.png?cache=zb84ltdrkk&ops=1910_1000",
"publishedAt": "2018-04-14T17:55:27Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Curtis M. Wong",
"title": "Orlando Foundation Releases Preview Art Of Interim Pulse Memorial",
"description": "Construction on a temporary memorial for the victims of the 2016 mass shooting at Pulse nightclub will begin next week.",
"url": "http://www.huffingtonpost.com/entry/pulse-nightclub-interim-memorial_us_5a8effb7e4b0746ba2ad0bc2",
"urlToImage": "https://img.huffingtonpost.com/asset/5a8f3616210000a0076020d6.jpeg?cache=tlEKoyg96X&ops=1200_630",
"publishedAt": "2018-02-22T23:48:18Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Brittany Wong",
"title": "How To Make A Sex Playlist That Isn’t Corny As Hell, According To DJs",
"description": "There's an art to a solid sex playlist. ",
"url": "https://www.huffingtonpost.com/entry/how-to-make-a-sex-playlist-that-doesnt-suck-according-to-djs_us_5ae8f7c8e4b00f70f0ecfdfd",
"urlToImage": "https://img.huffingtonpost.com/asset/5ae9f8901a00002700cdd7ce.jpeg?cache=VltX7sFBow&ops=1200_630",
"publishedAt": "2018-05-03T19:41:16Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Caroline Bologna",
"title": "Mom's Too-Real Comics Capture The Everyday Chaos Of Parenting",
"description": "Amy Camber hopes her art will comfort fellow parents.",
"url": "https://www.huffingtonpost.com/entry/moms-too-real-comics-capture-the-everyday-chaos-of-parenting_us_5ac69bb1e4b0337ad1e6082e",
"urlToImage": "https://img.huffingtonpost.com/asset/5ac6fc461e00008e0b7b0bb3.jpeg?cache=LUmKKyem0K&ops=1200_630",
"publishedAt": "2018-04-06T15:28:32Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Mary Papenfuss",
"title": "Dad Of Parkland Victim Creates Powerful Mural Honoring Son And 16 Others Killed",
"description": "The painting dedicated to Joaquin Oliver was part of art exhibit honoring the 17 victims.",
"url": "http://www.huffingtonpost.com/entry/joaquin-oliver-parkland-mural_us_5aa5a87fe4b086698a9efc7c",
"urlToImage": "https://img.huffingtonpost.com/asset/5aa5b5c7200000d30ceb154a.jpeg?cache=4RHEVMwtrM&ops=1200_630",
"publishedAt": "2018-03-12T00:14:56Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Carly Ledbetter",
"title": "Kendrick Lamar, SZA Sued For Allegedly Ripping Off Artist In ‘All The Stars’ Vid",
"description": "Lina Iris Viktor claims they used her art in the first \"Black Panther\" music video.",
"url": "http://www.huffingtonpost.com/entry/kendrick-lamar-sza-lawsuit-black-panther_us_5a8edf47e4b077f5bfec2baa",
"urlToImage": "https://img.huffingtonpost.com/asset/5a8f05dd1e000017087ac8a7.jpeg?cache=eUgDZXSySN&ops=1200_630",
"publishedAt": "2018-02-22T21:49:57Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "HuffPost Video",
"title": "Artist Behind Iconic Obama ‘Hope’ Poster Shares The Advice He’d Give Trump",
"description": "Artist Shepard Fairey discusses the power of art and why culture is America's greatest export.",
"url": "https://www.huffingtonpost.com/entry/artist-behind-iconic-obama-hope-poster-shares-the-advice-hed-give-trump_us_5aecb652e4b041fd2d269b7e",
"urlToImage": "https://img.huffingtonpost.com/asset/5aecb9e61a00004300cddb87.png?cache=cjw1QClv3Z&ops=1200_630",
"publishedAt": "2018-05-04T20:06:50Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Jenna Amatulli",
"title": "People Are Boycotting H&M Over Alleged Infringement Of An Artist’s Graffiti",
"description": "The company claims that Jason “Revok” Williams' art was itself unauthorized and so he can’t assert any copyright.",
"url": "http://www.huffingtonpost.com/entry/hm-boycott-graffiti-copyright-infringement_us_5aaa835ce4b045cd0a6f5083",
"urlToImage": "https://img.huffingtonpost.com/asset/5aaa8cee1f00002d0016a752.png?cache=qDppaQw72M&ops=1200_630",
"publishedAt": "2018-03-15T18:09:10Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Carla Herreria",
"title": "People Want To Know Why Brooklyn Museum’s New African Art Curator Is White",
"description": "The curator is qualified for the job, but art scholars say people of color are qualified, too.",
"url": "https://www.huffingtonpost.com/entry/brooklyn-museum-white-curator-african-art_us_5abc09e6e4b06409775cd2d7",
"urlToImage": "https://img.huffingtonpost.com/asset/5abc566e1f0000260616bc59.png?cache=tL6nu5Bh4t&ops=1200_630",
"publishedAt": "2018-03-29T03:04:28Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Priscilla Frank",
"title": "Picasso’s Nude Portrait Of Girl Heads To Auction Against Backdrop Of Me Too",
"description": "A $100-million Christie's auction lot reveals how art history valorizes male genius at the expense of women's humanity.",
"url": "https://www.huffingtonpost.com/entry/picasso-nude-auction-me-too_us_5af09dcfe4b0ab5c3d687528",
"urlToImage": "https://img.huffingtonpost.com/asset/5af1d2901a00002800cde0c8.jpeg?cache=gXyhy9qpDZ&ops=1200_630",
"publishedAt": "2018-05-09T00:14:27Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Ed Mazza",
"title": "Sean Hannity Asked 'The Left’ To React To Right-Wing Art. The Response Was Priceless.",
"description": "That probably didn't go as he planned.",
"url": "https://www.huffingtonpost.com/entry/sean-hannity-art_us_5a94dd78e4b01f65f599a756",
"urlToImage": "https://img.huffingtonpost.com/asset/5a94fdbd1e000017087ace62.jpeg?cache=uors08pcsz&ops=1910_1000",
"publishedAt": "2018-02-27T09:39:49Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Priscilla Frank",
"title": "New York’s Scrappiest Art Fair Lives Inside A Corporate High-Rise",
"description": "At seven years old, Spring Break is still the most experimental art fair. And you don't need deep pockets to attend.",
"url": "http://www.huffingtonpost.com/entry/spring-break-art-show_us_5a99b2f7e4b0a0ba4ad33ce3",
"urlToImage": "https://img.huffingtonpost.com/asset/5a9eca821e00008e0b7adace.jpeg?ops=1200_630",
"publishedAt": "2018-03-08T17:47:26Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Kimberly Yam",
"title": "Now They’re Using A Dog Movie To Appropriate Asian Culture",
"description": "“The problem is that Isle of Dogs falls into a long history of American art othering or dehumanizing Asians,” critic Angie Han wrote.",
"url": "https://www.huffingtonpost.com/entry/wes-anderson-isle-of-dogs-appropriation_us_5ab5244ee4b0decad0498f20",
"urlToImage": "https://img.huffingtonpost.com/asset/5ab937de1f0000270616b81f.jpeg?ops=1200_630",
"publishedAt": "2018-03-26T19:41:34Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Julia Craven",
"title": "Donald Glover’s ‘This Is America,’ Through The Eyes Of A Jim Crow Historian",
"description": "\"Every now and again, a racial incident or an expression of art makes us pause and reflect, but we soon return to dancing.\"",
"url": "https://www.huffingtonpost.com/entry/donald-glover-this-is-america-jim-crow-history_us_5af31588e4b00a3224efcc40",
"urlToImage": "https://img.huffingtonpost.com/asset/5af3177d1a00004400cde2e7.png?ops=1200_630",
"publishedAt": "2018-05-09T16:54:30Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Yahoo Lifestyle",
"title": "Teacher Who Turned Her Students' Drawings Into A Dress Has Even More Creative Outfits Up Her Sleeve",
"description": "An elementary school teacher who allowed her students to draw on a white dress, creating a sentimental piece of art she could wear, is at ...",
"url": "https://www.huffingtonpost.com/entry/teacher-who-turned-her-students-drawings-into-a-dress-has-even-more-creative-outfits-up-her-sleeve_us_5ac78ed1e4b09d0a11932042",
"urlToImage": "https://img.huffingtonpost.com/asset/5ac791b01f0000280616c8ac.jpeg?ops=1910_1000",
"publishedAt": "2018-04-06T15:32:33Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Lee Moran",
"title": "Colbert’s Trump-Inspired Artwork Is The Stuff Of Nightmares",
"description": "\"I was just working through some issues.\"",
"url": "http://www.huffingtonpost.com/entry/stephen-colbert-karen-pence-art-therapy_us_5aaa4b1ae4b0f4aaa113fcc5",
"urlToImage": "https://img.huffingtonpost.com/asset/5aaa4cda2000007d06eb1f88.png?cache=RjDRAkwEZP&ops=1200_630",
"publishedAt": "2018-03-15T11:49:43Z"
},
{
"source": {
"id": "the-huffington-post",
"name": "The Huffington Post"
},
"author": "Lee Moran",
"title": "‘The Simpsons’ Are Getting A Street Art Makeover In Banksy’s Home City",
"description": "Homer, Marge, Bart, Lisa and Maggie are about to be transformed.",
"url": "https://www.huffingtonpost.com/entry/upfest-2018-bristol-the-simpsons-banksy_us_5aba3fd5e4b0decad04e17c1",
"urlToImage": "https://img.huffingtonpost.com/asset/5afc23761a0000c704cded5f.jpeg?cache=65VsZXZdP4&ops=1200_630",
"publishedAt": "2018-05-17T06:00:03Z"
}
],
"books": [
{
"source": {
"id": "the-new-york-times",
"name": "The New York Times"
},
"author": "MARIA RUSSO",
"title": "Children’s Books: Enchanting New Picture Books",
"description": "Treats for little ones include the true story of a brave rescue dog, a bedtime tale about a rampaging bunny and a new Sandra Boynton board book.",
"url": "https://www.nytimes.com/2018/05/11/books/review/here-george-sandra-boynton.html",
"urlToImage": "https://static01.nyt.com/images/2018/05/13/books/review/13Russo-06/13Russo-06-facebookJumbo.jpg",
"publishedAt": "2018-05-11T09:00:14Z"
},
{
"source": {
"id": "the-new-york-times",
"name": "The New York Times"
},
"author": "MARIA RUSSO",
"title": "Children’s Books: Standout New Picture Books",
"description": "A wolf and a bear join forces. A boy collects words. A girl collects tales from the Dominican Republic. The latest from Daniel Salmieri, Peter Reynolds, Junot Díaz and more.",
"url": "https://www.nytimes.com/2018/03/09/books/review/new-picture-books-salmieri-reynolds-diaz.html",
"urlToImage": "https://static01.nyt.com/images/2018/03/11/books/review/11Russo-03/11Russo-03-facebookJumbo.jpg",
"publishedAt": "2018-03-09T10:00:17Z"
},
{
"source": {
"id": "the-new-york-times",
"name": "The New York Times"