-
Notifications
You must be signed in to change notification settings - Fork 0
/
SampleOutput.json
1306 lines (1306 loc) · 96.4 KB
/
SampleOutput.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
{
"status": "ok",
"totalResults": 1010,
"articles": [
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Simon Hill",
"title": "The Best USB-C Cables for Your Phone, Tablet, or Laptop",
"description": "Unravel the tangled world of cords and find the ones you need to charge your gadgets and transfer data.",
"url": "https://www.wired.com/gallery/best-usb-c-cables/",
"urlToImage": "https://media.wired.com/photos/62bf432e50f8f55faa9502d8/191:100/w_2580,c_limit/Anker_New_Nylon_10_Foot-SOURCE-Anker-Gear.jpg",
"publishedAt": "2022-07-06T11:00:00Z",
"content": "With various standards and charging technologies at work, it is much harder than it should be to work out what a cable can do. There are a few things worth knowing when shopping.\r\nUSB Standards: The … [+3643 chars]"
},
{
"source": {
"id": null,
"name": "New York Times"
},
"author": "Ellen Almer Durston, Campbell Robertson and Dan Simmons",
"title": "Highland Park, Chicago’s ‘Mayberry,’ Struggles With Identity After Shooting",
"description": "Intended from the start as an oasis, the suburb is struggling to comprehend its new identity as the latest site of a mass shooting",
"url": "https://www.nytimes.com/2022/07/05/us/highland-park-chicago-shooting.html",
"urlToImage": "https://static01.nyt.com/images/2022/07/05/us/05highland-park-town-1/05highland-park-town-1-facebookJumbo.jpg",
"publishedAt": "2022-07-06T04:07:39Z",
"content": "On Tuesday, the death toll increased from six to seven. More than 30 people were wounded in the attack. Even those who saw the violence firsthand struggled to comprehend what had happened.\r\nIts so we… [+1260 chars]"
},
{
"source": {
"id": "reuters",
"name": "Reuters"
},
"author": null,
"title": "Hollywood veteran Chernin forms new studio with acquisition of Red Arrow Studios - Reuters",
"description": "Hollywood veteran Peter Chernin announced Wednesday that he is forming a new studio, betting that the appetite for new content will remain strong despite the pall cast over the streaming industry by Netflix Inc's <a href=\"https://www.reuters.com/companies/NFL…",
"url": "https://www.reuters.com/business/media-telecom/hollywood-veteran-chernin-forms-new-studio-with-acquisition-red-arrow-studios-2022-07-06/",
"urlToImage": "https://www.reuters.com/pf/resources/images/reuters/reuters-default.png?d=100",
"publishedAt": "2022-07-06T12:12:00Z",
"content": "LOS ANGELES, July 6 (Reuters) - Hollywood veteran Peter Chernin announced Wednesday that he is forming a new studio, betting that the appetite for new content will remain strong despite the pall cast… [+2456 chars]"
},
{
"source": {
"id": null,
"name": "Android Central"
},
"author": "tips@androidcentral.com (Jay Bonggolto)",
"title": "EU Parliament passes new rules to rein in Big Tech's market dominance",
"description": "The EU's parliament has passed the new Digital Services Act and Digital Markets Act to combat the spread of illegal content online and to regulate the practices of Big Tech.",
"url": "https://www.androidcentral.com/apps-software/eu-passes-digital-services-act-and-digital-markets-act",
"urlToImage": "https://cdn.mos.cms.futurecdn.net/9ee4iMVZtEdSkpgKEFbmkA-1200-80.jpg",
"publishedAt": "2022-07-06T08:52:59Z",
"content": "<ul><li>EU lawmakers have passed landmark rules to rein in Big Tech's business practices and limit their dominance.</li><li>The Digital Services Act and Digital Markets Act seek to hold tech giants a… [+3023 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Sammy Gecsoyler",
"title": "The revolution will be televised: why we are witnessing a big-boss backlash",
"description": "As even the Minions start to question their morally compromised overlord, popular culture is increasingly siding with the workers in their fight against corporate greedThe cultural zeitgeist around work is changing. Last week, many of us will have been franti…",
"url": "https://amp.theguardian.com/film/2022/jul/06/the-revolution-will-be-televised-why-we-are-witnessing-a-big-boss-backlash",
"urlToImage": "https://i.guim.co.uk/img/media/1f93c89783dc7bd8bb80f77e8c67c3ebe3e58465/544_0_2499_1500/master/2499.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=76c23942bd9f4286d9c7101829203583",
"publishedAt": "2022-07-06T10:24:57Z",
"content": "The cultural zeitgeist around work is changing. Last week, many of us will have been frantically adjusting our journeys amid nationwide train strikes. If the transport gods were merciful, we will hav… [+5077 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Joe Rossignol",
"title": "Apple Announces MacBook Air With M2 Chip Available to Order Starting July 8, Launches July 15",
"description": "Apple today announced that the new MacBook Air equipped with the M2 chip will be available to order starting Friday, July 8 at 5 a.m. Pacific Time. Apple said deliveries to customers and in-store availability will begin Friday, July 15.\n\n\n\n\n\nMacRumors exclusi…",
"url": "https://www.macrumors.com/2022/07/06/m2-macbook-air-release-date/",
"urlToImage": "https://images.macrumors.com/t/xqOPomTSUHqWoF5w9CnE4CfjARU=/1991x/article-new/2022/06/macbook-air-m2-order-date-feature.jpg",
"publishedAt": "2022-07-06T11:59:43Z",
"content": "Apple today announced that the new MacBook Air equipped with the M2 chip will be available to order starting Friday, July 8 at 5 a.m. Pacific Time. Apple said deliveries to customers and in-store ava… [+1078 chars]"
},
{
"source": {
"id": null,
"name": "Entrepreneur"
},
"author": "Sofia Laurell",
"title": "3 Reasons Why Bilingual Skills Are Entrepreneurial Differentiators",
"description": "Speaking multiple languages is not a setback: It is your secret weapon.",
"url": "https://www.entrepreneur.com/article/429036",
"urlToImage": "https://assets.entrepreneur.com/content/3x2/2000/1656529941-shutterstock-1688328106.jpg",
"publishedAt": "2022-07-06T13:00:00Z",
"content": "More than 40% of Fortune 500 companies operating in 2010 were founded by immigrants or their children, according to the Partnership for a New American Economy including some of the most well-known br… [+6449 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Joe Rossignol",
"title": "Refurbished Mac Studio With M1 Max Chip Back in Stock With Fast Delivery",
"description": "Apple began selling refurbished Mac Studio models last week, but inventory quickly sold out in the United States. For customers who missed out, the base model Mac Studio with the M1 Max chip has been restocked on Apple's refurbished store while supplies last.…",
"url": "https://www.macrumors.com/2022/07/06/refurbished-mac-studio-restocked/",
"urlToImage": "https://images.macrumors.com/t/Zy1N5YzjWowSss9dwjxuVQDPogY=/3576x/article-new/2022/06/Mac-Studio-IO.jpg",
"publishedAt": "2022-07-06T13:14:49Z",
"content": "Apple began selling refurbished Mac Studio models last week, but inventory quickly sold out in the United States. For customers who missed out, the base model Mac Studio with the M1 Max chip has been… [+1347 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Tim Hardwick",
"title": "Latest iPhone Chips to Remain Exclusive to Pro Models for iPhone 15 and Beyond",
"description": "Apple is expected to make its latest A16 processor exclusive to the Pro models in the iPhone 14 lineup, and that diversification strategy is set to become an annual trend in future iPhone series, according to a new report from analyst Ming-Chi Kuo.\n\n\n\n\n\nEarli…",
"url": "https://www.macrumors.com/2022/07/06/latest-iphone-chips-exclusive-pro-models-iphone-15/",
"urlToImage": "https://images.macrumors.com/t/nj-ztgzA8B5BRkMZAiQKK7SM03M=/2531x/article-new/2022/05/iPhone-14-Lineup-Feature-Purple.jpg",
"publishedAt": "2022-07-06T10:12:19Z",
"content": "Apple is expected to make its latest A16 processor exclusive to the Pro models in the iPhone 14 lineup, and that diversification strategy is set to become an annual trend in future iPhone series, acc… [+3149 chars]"
},
{
"source": {
"id": "business-insider",
"name": "Business Insider"
},
"author": "prosen@insider.com (Phil Rosen)",
"title": "Gas prices have fallen for 21 straight days and oil prices have dropped. Here's what to know.",
"description": "The biggest story in markets today is falling gas prices and crude prices — plus, some bearish forecasts for the stock market from top experts.",
"url": "https://www.businessinsider.com/gas-crude-prices-falling-what-to-know-2022-7",
"urlToImage": "https://i.insider.com/62c56f1edd9e11001943ebd1?width=1200&format=jpeg",
"publishedAt": "2022-07-06T11:25:35Z",
"content": "Top of the morning, readers. Phil Rosen here, reporting from the Big Apple. \r\nOf course I couldn't miss hump day especially when the US has just seen three weeks straight (!) that gas prices have fal… [+4119 chars]"
},
{
"source": {
"id": null,
"name": "Hipertextual"
},
"author": "Alberto Martín",
"title": "Apple cambia de estrategia: los iPhone sin apellido Pro nunca tendrán el chip más potente",
"description": "Que los iPhone 14 están a la vuelta de la esquina no es ningún secreto. Pero lo cierto es que este será un año de cambios en la forma en la que Apple pondrá a la venta su teléfono estrella. Si hacemos caso a los rumores, la línea de iPhone de este año será un…",
"url": "https://hipertextual.com/2022/07/apple-cambia-de-estrategia-los-iphone-sin-apellido-pro-nunca-tendran-el-chip-mas-potente",
"urlToImage": "https://imgs.hipertextual.com/wp-content/uploads/2022/07/iPhone-14-Pro-Purple-Lay-Down-Full-scaled.jpg",
"publishedAt": "2022-07-06T08:35:00Z",
"content": "Que los iPhone 14 están a la vuelta de la esquina no es ningún secreto. Pero lo cierto es que este será un año de cambios en la forma en la que Apple pondrá a la venta su teléfono estrella. Si hacemo… [+2317 chars]"
},
{
"source": {
"id": null,
"name": "Hipertextual"
},
"author": "Rubén Chicharro",
"title": "Prepárate para ver publicidad en las fotos de tus hijos",
"description": "Es común ver publicidad cuando navegas por las diferentes redes sociales, consumes un video en YouTube, o, por ejemplo, accedes a una aplicación que no cuenta con una modalidad de suscripción, como Spotify o muchos de los juegos disponibles en Google Play y A…",
"url": "https://hipertextual.com/2022/07/google-publicidad-pantalla-bloqueo",
"urlToImage": "https://imgs.hipertextual.com/wp-content/uploads/2022/02/Pixel-6-Pro-1-scaled.jpg",
"publishedAt": "2022-07-06T10:51:21Z",
"content": "Es común ver publicidad cuando navegas por las diferentes redes sociales, consumes un video en YouTube, o, por ejemplo, accedes a una aplicación que no cuenta con una modalidad de suscripción, como S… [+2968 chars]"
},
{
"source": {
"id": null,
"name": "Hipertextual"
},
"author": "Gabriel Erard",
"title": "Apple abre las reservas del nuevo MacBook Air M2",
"description": "Apple acaba de confirmar la fecha en que se pondrá en marcha el período de reservas del nuevo MacBook Air con chip M2. Será desde este viernes 8 de julio a partir de las 14, hora de España. La firma de Cupertino también ha anunciado que las entregas del renov…",
"url": "https://hipertextual.com/2022/07/apple-abre-reservas-macbook-air-m2",
"urlToImage": "https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2021/03/HPTX_ICONO.png?fit=1000%2C1000&quality=50&strip=all&ssl=1",
"publishedAt": "2022-07-06T12:41:02Z",
"content": "Apple acaba de confirmar la fecha en que se pondrá en marcha el período de reservas del nuevo MacBook Air con chip M2. Será desde este viernes 8 de julio a partir de las 14, hora de España. La firma … [+860 chars]"
},
{
"source": {
"id": "the-next-web",
"name": "The Next Web"
},
"author": "The Conversation",
"title": "Gen Z’s hunger for 2010s nostalgia is giving Tumblr a new lease of life",
"description": "When tech billionaire Elon Musk made a deal to acquire Twitter in April 2022, many Twitter users threatened to shut down their accounts and migrate elsewhere online. Tumblr – a microblogging platform launched in 2007 and long known as a laboratory for social …",
"url": "https://thenextweb.com/news/gen-z-2010s-nostalgia-is-giving-tumblr-new-life",
"urlToImage": "https://img-cdn.tnwcdn.com/image/tnw?filter_last=1&fit=1280%2C640&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2022%2F07%2F1.jpg&signature=cf9d003eca81607ec62d7c03bfec33f9",
"publishedAt": "2022-07-06T10:05:47Z",
"content": "When tech billionaire Elon Musk made a deal to acquire Twitter in April 2022, many Twitter users threatened to shut down their accounts and migrate elsewhere online.\r\nTumblr a microblogging platform … [+8266 chars]"
},
{
"source": {
"id": null,
"name": "Xataka.com"
},
"author": "Ricardo Aguilar",
"title": "Si compras un iPhone no 'Pro', tendrás un chip antiguo: se acabó la fiesta de la potencia",
"description": "Comprar un iPhone 13 mini y tener el mismo procesador del iPhone 13 Pro Max. Esta era una de las grandes bondades en la familia iPhone. Diferenciar los terminales por acabado, cámara y algunos detalles hacían bastante atractiva la apuesta por los iPhone \"de e…",
"url": "https://www.xataka.com/moviles/compras-iphone-no-pro-tendras-chip-antiguo-se-acabo-fiesta-potencia",
"urlToImage": "https://i.blogs.es/f94531/1366_2000-large/840_560.jpeg",
"publishedAt": "2022-07-06T10:01:59Z",
"content": "Comprar un iPhone 13 mini y tener el mismo procesador del iPhone 13 Pro Max. Esta era una de las grandes bondades en la familia iPhone. Diferenciar los terminales por acabado, cámara y algunos detall… [+2005 chars]"
},
{
"source": {
"id": null,
"name": "Xataka.com"
},
"author": "Eva Rodríguez de Luis",
"title": "Prime Day 2022: Ofertas anticipadas del día de hoy (6 de julio)",
"description": "Ya falta menos de una semana para el Prime Day 2022 y Amazon ya está calentando motores con las ofertas previas que, en algunos casos llegan como anticipo de su festival de 48 horas, y en otros como price matching a otras campañas como los PcDays de PcCompone…",
"url": "https://www.xataka.com/seleccion/prime-day-2022-ofertas-anticipadas-dia-hoy-6-julio",
"urlToImage": "https://i.blogs.es/0275f9/amazon-prime-day-copia/840_560.jpg",
"publishedAt": "2022-07-06T07:10:08Z",
"content": "Ya falta menos de una semana para el Prime Day 2022 y Amazon ya está calentando motores con las ofertas previas que, en algunos casos llegan como anticipo de su festival de 48 horas, y en otros como … [+3353 chars]"
},
{
"source": {
"id": "abc-news",
"name": "ABC News"
},
"author": "ABC News",
"title": "What we know about the suspect in July 4 parade mass shooting",
"description": "The suspect in a mass shooting at a July 4 parade is an aspiring rapper whose apparent social media posts include violent graphic images.",
"url": "https://abcnews.go.com/US/robert-bobby-crimo-iii-suspect-highland-park-parade/story?id=86236026",
"urlToImage": "https://s.abcnews.com/images/US/highland-park-4-ap-rc-220705_1657032592352_hpMain_16x9_992.jpg",
"publishedAt": "2022-07-06T02:46:45Z",
"content": "The 21-year-old suspect in the mass shooting at a Fourth of July parade in suburban Chicago that left seven dead and more than 30 wounded is an aspiring rapper with an apparent trail of violent socia… [+8744 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Malte Kirchner",
"title": "MacBook Air mit M2: Apple nennt konkrete Termine für Vorbestellung und Verkauf",
"description": "Bei der Vorstellung des neuen MacBook Air mit M2 Chip im Juni blieb offen, ab wann im Juli es verfügbar ist. Jetzt nennt Apple Details.",
"url": "https://www.heise.de/news/MacBook-Air-mit-M2-Apple-nennt-konkrete-Termine-fuer-Vorbestellung-und-Verkauf-7164294.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/5/7/1/4/0/3/m2-a89ce6cd53e4fdac.jpg",
"publishedAt": "2022-07-06T12:53:00Z",
"content": "Apple hat nach mehreren Wochen Wartezeit bekannt gegeben, ab wann das runderneuerte MacBook Air mit M2 Chip verkauft wird. Das neue Gerät war auf der Entwicklerkonferenz WWDC Anfang Juni der Öffentli… [+1587 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Ben Schwan",
"title": "Analysten: PC-Hersteller wegen MacBook Air M2 \"besorgt\"",
"description": "Apples neues Einsteiger-Notebook kommt vermutlich Mitte des Monats. Wintel-Produzenten fürchten, dass es den geschwächten Markt aufrollen könnte.",
"url": "https://www.heise.de/news/Analysten-PC-Hersteller-wegen-MacBook-Air-M2-besorgt-7163526.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/5/7/0/9/8/4/Apple-WWDC22-MacBook-Air-MagSafe-220606-327b45304c8bcaff.jpg",
"publishedAt": "2022-07-06T09:04:00Z",
"content": "Apples mit Abstand bestverkauftes Notebook bekommt sehr bald ein Update: Das Anfang Juni vorgestellte MacBook Air M2 dürfte in wenigen Tagen bestellbereit und dann Mitte Juli ausgeliefert werden. In … [+2428 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Frank Schräer",
"title": "Mittwoch: Gaming-Smartphones nicht nur für Spieler, Wale erkennen per Glasfaser",
"description": "High-End-Handy von Asus + Walgesang per Unterseekabel + Börsenflop für Deezer + JavaScript-Experte rät ab + iPhone-Netzteil am Ende + Automatisiert bei 130 km/h",
"url": "https://www.heise.de/news/Mittwoch-Gaming-Smartphones-nicht-nur-fuer-Spieler-Wale-erkennen-per-Glasfaser-7163562.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/5/7/1/0/0/4/mittwoch-bf952be52d5e9048.webp",
"publishedAt": "2022-07-06T04:30:00Z",
"content": "Gaming-Smartphones sind natürlich auch für andere Handy-Aktivitäten geeignet und genau darauf zielt Asus offenbar ab mit seinem Rog Phone 6. Dieses verspricht etliche High-End-Funktionen, aber weiter… [+3802 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "dpa",
"title": "Kartellamt mit härterer Wettbewerbskontrolle auch bei Amazon",
"description": "Laut dem Bundeskartellamt hat Amazon eine \"überragende marktübergreifende Bedeutung für den Wettbewerb\". Die Einstufung erlaubt mehr Kontrolle.",
"url": "https://www.heise.de/news/Kartellamt-mit-haerterer-Wettbewerbskontrolle-auch-bei-Amazon-7163987.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/3/5/7/1/2/3/8/shutterstock_376692970-90f9312341f90748.jpg",
"publishedAt": "2022-07-06T10:30:00Z",
"content": "Das Bundeskartellamt will nach Google und dem Facebook-Konzern Meta auch bei Amazon eine schärfere Wettbewerbskontrolle durchsetzen. Die Behörde stufte den Online-Riesen am Mittwoch als ein Unternehm… [+2011 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Filipe Espósito",
"title": "Poll: Which rumored Apple Watch Series 8 feature are you most excited to see?",
"description": "We are probably only two months away from the official announcement of the next generation iPhone and Apple Watch. When it comes to the new Apple Watch Series 8, rumors suggest that this year’s model won’t be a significant upgrade compared to the Series 7, bu…",
"url": "https://9to5mac.com/2022/07/05/poll-apple-watch-series-8-features/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/07/Apple-Watch-Series-8-rumored-features.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-07-06T01:45:17Z",
"content": "We are probably only two months away from the official announcement of the next generation iPhone and Apple Watch. When it comes to the new Apple Watch Series 8, rumors suggest that this year’s model… [+3009 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Filipe Espósito",
"title": "Kuo: Entry-level and mid-range iPhones will no longer have the latest Apple chips",
"description": "Earlier this year, an intriguing report by the very well-known analyst Ming-Chi Kuo revealed that Apple might keep the new A16 chip exclusively for iPhone 14 Pro models, while regular iPhone 14 models will get last year’s A15 chip. In a new report, Kuo has no…",
"url": "https://9to5mac.com/2022/07/05/entry-level-mid-range-iphone-apple-chips/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/07/iPhone-Apple-chips-A15.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-07-06T04:32:29Z",
"content": "Earlier this year, an intriguing report by the very well-known analyst Ming-Chi Kuo revealed that Apple might keep the new A16 chip exclusively for iPhone 14 Pro models, while regular iPhone 14 model… [+3657 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "CSAM law could force all encrypted messaging services to use Apple-style client-side scanning",
"description": "A proposed new CSAM law in the UK could force all messaging companies to use the type of client-side scanning approach which Apple planned to launch to detect child sexual abuse material (CSAM) on iPhones.\nAn amendment to the Online Safety Bill has been put f…",
"url": "https://9to5mac.com/2022/07/06/csam-law/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/07/CSAM-law.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-07-06T11:38:34Z",
"content": "A proposed new CSAM law in the UK could force all messaging companies to use the type of client-side scanning approach which Apple planned to launch to detect child sexual abuse material (CSAM) on iP… [+5151 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "iPhone 14 screen reprieve for Chinese company BOE after cheating incident",
"description": "Chinese display manufacturer BOE has been given the go-ahead for iPhone 14 screen production, despite having been caught cheating by Apple.\nThe company changed the specs of the displays it was making for the iPhone 13, but this was detected by the Cupertino c…",
"url": "https://9to5mac.com/2022/07/06/iphone-14-screen-reprieve-for-chinese-company-boe-after-cheating-incident/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/06/iphone-14-chip.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-07-06T13:08:47Z",
"content": "Chinese display manufacturer BOE has been given the go-ahead for iPhone 14 screen production, despite having been caught cheating by Apple.\r\nThe company changed the specs of the displays it was makin… [+3752 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "M2 MacBook Air orders open on Friday, July 8; delivery from July 15",
"description": "Apple has announced that you’ll be able to order the new M2 MacBook Air from Friday, July 8 – with deliveries starting a week later. Pricing starts at $1,199 … Beginning Friday, July 8, at 5 a.m. PDT, the completely redesigned MacBook Air with M2 will be avai…",
"url": "https://9to5mac.com/2022/07/06/m2-macbook-air-orders-open-on-friday-july-8-delivery-from-july-15/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2022/07/M2-MacBook-Air.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2022-07-06T12:04:14Z",
"content": "Apple has announced that you’ll be able to order the new M2 MacBook Air from Friday, July 8 with deliveries starting a week later.\r\nPricing starts at $1,199 … \r\nBeginning Friday, July 8, at 5 a.m. PD… [+2465 chars]"
},
{
"source": {
"id": null,
"name": "Android Police"
},
"author": "Rajesh Pandey",
"title": "Alexa: What you need to know about Amazon's virtual assistant",
"description": "The Amazon Alexa AI voice assistant is a formidable competitor compared with Siri and Google Assistant. Learn more in our in-depth explainer.",
"url": "https://www.androidpolice.com/amazon-alexa-assistant-explainer/",
"urlToImage": "https://static1.anpoimages.com/wordpress/wp-content/uploads/2022/06/Amazon-Alexa.jpg",
"publishedAt": "2022-07-06T10:05:14Z",
"content": "Siri and Google Assistant might be king on mobile, but Amazon's Alexa dominates the smart speaker market in the US. The e-commerce giant's voice assistant launched in 2014 and has taken over the smar… [+7317 chars]"
},
{
"source": {
"id": null,
"name": "Autoblog"
},
"author": "Abigail Bassett",
"title": "Rivian R1S First Drive Review: The SUV finally arrives! (Sort of)",
"description": "Filed under:\n Green,First Drives,Crossover,SUV,Electric,Luxury,Off-Road Vehicles,Rivian\n Continue reading Rivian R1S First Drive Review: The SUV finally arrives! (Sort of)\nRivian R1S First Drive Review: The SUV finally arrives! (Sort of) originally appeared o…",
"url": "https://www.autoblog.com/2022/07/06/rivian-r1s-electric-suv-first-drive/",
"urlToImage": "https://o.aolcdn.com/images/dims3/GLOB/legacy_thumbnail/1062x597/format/jpg/quality/100/https://s.aolcdn.com/os/ab/_cms/2022/07/05144514/Rivian-R1S-action-front-three-quarter-low.jpg",
"publishedAt": "2022-07-06T13:00:00Z",
"content": "WINDHAM, N.Y. There arent a lot of options in the seven-passenger, fully-electric SUV market, but startup automaker Rivian is working to change that with the launch of its second vehicle, the 2022 Ri… [+11528 chars]"
},
{
"source": {
"id": null,
"name": "MarketWatch"
},
"author": "Jaya Padmanabhan",
"title": "Next Avenue: Tech support fraud is the biggest scam for people over 60, taking them for millions—here are the red flags to watch for",
"description": "As more older adults adopt technology, they're also getting ripped off—to the tune of $1.7 billion in 2021, a 74% increase over 2020.",
"url": "https://www.marketwatch.com/story/tech-support-fraud-is-the-biggest-scam-for-people-over-60-taking-them-for-millionshere-are-the-red-flags-to-watch-for-11656624976",
"urlToImage": "https://images.mktw.net/im-575288/social",
"publishedAt": "2022-07-06T09:00:00Z",
"content": "On a busy day last year, 61-year-old Neil (not his real name) got a call from a man who called himself John and said he was from Apple \r\n AAPL,\r\n +1.89%\r\nTech Support. He claimed to have received a r… [+8457 chars]"
},
{
"source": {
"id": null,
"name": "MarketWatch"
},
"author": "Alisa Wolfson",
"title": "Deal of the Day: ‘We’re definitely seeing TV deals ramp up.’ 8 best TV deals happening now on OLED, LED and more TVs",
"description": "Amazon, Best Buy, Walmart and other retailers are offering deep discounts on TVs ahead of Amazon Prime Day.",
"url": "https://www.marketwatch.com/story/were-definitely-seeing-tv-deals-ramp-up-8-best-tv-deals-happening-now-on-oled-led-and-more-tvs-11657056851",
"urlToImage": "https://images.mktw.net/im-577515/social",
"publishedAt": "2022-07-06T10:35:00Z",
"content": "If youve been wanting to pull the trigger on a new television, you dont need to wait until Amazon Prime Day officially kicks off to score a deal on a new tube. Were definitely seeing TV deals ramp u… [+4257 chars]"
},
{
"source": {
"id": null,
"name": "MarketWatch"
},
"author": "Philip van Doorn",
"title": "Deep Dive: Here’s the best way to play the S&P Dividend Aristocrat stocks",
"description": "These 10 Dividend Aristocrats delivered excellent performance over the past five years; which will make the list for the next five?",
"url": "https://www.marketwatch.com/story/heres-the-best-way-to-play-the-s-p-dividend-aristocrat-stocks-11657106983",
"urlToImage": "https://images.mktw.net/im-577259/social",
"publishedAt": "2022-07-06T11:29:00Z",
"content": "Stocks with attractive dividend yields have received a lot of coverage this year, because many have held up well when compared with the performance of the broad stock market. Dividends arent a guaran… [+10549 chars]"
},
{
"source": {
"id": null,
"name": "Toprankblog.com"
},
"author": "Lane Ellis",
"title": "Cannes Creative B2B Lions: What Award-Winning B2B Marketing Looks Like In 2022",
"description": "What does award-winning B2B marketing look like?\nFor the first time since the prestigious Cannes Lions International Festival of Creativity began in the 1950s, the recently-held 2022 event saw dedicated B2B-specific marketing award categories, offering a new …",
"url": "https://www.toprankblog.com/2022/07/cannes-lions-b2b-marketing-awards-2022/",
"urlToImage": "https://www.toprankblog.com/wp-content/uploads/cannes-what-award-winning-b2b-content-looks-like-imageA600w.jpg",
"publishedAt": "2022-07-06T10:30:32Z",
"content": "What does award-winning B2B marketing look like?\r\nFor the first time since the prestigious Cannes Lions International Festival of Creativity began in the 1950s, the recently-held 2022 event saw dedic… [+5606 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Mike Peterson)",
"title": "M2 MacBook Air preorders begin on Friday, July 8",
"description": "Apple has announced that the M2 MacBook Air will become available for preorder on July 8.Apple M2 MacBook AirWhen Apple unveiled the next-generation MacBook Air, it didn't give an exact release date beyond \"July.\" On Wednesday, however, the company officially…",
"url": "https://appleinsider.com/articles/22/07/06/m2-macbook-air-preorders-begin-on-friday-june-8",
"urlToImage": "https://photos5.appleinsider.com/gallery/49141-95936-M2-MacBook-Air-Affinity-xl.jpg",
"publishedAt": "2022-07-06T12:04:48Z",
"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… [+1260 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (AppleInsider Staff)",
"title": "Daily deals July 6: 35% off SanDisk 1TB microSDXC card, iPhone 11 scratch & dent sale, M1 Mac mini discounted $40, more",
"description": "Wednesday's best deals include $500 off Deebot robot vacuum and mop, 31% off Bowflex PR3000 home gym, a $319 Dell 27-inch 4K monitor, and much more.Best deals July 6AppleInsider checks online stores daily to uncover discounts and offers on hardware and other …",
"url": "https://appleinsider.com/articles/22/07/06/daily-deals-july-6-35-off-sandisk-1tb-microsdxc-card-iphone-11-scratch-dent-sale-m1-mac-mini-discounted-40-more",
"urlToImage": "https://photos5.appleinsider.com/gallery/49328-96370-Deals-xl.jpg",
"publishedAt": "2022-07-06T13:07:09Z",
"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… [+3684 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (William Gallagher)",
"title": "Apple's A16 processor to be exclusive to iPhone 14 Pro, says Kuo",
"description": "Backing up previous rumors, analyst Ming-Chi Kuo says that only the iPhone 14 Pro models will feature the new A16 processor - and that consequently, Apple expects to sell a greater proportion of the Pro models than usual.Analysts including Ming-Chi Kuo himsel…",
"url": "https://appleinsider.com/articles/22/07/06/apples-a16-processor-to-be-exclusive-to-iphone-14-pro-says-kuo",
"urlToImage": "https://photos5.appleinsider.com/gallery/49326-96362-000-lead-iPhone-14-xl.jpg",
"publishedAt": "2022-07-06T09:59:04Z",
"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… [+1711 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (William Gallagher)",
"title": "UK pushing for on-device scanning for child abuse materials",
"description": "Britain's government is proposing legislation that would require WhatsApp, Facebook Messenger, and Apple's Messages to adopt automatic scanning for child sexual abuse material.Also known in the UK as child sexual abuse and exploitation content (CSAE), the pro…",
"url": "https://appleinsider.com/articles/22/07/06/uk-pushing-for-on-device-scanning-for-child-abuse-materials",
"urlToImage": "https://photos5.appleinsider.com/gallery/49327-96369-000-lead-CSAM-xl.jpg",
"publishedAt": "2022-07-06T12:38:27Z",
"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… [+2508 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Christine McKee)",
"title": "Lifetime Microsoft Office for Mac Home & Business 2021 license is back on sale for $39.99",
"description": "StackCommerce has reissued its 88% price drop on a lifetime Microsoft Office for Mac Home & Business 2021 license, marking the return of the lowest price on record.This deal on a lifetime Microsoft Office for Mac Home & Business 2021 license matches the recor…",
"url": "https://appleinsider.com/articles/22/07/06/lifetime-microsoft-office-for-mac-home-business-2021-license-is-back-on-sale-for-3999",
"urlToImage": "https://photos5.appleinsider.com/gallery/49325-96361-microsoft-office-for-mac-88-percent-off-xl.jpg",
"publishedAt": "2022-07-06T04:58:43Z",
"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… [+1794 chars]"
},
{
"source": {
"id": null,
"name": "Elespanol.com"
},
"author": "Manuel Ramírez",
"title": "El Google Pixel mostrará los temporizadores activos en tus dispositivos Nest y altavoces Bluetooth",
"description": "Si sueles usar un temporizador en tu Google Nest o altavoz con Google Assistant para poner un temporizador de 11 minutos y así saber cuándo el arroz está en su punto, el Google Pixel mostrará el tiempo que queda desde un widget.",
"url": "https://www.elespanol.com/elandroidelibre/noticias-y-novedades/20220706/google-pixel-temporizadores-dispositivos-nest-altavoces-bluetooth/685681441_0.html",
"urlToImage": "https://s1.eestatic.com/2016/05/18/elandroidelibre/el_androide_libre_125750187_225609201_600x315.jpg",
"publishedAt": "2022-07-06T08:58:00Z",
"content": "Si el widget At a Glance o de un vistazo, permite ver incluso quién está llamando a la puerta de cada a través de la cámara, pronto mostrará cuánto tiempo le queda a ese temporizador que has puesto p… [+1672 chars]"
},
{
"source": {
"id": null,
"name": "Gizmodo.jp"
},
"author": "巽英俊",
"title": "Apple Siliconの材料コストが高騰。このままiPhoneの価格も上がるのか?",
"description": "Bloombergは、Apple(アップル)のサプライヤーである台湾積体電路製造(TSMC)がコスト増に直面しているため、チップ価格をさらに値上げする可能性が高いと報じています。",
"url": "https://www.gizmodo.jp/2022/07/apple-silicon-cost-up.html",
"urlToImage": "https://assets.media-platform.com/gizmodo/dist/images/2022/07/06/shutterstock_1961948560-1-w960.jpg",
"publishedAt": "2022-07-06T03:30:00Z",
"content": "BloombergAppleTSMC\r\nTSMCAppleIntelQualcommAMDTSMC\r\nCFO22023\r\nBloomberg5TSMC20212010\r\nAppleiPhone64GB2017iPhone X999iPhone 14iPhone 14 MaxiPhone 13A15 BionicApple\r\nSource: MacRumors"
},
{
"source": {
"id": null,
"name": "Journal du geek"
},
"author": "Tristan",
"title": "Apple Watch Series 8 : ce petit changement risque de couter très cher",
"description": "Apple pourrait faire un tout petit changement sur sa prochaine Apple Watch, mais cela risque de rapporter des millions de dollars. \nApple Watch Series 8 : ce petit changement risque de couter très cher",
"url": "https://www.journaldugeek.com/2022/07/06/apple-watch-series-8-ce-petit-changement-risque-de-couter-tres-cher/",
"urlToImage": "https://www.journaldugeek.com/content/uploads/2022/07/apple-watch-series-8.jpg",
"publishedAt": "2022-07-06T10:00:13Z",
"content": "Apple pourrait faire un tout petit changement sur sa prochaine Apple Watch, mais cela risque de rapporter des millions de dollars.Alors que la firme de Cupertino prépare, dans le secret qui la caract… [+2773 chars]"
},
{
"source": {
"id": null,
"name": "Journal du geek"
},
"author": "Tristan",
"title": "Apple travaille sur une nouvelle coque pour AirPods Max",
"description": "Apple vient de déposer un brevet au près de la U.S. Patent and Trademark Office en ce qui concerne son AirPods Max et sa coque. \nApple travaille sur une nouvelle coque pour AirPods Max",
"url": "https://www.journaldugeek.com/2022/07/06/apple-travaille-sur-une-nouvelle-coque-pour-airpods-max/",
"urlToImage": "https://www.journaldugeek.com/content/uploads/2022/01/airpods-max-4.jpg",
"publishedAt": "2022-07-06T12:30:05Z",
"content": "Apple vient de déposer un brevet au près de la U.S. Patent and Trademark Office en ce qui concerne son AirPods Max et sa coque.À la fin de lannée 2020, Apple a surpris son monde en proposant un tout … [+2265 chars]"
},
{
"source": {
"id": null,
"name": "Journal du geek"
},
"author": "Thomas Estimbre",
"title": "Nostalgique de l’iMac Pro ? Apple travaille sur un nouveau modèle",
"description": "Disparu des radars en 2021, l’iMac Pro n’aurait pas dit son dernier mot. Apple travaillerait toujours sur un modèle « Pro » de son iMac avec un écran plus grand et des puces M3 Pro et M3 Max. Il ne devrait toutefois pas être disponible avant 2023.\nNostalgique…",
"url": "https://www.journaldugeek.com/2022/07/06/nostalgique-de-limac-pro-apple-travaille-sur-un-nouveau-modele/",
"urlToImage": "https://www.journaldugeek.com/content/uploads/2022/07/imac-pro.jpg",
"publishedAt": "2022-07-06T11:30:06Z",
"content": "Disparu des radars en 2021, liMac Pro naurait pas dit son dernier mot. Apple travaillerait toujours sur un modèle « Pro » de son iMac avec un écran plus grand et des puces M3 Pro et M3 Max. Il ne dev… [+2237 chars]"
},
{
"source": {
"id": null,
"name": "Journal du geek"
},
"author": "Thomas Estimbre",
"title": "Apple : les AirPods Pro 2 devront se passer de ces deux fonctions",
"description": "Apple devrait renouveler ses écouteurs sans fil à la rentrée. Plusieurs changements sont attendus, mais les AirPods Pro 2 ne devraient pas se doter de nouvelles fonctionnalités de santé.\nApple : les AirPods Pro 2 devront se passer de ces deux fonctions",
"url": "https://www.journaldugeek.com/2022/07/06/apple-les-airpods-pro-2-devront-se-passer-de-ces-deux-fonctions/",
"urlToImage": "https://www.journaldugeek.com/content/uploads/2022/05/apple-airpodspro-mains.jpg",
"publishedAt": "2022-07-06T13:00:50Z",
"content": "Apple devrait renouveler ses écouteurs sans fil à la rentrée. Plusieurs changements sont attendus, mais les AirPods Pro 2 ne devraient pas se doter de nouvelles fonctionnalités de santé.Les AirPods P… [+2463 chars]"
},
{
"source": {
"id": null,
"name": "Journal du geek"
},
"author": "Gregori Pujol",
"title": "Partez en vacances avec les AirPods 2 d’Apple à prix cassé (-21%) !",
"description": "Les AirPods 2 de Apple habituellement commercialisés au prix de 149 euros sont en promotion chez Amazon (-21%) !\nPartez en vacances avec les AirPods 2 d’Apple à prix cassé (-21%) !",
"url": "https://www.journaldugeek.com/bon-plan/partez-en-vacances-avec-les-airpods-2-dapple-a-prix-casse/",
"urlToImage": "https://www.journaldugeek.com/content/uploads/2022/07/airpods2.jpg",
"publishedAt": "2022-07-06T11:15:44Z",
"content": "Les AirPods 2 de Apple habituellement commercialisés au prix de 149 euros sont en promotion chez Amazon (-21%) !Les écouteurs sans fil les plus populaires du moment d’Apple bénéficient aujourd’hui d’… [+3295 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Miguel López",
"title": "Ya disponible la primera actualización de firmware para el Siri Remote. Sí, el Siri Remote",
"description": "Todo dispositivo que integre electrónica puede actualizarse. Todo. Y en Apple se toman eso al pie de la letra, porque sus desarrolladores han lanzado una actualización para el firmware del Siri Remote. O sea, el mando de los Apple TV lanzado con la última rev…",
"url": "https://www.applesfera.com/accesorios/disponible-primera-actualizacion-firmware-para-siri-remote-siri-remote",
"urlToImage": "https://i.blogs.es/b83e91/siri-remote-apple-tv/840_560.jpeg",
"publishedAt": "2022-07-06T11:21:59Z",
"content": "Todo dispositivo que integre electrónica puede actualizarse. Todo. Y en Apple se toman eso al pie de la letra, porque sus desarrolladores han lanzado una actualización para el firmware del Siri Remot… [+964 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Jesús Quesada",
"title": "Los AirPods 3 no habían estado tan baratos desde marzo y justo antes del Prime Day con esta rebaja",
"description": "Los auriculares Bluetooth sin cables de Apple son de los más populares del mercado y los últimos disponibles en su catálogo son los AirPods 3. Tienen una rebaja de casi 30 euros que los deja a su precio más bajo desde marzo en Amazon, justo antes del Prime Da…",
"url": "https://www.applesfera.com/seleccion/airpods-3-no-habian-estado-baratos-marzo-justo-antes-prime-day-esta-rebaja",
"urlToImage": "https://i.blogs.es/bfe1e9/airpods-3/840_560.jpg",
"publishedAt": "2022-07-06T09:02:01Z",
"content": "Los auriculares Bluetooth sin cables de Apple son de los más populares del mercado y los últimos disponibles en su catálogo son los AirPods 3. Tienen una rebaja de casi 30 euros que los deja a su pre… [+1563 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "David Bernal Raspall",
"title": "Así podemos actualizar el firmware de nuestra Studio Display",
"description": "La pantalla Apple Studio Display esconde mucho más de lo que se ve a simple vista. Además de contar con varias especificaciones de hardware de lo más interesantes, cuenta con un firmware que se actualiza regularmente para añadir prestaciones y mejorar el func…",
"url": "https://www.applesfera.com/tutoriales/asi-podemos-actualizar-firmware-nuestra-studio-display",
"urlToImage": "https://i.blogs.es/783086/hero/840_560.jpeg",
"publishedAt": "2022-07-06T07:01:56Z",
"content": "La pantalla Apple Studio Display esconde mucho más de lo que se ve a simple vista. Además de contar con varias especificaciones de hardware de lo más interesantes, cuenta con un firmware que se actua… [+2109 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Jesús Quesada",
"title": "Cinco ofertones de accesorios Belkin para iPhone en las rebajas de verano de Macnificos",
"description": "Las rebajas de verano de Macnificos ofrecen hasta un 80% de descuento en más de mil productos. Algunas de las ofertas más interesantes son de accesorios Belkin para iPhone, así que si necesitas un cargador o batería externa para estas vacaciones, es una buena…",
"url": "https://www.applesfera.com/seleccion/cinco-ofertones-accesorios-belkin-para-iphone-rebajas-verano-macnificos",
"urlToImage": "https://i.blogs.es/0a31c8/accesorios-belkin/840_560.jpg",
"publishedAt": "2022-07-06T05:44:10Z",
"content": "Las rebajas de verano de Macnificosofrecen hasta un 80% de descuento en más de mil productos. Algunas de las ofertas más interesantes son de accesorios Belkin para iPhone, así que si necesitas un car… [+2243 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Miguel López",
"title": "Los iPhone 14 no serán una excepción: Apple reservará sus nuevos chips a la gama ‘Pro’ de sus teléfonos de ahora en adelante",
"description": "El rumor lleva encima de la mesa un tiempo: los iPhone 14 conservarán el chip A15 ya presente en los iPhone 13 mientras que un nuevo chip 'A16' se reservará solamente para los iPhone 14 Pro. Es un movimiento inusual que sólo hemos visto repetido en los iPhone…",
"url": "https://www.applesfera.com/iphone/iphone-14-no-seran-excepcion-apple-reservara-sus-nuevos-chips-a-gama-pro-sus-telefonos-ahora-adelante",
"urlToImage": "https://i.blogs.es/4cb6e0/captura-de-pantalla-2022-07-06-a-las-9.48.53/840_560.jpeg",
"publishedAt": "2022-07-06T08:15:52Z",
"content": "El rumor lleva encima de la mesa un tiempo: los iPhone 14 conservarán el chip A15 ya presente en los iPhone 13 mientras que un nuevo chip 'A16' se reservará solamente para los iPhone 14 Pro. Es un mo… [+1591 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Pedro Aznar",
"title": "Eero Pro 6E, análisis: uno de los mejores sistemas WiFi 6E que hereda lo que debería haber sido el AirPort Extreme",
"description": "Hace algo más de un año os mostramos el eero 6 de Amazon, un sistema de WiFi mesh que permite expandir una única red en malla por toda nuestra casa. El sistema funciona realmente bien teniendo en cuenta además que utiliza uno de los últimos protocolos de comu…",
"url": "https://www.applesfera.com/accesorios/eero-pro-6e-analisis-caracteristicas-precio-especificaciones",
"urlToImage": "https://i.blogs.es/e51780/eero-pro-6e-analisis-applesfera-006/840_560.jpeg",
"publishedAt": "2022-07-06T10:14:47Z",
"content": "Hace algo más de un año os mostramos el eero 6 de Amazon, un sistema de WiFi mesh que permite expandir una única red en malla por toda nuestra casa. El sistema funciona realmente bien teniendo en cue… [+9061 chars]"
},
{
"source": {
"id": null,
"name": "Presse-citron"
},
"author": "Hadrien Augusto",
"title": "MacBook Air M2 : Apple donne la date des précommandes et livraisons",
"description": "Après la mise en vente du nouveau MacBook Pro M2 de 13 pouces, Apple va lancer les précommandes du MacBook Air M2.",
"url": "https://www.presse-citron.net/?p=506236",
"urlToImage": "https://www.presse-citron.net/app/uploads/2022/06/Apple-MacBook-Air-2022-charge.jpg",
"publishedAt": "2022-07-06T13:03:47Z",
"content": "Star de la WWDC 2022, le nouveau MacBook Air M2 vient d’obtenir une date de commercialisation. Apple a publié sur son site la date d’ouverture des précommandes et des premières livraisons de son ordi… [+1791 chars]"
},
{
"source": {
"id": null,
"name": "XDA Developers"
},
"author": "Mahmoud Itani",
"title": "Apple might include older chips on non-Pro iPhones from now on to push higher-end sales",
"description": "Apple is a business — not a non-profit organization. This means its ultimate goal is maximizing the revenue it makes. Just like other corporations, the Cupertino tech giant finds creative ways to achieve this aim. A potentially upcoming strategy, though, migh…",
"url": "https://www.xda-developers.com/older-chips-non-pro-iphones/",
"urlToImage": "https://www.xda-developers.com/files/2022/01/Apple-Logo-next-to-money-face-emoji-2.jpg",
"publishedAt": "2022-07-06T11:17:22Z",
"content": "Apple is a business — not a non-profit organization. This means its ultimate goal is maximizing the revenue it makes. Just like other corporations, the Cupertino tech giant finds creative ways to ach… [+2014 chars]"
},
{
"source": {
"id": null,
"name": "XDA Developers"
},
"author": "Mahmoud Itani",
"title": "You can pre-order the Apple MacBook Air M2 on Friday",
"description": "Apple revealed the all-new, 13.6-inch MacBook Air (2022) during the main keynote of WWDC22. This welcome addition to the Mac line packs the efficient M2 chip in an overhauled chassis. Available in four stunning finishes to choose from, this modern body reintr…",
"url": "https://www.xda-developers.com/order-macbook-air-m2-friday/",
"urlToImage": "https://www.xda-developers.com/files/2022/06/MacBook-Air-2022-price.jpg",
"publishedAt": "2022-07-06T12:46:00Z",
"content": "Apple revealed the all-new, 13.6-inch MacBook Air (2022) during the main keynote of WWDC22. This welcome addition to the Mac line packs the efficient M2 chip in an overhauled chassis. Available in fo… [+1777 chars]"
},
{
"source": {
"id": null,
"name": "XDA Developers"
},
"author": "Ben Sin",
"title": "Poco F4 Review: Xiaomi’s $400 phone is better than everyone else’s $500 phone",
"description": "Xiaomi’s flagship phones are really good, and devices like the Xiaomi 12S Ultra can easily compete with anything made by Apple or Samsung. Xiaomi’s budget phones are also among the most affordable and reliable Android devices around. But it is arguably in the…",
"url": "https://www.xda-developers.com/poco-f4-review/",
"urlToImage": "https://www.xda-developers.com/files/2022/07/DSC05311.jpg",
"publishedAt": "2022-07-06T10:34:59Z",
"content": "Xiaomis flagship phones are really good, and devices like the Xiaomi 12S Ultra can easily compete with anything made by Apple or Samsung. Xiaomis budget phones are also among the most affordable and … [+12435 chars]"
},
{
"source": {
"id": null,
"name": "Xataka Android"
},
"author": "Iván Linares",
"title": "Ofertón en música con la máxima calidad: consigue tres meses de Tidal HiFi Plus por sólo tres euros",
"description": "¿Buscas un servicio de música premium que te ofrezca todas las canciones que quieras, sin publicidad y con una calidad de audio sobresaliente? Pues con Tidal tienes tres meses en una oferta absolutamente irresistible: a sólo tres euros. Vale mucho la pena si …",
"url": "https://www.xatakandroid.com/aplicaciones-android/oferton-musica-maxima-calidad-consigue-tres-meses-tidal-hifi-plus-solo-tres-euros",
"urlToImage": "https://i.blogs.es/dd3066/tidal-oferta-2/840_560.jpg",
"publishedAt": "2022-07-06T13:02:00Z",
"content": "¿Buscas un servicio de música premium que te ofrezca todas las canciones que quieras, sin publicidad y con una calidad de audio sobresaliente? Pues con Tidal tienes tres meses en una oferta absolutam… [+2302 chars]"
},
{
"source": {
"id": null,
"name": "HYPEBEAST"
},
"author": "info@hypebeast.com (HYPEBEAST), HYPEBEAST",
"title": "Michael Jackson Songs Removed From Streaming For \"Distracting the Fan Community\"",
"description": "Three songs from Michael Jackson’s posthumous record Michael have been removed from all streaming services because they were \"distracting the fan community.\"According to reports, the three songs in question — “Keep Your Head Up,” “Monster” and “Breaking News”…",
"url": "https://hypebeast.com/2022/7/three-michael-jackson-songs-removed-streaming-services-rumors-fake-vocals",
"urlToImage": "https://image-cdn.hypb.st/https%3A%2F%2Fhypebeast.com%2Fimage%2F2022%2F07%2Fthree-michael-jackson-songs-removed-streaming-services-rumors-fake-vocals-tw.jpg?w=960&cbr=1&q=90&fit=max",
"publishedAt": "2022-07-06T10:22:33Z",
"content": "Three songs from Michael Jacksons posthumous record Michael have been removed from all streaming services because they were “distracting the fan community.”\r\nAccording to reports, the three songs in … [+1351 chars]"
},
{
"source": {
"id": null,
"name": "HYPEBEAST"
},
"author": "info@hypebeast.com (HYPEBEAST), HYPEBEAST",
"title": "Marc Newson Takes Over Gagosian Shop in London",
"description": "Gagosian gallery's London store has been filled with pieces designed by designer Marc Newson, who is taking over the space for the duration of the summer. Inside the Burlington Arcade shop, items on sale will range from large-scale furniture to small accessor…",
"url": "https://hypebeast.com/2022/7/marc-newson-gagosian-shop-takeover",
"urlToImage": "https://image-cdn.hypb.st/https%3A%2F%2Fhypebeast.com%2Fimage%2F2022%2F07%2Fmarc-newson-gagosian-shop-takeover-tw.jpg?w=960&cbr=1&q=90&fit=max",
"publishedAt": "2022-07-06T11:12:24Z",
"content": "Gagosian gallery’s London store has been filled with pieces designed by designer Marc Newson, who is taking over the space for the duration of the summer. Inside the Burlington Arcade shop, items on … [+1515 chars]"
},
{
"source": {
"id": null,
"name": "Android Authority"
},
"author": "Hadlee Simons",
"title": "The Daily Authority: ROG Phone 6 is finally here",
"description": "The Asus ROG Phone 6 has finally launched and we have some thoughts after publishing a review. Read on for this and much more.",
"url": "https://www.androidauthority.com/daily-authority-july-6-2022-3183620/",
"urlToImage": "https://www.androidauthority.com/wp-content/uploads/2022/06/Asus-Rog-Phone-6-Pro-in-box.jpg",
"publishedAt": "2022-07-06T08:19:32Z",
"content": "Hey there, Hadlee here once again! I only just discovered that Coheed and Cambria released a new album a couple of weeks ago. So I know what Ill be listening to this week.\r\nAsus ROG Phone 6: More tha… [+5053 chars]"
},
{
"source": {
"id": null,
"name": "Presse-citron"
},
"author": "Setra",
"title": "Comment l’Europe veut encore forcer Apple à changer son iPhone",
"description": "Le Parlement Européen vient d’adopter le DSA et le DMA. Les nouvelles règles, une fois en vigueur, devraient mettre fin au monopole de l’App Store sur l’iPhone.",
"url": "https://www.presse-citron.net/comment-leurope-veut-encore-forcer-apple-a-changer-son-iphone/",
"urlToImage": "https://www.presse-citron.net/app/uploads/2022/03/test-iphone-se-2022-ecran.jpg",
"publishedAt": "2022-07-06T08:30:56Z",
"content": "Apple nest pas au bout de ses peines. Sur le plan matériel, la firme sera obligée de remplacer son port propriétaire Lightning par lUSB-C, une fois que les règles européennes imposant cette technolog… [+3986 chars]"
},
{
"source": {
"id": null,
"name": "Presse-citron"
},
"author": "Hadrien Augusto",
"title": "Payer et faire payer : le prochain défi de la néobanque Revolut",
"description": "La néobanque va lancer son terminal de paiement.",
"url": "https://www.presse-citron.net/payer-faire-payer-prochain-defi-neobanque-revolut/",
"urlToImage": "https://www.presse-citron.net/app/uploads/2020/03/revolut-carte.jpg",
"publishedAt": "2022-07-06T10:00:49Z",
"content": "Chez les commerçants, bientôt, Revolut proposera du matériel alternatif aux TPE Worldline, Square, SumUp et iZettle (PayPal). La néobanque britannique sest donné le feu vert pour le lancement de son … [+2807 chars]"
},
{
"source": {
"id": null,
"name": "The A.V. Club"
},
"author": "Jack Smart",
"title": "Juliette Binoche gets candid about her challenging new role, her 'memory drawer' of characters, and Coco Chanel",
"description": "If you’re a filmmaker, you can’t ask for a better on-camera muse than Juliette Binoche. So it makes sense that Claire Denis, as accomplished and revered a French director as Binoche is an actor, has turned her lens on the Oscar-winning English Patient star in…",
"url": "https://www.avclub.com/juliette-binoche-film-interview-both-sides-of-the-blade-1849145245",
"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/3d93c509b5e61ec5e29eeecf68fe6e83.png",
"publishedAt": "2022-07-06T12:00:00Z",
"content": "If youre a filmmaker, you cant ask for a better on-camera muse than Juliette Binoche. So it makes sense that Claire Denis, as accomplished and revered a French director as Binoche is an actor, has tu… [+8096 chars]"
},
{
"source": {
"id": null,
"name": "Espinof.com"
},
"author": "Albertini",
"title": "Estrenos (6 de julio): 58 series, películas y documentales en Netflix, HBO Max, Disney+, Amazon, Movistar Plus+, Filmin, Apple TV+, Atresplayer y Starzplay",
"description": "Hoy Lituania celebra la coronación del rey Mindaugas y en lo que voy preparando maletas en este marcado día, es un buen momento para repasar las novedades de las plataformas de streaming para los próximos días.\n<!-- BREAK 1 -->\nEn esta ocasión, se nota que es…",
"url": "https://www.espinof.com/estrenos/estrenos-6-julio-series-peliculas-documentales-netflix-hbo-max-disney-plus-amazon-movistar-plus-filmin-apple-tv-atresplayer-starzplay",
"urlToImage": "https://i.blogs.es/0e1c5b/noche-larga-estrenos/840_560.jpeg",
"publishedAt": "2022-07-06T07:01:56Z",
"content": "Hoy Lituania celebra la coronación del rey Mindaugas y en lo que voy preparando maletas en este marcado día, es un buen momento para repasar las novedades de las plataformas de streaming para los pró… [+4433 chars]"
},
{
"source": {
"id": null,
"name": "BGR"
},
"author": "Chris Smith",
"title": "Kuo: Cheaper iPhones will no longer feature the latest Apple chips",
"description": "The iPhone 14 will be the first series to introduce Apple’s new policy for non-Pro and Pro devices. Almost every rumor out there claims the iPhone 14 Pro and iPhone 14 Pro Max will feature new designs and the best possible hardware, including the latest A16 B…",
"url": "https://bgr.com/tech/kuo-cheaper-iphones-will-no-longer-feature-the-latest-apple-chips/",
"urlToImage": "https://bgr.com/wp-content/uploads/2022/05/iphone-14-pro-max-hands-on-dummy-1.jpg?quality=82&strip=all",
"publishedAt": "2022-07-06T09:45:01Z",
"content": "The iPhone 14 will be the first series to introduce Apple’s new policy for non-Pro and Pro devices. Almost every rumor out there claims the iPhone 14 Pro and iPhone 14 Pro Max will feature new design… [+3870 chars]"
},
{
"source": {
"id": null,
"name": "iMore"
},
"author": "Stephen Warwick",
"title": "iPhone 14 gets major production boost",
"description": "BO had previously got into trouble for changing its manufacturing process.\n\nWhat you need to know\n\n\nApple has just brought on another iPhone supplier.\nBOE will be allowed to produce OLED panels for iPhone 14. \nThe company had seen its orders dry up after chan…",
"url": "https://www.imore.com/iphone-14-gets-major-production-boost",
"urlToImage": "https://www.imore.com/sites/imore.com/files/styles/large/public/field/image/2022/07/iphone_14_pro_-_graphite_-_face_up.jpg",
"publishedAt": "2022-07-06T13:18:18Z",
"content": "Apple has approved OLED panels from display maker BOE which will see the company make more than 5 million iPhone 14 panels ahead of the device's release in September.\r\nIT Home reports:\r\nIT home July … [+1514 chars]"
},
{
"source": {
"id": null,
"name": "iMore"
},
"author": "Stephen Warwick",
"title": "Here's more proof Apple is focusing on the iPhone 14 Pro this year",
"description": "\"The latest A16 processor will be exclusive to two iPhone 14 Pro/high-end models, significantly boosting the shipment proportion of new iPhone high-end models in 2H22 to 55-60% (vs. 40–50% in the past).\"\n\nWhat you need to know\n\n\nMultiple reports and rumors in…",
"url": "https://www.imore.com/heres-more-proof-apple-focusing-iphone-14-pro-year",
"urlToImage": "https://www.imore.com/sites/imore.com/files/styles/large/public/field/image/2022/07/iphone_14_pro_-_silver_-_true_depth.jpg",
"publishedAt": "2022-07-06T09:45:27Z",
"content": "A new report from Ming-Chi Kuo says that Apple's decision to focus on iPhone 14 Pro upgrades this year will result in a vastly higher shipment proportion compared to previous years.\r\nIn his latest no… [+1894 chars]"
},
{
"source": {
"id": null,
"name": "CNET"
},
"author": "Sareena Dayaram Lisa Eadicicco (CNET News) 翻訳校正: 編集部",
"title": "次期「Apple Watch」、発熱を検知する機能を搭載か",
"description": "アップルは次期スマートウォッチ「Apple Watch Series 8」を、秋に「iPhone 14」と「AirPods Pro 2」とともに発表すると予想されている。憶測によると、これに体温センサーが搭載される可能性がある。",
"url": "https://japan.cnet.com/article/35190015/",
"urlToImage": "https://japan.cnet.com/storage/2022/07/06/667683e31a997d6bdcafbafd4bc36880/t/640/480/d/apple-watch-series-7-cnet-review-2021-033_1280x960.jpg",
"publishedAt": "2022-07-06T00:26:00Z",
"content": "AppleApple Watch Series 8iPhone 14AirPods Pro 2\r\n20219iPhone 13Apple Watch Series 7Series 8BloombergSeries 8Series 7\r\nSeries 8BloombergSeries 8\r\nRed Ventures"
},
{
"source": {
"id": null,
"name": "Les Numériques"
},
"author": "Kevin Hiot",
"title": "Actualité : Apple : vers une segmentation plus marquée entre iPhone Pro et classiques",
"description": "Selon l'analyste Ming Chi Kuo, les versions non Pro de l'iPhone 14 à venir n'adopteraient pas la dernière puce en date d'Apple. Ils conserveraient donc un SoC Apple A15. Une pratique que l'entreprise américaine pourrait reconduire avec ses futurs modèles.",
"url": "https://www.lesnumeriques.com/telephone-portable/apple-vers-une-segmentation-plus-marquee-entre-iphone-pro-et-classiques-n187159.html",
"urlToImage": "https://cdn.lesnumeriques.com/optim/news/18/187159/12ecc348-apple-vers-une-segmentation-entre-les-modeles-pro-et-non-pro-des-futurs-iphone__1200_630__0-93-2000-1143.jpeg",
"publishedAt": "2022-07-06T09:29:00Z",
"content": "Selon l'analyste Ming Chi Kuo, les versions non Pro de l'iPhone 14 à venir n'adopteraient pas la dernière puce en date d'Apple. Ils conserveraient donc un SoC Apple A15. Une pratique que l'entreprise… [+1535 chars]"
},
{
"source": {
"id": null,
"name": "Les Numériques"
},
"author": "Guillaume Henri",
"title": "Actualité : L’arrivée du MacBook Air M2 d'Apple inquièterait les fabricants de PC",
"description": "Alors que la sortie du nouveau MacBook Air M2 est imminente, les fabricants de PC s’inquiètent de voir leurs ventes impactées. Les nouveautés apportées par Apple pourraient convaincre les indécis, malgré un ticket d'entrée à 1499 €.",
"url": "https://www.lesnumeriques.com/ordinateur-portable/l-arrivee-du-macbook-air-m2-d-apple-inquieterait-les-fabricants-de-pc-n187123.html",
"urlToImage": "https://cdn.lesnumeriques.com/optim/news/18/187123/6c29a9d3-l-arrivee-du-macbook-air-m2-inquieterait-les-fabricants-de-pc__1200_630__overflow.jpeg",
"publishedAt": "2022-07-06T08:59:00Z",
"content": "Alors que la sortie du nouveau MacBook Air M2 est imminente, les fabricants de PC sinquiètent de voir leurs ventes impactées. Les nouveautés apportées par Apple pourraient convaincre les indécis, mal… [+1472 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Christian Ruiz",
"title": "Los AirPods Max por debajo de los 500: ahorra 130 euros en los auriculares inalámbricos más premium de Apple",
"description": "Los AirPods son los auriculares que se llevan casi todos los focos en el mercado. No obstante, Apple también tiene una opción para aquellos usuarios que quieran un dispositivo con diadema para mejorar la experiencia auditiva. Para ello, están los AirPods Max,…",
"url": "https://www.xatakamovil.com/guias-de-compra/airpods-max-debajo-500-ahorra-130-euros-auriculares-inalambricos-premium-apple",
"urlToImage": "https://i.blogs.es/eb3621/apertura-airpods-max/840_560.jpg",
"publishedAt": "2022-07-06T11:40:24Z",
"content": "Los AirPods son los auriculares que se llevan casi todos los focos en el mercado. No obstante, Apple también tiene una opción para aquellos usuarios que quieran un dispositivo con diadema para mejora… [+1299 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Álvaro García M.",
"title": "Mal presagio para los iPhone 14 \"baratos\": vaticinan un cambio importante en su chip respecto a los 'Pro'",
"description": "Estamos acercándonos peligrosamente a las fechas clave del iPhone 14. Según varios analistas, los nuevos buques insignia de Apple estarían entrando ya en producción y, fruto de ello, se empiezan a confirmar algunos de los rumores sobre su procesador. Y no son…",
"url": "https://www.xatakamovil.com/apple/mal-presagio-para-iphone-14-baratos-vaticinan-cambio-importante-su-chip-respecto-a-pro",
"urlToImage": "https://i.blogs.es/35e4c0/iphone-a15/840_560.jpg",
"publishedAt": "2022-07-06T10:31:59Z",
"content": "Estamos acercándonos peligrosamente a las fechas clave del iPhone 14. Según varios analistas, los nuevos buques insignia de Apple estarían entrando ya en producción y, fruto de ello, se empiezan a co… [+3382 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Álvaro García M.",
"title": "Instalar aplicaciones en el iPhone fuera de la App Store está más cerca de ser una realidad con la DMA",
"description": "Son varios los frentes que tiene abiertos Apple en su futuro más próximo en consecuencia a las normativas europeas. Y es que la compañía de Cupertino verá alterados muchos de sus planes. Tanto que podrían verse obligados incluso a romper con algún que otro do…",
"url": "https://www.xatakamovil.com/apple/instalar-aplicaciones-iphone-fuera-app-store-esta-cerca-ser-realidad-dma",
"urlToImage": "https://i.blogs.es/f804c8/mockuuups-iphone-13-mockup-in-a-users-palm/840_560.jpeg",
"publishedAt": "2022-07-06T08:02:00Z",
"content": "Son varios los frentes que tiene abiertos Apple en su futuro más próximo en consecuencia a las normativas europeas. Y es que la compañía de Cupertino verá alterados muchos de sus planes. Tanto que po… [+3801 chars]"
},
{
"source": {
"id": null,
"name": "Techmeme.com"
},
"author": null,
"title": "DOJ hires Microsoft's former chief economist Susan Athey as its top antitrust economist; sources say Athey will likely be recused from Apple and Google cases (Leah Nylen/Bloomberg)",
"description": "Leah Nylen / Bloomberg:\nDOJ hires Microsoft's former chief economist Susan Athey as its top antitrust economist; sources say Athey will likely be recused from Apple and Google cases — Susan Athey, a Stanford University professor and former chief economist a…",
"url": "https://www.techmeme.com/220706/p3",
"urlToImage": "https://assets.bwbx.io/images/users/iqjWHBFdfxIU/id_zpXmCdJjo/v0/1200x804.jpg",
"publishedAt": "2022-07-06T09:05:04Z",
"content": "The New Consumer— by Dan Frommer\r\nA publication about how and why people spend their time and money, focusing on the most interesting and innovative companies, people, products, and trends."
},
{
"source": {
"id": null,
"name": "Playpcesor.com"
},
"author": "Esor Huang",
"title": "EP 7 如何減少自我批評?三個小步驟與工作人生案例",
"description": "我和趙胤丞老師決定在一起合作的 Podcast 節目「 高效人生商學院 」中討論更多時間管理與生產力中隱而不顯的細節,這些小細節常常成為至關重要的真實問題,然而這些小地方卻也是大多數時間管理方法論中相對不會提及的部分。他們可能是要實踐某種方法論過程中的小小操作竅門,也可能是理解...",
"url": "https://www.playpcesor.com/2022/07/ep-7.html",
"urlToImage": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWNRI-0k3UPnZOuE49Xf4HpbJCDj-Zk-QWCtyuduieZ62xDc0ehlwmRgVClD5ZUCVk6joV6ihmhw5212y2Ok8ZWe2eKJiCp1yEFkcp6gPS5AeR30-IWG59HDSaGV4sTybyCGFY6mVJDcISh_Bfoq1-2ImZbTrBpy6ofnxvnbDYeKKXKykqpF8/w1200-h630-p-k-no-nu/%E5%A6%82%E4%BD%95%E6%B8%9B%E5%B0%91%E8%87%AA%E6%88%91%E6%89%B9%E8%A9%95%EF%BC%9F%E4%B8%89%E5%80%8B%E5%B0%8F%E6%AD%A5%E9%A9%9F%E8%88%87%E5%B7%A5%E4%BD%9C%E4%BA%BA%E7%94%9F%E6%A1%88%E4%BE%8B.png",
"publishedAt": "2022-07-06T10:05:00Z",
"content": "我和趙胤丞老師決定在一起合作的 Podcast 節目「高效人生商學院」中討論更多時間管理與生產力中隱而不顯的細節,這些小細節常常成為至關重要的真實問題,然而這些小地方卻也是大多數時間管理方法論中相對不會提及的部分。他們可能是要實踐某種方法論過程中的小小操作竅門,也可能是理解觀念後必須再跨過去的一些實踐經驗談。他們會在我們的執行過程中發生,有些朋友可以處理得當,但也會有許多朋友就在這裡卡關,而導致… [+4656 chars]"
},
{
"source": {
"id": null,
"name": "Caschys Blog"
},
"author": "caschy",
"title": "Vorbestellung des MacBook Air mit M2 ab 8. Juli möglich, ab 1.499 Euro geht’s los",
"description": "Es dürfte für viele spannender als das neue MacBook Pro sein: das MacBook Air mit M2. Zu diesem gab es bisher keinen Termin, der steht nun aber. Ab Freitag, dem 8. Juli, können interessierte Nutzer das Gerät vorbestellen. Mit Glück...Zum Beitrag: Vorbestellun…",
"url": "https://stadt-bremerhaven.de/vorbestellung-des-macbook-air-mit-m2-ab-8-juli-moeglich-ab-1-499-euro-gehts-los/",
"urlToImage": "https://stadt-bremerhaven.de/wp-content/uploads/2022/07/Bildschirmfoto-2022-07-06-um-14.11.20_.jpg",
"publishedAt": "2022-07-06T12:14:58Z",
"content": "Es dürfte für viele spannender als das neue MacBook Pro sein: das MacBook Air mit M2. Zu diesem gab es bisher keinen Termin, der steht nun aber. Ab Freitag, dem 8. Juli, können interessierte Nutzer d… [+1456 chars]"
},
{
"source": {
"id": null,
"name": "Frandroid"
},
"author": "Titouan Gourlin",
"title": "À partir de l’iPhone 14, Apple devrait vous inciter fortement à choisir le modèle Pro",
"description": "Selon l'analyste Ming-Chi Kuo, la série des iPhone 14 inaugurerait une nouvelle pratique pour Apple, qui consisterait à équiper ses modèles non Pro de la puce de l'an dernier et ses modèles Pro de la nouvelle puce.Depuis quelques mois, se murmure l’idée que l…",
"url": "https://www.frandroid.com/marques/apple/1392765_a-partir-de-liphone-14-apple-va-vous-inciter-fortement-a-choisir-le-modele-pro",
"urlToImage": "https://images.frandroid.com/wp-content/uploads/2022/03/iphone-14-pro-trailer-apple-1-6-screenshot.jpg",
"publishedAt": "2022-07-06T09:03:58Z",
"content": "Selon l'analyste Ming-Chi Kuo, la série des iPhone 14 inaugurerait une nouvelle pratique pour Apple, qui consisterait à équiper ses modèles non Pro de la puce de l'an dernier et ses modèles Pro de la… [+2649 chars]"
},
{
"source": {
"id": null,
"name": "Frandroid"
},
"author": "Nathan Le Gohlisse",
"title": "Le nouveau MacBook Air bientôt trop populaire ? Les autres marques s’inquiètent",
"description": "Attendu plus tard en juillet, le nouveau MacBook Air M2 inquiète, avant même son lancement, les fabricants de PC portables sous Windows. Ces derniers craignent un best-seller qui impacterait leurs ventes... sur un marché qui subit déjà une décrue post-crise s…",
"url": "https://www.frandroid.com/marques/apple/1392801_le-nouveau-macbook-air-bientot-trop-populaire -les-autres-marques-sinquietent",
"urlToImage": "https://images.frandroid.com/wp-content/uploads/2022/06/macbook-air-rangee.jpg",
"publishedAt": "2022-07-06T09:51:18Z",
"content": "Attendu plus tard en juillet, le nouveau MacBook Air M2 inquiète, avant même son lancement, les fabricants de PC portables sous Windows. Ces derniers craignent un best-seller qui impacterait leurs ve… [+2699 chars]"
},
{
"source": {
"id": null,
"name": "Les Numériques"
},
"author": "Corentin Bechade",
"title": "Actualité : L'Union européenne met son coup de tampon (quasi) final à l'adoption du DMA et du DSA",
"description": "L'Europe vient de faire un pas important dans sa politique de régulation du Net. L'adoption du DSA et du DMA va donner du fil à retordre aux grandes plateformes du Web qui auront désormais des obligations bien plus contraignantes.",