-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleOutput.json
More file actions
1306 lines (1306 loc) · 104 KB
/
sampleOutput.json
File metadata and controls
1306 lines (1306 loc) · 104 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"status": "ok",
"totalResults": 1148,
"articles": [
{
"source": {
"id": null,
"name": "Lifehacker.com"
},
"author": "Claire Lower",
"title": "Make a Punchy Vinaigrette With Canned Pumpkin",
"description": "It’s the season when everyone tries to eat as many pumpkin- and pumpkin spice-flavored food and drinks as they can. It’s fun. It’s festive. It’s somewhat out of hand. That’s OK though. Pumpkin-mania is showing no signs of fading—at least not while Trader Joe …",
"url": "https://lifehacker.com/make-a-punchy-vinaigrette-with-canned-pumpkin-1849622070",
"urlToImage": "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/810410db81677c53668efd14c3cf18a4.jpg",
"publishedAt": "2022-10-06T14:30:00Z",
"content": "Its the season when everyone tries to eat as many pumpkin- and pumpkin spice-flavored food and drinks as they can. Its fun. Its festive. Its somewhat out of hand. Thats OK though. Pumpkin-mania is sh… [+1491 chars]"
},
{
"source": {
"id": "the-verge",
"name": "The Verge"
},
"author": "David Pierce",
"title": "Google thinks smartwatches are the future again — are you buying it?",
"description": "Google’s spotty history with Android Wear and Wear OS — and its penchant for killing products with no warning — makes it hard to believe the company is truly committed to wearables. But Google says it’s all in.",
"url": "https://www.theverge.com/23389978/google-pixel-watch-wearables-fitbit-future",
"urlToImage": "https://cdn.vox-cdn.com/thumbor/PfojcDGplL-01pHH6g_uIrckPGg=/0x0:2040x1360/1200x628/filters:focal(1020x680:1021x681)/cdn.vox-cdn.com/uploads/chorus_asset/file/24069436/226324_Google_event_hands_on_vpavic_0014.jpg",
"publishedAt": "2022-10-06T14:47:05Z",
"content": "The Pixel Watch is mostly a Fitbit — but that’s just the start of the plan. | Photo by Vjeran Pavic / The Verge\r\n\n \n\n\n Google has been right about wearables for nearly a decade. Now, the company swea… [+14480 chars]"
},
{
"source": {
"id": "the-verge",
"name": "The Verge"
},
"author": "Antonio G. Di Benedetto",
"title": "The Xbox Series S is $50 off with an extra controller thrown in for free",
"description": "Target is running its Deal Days promo to compete with Amazon’s Prime Early Access sale, and this deal is one of the best. Plus, more discounts on the Kindle Paperwhite, Sony WF-X1000XM4 earbuds, Echo Buds, and more.",
"url": "https://www.theverge.com/2022/10/6/23390509/xbox-series-s-sony-wf1000xm4-echo-buds-kindle-paperwhite-deal-sale",
"urlToImage": "https://cdn.vox-cdn.com/thumbor/Cg3gSt9PPZShWR4STHd-K2YpbHk=/0x0:2040x1360/1200x628/filters:focal(1020x680:1021x681)/cdn.vox-cdn.com/uploads/chorus_asset/file/22013076/vpavic_201103_4275_0252.jpg",
"publishedAt": "2022-10-06T14:10:57Z",
"content": "The Xbox Series S is $50 off with an extra controller thrown in for free\r\nThe Xbox Series S is $50 off with an extra controller thrown in for free\r\n / This excellent deal leads the pack of Targets co… [+5767 chars]"
},
{
"source": {
"id": null,
"name": "Gizmodo.com"
},
"author": "David Nield",
"title": "How To Get the Most Out of Your Google or Apple Photos Memories",
"description": "If you think about how many photos and videos most of us are loading on to our smartphones with each passing day, it’s perhaps no surprise that there’s rarely time to go back through and pick out special moments or particular highlights—which is why photo lib…",
"url": "https://gizmodo.com/google-apple-photos-memories-curated-videos-settings-ho-1849607083",
"urlToImage": "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/17cd1fbad6fb3495d7a3de636116f916.jpg",
"publishedAt": "2022-10-06T14:00:00Z",
"content": "If you think about how many photos and videos most of us are loading on to our smartphones with each passing day, its perhaps no surprise that theres rarely time to go back through and pick out speci… [+4910 chars]"
},
{
"source": {
"id": null,
"name": "Gizmodo.com"
},
"author": "James Whitbrook and Gordon Jackson",
"title": "Todd McFarlane's Spawn Movie Finally Has Some New Writers",
"description": "There is, somehow, a sequel to The Animal happening. The Simpsons takes on It in new Treehouse of Horror images. Plus, director Lee Cronin teases Evil Dead Rise, and new footage from She-Hulk and Rick and Morty. Spoilers now!Read more...",
"url": "https://gizmodo.com/spawn-movie-todd-mcfarlane-writers-captain-america-4-1849607175",
"urlToImage": "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/dec0dde9b86c38fb816f07ab57641a27.png",
"publishedAt": "2022-10-06T14:20:00Z",
"content": "There is, somehow, a sequel to The Animal happening. The Simpsons takes on It in new Treehouse of Horror images. Plus, director Lee Cronin teases Evil Dead Rise, and new footage from She-Hulk and Ric… [+4850 chars]"
},
{
"source": {
"id": "reuters",
"name": "Reuters"
},
"author": null,
"title": "A French court divides by three an antitrust fine against Apple - source - Reuters",
"description": "A French court on Thursday divided by three, to 372 million euros ($366.31 million), a fine against iPhone maker Apple linked to practices the antitrust watchdog had described as anti-competitive behaviour towards its distribution and retail network, a source…",
"url": "https://www.reuters.com/legal/french-court-divides-by-three-an-antitrust-fine-against-apple-source-2022-10-06/",
"urlToImage": "https://www.reuters.com/resizer/VdsiLv8adwf8GZ5IHD9uAJxBBDU=/1200x628/smart/filters:quality(80)/cloudfront-us-east-2.images.arcpublishing.com/reuters/5ME4UQIE2VO5RDGYLVDPWPYFJQ.jpg",
"publishedAt": "2022-10-06T13:30:00Z",
"content": "PARIS, Oct 6 (Reuters) - A French court on Thursday divided by three, to 372 million euros ($366.31 million), a fine against iPhone maker Apple linked to practices the antitrust watchdog had describe… [+591 chars]"
},
{
"source": {
"id": "reuters",
"name": "Reuters"
},
"author": null,
"title": "Google's new Pixel Watch faces hurdles with economy, no iPhone support - Reuters",
"description": "Google's debut smartwatch will go on sale Oct. 13 for $350, the Alphabet Inc <a href=\"https://www.reuters.com/companies/GOOGL.O\" target=\"_blank\">(GOOGL.O)</a> unit said on Thursday, taking on a field dominated by Apple Watch at a time when inflation-hammered …",
"url": "https://www.reuters.com/technology/googles-new-pixel-watch-faces-hurdles-with-economy-no-iphone-support-2022-10-06/",
"urlToImage": "https://www.reuters.com/resizer/rbwIwj8ArbzOSnVyT9PxhiGleZk=/1200x628/smart/filters:quality(80)/cloudfront-us-east-2.images.arcpublishing.com/reuters/SJM3VRJJBJOPRF2RLO6AYJCKDM.jpg",
"publishedAt": "2022-10-06T15:08:00Z",
"content": "OAKLAND, Calif., Oct 6 (Reuters) - Google's debut smartwatch will go on sale Oct. 13 for $350, the Alphabet Inc (GOOGL.O) unit said on Thursday, taking on a field dominated by Apple Watch at a time w… [+2105 chars]"
},
{
"source": {
"id": "reuters",
"name": "Reuters"
},
"author": null,
"title": "Column: Earnings squeeze heralds winter freeze on Wall Street - Reuters",
"description": "Column: Earnings squeeze heralds winter freeze on Wall Street Reuters",
"url": "https://www.reuters.com/markets/europe/earnings-squeeze-heralds-winter-freeze-wall-street-2022-10-06/",
"urlToImage": "https://www.reuters.com/resizer/hgaEgU3zVijfNS_OCs0QyuUGazM=/1200x628/smart/filters:quality(80)/cloudfront-us-east-2.images.arcpublishing.com/reuters/HUIF6TZ35ZNS5JGQ6FTVQ3GKFY.jpg",
"publishedAt": "2022-10-06T15:17:00Z",
"content": "ORLANDO, Fla., Oct 6 (Reuters) - Investors can't say they've not been warned.\r\nThe number of red flags raised by U.S. firms for the earnings outlook suggests Wall Street faces icy headwinds this wint… [+5277 chars]"
},
{
"source": {
"id": "reuters",
"name": "Reuters"
},
"author": "Special Reports",
"title": "As children line up at gender clinics, families confront many unknowns - Reuters",
"description": "Thousands of transgender U.S. youths are medically transitioning. The treatments they receive have little scientific evidence of long-term safety and efficacy.",
"url": "https://www.reuters.com/investigates/special-report/usa-transyouth-care/",
"urlToImage": "https://www.reuters.com/investigates/special-report/assets/usa-transyouth-care/mastheads/usa-transyouth-care-share.jpg?v=112121051022",
"publishedAt": "2022-10-06T11:00:00Z",
"content": "BELPRE, Ohio\r\nOn the two-hour drive back from the hospital, Danielle Boyer kept replaying the doctors questions in her mind. Was her then-12-year-old child, Ryace, hearing voices? Was she using illeg… [+53099 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Tim Hardwick",
"title": "Lost? How to Use Backtrack on Apple Watch to Retrace Your Steps",
"description": "On Apple Watch Ultra, Apple Watch SE, and Apple Watch Series 6 and later models running watchOS 9, you can use the redesigned Compass app's Backtrack feature to track your route and then help you retrace your steps in case you get lost. \n\n\n\n\n\nBacktrack uses t…",
"url": "https://www.macrumors.com/how-to/use-compass-backtrack-apple-watch/",
"urlToImage": "https://images.macrumors.com/t/XVJuXUwUJXclUIQq9TE-ueEMsgo=/1600x/article-new/2022/09/Apple-Watch-Ultra-lifestyle-adventure-220907_big.jpg.large_.jpg",
"publishedAt": "2022-10-06T11:00:00Z",
"content": "On Apple Watch Ultra, Apple Watch SE, and Apple Watch Series 6 and later models running watchOS 9, you can use the redesigned Compass app's Backtrack feature to track your route and then help you ret… [+1582 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Sami Fathi",
"title": "iPhone 14 Plus Reviews: Multi-Day Battery Life, Large Display, and Upgraded Cameras Make for Worthwhile Upgrade",
"description": "Apple has given select media outlets and YouTubers early access to the iPhone 14 Plus ahead of its launch on Friday, October 7. \n\n\n\nPhoto from CNET\n\nThe iPhone 14 Plus is Apple's largest entry-level iPhone model with a 6.7-inch display, a display size that'…",
"url": "https://www.macrumors.com/review/iphone-14-plus/",
"urlToImage": "https://images.macrumors.com/t/hu-ZCnmUbTCUT_TFIrQ6czwYkH4=/1600x/article-new/2022/10/iphone-14-plus-cnet-2.jpg",
"publishedAt": "2022-10-06T08:29:18Z",
"content": "Apple has given select media outlets and YouTubers early access to the iPhone 14 Plus ahead of its launch on Friday, October 7. \r\nThe iPhone 14 Plus is Apple's largest entry-level iPhone model with… [+3107 chars]"
},
{
"source": {
"id": null,
"name": "CNET"
},
"author": "Patrick Holland",
"title": "iPhone 14 Plus Review: For People Who Love Big Screens - CNET",
"description": "If you have an old Plus or Max iPhone model and just want a large screen, here is your upgrade.",
"url": "https://www.cnet.com/tech/mobile/iphone-14-plus-review-for-people-who-love-big-screens/",
"urlToImage": "https://www.cnet.com/a/img/resize/b87ec4e0850b1e88a699b9a296e85e2404cabbfc/hub/2022/10/05/9542bc7b-11f6-48c1-bac9-ab6f7e7c01de/iphone-14-plus-0298.jpg?auto=webp&fit=crop&height=630&width=1200",
"publishedAt": "2022-10-06T04:00:03Z",
"content": "This story is part of Focal Point iPhone 2022, CNET's collection of news, tips and advice around Apple's most popular product. \r\nThe $899 iPhone 14 Plus is either a big iPhone 14 or a scaled-back iPh… [+17439 chars]"
},
{
"source": {
"id": null,
"name": "CNET"
},
"author": "Eli Blumenthal",
"title": "Thursday Night Football: How to Watch, Stream Colts vs. Broncos Tonight on Prime Video or Twitch - CNET",
"description": "Indianapolis and Denver meet on Thursday Night Football to kick off Week 5 of the NFL season.",
"url": "https://www.cnet.com/tech/services-and-software/thursday-night-football-how-to-watch-stream-colts-vs-broncos-tonight-on-prime-video-or-twitch/",
"urlToImage": "https://www.cnet.com/a/img/resize/378eea79d15ffa3886c5644b3dd371bc28a92f18/hub/2022/10/05/a8486705-f21f-4c57-9ebb-3e7691d0db06/gettyimages-1427439134.jpg?auto=webp&fit=crop&height=630&width=1200",
"publishedAt": "2022-10-06T09:00:08Z",
"content": "The Russell Wilson era is off to a middling start in Denver. After trading a boatload of picks to Seattle for Wilson and then extending him for five years at great expense, the Broncos have scored th… [+12269 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Mitchel Broussard",
"title": "Deals: Get Up to $149 Off Previous Generation Apple Watch Series 7 and SE Models on Amazon, Starting at $199",
"description": "You can get big savings on previous generation Apple Watch models this week on Amazon, including up to $149 off Apple Watch Series 7 and Apple Watch SE. These devices might not be the latest and greatest from Apple, but at the steepest discounts we've ever tr…",
"url": "https://www.macrumors.com/2022/10/06/deals-149-off-apple-watch-7/",
"urlToImage": "https://images.macrumors.com/t/Na1KT6ZUZ402z20lx-3rQR8aoh0=/1600x/article-new/2022/01/Apple-Watch-Series-7-Rainbow-Cropped-Blue-Discount.jpg",
"publishedAt": "2022-10-06T14:30:43Z",
"content": "You can get big savings on previous generation Apple Watch models this week on Amazon, including up to $149 off Apple Watch Series 7 and Apple Watch SE. These devices might not be the latest and grea… [+1967 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Joe Rossignol",
"title": "iPhone 14 Plus Launches in Over 20 Additional Countries on October 14",
"description": "Following the launch of the iPhone 14 Plus in the U.S. and over 40 other countries this Friday, availability will expand to other countries later this month.\n\n\n\n\n\nApple today announced that the iPhone 14 Plus will be available in Malaysia, Saudi Arabia, Turke…",
"url": "https://www.macrumors.com/2022/10/06/iphone-14-plus-second-wave-launch-countries/",
"urlToImage": "https://images.macrumors.com/t/jzX2UZ02suVD4flZg52EAbXvDWY=/2880x/article-new/2022/09/iPhone-14-and-14-Plus-Newsroom.jpg",
"publishedAt": "2022-10-06T13:23:01Z",
"content": "Following the launch of the iPhone 14 Plus in the U.S. and over 40 other countries this Friday, availability will expand to other countries later this month.\r\nApple today announced that the iPhone 14… [+863 chars]"
},
{
"source": {
"id": "business-insider",
"name": "Business Insider"
},
"author": "kwebb@businessinsider.com (Kevin Webb)",
"title": "Google just revealed its first smartwatch, the Pixel Watch — here are 5 key takeaways from the announcement",
"description": "The Pixel Watch is Google's long-anticipated competitor to the Apple Watch and Galaxy Watch. It starts at $350 and you can preorder it now.",
"url": "https://www.businessinsider.com/guides/tech/google-pixel-watch-features-price-2022-10",
"urlToImage": "https://i.insider.com/633ee22e2095d500187ccfaf?width=1200&format=jpeg",
"publishedAt": "2022-10-06T14:51:59Z",
"content": "When you buy through our links, Insider may earn an affiliate commission. Learn more.\r\nGoogle has formally unveiled the Pixel Watch at long last. The new device is the company's first attempt at buil… [+4881 chars]"
},
{
"source": {
"id": "business-insider",
"name": "Business Insider"
},
"author": "avillasboas@insider.com (Antonio Villas-Boas)",
"title": "The new Google Pixel 7's best feature is a free built-in VPN — here's why that's great news for your privacy and security",
"description": "Google is bundling Pixel 7 phones with its VPN service at no extra cost. Here's what that will mean for Pixel 7 owners' privacy and security.",
"url": "https://www.businessinsider.com/guides/tech/google-pixel-7-built-in-free-vpn-2022-10",
"urlToImage": "https://i.insider.com/633dda90b3e94d001977c689?width=1200&format=jpeg",
"publishedAt": "2022-10-06T14:45:23Z",
"content": "When you buy through our links, Insider may earn an affiliate commission. Learn more.\r\nGoogle announced the new Pixel 7 and Pixel 7 Pro phones on October 6, and among the usual array of performance a… [+3928 chars]"
},
{
"source": {
"id": null,
"name": "Entrepreneur"
},
"author": "Andrew Reid",
"title": "The Secret to Building Brand Devotion is Not a Loyalty Program. Here's What Customer's Really Want.",
"description": "The idea of consumer loyalty has been around for centuries. But with a growing consumer appetite for privacy and control, it may be time to rethink the traditional brand relationship.",
"url": "https://www.entrepreneur.com/starting-a-business/the-secret-to-building-brand-devotion-is-not-a-loyalty/433906",
"urlToImage": "https://assets.entrepreneur.com/content/3x2/2000/1664976088-GettyImages-1343164419.jpg",
"publishedAt": "2022-10-06T00:00:00Z",
"content": "If you ask a lot of business leaders, they'll tell you that there's nothing more important than loyalty. A loyal customer returns to you again and again because you're delivering on a brand promise a… [+5291 chars]"
},
{
"source": {
"id": null,
"name": "Entrepreneur"
},
"author": "Emily Washcovick",
"title": "The Beauty of Patiently Developing Brand Awareness",
"description": "Business owner Kristin Near's successful strategy has sparked stellar customer referrals and online reviews, keeping her in business for eight years and counting.",
"url": "https://www.entrepreneur.com/growing-a-business/the-beauty-of-patiently-developing-brand-awareness/436733",
"urlToImage": "https://assets.entrepreneur.com/content/3x2/2000/1665068116-BotanicaEntrepreneur.jpg",
"publishedAt": "2022-10-06T14:55:33Z",
"content": "Behind the Review host and Yelp's Small Business Expert, Emily Washcovick, shares a look at this week's episode of the podcast.\r\nBotanica Skin and Brow Studio\r\nSkincare isn't just a vanity projectit'… [+5999 chars]"
},
{
"source": {
"id": null,
"name": "Hipertextual"
},
"author": "Alberto Martín",
"title": "A partir de hora, tus dispositivos de la casa inteligente dejarán de apestar",
"description": "La interoperatividad de los dispositivos del hogar inteligente es un absoluto desastre. Entre su compatibilidad con los diferentes ecosistemas, hasta su funcionamiento conjunto con otros dispositivos, incluso con los de la misma marca. Es un desastre. Por ell…",
"url": "https://hipertextual.com/2022/10/matter",
"urlToImage": "https://imgs.hipertextual.com/wp-content/uploads/2022/10/156992-smart-home-news-feature-what-is-matter-and-why-is-it-important-for-your-smart-home-image1-cijzjevbx2.jpg",
"publishedAt": "2022-10-06T09:26:10Z",
"content": "La interoperatividad de los dispositivos del hogar inteligente es un absoluto desastre. Entre su compatibilidad con los diferentes ecosistemas, hasta su funcionamiento conjunto con otros dispositivos… [+5173 chars]"
},
{
"source": {
"id": null,
"name": "Hipertextual"
},
"author": "Eduardo Arcos",
"title": "iPhone 14 Plus, análisis: ¿más grande es mejor?",
"description": "Antes de empezar: absolutamente todo lo que Nicolás Rivera ha escrito acerca del iPhone 14 en su análisis a fondo aplica para el iPhone 14 Plus. No hay un solo aspecto técnico en el que sea diferente. Misma tecnología de pantalla, mismas cámaras, mismo chip. …",
"url": "https://hipertextual.com/2022/10/iphone-14-plus-analisis",
"urlToImage": "https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2022/10/iPhone-14-Plus-1.jpg?fit=2500%2C1667&quality=60&strip=all&ssl=1",
"publishedAt": "2022-10-06T04:00:00Z",
"content": "Antes de empezar: absolutamente todo lo que Nicolás Rivera ha escrito acerca del iPhone 14en su análisis a fondo aplica para el iPhone 14 Plus. No hay un solo aspecto técnico en el que sea diferente.… [+4083 chars]"
},
{
"source": {
"id": null,
"name": "The Economist"
},
"author": "The Economist",
"title": "Business",
"description": "",
"url": "https://www.economist.com/the-world-this-week/2022/10/06/business",
"urlToImage": "https://www.economist.com/img/b/1280/720/90/media-assets/image/20221008_WWP501.jpg",
"publishedAt": "2022-10-06T14:44:15Z",
"content": "Elon Musk changed course and offered to go ahead with his $44bn deal to buy Twitter, but only if a forthcoming trial that could force him to complete the takeover is stopped. A recent preliminary hea… [+4514 chars]"
},
{
"source": {
"id": null,
"name": "Digital Trends"
},
"author": "Jon Bitner",
"title": "Matter smart home standard is officially available",
"description": "The Connectivity Standards Alliance has released Matter 1.0, which should result in a slew of smart home gadgets that can finally communicate across ecosystems.",
"url": "https://www.digitaltrends.com/home/matter-officially-available/",
"urlToImage": "https://www.digitaltrends.com/wp-content/uploads/2022/10/Matter-Black-Banner-1.jpg?p=1",
"publishedAt": "2022-10-06T14:04:11Z",
"content": "After running into a few roadblocks, Matter is officially here. Announced by the Connectivity Standards Alliance (CSA), the Matter certification program is now live, allowing manufacturers to bring t… [+1618 chars]"
},
{
"source": {
"id": null,
"name": "Digital Trends"
},
"author": "Simon Sage",
"title": "Nest Renew could be the first step to a smarter electrical grid",
"description": "Nest Renew will talk with your electrical service provider in order to access greener power to your home. That's a big step for the smart grid.",
"url": "https://www.digitaltrends.com/home/nest-renew-promises-to-make-the-grid-smarter/",
"urlToImage": "https://www.digitaltrends.com/wp-content/uploads/2021/10/nest-renew-thermostat.jpg?p=1",
"publishedAt": "2022-10-06T11:00:50Z",
"content": "After a year-long early access period, Google’s Nest Renew program is now available on compatible Nest thermostats across the continental U.S. Nest and smart thermostats broadly have applied their in… [+3993 chars]"
},
{
"source": {
"id": null,
"name": "Simulavr.com"
},
"author": null,
"title": "SimulaVR Has Been Subpoenaed by Meta Platforms, Inc",
"description": "Comments",
"url": "https://simulavr.com/blog/subpoenaed-by-meta/",
"urlToImage": null,
"publishedAt": "2022-10-06T13:43:45Z",
"content": "A few days ago we received a large packet in the mail from Meta's legal team informing us that SimulaVR has been subpoenaed for their antitrust case FTC vs. Meta Platforms, in relation to the governm… [+2928 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Stephan Ehrmann",
"title": "heise-Angebot: Mac & i Heft 5/22 jetzt im Zeitschriftenhandel",
"description": "Über 60 Tipps zu macOS 13/iOS 16/watchOS 9 • iPhone 14/Pro/Max • Apple Watch 8/SE/Ultra • AirPods Pro 2 • Sicherheit • Sprachassistenten • Monitore • Foto-Tipps",
"url": "https://www.heise.de/news/Mac-i-Heft-5-22-jetzt-im-Zeitschriftenhandel-7281759.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/1/8/0/5/9/Aufmacher_fuer_Tickermeldung-d7bf34ef09bc6eed.png",
"publishedAt": "2022-10-06T08:00:00Z",
"content": "Mac & i Heft 5/2022 ist jetzt im gut sortierten Zeitschriftenhandel erhältlich und natürlich weiterhin im heise Shop wahlweise auf Papier (bis zum 13. Oktober portofrei) oder als PDF. Die Themen:… [+7180 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Leo Becker",
"title": "iPhone- und Mac-Apps: Apple schraubt die App-Store-Preise hoch",
"description": "Viele Apps und In-App-Käufe sind in Europa nun rund 20 Prozent teurer, auch Apple-Software. Abos scheinen nicht betroffen. Was Nutzer jetzt wissen müssen.",
"url": "https://www.heise.de/news/iPhone-und-Mac-Apps-Apple-schraubt-die-App-Store-Preise-hoch-7286487.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/2/0/5/1/8/shutterstock_1575687946-f7998fc2eee06748.jpg",
"publishedAt": "2022-10-06T14:58:00Z",
"content": "Apple hat eine umfassende Preiserhöhung im App Store wie angekündigt umgesetzt: Preise für viele Apps und In-App-Käufe sind in der Eurozone seit Mittwoch um rund 15 bis 25 Prozent gestiegen. Auch in … [+3476 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Ben Schwan",
"title": "iPhone 14 Plus: Apples bislang größtes Standard-iPhone vor dem Start",
"description": "Wird es ein Hit oder eher nicht? Noch nie war es so günstig, in die 6,7-Zoll-Klasse beim iPhone einzusteigen. Das neue 14 Plus kommt aber mit einigen Haken.",
"url": "https://www.heise.de/news/iPhone-14-Plus-Apples-bislang-groesstes-Standard-iPhone-vor-dem-Start-7285862.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/2/0/1/9/4/iphone-14-model-unselect-gallery-1-202209-2373131ed13a9a5d.png",
"publishedAt": "2022-10-06T09:58:00Z",
"content": "Am 7. Oktober ist es soweit: Apples iPhone-Generation 2022 ist endlich vollständig auf dem Markt. Am morgigen Freitag erscheint das vierte noch verbliebene neue Modell, das iPhone 14 Plus und es ist … [+2730 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Johannes Schuster",
"title": "heise+ | Acht smarte Türschlösser im Test: Schließen ohne Schlüssel",
"description": "Mit einem vernetzten Schloss sperren Sie die Tür bequem per Smartphone auf und gewähren Gästen von unterwegs Zutritt. Doch welcher Schlossantrieb ist der beste?",
"url": "https://www.heise.de/tests/Acht-smarte-Tuerschloesser-im-Test-Schliessen-ohne-Schluessel-7285094.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/1/9/7/9/3/nuki_smart_lock_3.0_pro_black_lifestyle_digital-aea44e063336a978.png",
"publishedAt": "2022-10-06T07:30:00Z",
"content": "Inhaltsverzeichnis\r\nIn Hotels sind digitale Schlüsselkarten nicht mehr wegzudenken, doch die meisten von uns müssen für ihre Wohnungstür immer noch einen scharfkantigen Schlüssel mit sich herumschlep… [+2294 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Carsten Meyer",
"title": "Für die Programmierung \"vor Ort\": BASIC-Computer mit Arduino RP2040 Connect",
"description": "Mit den Libraries von Stefan Lenz kann man einen Arduino RP2040 Connect zu einem eigenständigen Computer mit BASIC-Interpreter, TFT und Tastatur aufrüsten.",
"url": "https://www.heise.de/news/Fuer-die-Programmierung-vor-Ort-BASIC-Computer-mit-Arduino-RP2040-Connect-7285690.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/2/0/1/0/2/rp2040-basic-90e75510a78a5e84.jpg",
"publishedAt": "2022-10-06T09:45:00Z",
"content": "Keineswegs nur sentimental-historische Intentionen hat das BASIC-Computer-Projekt von Stefan Lenz: Für Steuerungsaufgaben wünscht man sich oft einen Kleinstrechner, der sich ohne Compiler und IDE dir… [+1289 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Eva-Maria Weiß",
"title": "WhatsApp testet in Betaversion das Blockieren von Screenshots",
"description": "In der aktuellen Betaversion von WhatsApp blockiert der Messenger Screenshots. Das war bisher ein großer Makel bei sich selbst löschenden Nachrichten.",
"url": "https://www.heise.de/news/WhatsApp-testet-in-Betaversion-das-Blockieren-von-Screenshots-7285884.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/2/0/2/0/5/shutterstock_1009504162-5368c49d8f7b5ade.jpg",
"publishedAt": "2022-10-06T09:46:00Z",
"content": "Nachrichten, die nur ein Mal zur Ansicht freigegeben werden und sich danach selbst löschen, sind bei WhatsApp schon lange möglich, haben aber schon immer einen fetten Makel: Der Empfänger kann einen … [+2078 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Stefan Porteck",
"title": "Pixel Watch: Googles erste Smartwatch kostet 380 Euro",
"description": "Die Pixel Watch setzt den Fokus auf Sport und Aktivitätstracking. Dafür hat sie etliche Sensoren an Bord und ist eng an Fitbit geknüpft.",
"url": "https://www.heise.de/news/Pixel-Watch-Googles-erste-Smartwatch-kostet-380-Euro-7286264.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/2/0/3/9/9/Zwischenablage01-ca95c588bf6bbdbe.jpg",
"publishedAt": "2022-10-06T15:00:00Z",
"content": "Am Donnerstag hat Google seine Pixel Watch in vollem Umfang enthüllt. Nach unzähligen kleineren Leaks und letztlich einem in der Öffentlichkeit vergessenen Prototyp der Smartwatch sah Google sich off… [+3104 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Eva-Maria Weiß",
"title": "Suchmaschine Neeva: Google-Konkurrent jetzt deutschsprachig verfügbar",
"description": "Neeva ist ab sofort in Europa und deutschsprachig verfügbar. Die Suchmaschine will \"unverfälschte Ergebnisse\" liefern und ohne Werbung auskommen.",
"url": "https://www.heise.de/news/Suchmaschine-Neeva-Goole-Konkurrent-jetzt-deutschsprachig-verfuegbar-7285666.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/2/0/0/9/0/Neeva_Dashboard_Germany_1_-16cec26e216aa718.jpg",
"publishedAt": "2022-10-06T08:56:00Z",
"content": "Keine Anzeigen, Werbung oder Affiliate Links damit wirbt die Suchmaschine mit dem Namen Neeva. Sie ist ab sofort in Europa verfügbar und spricht auch deutsch. Entwickelt wurde sie von zwei ehemaligen… [+3128 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Joaquim Oliveira",
"title": "Elektroauto Smart #1 im Fahrbericht: Schneller als der VW ID.3",
"description": "Einst als Mobilitätskonzept gestartet, stand \"Smart\" die vergangenen beiden Jahrzehnte nur mehr für kurze Autos. Der kommende Smart #1 ist nicht mal mehr das.",
"url": "https://www.heise.de/tests/Elektroauto-Smart-1-im-Fahrbericht-Schneller-als-der-VW-ID-3-7283647.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/6/1/9/0/4/1/Smart__01-5-ba92683df8b363a4.jpg",
"publishedAt": "2022-10-06T06:34:00Z",
"content": "Die Probefahrt mit einem Vorserienmodell eines Smart #1 macht den Eindruck, ein ausgereiftes Elektroauto zu bewegen. Vom Endprodukt, das ab März 2023 verkauft werden soll, wünscht man vor allem eine … [+6029 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "Apple reminds customers about iPhone 14 Plus availability, in stores tomorrow",
"description": "Apple has reminded customers about iPhone 14 Plus availability, with the larger version of the base model on sale in Apple Stores tomorrow, October 6.\nIt follows reviews landing this morning, in which those who got early access praised the great battery life …",
"url": "https://9to5mac.com/2022/10/06/iphone-14-plus-availability/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/iPhone-14-Plus-availability.png?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T13:26:12Z",
"content": "Apple has reminded customers about iPhone 14 Plus availability, with the larger version of the base model on sale in Apple Stores tomorrow, October 6.\r\nIt follows reviews landing this morning, in whi… [+4489 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "Fast Company website back online after obscene Apple News alerts; poor password security",
"description": "The Fast Company website is finally back after being taken completely offline for eight days. The drastic action was in response to an attack which saw obscene and racist alerts pushed to Apple News.\nThe hackers said that unbelievably poor password security m…",
"url": "https://9to5mac.com/2022/10/06/fast-company-website/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/Fast-Company-website.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T11:09:34Z",
"content": "The Fast Company website is finally back after being taken completely offline for eight days. The drastic action was in response to an attack which saw obscene and racist alerts pushed to Apple News.… [+1959 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Michael Potuck",
"title": "Here’s a first look at Google’s iPhone 14 and Apple Watch Series 8 competitors",
"description": "During its Made by Google 2022 event today in NYC, the company officially announced its Pixel 7 and 7 Pro, Pixel Watch, and more. Read on for a closer look at what Google is doing with its iPhone 14 and Apple Watch Series 8 competitors, G2 Tensor custom silic…",
"url": "https://9to5mac.com/2022/10/06/first-look-googles-iphone-14-apple-watch-8-competitors/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/google-pixel-7-pro-iphone-14-competitor.jpeg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T15:03:01Z",
"content": "During its Made by Google 2022 event today in NYC, the company officially announced its Pixel 7 and 7 Pro, Pixel Watch, and more. Read on for a closer look at what Google is doing with its iPhone 14 … [+2253 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "See how Apple Accessibility transforms lives, working hand-in-hand with HomeKit [Video]",
"description": "For severely disabled people, it’s no exaggeration to say that Apple Accessibility transforms lives – but it can be difficult to appreciate the impact that even minor-sounding changes can make until you see it for yourself.\nColin Hughes is a former TV produce…",
"url": "https://9to5mac.com/2022/10/06/apple-accessibility-transforms-lives/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/Apple-Accessibility-transforms-lives.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T13:35:54Z",
"content": "For severely disabled people, it’s no exaggeration to say that Apple Accessibility transforms lives but it can be difficult to appreciate the impact that even minor-sounding changes can make until yo… [+6512 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Filipe Espósito",
"title": "Accessory makers begin selling cases for redesigned 10th-gen iPad ahead of official announcement",
"description": "Apple has been rumored to introduce new iPad models later this month, which has even been corroborated by 9to5Mac. Now, accessory makers have begun selling cases for a redesigned (and non-existent) 10th generation iPad ahead of the official launch, which sugg…",
"url": "https://9to5mac.com/2022/10/05/accessory-makers-cases-10th-gen-ipad/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/iPad-10-cases.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T01:18:45Z",
"content": "Apple has been rumored to introduce new iPad models later this month, which has even been corroborated by 9to5Mac. Now, accessory makers have begun selling cases for a redesigned (and non-existent) 1… [+2534 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "A16 chip design means it’s really an A15+, argues Macworld",
"description": "One of the differences between the base and Pro model iPhone 14 this year is that only the latter get the latest A16 chip. But a new piece today argues that this is a smaller difference than Apple might like to suggest.\nA comparison of the two chip designs co…",
"url": "https://9to5mac.com/2022/10/06/a16-chip/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/A16-chip.jpeg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T11:46:19Z",
"content": "One of the differences between the base and Pro model iPhone 14 this year is that only the latter get the latest A16 chip. But a new piece today argues that this is a smaller difference than Apple mi… [+3248 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Filipe Espósito",
"title": "iPhone 14 Plus reviews: Great battery life within a familiar hardware",
"description": "Apple last month introduced four new iPhones: the iPhone 14, iPhone 14 Plus, iPhone 14 Pro, and iPhone 14 Pro Max. While three of these models hit stores in September, iPhone 14 Plus had its official launch slated for October 7. Now the first iPhone 14 Plus r…",
"url": "https://9to5mac.com/2022/10/05/iphone-14-plus-reviews/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/iPhone-14-Plus-reviews.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T05:47:10Z",
"content": "Apple last month introduced four new iPhones: the iPhone 14, iPhone 14 Plus, iPhone 14 Pro, and iPhone 14 Pro Max. While three of these models hit stores in September, iPhone 14 Plus had its official… [+3145 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Filipe Espósito",
"title": "Facebook is making it easier for users to decide what content they want to see in their feed",
"description": "Facebook on Wednesday announced an update to its platform that will make it easier for users to decide what content they want to see in their feeds. With today’s changes, the social network offers new ways to help users discover posts that are relevant to the…",
"url": "https://9to5mac.com/2022/10/05/facebook-what-content-users-want-to-see-feed/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/New-Ways-to-Customize-Your-Facebook-Feed_Header.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T00:07:12Z",
"content": "Facebook on Wednesday announced an update to its platform that will make it easier for users to decide what content they want to see in their feeds. With today’s changes, the social network offers ne… [+2123 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Michael Potuck",
"title": "Best iPhone carriers for business: Verizon vs T-Mobile vs AT&T on performance, price, incentives",
"description": "Want to explore wireless carrier options for your business? With market competition strong there are some compelling offers if you’re ready to make a switch. We’ll cover Verizon vs T-Mobile vs AT&T when it comes to business plans. This guide will also detail …",
"url": "https://9to5mac.com/2022/10/06/best-iphone-carriers-for-business/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/best-iphone-carriers-for-business.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T13:53:27Z",
"content": "Want to explore wireless carrier options for your business? With market competition strong there are some compelling offers if you’re ready to make a switch. Well cover Verizon vs T-Mobile vs AT&… [+5954 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Bradley Chambers",
"title": "Dashlane adds new version of its password management services geared toward businesses",
"description": "Dashlane has updated its suite of enterprise plans to offer stronger security tools for IT admins and launched Dashlane Starter – a tool geared toward teams with up to 10 individuals. Starter takes the friction out of getting started by packing Dashlane’s pas…",
"url": "https://9to5mac.com/2022/10/06/dashlane/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/10/Dashlane-2.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-10-06T12:00:00Z",
"content": "Dashlane has updated its suite of enterprise plans to offer stronger security tools for IT admins and launched Dashlane Starter a tool geared toward teams with up to 10 individuals. Starter takes the… [+3160 chars]"
},
{
"source": {
"id": null,
"name": "Autoblog"
},
"author": "Joel Stocksdale",
"title": "2023 Toyota Highlander starts under $38,000 with turbo engine",
"description": "Filed under:\n Green,Toyota,Crossover,SUV,Hybrid\n Continue reading 2023 Toyota Highlander starts under $38,000 with turbo engine\n2023 Toyota Highlander starts under $38,000 with turbo engine originally appeared on Autoblog on Thu, 6 Oct 2022 07:00:00 EDT. Plea…",
"url": "https://www.autoblog.com/2022/10/06/2023-toyota-highlander-turbo-pricing/",
"urlToImage": "https://o.aolcdn.com/images/dims3/GLOB/legacy_thumbnail/1062x597/format/jpg/quality/100/https://s.aolcdn.com/os/ab/_cms/2022/10/04155036/2023_Highlander_Turbo_Limited_CypressGreen_020-copy.jpg",
"publishedAt": "2022-10-06T11:00:00Z",
"content": "Back in May, Toyota gave most of the details on the 2023 Highlander, specifically the move from V6 power to turbo four-cylinder power. And now, pricing is available, plus slightly revised fuel econom… [+1705 chars]"
},
{
"source": {
"id": null,
"name": "Autoblog"
},
"author": "Joel Stocksdale",
"title": "2023 BMW iX Review: The beauty is on the inside",
"description": "Filed under:\n Green,BMW,Buying Guide,New Car Reviews,Crossover,SUV,Electric,Luxury\n Continue reading 2023 BMW iX Review: The beauty is on the inside\n2023 BMW iX Review: The beauty is on the inside originally appeared on Autoblog on Thu, 6 Oct 2022 06:00:00 ED…",
"url": "https://www.autoblog.com/2022/10/06/2023-bmw-ix-review/",
"urlToImage": "https://o.aolcdn.com/images/dims3/GLOB/legacy_thumbnail/1062x597/format/jpg/quality/100/https://s.aolcdn.com/os/ab/_cms/2021/06/01171414/P90422109_highRes.jpg",
"publishedAt": "2022-10-06T10:00:00Z",
"content": "Pros: Exquisite interior design, superb performance, long electric range, comfortable ride\r\nCons: Polarizing exterior styling, no third row of seats, desirable driving assists are options\r\nThe 2023 B… [+10611 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Andrew Orr)",
"title": "Flaw in macOS Archive Utility could let attackers bypass Gatekeeper",
"description": "One of the best reasons to keep macOS up to date is protecting yourself against security issues — and Jamf found a big one in the summer of 2022 that allowed attackers to bypass macOS Gatekeeper.macOS Archive UtilityJamf Threat Labs found the vulnerability in…",
"url": "https://appleinsider.com/articles/22/10/06/flaw-in-macos-archive-utility-could-let-attackers-bypass-gatekeeper",
"urlToImage": "https://photos5.appleinsider.com/gallery/50718-99969-macOS-archive-utility-xl.jpg",
"publishedAt": "2022-10-06T15:13:01Z",
"content": "macOS Archive Utility\r\nAppleInsider is supported by its audience and may earn commission as an Amazon Associate and affiliate partner on qualifying purchases. These affiliate partnerships do not infl… [+3441 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Nathaniel Pangaro)",
"title": "How to turn off case sounds on new AirPods Pro",
"description": "Apple added a speaker to the new AirPods Pro case in part to tell you when the case is charging, but Apple gives you an option to turn that off if you want to. Here's how to do it.The speaker on the new AirPods case is not only to indicate charging, but can a…",
"url": "https://appleinsider.com/inside/airpods-pro-2/tips/how-to-turn-off-case-sounds-on-new-airpods-pro",
"urlToImage": "https://photos5.appleinsider.com/gallery/50716-99954-IMG_1970-xl.jpg",
"publishedAt": "2022-10-06T10:44:46Z",
"content": "AppleInsider is supported by its audience and may earn commission as an Amazon Associate and affiliate partner on qualifying purchases. These affiliate partnerships do not influence our editorial con… [+2646 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Christine McKee)",
"title": "Amazon's $399 iPad mini deal (a fan favorite) is back",
"description": "The $399 iPad mini 6 has returned, with the $100 discount arriving ahead of the Prime Early Access Sale. And you don't have to be a Prime member to snap up this fantastic deal.Amazon has reissued its popular $399 iPad mini 6 deal.All four iPad mini 6 colors a…",
"url": "https://appleinsider.com/articles/22/10/06/amazons-399-ipad-mini-deal-a-fan-favorite-is-back",
"urlToImage": "https://photos5.appleinsider.com/gallery/50719-99967-apple-ipad-mini-sale-xl.jpg",
"publishedAt": "2022-10-06T14:44:53Z",
"content": "Amazon has reissued its popular $399 iPad mini 6 deal.\r\nAppleInsider is supported by its audience and may earn commission as an Amazon Associate and affiliate partner on qualifying purchases. These a… [+1017 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Christine McKee)",
"title": "Daily deals Oct. 6: $280 off Eero Pro 3-pack, $100 off M1 MacBook Air, Beats Studio3 for $149.99, more",
"description": "Thursday's best deals include Beats Studio3 for $149.99, $400 off Apple's 14-inch MacBook Pro, $180 off an LG 27-inch 4K monitor, and much more.Best deals October 6AppleInsider checks online stores daily to uncover discounts and offers on hardware and other p…",
"url": "https://appleinsider.com/articles/22/10/06/daily-deals-oct-6-280-off-eero-pro-3-pack-100-off-m1-macbook-air-beats-studio3-for-14999-more",
"urlToImage": "https://photos5.appleinsider.com/gallery/50717-99963-Deals-xl.jpg",
"publishedAt": "2022-10-06T12:57:34Z",
"content": "Best deals October 6\r\nAppleInsider is supported by its audience and may earn commission as an Amazon Associate and affiliate partner on qualifying purchases. These affiliate partnerships do not influ… [+3461 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Wesley Hilliard)",
"title": "iPhone 14 Plus review roundup: Big iPhone screen, on a budget",
"description": "Reviews for the iPhone 14 Plus are out, and everyone is talking about the multi-day battery life in this more-affordable large iPhone.The iPhone 14 Plus is just a bigger iPhoneApple announced the iPhone 14 lineup on September 7 during its Far Out event. The i…",
"url": "https://appleinsider.com/articles/22/10/06/iphone-14-plus-review-roundup-big-iphone-screen-on-a-budget",
"urlToImage": "https://photos5.appleinsider.com/gallery/50678-99961-iPhone-14-and-Plus-xl.jpg",
"publishedAt": "2022-10-06T11:58:47Z",
"content": "The iPhone 14 Plus is just a bigger iPhone\r\nAppleInsider is supported by its audience and may earn commission as an Amazon Associate and affiliate partner on qualifying purchases. These affiliate par… [+2805 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Wesley Hilliard)",
"title": "Google Pixel 7 smartphone & Pixel Watch debut",
"description": "The Google Pixel 7, Pixel 7 Pro, and Pixel Watch have been officially announced as a coherent product ecosystem that all works together for the user.Google shares details about its latest Pixel productsUnlike Apple, Google shares a preview of its upcoming pro…",
"url": "https://appleinsider.com/articles/22/10/06/google-pixel-7-smartphone-pixel-watch-debut",
"urlToImage": "https://photos5.appleinsider.com/gallery/50686-99865-pixel-event-xl.jpg",
"publishedAt": "2022-10-06T14:48:52Z",
"content": "Google shares details about its latest Pixel products\r\nAppleInsider is supported by its audience and may earn commission as an Amazon Associate and affiliate partner on qualifying purchases. These af… [+3408 chars]"
},
{
"source": {
"id": null,
"name": "Elespanol.com"
},
"author": "Adrián Raya",
"title": "Google Pixel Watch, características y precio del reloj inteligente que trae Android a tu muñeca",
"description": "Después de muchos rumores, Google ha presentado el nuevo Pixel Watch, un reloj con el que pretende revitalizar su sistema Wear OS, al integrarlo mucho más con el sistema Android de los móviles.",
"url": "https://www.elespanol.com/elandroidelibre/otros-dispositivos/20221006/google-pixel-watch-caracteristicas-precio-inteligente-android/708679413_0.html",
"urlToImage": "https://s1.eestatic.com/2022/10/06/elandroidelibre/708689604_227780416_600x315.jpg",
"publishedAt": "2022-10-06T14:57:10Z",
"content": "Originalmente, Google no estaba en el negocio de crear smartphones. Los modelos Nexus, y luego los Pixel, nacieron sólo como una referencia para el resto del mercado, algo que nos permita saber exact… [+3876 chars]"
},
{
"source": {
"id": null,
"name": "Elespanol.com"
},
"author": "Manuel Ramírez",
"title": "Google actualiza tres apps vitales de Wear OS a horas de la presentación del Pixel Watch",
"description": "Hoy es un día muy especial para Google al presentar sus nuevos dispositivos, como son el Google Pixel 7 y su reloj inteligente Pixel Watch. Para que todo sea ideal, acaba de actualizar tres de las apps más importantes en Wear OS.",
"url": "https://www.elespanol.com/elandroidelibre/aplicaciones/20221006/google-actualiza-vitales-wear-presentacion-pixel-watch/708679131_0.html",
"urlToImage": "https://s1.eestatic.com/2022/10/06/elandroidelibre/aplicaciones/708689140_227762904_600x315.jpg",
"publishedAt": "2022-10-06T08:11:00Z",
"content": "Con casi todo ya en la mano sobre el Pixel Watch, el primer smartwatch de Google, y a horas de su presentación, la compañía estadounidense se ha tomado su momento para actualizar tres apps de Wear OS… [+1785 chars]"
},
{
"source": {
"id": null,
"name": "Elespanol.com"
},
"author": "Adrián Raya",
"title": "Google Pixel 7 y Pixel 7 Pro: características y precio de los móviles de referencia en Android",
"description": "Google ha presentado sus nuevos dos modelos de smartphones, el Pixel 7 y el Pixel 7 Pro, lo más parecido a un “móvil oficial de Android” que tenemos en el mercado.",
"url": "https://www.elespanol.com/elandroidelibre/moviles-android/20221006/google-pixel-pro-caracteristicas-moviles-referencia-android/708679404_0.html",
"urlToImage": "https://s1.eestatic.com/2022/10/06/elandroidelibre/708689698_227780052_600x315.jpg",
"publishedAt": "2022-10-06T14:48:54Z",
"content": "Cuando decimos que los Pixel son los móviles de referencia, no queremos decir necesariamente que sean los mejores. Es sólo que son los únicos móviles creados y soportados directamente por Google, que… [+10731 chars]"
},
{
"source": {
"id": null,
"name": "Gizmodo.jp"
},
"author": "ヤマダユウス型",
"title": "PIxel 7/Pixel 7 Proの価格出ました! 599ドルと899ドル #MadeByGoogle",
"description": "Google Pixel 7と同Proの価格発表。それぞれ599ドル(日本国内価格:8万2500円)と899ドル(日本国内価格:12万3400円)。",
"url": "https://www.gizmodo.jp/2022/10/pixel7-sells-for-599.html",
"urlToImage": "https://media.loom-app.com/gizmodo/dist/images/2022/10/06/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%882022-10-0623.47.22.jpg?w=1280&h=630&f=jpg",
"publishedAt": "2022-10-06T15:04:00Z",
"content": "Apple\r\nGooglePIxel 7Pixel 7 ProPixel 759982500Pixel 7 Pro899123400\r\nSource: Google Store"
},
{
"source": {
"id": null,
"name": "CNET"
},
"author": "Jared DiPane",
"title": "Fire TV, Echo and More Hit New All-Time Low Prices Ahead of Amazon's Prime Day Sale - CNET",
"description": "With under a week until Amazon officially kicks off its Prime Early Access Sale (or Prime Day 2), the company already has a bunch of huge discounts you won't want to miss.",
"url": "https://www.cnet.com/deals/fire-tv-echo-and-more-hit-new-all-time-low-prices-ahead-of-amazons-prime-day-sale/",
"urlToImage": "https://www.cnet.com/a/img/resize/02bbf70ff35d6623388d634435d6a6c6189fd42e/hub/2022/09/30/67f029de-5564-4ef7-824d-04a8709d250a/amazon.png?auto=webp&fit=crop&height=630&width=1200",
"publishedAt": "2022-10-06T11:17:10Z",
"content": "We are just over a week away from Amazon's Prime Early Access Sale, but that didn't stop the company from starting a huge sale with up to 59% off a bunch of its best hardware. Amazon recently hosted … [+2709 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Jesús Quesada",
"title": "El iPhone 13 Pro Max tiene rebaja en la Semana Web de MediaMarkt: autonomía brutal, gran pantalla y cámaras de calidad",
"description": "Comprar un iPhone 14 Pro/Max no es fácil: los envíos van para unas cuantas semanas y la subida de precios tampoco incita a muchos adquirir uno de estos terminales de Apple, prefiriendo optar por modelos de anteriores generaciones como el iPhone 13 Pro Max, cu…",
"url": "https://www.applesfera.com/seleccion/iphone-13-pro-max-tiene-rebaja-semana-web-mediamarkt-autonomia-brutal-gran-pantalla-camaras-calidad",
"urlToImage": "https://i.blogs.es/4645b2/iphone-13-pro-max-oferta/840_560.jpg",
"publishedAt": "2022-10-06T06:15:55Z",
"content": "Comprar un iPhone 14 Pro/Max no es fácil: los envíos van para unas cuantas semanas y la subida de precios tampoco incita a muchos adquirir uno de estos terminales de Apple, prefiriendo optar por mode… [+1854 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "David Bernal Raspall",
"title": "macOS Ventura añade un nuevo protector de pantalla y un nuevo fondo dinámico que ya podemos descargar",
"description": "Se acerca el lanzamiento oficial de macOS Ventura. Todavía desconocemos la fecha exacta, pero damos por hecho que será dentro de este mismo mes de octubre. En este sentido, Apple está dando los últimos toques al sistema, como lo son añadir un nuevo fondo de p…",
"url": "https://www.applesfera.com/os-x/macos-ventura-anade-nuevo-protector-pantalla-nuevo-fondo-dinamico-que-podemos-descargar",
"urlToImage": "https://i.blogs.es/343a9a/imagen-1/840_560.jpeg",
"publishedAt": "2022-10-06T06:42:18Z",
"content": "Se acerca el lanzamiento oficial de macOS Ventura. Todavía desconocemos la fecha exacta, pero damos por hecho que será dentro de este mismo mes de octubre. En este sentido, Apple está dando los últim… [+1534 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "David Bernal Raspall",
"title": "Cómo programar un recordatorio de un correo en Mail con iOS 16",
"description": "Una de las funciones que llegan a Mail con iOS 16 es la posibilidad de pedir a la aplicación que nos recuerde sobre un correo más tarde. Una función que nos permite posponer la gestión de un mensaje concreto con la seguridad de que nos acordaremos de él.\n<!--…",
"url": "https://www.applesfera.com/tutoriales/como-programar-recordatorio-correo-mail-ios-16",
"urlToImage": "https://i.blogs.es/dc4d9c/hero/840_560.jpeg",
"publishedAt": "2022-10-06T06:01:56Z",
"content": "Una de las funciones que llegan a Mail con iOS 16 es la posibilidad de pedir a la aplicación que nos recuerde sobre un correo más tarde. Una función que nos permite posponer la gestión de un mensaje … [+1319 chars]"
},
{
"source": {
"id": null,
"name": "Phandroid - News for Android"
},
"author": "Nick Gray",
"title": "Stop complaining! The Pixel Watch screen bezels are not as bad as you think",
"description": "The Pixel Watch will officially be unveiled today, marking the first time Google has released an Android-powered smartwatch. If you've been following along with all the official teasers from Google and the plethora of leaks, there's a good chance that you've …",
"url": "https://phandroid.com/2022/10/06/stop-complaining-the-pixel-watch-screen-bezels-are-not-as-bad-as-you-think/",
"urlToImage": "https://phandroid.com/wp-content/uploads/2022/10/pixel-watch-640x480.webp",
"publishedAt": "2022-10-06T14:06:50Z",
"content": "The Pixel Watch will officially be unveiled today, marking the first time Google has released an Android-powered smartwatch. If you’ve been following along with all the official teasers from Google a… [+2662 chars]"
},
{
"source": {
"id": null,
"name": "Phandroid - News for Android"
},
"author": "Tyler Lee",
"title": "The Pixel Watch has officially been announced",
"description": "After years of rumors, Google has officially announced their own branded smartwatch, the Google Pixel Watch.\nThe post The Pixel Watch has officially been announced first appeared on Phandroid.",
"url": "https://phandroid.com/2022/10/06/the-pixel-watch-has-officially-been-announced/",
"urlToImage": "https://phandroid.com/wp-content/uploads/2022/10/google-pixel-watch-1-640x316.jpg",
"publishedAt": "2022-10-06T15:12:26Z",
"content": "For years, it has long been rumored that Google could be working on their own Pixel branded smartwatch. After all, the company has made their own smartphones, tablets, smart speakers, smart displays,… [+1550 chars]"
},
{
"source": {
"id": null,
"name": "Phandroid - News for Android"
},
"author": "Nick Gray",
"title": "Google Pixel 7 and Pixel 7 Pro users get a free VPN",
"description": "Google announced today that its new Pixel 7 and Pixel 7 Pro smartphones will get a free VPN service that will help keep their data, app usage, and internet traffic private. Dubbed VPN by Google One, the new feature will be available exclusively to Pixel 7 own…",
"url": "https://phandroid.com/2022/10/06/google-pixel-7-and-pixel-7-pro-users-get-a-free-vpn/",
"urlToImage": "https://phandroid.com/wp-content/uploads/2022/10/pixel-7-family-2-640x360.png",
"publishedAt": "2022-10-06T15:49:46Z",
"content": "Google announced today that its new Pixel 7 and Pixel 7 Pro smartphones will get a free VPN service that will help keep their data, app usage, and internet traffic private. Dubbed VPN by Google One, … [+1767 chars]"
},
{
"source": {
"id": null,
"name": "Presse-citron"
},
"author": "Jean-Yves Alric",
"title": "Pourquoi Apple TV+ est la meilleure plateforme de streaming",
"description": "Apple TV+ est clairement sous coté. On vous explique pourquoi.",
"url": "https://www.presse-citron.net/pourquoi-apple-tv-est-la-meilleure-plateforme-de-streaming/",
"urlToImage": "https://www.presse-citron.net/app/uploads/2022/10/ted-lasso.jpg",
"publishedAt": "2022-10-06T11:30:35Z",
"content": "Si vous lisez cet article, cest peut-être parce que notre titre vous aura intrigué. Mais pourquoi donc affirmer quApple TV+ est le meilleur service de streaming alors quil fait face à des géants comm… [+3574 chars]"
},
{
"source": {
"id": null,
"name": "GameSpot"
},
"author": "Lan Pitts",
"title": "American Horror Story: NYC Gets First Teaser And Something Evil Is Coming",
"description": "The upcoming 11th season of the American Horror Story anthology series, AHS: NYC, will hit the Big Apple, bringing fear and evil to the great city. FX released the teaser this week and just as previous teasers in the past, it deals with abstract imagery but s…",
"url": "https://www.gamespot.com/articles/american-horror-story-nyc-gets-first-teaser-and-something-evil-is-coming/1100-6508081/",
"urlToImage": "https://www.gamespot.com/a/uploads/screen_kubrick/1597/15976769/4045051-maxresdefault%289%29.jpg",
"publishedAt": "2022-10-06T14:06:00Z",
"content": "The upcoming 11th season of the American Horror Story anthology series, AHS: NYC, will hit the Big Apple, bringing fear and evil to the great city. FX released the teaser this week and just as previo… [+1222 chars]"
},
{
"source": {
"id": null,
"name": "XDA Developers"
},
"author": "Mahmoud Itani",
"title": "These are the best Apple AirPods Pro 2 deals in 2022",
"description": "After months of anticipation, the Apple AirPods Pro 2 are finally here. We had been hearing all sorts of rumors about these earbuds for a very long time, and now the wait is over. Revealed along with the iPhone 14 and iPhone 14 Pro, these wireless earphones c…",
"url": "https://www.xda-developers.com/best-apple-airpods-pro-2-deals/",
"urlToImage": "https://www.xda-developers.com/files/2022/09/These-are-the-Best-Apple-AirPods-Pro-2-Deals-in-2022.jpg",
"publishedAt": "2022-10-06T04:01:12Z",
"content": "After months of anticipation, the Apple AirPods Pro 2 are finally here. We had been hearing all sorts of rumors about these earbuds for a very long time, and now the wait is over. Revealed along with… [+2203 chars]"
},
{
"source": {
"id": null,
"name": "XDA Developers"
},
"author": "Pranob Mehrotra",
"title": "The all-new Pixel Watch features a unique design and works seamlessly with Google apps",
"description": "After showcasing the highly-anticipated Pixel Watch at its I/O developer conference this May, Google has now finally brought it to the market. Launched alongside the Pixel 7 series at today’s Made by Google event, the Pixel Watch offers a unique design, premi…",
"url": "https://www.xda-developers.com/google-pixel-watch-launch/",
"urlToImage": "https://www.xda-developers.com/files/2022/10/Google-Pixel-Watch-launch-featured.jpg",
"publishedAt": "2022-10-06T14:49:56Z",
"content": "After showcasing the highly-anticipated Pixel Watch at its I/O developer conference this May, Google has now finally brought it to the market. Launched alongside the Pixel 7 series at today’s Made by… [+4051 chars]"
},
{
"source": {
"id": null,
"name": "The A.V. Club"
},
"author": "William Hughes",
"title": "The Lyle, Lyle Crocodile guys are making an Oregon Trail movie musical",
"description": "The team behind upcoming musical feature Lyle, Lyle Crocodile is already gearing up for another song-filled feature culled directly from the distant memories of your childhood: The Oregon Trail. Read more...",
"url": "https://www.avclub.com/the-lyle-lyle-crocodile-guys-are-making-an-oregon-trai-1849623311",
"urlToImage": "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/faad4dffed99ff45c425f92fb56cb1e7.png",
"publishedAt": "2022-10-06T04:17:00Z",
"content": "The team behind upcoming musical feature Lyle, Lyle Crocodileis already gearing up for another song-filled feature culled directly from the distant memories of your childhood: The Oregon Trail. \r\nThi… [+1798 chars]"
},
{
"source": {
"id": null,
"name": "Golem.de"
},
"author": "Andreas Donath",
"title": "Smartphones und Tablets: BSI hält Verschlusssachen im iPhone und iPad für sicher",
"description": "Das BSI hat iOS und iPadOS untersucht und bestätigt, dass die Apple-eigenen Apps für die Verarbeitung von Verschlusssachen sicher sind. (BSI, Apple)",
"url": "https://www.golem.de/sonstiges/zustimmung/auswahl.html?from=https%3A%2F%2Fwww.golem.de%2Fnews%2Fsmartphones-und-tablets-bsi-sieht-verschlusssachen-im-iphone-und-ipad-sicher-2210-168749.html&referer=https%3A%2F%2Ft.co%2F7a58b41b2f",
"urlToImage": null,
"publishedAt": "2022-10-06T06:59:01Z",
"content": "Besuchen Sie Golem.de wie gewohnt mit Werbung und Tracking, indem Sie der Nutzung aller Cookies zustimmen.\r\n Details zum Tracking finden Sie im Privacy Center.\r\nSkript wurde nicht geladen. Informatio… [+575 chars]"
},
{
"source": {
"id": null,
"name": "Jalopnik"
},
"author": "Andy Kalmowitz",
"title": "Ford Raised the F-150 Lightning's Price Once Again",
"description": "Ford is hiking up the price of the base F-150 Lightning Pro for the second time in two months, Porsche is now Europe’s most valuable carmaker after its IPO, and Honda is planning to drastically cut vehicle output at two plants in Japan this October. All that …",
"url": "https://jalopnik.com/ford-raised-the-f-150-lightnings-price-once-again-1849624337",
"urlToImage": "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/4a4afd43b6cd8d397230ce2c4a76e204.jpg",
"publishedAt": "2022-10-06T14:03:14Z",
"content": "Ford is hiking up the price of the base F-150 Lightning Pro for the second time in two months, Porsche is now Europes most valuable carmaker after its IPO, and Honda is planning to drastically cut ve… [+9478 chars]"
},
{
"source": {
"id": null,
"name": "Mental Floss"
},
"author": "Jake Rossen",
"title": "'Cabbage Night': 7 Regional Names for the Night Before Halloween",
"description": "Whether you call it Mischief Night, Devil's Night, or something else, it all means one thing: wanton destruction of property.",
"url": "https://www.mentalfloss.com/posts/regional-names-night-before-halloween",
"urlToImage": "https://images2.minutemediacdn.com/image/upload/c_crop,w_1968,h_1107,x_0,y_361/c_fill,w_1440,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/mentalfloss/01gdxz6hdn9x61gh0ev0.jpg",
"publishedAt": "2022-10-06T12:00:00Z",
"content": "Everyone is well acquainted with All Hallows Eve, better known as Halloween. But depending on your region, you might have a name for the night before the trick-or-treating starts. Known as Mischief N… [+4423 chars]"
},
{
"source": {
"id": null,
"name": "Android Authority"
},
"author": "Robert Triggs",
"title": "Google Tensor G2 chip: Everything you need to know",
"description": "Tensor G2 is Google's second semi-custom mobile chip. It debuted with the Pixel 7 series and is built for machine learning tasks.",
"url": "https://www.androidauthority.com/google-tensor-g2-explained-3216087/",
"urlToImage": "https://www.androidauthority.com/wp-content/uploads/2022/10/Google-Tensor-G2.jpg",
"publishedAt": "2022-10-06T15:20:26Z",
"content": "With the arrival of the Pixel 7 and Pixel 7 Pro comes the successor to the Google Tensor chipset. Dubbed the Tensor G2, this is Googles second foray into the world of semi-custom silicon development,… [+8501 chars]"
},
{
"source": {
"id": null,
"name": "The A.V. Club"
},
"author": "Katie Chow",
"title": "Jennifer Lawrence and Brian Tyree Henry show New Orleans some love in the Causeway trailer",
"description": "Jennifer Lawrence stars in the latest sensitive drama from A24, Causeway. Co-produced by Apple TV+, the film follows Lynsey, a former military engineer forced to move back in with her mother in New Orleans and get a job cleaning pools after suffering a brain …",
"url": "https://www.avclub.com/jennifer-lawrence-brian-tyree-henry-causeway-trailer-1849625059",
"urlToImage": "https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/7df97a1433e309dd638a41e791c34cba.png",
"publishedAt": "2022-10-06T15:48:47Z",
"content": "Jennifer Lawrence stars in the latest sensitive drama from A24, Causeway. Co-produced by Apple TV+, the film follows Lynsey, a former military engineer forced to move back in with her mother in New O… [+1495 chars]"
},
{
"source": {
"id": null,
"name": "BGR"
},
"author": "José Adorno",
"title": "Images on Apple’s website show iPhone 14 Pro with a very different display design",
"description": "Before Apple introduced the iPhone 14 Pro, rumors indicated that the company would embrace a hole-punch + pill cutout. During its “Far Out” event, the company did choose this cutout instead of the well-known notch but decided to call the space the “Dynamic Is…",
"url": "https://bgr.com/tech/iphone-14-pro-i-display-design/",
"urlToImage": "https://bgr.com/wp-content/uploads/2022/10/iphone-14-pro-i-cutout-bgr.jpg?quality=82&strip=all",
"publishedAt": "2022-10-06T11:49:08Z",
"content": "Before Apple introduced the iPhone 14 Pro, rumors indicated that the company would embrace a hole-punch + pill cutout. During its “Far Out” event, the company did choose this cutout instead of the we… [+2160 chars]"
},
{
"source": {
"id": null,
"name": "BGR"
},
"author": "Maren Estrada",
"title": "Today’s deals: Early Prime Day sale, $3 smart plugs, AirTag deal, Funko Pop!, iPad, more",
"description": "Just take one look at our roundup of the best Prime Early Access Sale deals you can already shop now. You’ll instantly see that Amazon is offering Black Friday-quality deals more than a month early. And you don’t even need to be a Prime member to take advanta…",
"url": "https://bgr.com/deals/todays-deals-early-prime-day-sale-3-smart-plugs-airtag-deal-funko-pop-ipad-more/",
"urlToImage": "https://bgr.com/wp-content/uploads/2022/02/bgr-deals-of-the-day-2022-42.jpg?quality=82&strip=all",
"publishedAt": "2022-10-06T12:34:00Z",
"content": "If you purchase an independently reviewed product or service through a link on our website, we may receive an affiliate commission. Learn more.\r\nJust take one look at our roundup of the best Prime Ea… [+5039 chars]"
},
{
"source": {
"id": null,
"name": "BGR"
},
"author": "Christian de Looper",
"title": "Logitech MX Master 3S for Mac review: The best mouse gets better",
"description": "The Logitech MX Master is almost legendary. The original arguably redefined what a productivity-focused mouse could be, taking elements from gaming mice, bringing in an ultra-ergonomic feel, and giving customers enough customization to make the mouse worth th…",
"url": "https://bgr.com/reviews/logitech-mx-master-3s-for-mac-review-the-best-mouse-gets-better/",
"urlToImage": "https://bgr.com/wp-content/uploads/2022/10/logitech-mx-master-3s-mac-1.jpg?quality=82&strip=all",
"publishedAt": "2022-10-06T02:11:00Z",
"content": "The Logitech MX Master is almost legendary. The original arguably redefined what a productivity-focused mouse could be, taking elements from gaming mice, bringing in an ultra-ergonomic feel, and givi… [+6164 chars]"
},
{
"source": {
"id": null,
"name": "BGR"
},
"author": "Chris Smith",
"title": "Another cheese recall: 13 more cheeses you need to throw out now",
"description": "Cheese fans who purchased Zerto Fontal products from Whole Foods Market or Old Europe Brie and Camembert products from various other markets should be aware of two separate recall actions. The Whole Foods Market cheese recall involves products that might cont…",