-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleOutput.json
1306 lines (1306 loc) · 95.1 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": 1229,
"articles": [
{
"source": {
"id": "engadget",
"name": "Engadget"
},
"author": "Mat Smith",
"title": "iOS 17 preview: FaceTime, everywhere",
"description": "Apple just launched its iOS 17 public beta, meaning you can test out the latest iPhone software if you’re willing to live with a bug or two. I’ve been using iPhone 14 Pro with the developer beta for the last few weeks and there are plenty of features and upgr…",
"url": "https://www.engadget.com/ios-17-preview-public-beta-facetime-standby-iphone-120025938.html",
"urlToImage": "https://s.yimg.com/uu/api/res/1.2/tlPWEEOT_42ibdD8DLIZPw--~B/Zmk9ZmlsbDtoPTYzMDtweW9mZj0wO3c9MTIwMDthcHBpZD15dGFjaHlvbg--/https://media-mbst-pub-ue1.s3.amazonaws.com/creatr-uploaded-images/2023-07/21b50291-215d-11ee-9dd3-93a2f9fccab6.cf.jpg",
"publishedAt": "2023-07-13T12:00:25Z",
"content": "Apple just launched its iOS 17 public beta, meaning you can test out the latest iPhone software if youre willing to live with a bug or two. Ive been using iPhone 14 Pro with the developer beta for th… [+10371 chars]"
},
{
"source": {
"id": "wired",
"name": "Wired"
},
"author": "Scott Gilbertson, Gear Team",
"title": "95 Best Prime Day Deals Still Going Strong (2023): Phones, Laptops, Espresso Machines",
"description": "Amazon's big event is over, but a few of our favorite things are still on sale, like robot vacuums, laptops, Pixel phones, and Apple watches.",
"url": "https://www.wired.com/story/best-amazon-prime-day-leftover-deals-2023/",
"urlToImage": "https://media.wired.com/photos/618c00da12143eb34d938e26/191:100/w_1280,c_limit/Gear-Beats-Fit-Pro-top.jpg",
"publishedAt": "2023-07-13T13:15:08Z",
"content": "After a full 48 hours, Amazon Prime Day 2023 is officially over. Whew, we made it. We hope you were able to find useful discounts among the Kindles, Echo Dots, iPads, LifeStraws, and other great deal… [+37732 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Tim Hardwick",
"title": "Apple Launches Tap to Pay on iPhone in the UK",
"description": "Apple has announced the launch of Tap to Pay on iPhone in the United Kingdom, allowing independent sellers, small merchants, and large retailers in the country to use iPhones as a payment terminal.\n\n\n\n\n\nIntroduced in February 2022, the feature allows compat…",
"url": "https://www.macrumors.com/2023/07/13/apple-launches-tap-to-pay-on-iphone-uk/",
"urlToImage": "https://images.macrumors.com/t/Q4-3_f5yvI93G9ijxeBwFHbOgLo=/1960x/article-new/2023/07/Apple-Tap-to-Pay-on-iPhone-avail-UK-transaction.jpg",
"publishedAt": "2023-07-13T08:05:29Z",
"content": "Apple has announced the launch of Tap to Pay on iPhone in the United Kingdom, allowing independent sellers, small merchants, and large retailers in the country to use iPhones as a payment terminal.\r\n… [+2027 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Tim Hardwick",
"title": "iOS 17 and iPadOS 17 Public Betas Add Support for Bilingual Siri Queries Mixing English and Hindi",
"description": "Apple yesterday released its first set of public betas for iOS 17, iPadOS 17, and macOS Sonoma, and these versions add new features for Indian users across platforms, including support for bilingual queries to Siri. \n\n\n\n\n\nAccording to TechCrunch, users will b…",
"url": "https://www.macrumors.com/2023/07/13/ios-17-beta-bilingual-siri-queries-english-hindi/",
"urlToImage": "https://images.macrumors.com/t/wmL4cZX0bd33bXDnYvDlzRxY6yU=/2500x/article-new/2023/07/iOS-17-Public-Beta-Thumb-3.jpg",
"publishedAt": "2023-07-13T08:50:44Z",
"content": "Apple yesterday released its first set of public betas for iOS 17, iPadOS 17, and macOS Sonoma, and these versions add new features for Indian users across platforms, including support for bilingual … [+1288 chars]"
},
{
"source": {
"id": "business-insider",
"name": "Business Insider"
},
"author": "Sophia Carlisle",
"title": "Prime Day isn't done yet: The best deals still live",
"description": "Although Prime Day has officially closed, there are still a few great deals that haven't ended. Here are the best deals you can still snag.",
"url": "https://www.businessinsider.com/guides/deals/prime-day-deals-still-live-2023-7-13",
"urlToImage": "https://i.insider.com/64affd57c22d1a0019454244?width=1200&format=jpeg",
"publishedAt": "2023-07-13T13:40:35Z",
"content": "When you buy through our links, Insider may earn an affiliate commission. Learn more.\r\nMost of the deals from Amazon Prime Day are gone, but there are still a few great discounts hanging around if yo… [+1281 chars]"
},
{
"source": {
"id": "business-insider",
"name": "Business Insider"
},
"author": "Will Fischer,Sarah Saril",
"title": "LIVE: The 41 best last-minute Prime Day deals to scoop up before midnight",
"description": "Prime Day is almost over, but we're rounding up the best deals until the very end. Now is your last chance to save big on top products.",
"url": "https://www.businessinsider.com/guides/deals/live-best-last-minute-prime-day-deals-of-day-2-wednesday-2023-7-12",
"urlToImage": "https://i.insider.com/64a809dd6d7e02001af86a21?width=1200&format=jpeg",
"publishedAt": "2023-07-13T02:29:29Z",
"content": "Snag these deals before Prime Day ends.Amazon; Chelsea Feng/Alyssa Powell/Insider\r\nPrime Day 2023 ends at midnight, so we're rounding up the best last-minute deals you can still find available. Our e… [+17505 chars]"
},
{
"source": {
"id": null,
"name": "Boing Boing"
},
"author": "Thom Dunn",
"title": "Report finds Connecticut state troopers faked thousands of traffic tickets",
"description": "Last summer, a small group of Connecticut state troopers were caught running a racket, involving fake traffic tickets, for personal gain. This sparked some curiosity about what other sorts of illegal activity might be going on with state troopers and the tick…",
"url": "https://boingboing.net/2023/07/13/report-finds-connecticut-state-troopers-faked-thousands-of-traffic-tickets.html",
"urlToImage": "https://i0.wp.com/boingboing.net/wp-content/uploads/2023/07/New_Jersey_State_Police_Traffic_Stop.jpg?fit=1200%2C836&ssl=1",
"publishedAt": "2023-07-13T13:01:31Z",
"content": "Last summer, a small group of Connecticut state troopers were caught running a racket, involving fake traffic tickets, for personal gain. This sparked some curiosity about what other sorts of illegal… [+2187 chars]"
},
{
"source": {
"id": null,
"name": "Hipertextual"
},
"author": "Rubén Chicharro",
"title": "Taylor Swift: 10 trucos para comprar antes que nadie las entradas del concierto",
"description": "Hoy es el día en el que Ticketmaster pondrá a la venta las entradas para el concierto que Taylor Swift dará el próximo 30 de mayo en Madrid con motivo del The Eras Tour, su quinta gira internacional después de años sin pisar un escenario. Aquellos afortunados…",
"url": "http://hipertextual.com/2023/07/taylor-swift-trucos-para-comprar-entradas-antes-que-nadie",
"urlToImage": "https://imgs.hipertextual.com/wp-content/uploads/2023/06/taylor-swift-008-scaled.jpg",
"publishedAt": "2023-07-13T09:22:19Z",
"content": "Hoy es el día en el que Ticketmaster pondrá a la venta las entradas para el concierto que Taylor Swift dará el próximo 30 de mayo en Madrid con motivo del The Eras Tour, su quinta gira internacional … [+4500 chars]"
},
{
"source": {
"id": null,
"name": "Hackaday"
},
"author": "Bryan Cockfield",
"title": "Recreating The Golden Era of Cable TV",
"description": "Fewer and fewer people have cable TV subscriptions these days, due to a combination of poor business practices by cable companies and the availability of alternatives to cable such as various strea…",
"url": "https://hackaday.com/2023/07/13/recreating-the-golden-era-of-cable-tv/",
"urlToImage": "https://hackaday.com/wp-content/uploads/2023/07/tv-network-main.png",
"publishedAt": "2023-07-13T08:00:31Z",
"content": "Fewer and fewer people have cable TV subscriptions these days, due to a combination of poor business practices by cable companies and the availability of alternatives to cable such as various streami… [+1976 chars]"
},
{
"source": {
"id": null,
"name": "HuffPost"
},
"author": "Lydia O'Connor",
"title": "Screen Actors Guild Members Poised To Go On Strike After Negotiations Fail",
"description": "A negotiating committee for SAG members recommended that their national board call a strike as talks failed to yield a deal.",
"url": "https://www.huffpost.com/entry/screen-actors-guild-strike_n_649df1d6e4b030efa11f573f",
"urlToImage": "https://img.huffingtonpost.com/asset/649dfb15250000360023f4db.jpeg?cache=S93YL3y2hP&ops=1200_630",
"publishedAt": "2023-07-13T09:02:13Z",
"content": "The Screen Actors Guild appears to be headed for a strike as talks with the Alliance of Motion Picture and Television Producers fell apart after Wednesdays midnight deadline.\r\nThe negotiating committ… [+2724 chars]"
},
{
"source": {
"id": null,
"name": "Xataka.com"
},
"author": "Yúbal Fernández",
"title": "Cómo bajar e instalar la beta pública de iOS 17, iPadOS 17, WatchOS 10 o macOS 14 Sonora",
"description": "Vamos a explicarte cómo descargar las betas públicas de iOS 17, iPadOS 17, WatchOS 10 y macOS 14 Sonora, de forma que puedas empezar a probar las próximas versiones de los sistemas operativos de Apple. El proceso es muy sencillo, y solo tienes que vincular tu…",
"url": "https://www.xataka.com/basics/como-bajar-e-instalar-beta-publica-ios-17-ipados-17-watchos-10-macos-14-sonora",
"urlToImage": "https://i.blogs.es/ef242e/betas-apple/840_560.jpeg",
"publishedAt": "2023-07-13T08:32:21Z",
"content": "Vamos a explicarte cómo descargar las betas públicas de iOS 17, iPadOS 17, WatchOS 10 y macOS 14 Sonora, de forma que puedas empezar a probar las próximas versiones de los sistemas operativos de Appl… [+2885 chars]"
},
{
"source": {
"id": null,
"name": "Xataka.com"
},
"author": "Enrique Pérez",
"title": "Giro radical en la tienda de Android: las aplicaciones con blockchain y NFTs ahora son bienvenidas",
"description": "Google ha actualizado sus condiciones para la Play Store de Android. Y lo hace abriendo la puerta a un tipo de aplicaciones que hasta la fecha estaban prohibidas en la plataforma para móviles. Según se explica en un comunicado, la tienda de Android permitirá …",
"url": "https://www.xataka.com/criptomonedas/giro-radical-tienda-android-aplicaciones-blockchain-nfts-ahora-bienvenidas",
"urlToImage": "https://i.blogs.es/becc4a/blockchain/840_560.jpeg",
"publishedAt": "2023-07-13T08:00:56Z",
"content": "Google ha actualizado sus condiciones para la Play Store de Android. Y lo hace abriendo la puerta a un tipo de aplicaciones que hasta la fecha estaban prohibidas en la plataforma para móviles. Según … [+3064 chars]"
},
{
"source": {
"id": null,
"name": "Xataka.com"
},
"author": "Alberto de la Torre",
"title": "Este es el precio y características del coche de bajas emisiones más vendido en España el último mes",
"description": "La combinación de buen precio y pegatina ECO es una de las que más interés despierta entre quienes buscan coche nuevo. Los datos así lo demuestran pues Toyota, marca que sólo tiene modelos ECO o Cero emisiones en su oferta, fue el fabricante más comprado en n…",
"url": "https://www.xataka.com/movilidad/este-precio-caracteristicas-coche-bajas-emisiones-vendido-espana-ultimo-mes",
"urlToImage": "https://i.blogs.es/9aeecd/toyota-yaris_cross-2021-1600-20/840_560.jpeg",
"publishedAt": "2023-07-13T10:31:00Z",
"content": "La combinación de buen precio y pegatina ECO es una de las que más interés despierta entre quienes buscan coche nuevo. Los datos así lo demuestran pues Toyota, marca que sólo tiene modelos ECO o Cero… [+4315 chars]"
},
{
"source": {
"id": null,
"name": "Xataka.com"
},
"author": "John Tones",
"title": "'The Last of Us' arrasa en las nominaciones de los Emmy 2023: desde 1993 nunca una serie nueva había acumulado tantas",
"description": "Nada menos que 24 nominaciones a los Emmy de este año ha acumulado 'The Last of Us', en un hito que la coloca casi a la altura de la aclamada 'Succession', con 27 nominaciones. Sin embargo, hay una diferencia: 'The Last of us' es una serie nueva, aún en su pr…",
"url": "https://www.xataka.com/streaming/the-last-of-us-arrasa-nominaciones-emmy-2023-1993-nunca-serie-nueva-habia-acumulado-tantas",
"urlToImage": "https://i.blogs.es/e1b891/ku7dksvrxjfqxlbetivauy57z4/840_560.jpeg",
"publishedAt": "2023-07-13T08:30:58Z",
"content": "Nada menos que 24 nominaciones a los Emmy de este año ha acumulado 'The Last of Us', en un hito que la coloca casi a la altura de la aclamada 'Succession', con 27 nominaciones. Sin embargo, hay una d… [+4178 chars]"
},
{
"source": {
"id": null,
"name": "The Economist"
},
"author": "The Economist",
"title": "The world is in the grip of a manufacturing delusion",
"description": "How to waste trillions of dollars",
"url": "https://www.economist.com/finance-and-economics/2023/07/13/the-world-is-in-the-grip-of-a-manufacturing-delusion",
"urlToImage": "https://www.economist.com/img/b/1280/720/90/media-assets/image/20230715_FND001.jpg",
"publishedAt": "2023-07-13T10:22:51Z",
"content": "Industry has an allure all of its own. From manufacturing you may expect the two greatest ills of humanity, superstition and slavery, to be healed, wrote Ferdinando Galiani, an Enlightenment thinker.… [+15257 chars]"
},
{
"source": {
"id": "le-monde",
"name": "Le Monde"
},
"author": "Le Monde avec AFP",
"title": "A Hollywood, vers une grève des acteurs après l’échec des négociations avec les grands studios",
"description": "« Après plus de quatre semaines de négociations », le précédent accord a expiré mercredi soir à minuit sans aucun espoir de conciliation, a constaté le syndicat SAG-AFTRA. Le bureau du syndicat doit entériner jeudi le début de la grève.",
"url": "https://www.lemonde.fr/culture/article/2023/07/13/a-hollywood-vers-une-greve-des-acteurs-apres-l-echec-des-negociations-avec-les-grands-studios_6181788_3246.html",
"urlToImage": "https://img.lemde.fr/2023/07/13/37/0/3774/2516/1440/960/60/0/da91496_1689238880060-379423.jpg",
"publishedAt": "2023-07-13T10:25:39Z",
"content": "Des travailleurs de la WGA (Writers Guild of America) font un piquet de grève devant les studios Paramount le 12 juillet 2023 à Los Angeles, en Californie. MARIO TAMA / AFP\r\nAprès léchec des négociat… [+4721 chars]"
},
{
"source": {
"id": null,
"name": "Digital Trends"
},
"author": "Christine Romero-Chan",
"title": "The Apple Watch Ultra is the perfect women’s smartwatch — seriously",
"description": "The Apple Watch Ultra was always exciting, but it is also very big. But after using it, I think it's a great smartwatch for women.",
"url": "http://www.digitaltrends.com/mobile/apple-watch-ultra-perfect-woman-smartwatch-why/",
"urlToImage": "https://www.digitaltrends.com/wp-content/uploads/2023/07/apple-watch-ultra-workout.jpg?resize=1200%2C630&p=1",
"publishedAt": "2023-07-13T13:00:34Z",
"content": "Joe Maring/Digital Trends\r\nWhen Apple showed off the Apple Watch Ultra last September, I was excited to see it. The design alone was unique and a great change of pace from the tried-and-true design o… [+7048 chars]"
},
{
"source": {
"id": null,
"name": "Nyuengelberg.org"
},
"author": null,
"title": "The Anti-Ownership eBook Economy",
"description": "Pulling back the curtain on the evolution of ebooks offers some clarity to how the shift to digital left ownership behind in the analog world.",
"url": "https://nyuengelberg.org/outputs/the-anti-ownership-ebook-economy/",
"urlToImage": "https://nyuengelberg.org/images/og-image.png",
"publishedAt": "2023-07-13T04:36:56Z",
"content": "Have you ever noticed that you cant really buy an ebook? Sure, when you click that Buy Now button on your ereader, tablet, or phone, it feels like a complete, seamless transaction. But the minute you… [+113775 chars]"
},
{
"source": {
"id": null,
"name": "heise online"
},
"author": "Mark Liebrand",
"title": "heise+ | Bastelprojekt: Wie der Eigenbau von alltagstauglichen AirTag-Klonen gelingt",
"description": "In diesem Artikel erklären wir, wie Sie einen Tracker für Apples Find-My-Netzwerk bauen – ganz ohne verräterischen Stromkabel.",
"url": "https://www.heise.de/ratgeber/Bastelprojekt-Wie-der-Eigenbau-von-alltagstauglichen-AirTag-Klonen-gelingt-9202874.html?wt_mc=rss.red.ho.ho.atom.beitrag_plus.beitrag_plus",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/2/6/3/9/7/4/A06_Familienfoto-20e7bf73fa55e4d4.jpeg",
"publishedAt": "2023-07-13T05:30:00Z",
"content": "Inhaltsverzeichnis\r\nIn einem vorherigen Artikel haben wir ein Projekt zum Eigenbau von Trackern ähnlich der bekannten AirTags von Apple vorgestellt, die auch gleich Apples Find-My-Netzwerk nutzen. Do… [+2372 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "Apple union negotiators acted illegally, claim Maryland store reps",
"description": "Apple has once again been accused of breaking the law in its attempts to fight unionization by retail store employees. Staff at the Maryland store say that Apple union negotiators acted in bad faith by stalling for as long as possible, and broke the law by en…",
"url": "https://9to5mac.com/2023/07/13/apple-union-negotiators-acted-illegally/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2023/07/Apple-union-negotiators-acted-illegally.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2023-07-13T11:46:39Z",
"content": "Apple has once again been accused of breaking the law in its attempts to fight unionization by retail store employees. Staff at the Maryland store say that Apple union negotiators acted in bad faith … [+3882 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Ben Lovejoy",
"title": "Tap to Pay on iPhone comes to the UK today, Revolut and Tyl first to support",
"description": "Apple has announced that Tap to Pay on iPhone has now rolled out to the UK, enabling small businesses to accept Apple Pay and contactless card payments using nothing more than their iPhone. It follows earlier international expansion to Taiwan and Australia.\nT…",
"url": "https://9to5mac.com/2023/07/13/tap-to-pay-on-iphone-uk/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2023/07/Tap-to-Pay-on-iPhone-UK.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2023-07-13T12:36:30Z",
"content": "Apple has announced that Tap to Pay on iPhone has now rolled out to the UK, enabling small businesses to accept Apple Pay and contactless card payments using nothing more than their iPhone. It follow… [+2933 chars]"
},
{
"source": {
"id": null,
"name": "9to5Mac"
},
"author": "Filipe Espósito",
"title": "Having trouble syncing your iPod shuffle with your Mac in 2023? macOS 13.5 will fix that",
"description": "It’s been a few years since Apple discontinued its iPod lineup. While the iPod touch was discontinued last year, sales of the iPod shuffle and iPod nano ended in 2017. But of course, even in the streaming era, some people still keep their iPods alive for nost…",
"url": "https://9to5mac.com/2023/07/12/ipod-shuffle-sync-bug-macos-13-5/",
"urlToImage": "https://i0.wp.com/9to5mac.com/wp-content/uploads/sites/6/2023/07/iPod-shuffle-Mac-bug.jpg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2023-07-13T02:33:22Z",
"content": "It’s been a few years since Apple discontinued its iPod lineup. While the iPod touch was discontinued last year, sales of the iPod shuffle and iPod nano ended in 2017. But of course, even in the stre… [+1740 chars]"
},
{
"source": {
"id": null,
"name": "Forbes"
},
"author": "Serenity Gibbons, Contributor, \n Serenity Gibbons, Contributor\n https://www.forbes.com/sites/serenitygibbons/",
"title": "3 Tips For Standing Out In A Crowded Market",
"description": "Competition is fierce in most areas of business. Here is how you can take a holistic approach to stand out from the crowd.",
"url": "https://www.forbes.com/sites/serenitygibbons/2023/07/13/3-tips-for-standing-out-in-a-crowded-market/",
"urlToImage": "https://imageio.forbes.com/specials-images/imageserve/64af0fd5ba029c40e5e9bd07/0x0.jpg?format=jpg&width=1200",
"publishedAt": "2023-07-13T09:00:00Z",
"content": "There are a lot of businesses out there. Post-pandemic, American entrepreneurs have been launching new ventures at the rapacious rate of several million new enterprises every year. Quickbooks estimat… [+6215 chars]"
},
{
"source": {
"id": null,
"name": "Android Police"
},
"author": "Manuel Vonau",
"title": "Bluetooth hearing aid compatibility: Which phones have it",
"description": "As the hearables market grows in the US, Apple and Android are working with hearing aid manufacturers to make their products compatible",
"url": "https://www.androidpolice.com/bluetooth-hearing-aid-compatibility-phones-guide/",
"urlToImage": "https://static1.anpoimages.com/wordpress/wp-content/uploads/2023/05/jabra-enhance-plus-7.jpg",
"publishedAt": "2023-07-13T10:36:18Z",
"content": "More and more people have some form of hearing impairment in this increasingly loud day and age. Chances are your hearing also isn't the best if you stumbled upon this guide. You may remember hearing… [+7674 chars]"
},
{
"source": {
"id": null,
"name": "Android Police"
},
"author": "Renee Christian",
"title": "Best smart home security system with no monthly fee in 2023",
"description": "Discover reliable and robust smart home security systems with no monthly fee to secure your property in this informative roundup",
"url": "https://www.androidpolice.com/best-smart-home-security-system-with-no-monthly-fee/",
"urlToImage": "https://static1.anpoimages.com/wordpress/wp-content/uploads/2023/06/smart-home-security-feature-image.jpg",
"publishedAt": "2023-07-13T14:00:18Z",
"content": "Home security systems with no monthly fee deliver many of the benefits of a professional home security system without a contract or cost. Set up and configure the smart security devices supplied, the… [+16647 chars]"
},
{
"source": {
"id": null,
"name": "The Guardian"
},
"author": "Nicola Slawson",
"title": "Hollywood actors’ union recommends strike | First Thing",
"description": "Sag-Aftra committee decision raises prospect of first simultaneous strike by writers and actors in more than 60 years. Plus, a surfing sea otter leaves experts puzzledGood morning.Due to an error, Tuesday’s First Thing wasn’t sent out. We apologize for the in…",
"url": "https://www.theguardian.com/us-news/2023/jul/13/first-thing-hollywood-actors-union-recommends-strike-as-talks-deadline-passes",
"urlToImage": "https://i.guim.co.uk/img/media/738305a92cba5a956cde0979dd64d63475974ee7/0_0_4018_2411/master/4018.jpg?width=1200&height=630&quality=85&auto=format&fit=crop&overlay-align=bottom%2Cleft&overlay-width=100p&overlay-base64=L2ltZy9zdGF0aWMvb3ZlcmxheXMvdGctZGVmYXVsdC5wbmc&enable=upscale&s=4e1906a9f7f7dc98d2fb1a24e5888356",
"publishedAt": "2023-07-13T10:29:10Z",
"content": "Good morning.\r\nDue to an error, Tuesdays First Thing wasnt sent out. We apologize for the inconvenience.\r\nThe union representing Hollywood actors has recommended strike action after a midnight negoti… [+11883 chars]"
},
{
"source": {
"id": null,
"name": "Autoblog"
},
"author": "James Riswick",
"title": "2023 Honda Pilot TrailSport Road Test: Outdoor adventuring to Oregon",
"description": "Filed under:\n Honda,Crossover,SUV,Road Tests\n Continue reading 2023 Honda Pilot TrailSport Road Test: Outdoor adventuring to Oregon\n2023 Honda Pilot TrailSport Road Test: Outdoor adventuring to Oregon originally appeared on Autoblog on Thu, 13 Jul 2023 06:00:…",
"url": "https://www.autoblog.com/2023/07/13/honda-pilot-trailsport-road-test-outdoor-adventure/",
"urlToImage": "https://o.aolcdn.com/images/dims3/GLOB/legacy_thumbnail/1062x597/format/jpg/quality/100/https://s.aolcdn.com/os/ab/_cms/2023/07/10192558/2023-Honda-Pilot-TrailSport-at-Oregon-state-line.jpg",
"publishedAt": "2023-07-13T10:00:00Z",
"content": "BEND, Ore. Outdoor adventure trim levels are all the rage throughout the SUV landscape. The 2023 Honda Pilot TrailSport is one of the newest in the three-row segment, joining those by Nissan, Ford, K… [+10283 chars]"
},
{
"source": {
"id": null,
"name": "Autoblog"
},
"author": "Autoblog Staff",
"title": "Best Amazon Prime Day deals still available for 2023",
"description": "Filed under:\n Commerce\n Continue reading Best Amazon Prime Day deals still available for 2023\nBest Amazon Prime Day deals still available for 2023 originally appeared on Autoblog on Thu, 13 Jul 2023 08:00:00 EDT. Please see our terms for use of feeds.\nPermali…",
"url": "https://www.autoblog.com/article/amazon-prime-day-deals-still-available-2023/",
"urlToImage": "https://o.aolcdn.com/images/dims3/GLOB/legacy_thumbnail/1062x597/format/jpg/quality/100/https://s.yimg.com/os/creatr-uploaded-images/2023-07/2c316230-1f51-11ee-a57e-6ed08950c60e",
"publishedAt": "2023-07-13T12:00:00Z",
"content": "Autoblog may receive a share from purchases made via links on this page. Pricing and availability are subject to change.\r\nPrime Day 2023 may be over but there are still great deals to take advantage … [+31284 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (William Gallagher)",
"title": "Forget folding, Apple really wants iPhones with rollable screens",
"description": "An \"iPhone Fold\" may already be in Apple's rear-view mirror, as the company is diligently pursuing the idea of an iPhone screen that can be rolled up when not in use.Detail from the patent showing on form of rolled-up displayIn May 2023, AppleInsider describe…",
"url": "https://appleinsider.com/articles/23/07/13/forget-folding-apple-really-wants-iphones-with-rollable-screens",
"urlToImage": "https://photos5.appleinsider.com/gallery/55372-112476-001-Detail-from-the-patent-xl.jpg",
"publishedAt": "2023-07-13T11:23:55Z",
"content": "Detail from the patent showing on form of rolled-up display\r\nAn \"iPhone Fold\" may already be in Apple's rear-view mirror, as the company is diligently pursuing the idea of an iPhone screen that can b… [+3797 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (William Gallagher)",
"title": "Apple brings Tap to Pay to UK iPhone users",
"description": "Apple has introduced its Tap to Pay service in the UK, letting businesses accept contactless payments via iPhones, instead of requiring separate card or NFC readers.Tap to Pay on iPhoneTap to Pay was first introduced in Apple Stores in the US in May 2022, and…",
"url": "https://appleinsider.com/articles/23/07/13/apple-brings-tap-to-pay-to-uk-iphone-users",
"urlToImage": "https://photos5.appleinsider.com/gallery/49264-96220-46903-91416-000-lead-Tap-to-Pay-xl-xl.jpg",
"publishedAt": "2023-07-13T09:52:27Z",
"content": "Tap to Pay on iPhone\r\nApple has introduced its Tap to Pay service in the UK, letting businesses accept contactless payments via iPhones, instead of requiring separate card or NFC readers.\r\nTap to Pay… [+1313 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (William Gallagher)",
"title": "Apple celebrates its highest number of Emmy nominations",
"description": "Apple TV+ hit \"Ted Lasso\" has become the most Emmy-nominated comedy for the third year running, while 'Still: A Michael J. Fox Movie\" is the year's most-nominated documentary.Still: A Michael J. Fox Movie has received seven Emmy nominations. Source: AppleCoun…",
"url": "https://appleinsider.com/articles/23/07/13/apple-celebrates-its-highest-number-of-emmy-nominations",
"urlToImage": "https://photos5.appleinsider.com/gallery/55371-112475-000-lead-Still-xl.jpg",
"publishedAt": "2023-07-13T10:32:54Z",
"content": "Still: A Michael J. Fox Movie has received seven Emmy nominations. Source: Apple\r\nApple TV+ hit \"Ted Lasso\" has become the most Emmy-nominated comedy for the third year running, while 'Still: A Micha… [+2173 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (William Gallagher)",
"title": "Apple's vision for TV means never having to search for a remote, because anything will do",
"description": "It sounds like a joke, but in the future, if you want to turn the volume up on your Apple TV 4K set, you could wave a hand, a baseball bat, or any object lying around you to get the job done.Detail from a patent application showing Apple Watch wrist movement …",
"url": "https://appleinsider.com/articles/23/07/13/apples-vision-for-tv-means-never-having-to-search-for-a-remote-because-anything-will-do",
"urlToImage": "https://photos5.appleinsider.com/gallery/55373-112480-000-lead-Remote-control-xl.jpg",
"publishedAt": "2023-07-13T13:23:05Z",
"content": "Detail from a patent application showing Apple Watch wrist movement controlling music\r\nIt sounds like a joke, but in the future, if you want to turn the volume up on your Apple TV 4K set, you could w… [+3793 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Andrew Orr)",
"title": "Apple's macOS saw a dramatic upturn in 2022 worldwide",
"description": "Adoption of macOS has steadily risen in recent months to become the second most-used operating system in the world - and December was a turning point.Apple's macOS is in second place for worldwide adoptionRecent statistics provided by StatCounter analyze the …",
"url": "https://appleinsider.com/articles/23/07/13/apples-macos-saw-a-dramatic-upturn-in-2022-worldwide",
"urlToImage": "https://photos5.appleinsider.com/gallery/55374-112483-M2-MacBook-Air-xl.jpg",
"publishedAt": "2023-07-13T13:48:51Z",
"content": "Apple's macOS is in second place for worldwide adoption\r\nAdoption of macOS has steadily risen in recent months to become the second most-used operating system in the world - and December was a turnin… [+1660 chars]"
},
{
"source": {
"id": null,
"name": "AppleInsider"
},
"author": "news@appleinsider.com (Jess Pingrey)",
"title": "Deals: $1,400 off M1 Max MacBook Pro, iMacs up to 30% off, M2 MacBook Air $929, iPhone 14 Plus up to $170 off, more",
"description": "Today's hottest deals include an iHome AutoVac Eclipse Pro robot vacuum for $147, 54% off an iPhone leather wallet with MagSafe, 53% off a JBL virtual Dolby Atmos soundbar, 70% off Philips wireless earbuds, and more.Save $1,400 on a M1 Max MacBook ProThe Appl…",
"url": "https://appleinsider.com/articles/23/07/13/deals-1400-off-m1-max-macbook-pro-imacs-up-to-30-off-m2-macbook-air-929-iphone-14-plus-up-to-170-off-more",
"urlToImage": "https://photos5.appleinsider.com/gallery/55363-112478-daily-deals-july-13-xl.jpg",
"publishedAt": "2023-07-13T13:35:39Z",
"content": "Save $1,400 on a M1 Max MacBook Pro\r\nToday's hottest deals include an iHome AutoVac Eclipse Pro robot vacuum for $147, 54% off an iPhone leather wallet with MagSafe, 53% off a JBL virtual Dolby Atmos… [+3786 chars]"
},
{
"source": {
"id": null,
"name": "Macworld"
},
"author": "Jason Cross",
"title": "Five iOS 17 features that aren’t in the public beta—and won’t be ready in time for launch",
"description": "Macworld\n\n\n\r\n\n\n\n\nWhen iOS 17 launches in the fall, it will bring a wealth of improvements and new features: Contact posters, live voicemail transcription, StandBy, FaceTime messages, new autocorrect and dictation, Siri improvements, and a lot more. But some o…",
"url": "https://www.macworld.com/article/1961587/ios-17-features-launch-later-this-year.html",
"urlToImage": "https://www.macworld.com/wp-content/uploads/2023/07/ios-17-logo-colors-8.jpg?quality=50&strip=all&w=1024",
"publishedAt": "2023-07-13T11:15:00Z",
"content": "Skip to contentType your search and hit enter\r\nWhen you purchase through links in our articles, we may earn a small commission. This doesn't affect our editorial independence\r\n.\r\nWhen iOS 17 launches… [+3421 chars]"
},
{
"source": {
"id": null,
"name": "Elespanol.com"
},
"author": "Manuel Ramírez",
"title": "Samsung tendría listo su chip Exynos de gama alta: todo sobre el 'cerebro' de los próximos Galaxy S24",
"description": "La idea de Samsung es dejar de lado el chip Snapdragon como ha ido haciendo hasta la serie Galaxy S22 en España y Europa.",
"url": "https://www.elespanol.com/elandroidelibre/noticias-y-novedades/20230713/samsung-listo-chip-exynos-gama-alta-cerebro-proximos-galaxy-s24/778672142_0.html",
"urlToImage": "https://s1.eestatic.com/2023/02/06/elandroidelibre/moviles-android/analisis/739436443_232315520_1200x630.jpg",
"publishedAt": "2023-07-13T10:05:37Z",
"content": "Justo a finales del año pasado Samsung creó una nueva división para impulsar sus chips Exynos que se han visto en un segundo plano desde que se incluyera en España al Snapdragon 8 Gen 2 en los Galaxy… [+2546 chars]"
},
{
"source": {
"id": null,
"name": "Gizmodo.jp"
},
"author": "山本勇磨",
"title": "Appleも参戦したXRで、私たちの“日常”はどのように変わるの? XRの開発者に聞いた",
"description": "Image:AppleAppleVisionProの登場によって、最近ますます「XR」という言葉を目にすることが増えました。XRとは「VR」や「AR」と呼ばれる「現実世界と仮想世界を融合する技術」の総称。ただスマホやPCと比べてみると、このXRデバイス(たとえばARグラスとか)って、なんとなくまだ遠い存在だと感じませんか?Appleの参入によって、XRデバイスがどのように身近になってくるのか、XR",
"url": "https://www.gizmodo.jp/2023/07/styly-xr-interview.html",
"urlToImage": "https://media.loom-app.com/gizmodo/dist/images/2023/06/29/230628_styly_xr_interview_0.jpg?w=1280&h=630&f=jpg",
"publishedAt": "2023-07-13T09:00:00Z",
"content": "Apple Vision ProXRXRVRAR\r\nPCXRAR\r\nAppleXRXRSTYLY\r\nXR\r\n2012Google20%VR/AR2018Psychic VR Lab20194STYLY20216CHRO\r\nXR\r\nMeta QuestXREALNREALXRXR\r\nXR\r\n1\r\nMeta Quest 2XREAL Air\r\nMetaOculusVRXR\r\nXR10VR\r\nVR\r\n… [+636 chars]"
},
{
"source": {
"id": null,
"name": "Journal du geek"
},
"author": "tristan carballeda",
"title": "Les ventes d’ordinateurs s’écroulent, sauf chez Apple",
"description": "Apple a trouvé la recette magique pour vendre toujours plus de Mac. Même quand le marché connaît l'une de ses plus grosses crises. \nLes ventes d’ordinateurs s’écroulent, sauf chez Apple",
"url": "https://www.journaldugeek.com/2023/07/13/les-ventes-dordinateurs-secroulent-sauf-chez-apple/",
"urlToImage": "https://www.journaldugeek.com/content/uploads/2023/07/macbook-air-13-vs-15.jpg",
"publishedAt": "2023-07-13T11:00:31Z",
"content": "Apple a trouvé la recette magique pour vendre toujours plus de Mac. Même quand le marché connaît l'une de ses plus grosses crises.Le marché des ordinateurs est en crise depuis quelques mois. Suite à … [+2658 chars]"
},
{
"source": {
"id": null,
"name": "Theregister.com"
},
"author": "Liam Proven",
"title": "Three signs that Wayland is becoming the favored way to get a GUI on Linux",
"description": "May be about to join systemd as the new tech for graybeards to scorn... but adopt anyway\nIt has taken about 15 years to get there, but there is mounting evidence that the Wayland display server may soon topple X11 as the most common way to get a GUI on Linux.…",
"url": "https://www.theregister.com/2023/07/13/wayland_is_coming/",
"urlToImage": "https://regmedia.co.uk/2023/07/13/shutterstock_hammeranvil.jpg",
"publishedAt": "2023-07-13T10:30:07Z",
"content": "It has taken about 15 years to get there, but there is mounting evidence that the Wayland display server may soon topple X11 as the most common way to get a GUI on Linux.\r\nWe've reported on growing e… [+3541 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Jesús Quesada",
"title": "¿No llegaste al Amazon Prime Day? Aquí las mejores ofertas en iPhone, iPad, Apple Watch y más de El Corte Inglés o MediaMarkt",
"description": "El Prime Day 2023 de Amazon ya ha terminado, pero las ofertas continúan. Si no te hiciste con ningún chollo de Apple durante los días 11 y 12 de julio, te traemos los mejores chollos en iPhone, iPad, Apple Watch y más de tiendas como El Corte Inglés, MediaMar…",
"url": "https://www.applesfera.com/seleccion/no-llegaste-al-amazon-prime-day-aqui-mejores-ofertas-iphone-ipad-apple-watch-corte-ingles-mediamarkt",
"urlToImage": "https://i.blogs.es/37621e/ofertas-post-amazon/840_560.jpeg",
"publishedAt": "2023-07-13T06:30:57Z",
"content": "El Prime Day 2023 de Amazon ya ha terminado, pero las ofertas continúan. Si no te hiciste con ningún chollo de Apple durante los días 11 y 12 de julio, te traemos los mejores chollos en iPhone, iPad,… [+4383 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Miguel López",
"title": "Descuentos y cupones de hasta 150€: Apple lanza su \"vuelta al cole\" para estudiantes y universitarios",
"description": "Apple ha lanzado su campaña para estudiantes puntualmente, como cada año, con la intención de facilitar la compra de nuevos productos de la compañía a aquellas personas que los utilicen para estudiar. La compañía ha confirmado con una nota de prensa los preci…",
"url": "https://www.applesfera.com/apple-1/descuentos-cupones-150eur-apple-lanza-su-vuelta-al-cole-para-estudiantes-universitarios",
"urlToImage": "https://i.blogs.es/3ec0c5/captura-de-pantalla-2023-07-13-a-las-12.11.38/840_560.jpeg",
"publishedAt": "2023-07-13T11:16:08Z",
"content": "Apple ha lanzado su campaña para estudiantes puntualmente, como cada año, con la intención de facilitar la compra de nuevos productos de la compañía a aquellas personas que los utilicen para estudiar… [+2052 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Fran Bouzas",
"title": "Apple hace historia en los Emmy: estas son las 54 nominaciones que ha conseguido para entrar en el podio de las productoras más laureadas",
"description": "Algo que en Apple han parecido ser capaces de entender es que el hardware es cada vez menos rentable. No por nada, simplemente cada vez hay menos gente que cambie su teléfono todos los años. La tecnología se ha vuelto mejor y más consistente, por lo que dura …",
"url": "https://www.applesfera.com/servicios-apple/apple-hace-historia-emmy-estas-54-nominaciones-que-ha-conseguido-para-entrar-podio-productoras-laureadas",
"urlToImage": "https://i.blogs.es/c3467b/apple-tv-plus-2023-emmy-nominations-ted-lasso/840_560.jpeg",
"publishedAt": "2023-07-13T10:09:18Z",
"content": "Algo que en Apple han parecido ser capaces de entender es que el hardware es cada vez menos rentable. No por nada, simplemente cada vez hay menos gente que cambie su teléfono todos los años. La tecno… [+6253 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Alberto García",
"title": "El SSD portátil más vendido de Crucial para Mac está de oferta con uno de los mejores descuentos hasta la fecha",
"description": "Los ordenadores han evolucionado muchísimo durante estos últimos años, pero muchas veces seguimos teniendo el mismo problema con el caso del almacenamiento interno de los mismos. Para ello, los SSD portátiles como el Crucial X8 son una solución muy buena, y y…",
"url": "https://www.applesfera.com/seleccion/ssd-portatil-vendido-crucial-para-mac-esta-oferta-uno-mejores-descuentos-fecha",
"urlToImage": "https://i.blogs.es/07537d/crucial-x8/840_560.jpeg",
"publishedAt": "2023-07-13T10:32:04Z",
"content": "Los ordenadores han evolucionado muchísimo durante estos últimos años, pero muchas veces seguimos teniendo el mismo problema con el caso del almacenamiento interno de los mismos. Para ello, los SSD p… [+2644 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Fran Bouzas",
"title": "Apple relanza de urgencia una actualización de seguridad de iOS 16 que estaba dando problemas en el iPhone",
"description": "Hace dos días Apple lanzó una actualización de seguridad para solventar un error grave en la primera versión de iOS 16.5.1. Sin embargo, la propia empresa tuvo que retirarla horas más tarde tras descubrir que estaba causando que ciertas páginas web en Safari …",
"url": "https://www.applesfera.com/ios/apple-relanza-urgencia-actualizacion-seguridad-ios-16-que-estaba-dando-problemas-iphone",
"urlToImage": "https://i.blogs.es/b03220/diseno-sin-titulo-162/840_560.jpeg",
"publishedAt": "2023-07-13T08:04:29Z",
"content": "Hace dos días Apple lanzó una actualización de seguridad para solventar un error grave en la primera versión de iOS 16.5.1. Sin embargo, la propia empresa tuvo que retirarla horas más tarde tras desc… [+1720 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Pedro Aznar",
"title": "Hacía años que no disfrutaba tanto con macOS: éstas características clave piden a gritos que pruebes la beta pública de Sonoma",
"description": "Apple liberó ayer la primera beta pública de sus próximos sistemas operativos, con el objetivo de que personas que no son desarrolladores puedan probarlo para ayudar a depurar posibles errores. La instalación es muy sencilla, sólo tenemos que registrarnos en …",
"url": "https://www.applesfera.com/os-x/anos-que-no-disfrutaba-macos-estas-caracteristicas-clave-piden-a-gritos-que-pruebes-beta-publica-sonoma",
"urlToImage": "https://i.blogs.es/6a935a/sonoma-aps-50/840_560.jpeg",
"publishedAt": "2023-07-13T14:12:21Z",
"content": "Apple liberó ayer la primera beta pública de sus próximos sistemas operativos, con el objetivo de que personas que no son desarrolladores puedan probarlo para ayudar a depurar posibles errores. La in… [+7077 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Fran Bouzas",
"title": "Bard, la IA de Google que quiere derrotar a ChatGPT, ya disponible en España: así puedes probarla en tu iPhone",
"description": "Una de las tecnologías que más han marcado este año 2023 ha sido, sin duda, la inteligencia artificial. Es algo de lo que llevábamos mucho tiempo oyendo hablar, pero que no acabábamos de ver materializado. Sin embargo, un día apareció ChatGPT y nos dejó a tod…",
"url": "https://www.applesfera.com/tutoriales/bard-ia-google-que-quiere-derrotar-a-chatgpt-disponible-espana-asi-puedes-probarla-tu-iphone",
"urlToImage": "https://i.blogs.es/eff411/diseno-sin-titulo-164/840_560.jpeg",
"publishedAt": "2023-07-13T12:07:17Z",
"content": "Una de las tecnologías que más han marcado este año 2023 ha sido, sin duda, la inteligencia artificial. Es algo de lo que llevábamos mucho tiempo oyendo hablar, pero que no acabábamos de ver material… [+2106 chars]"
},
{
"source": {
"id": null,
"name": "Applesfera.com"
},
"author": "Miguel López",
"title": "Estos son los cinco cambios en iOS 17 que merecen que pruebes la beta pública",
"description": "Ayer iOS 17 dio un paso importante en su desarrollo: lanzar su beta pública para que cualquier usuario, más allá de los desarrolladores, la pudiese probar. Tras varias betas reservadas solamente al canal de esos desarrolladores, es una indicación de que su av…",
"url": "https://www.applesfera.com/ios/estos-cinco-cambios-ios-17-que-merecen-que-pruebes-beta-publica",
"urlToImage": "https://i.blogs.es/07f49b/ios-17-iphone-apple-beta/840_560.jpeg",
"publishedAt": "2023-07-13T09:00:59Z",
"content": "Ayer iOS 17 dio un paso importante en su desarrollo: lanzar su beta pública para que cualquier usuario, más allá de los desarrolladores, la pudiese probar. Tras varias betas reservadas solamente al c… [+3320 chars]"
},
{
"source": {
"id": null,
"name": "MakeUseOf"
},
"author": "Olasubomi Gbenjo",
"title": "6 Fixes to Try if Apple Declines Your Payment Method",
"description": "Is your Apple ID payment method not working for App Store purchases or subscriptions? Follow these troubleshooting steps.",
"url": "https://www.makeuseof.com/apple-declined-payment-method-fixes/",
"urlToImage": "https://static1.makeuseofimages.com/wordpress/wp-content/uploads/2023/07/close-up-shot-of-a-woman-holding-an-iphone-and-a-card-1.jpg",
"publishedAt": "2023-07-13T11:45:18Z",
"content": "Picture this: You're going about your day when you receive an email from Apple saying it declined the payment option attached to your subscription service. You're prompted to update your payment meth… [+4707 chars]"
},
{
"source": {
"id": null,
"name": "DIYphotography"
},
"author": "John Aldred",
"title": "Skyglass lets you shoot virtual productions in real-time with your iPhone",
"description": "While it might have just been a pipe dream for all but the most elite Hollywood studios just a handful of years ago, virtual production has come to the masses very quickly. Now, it’s gotten to a point where you can do it on your iPhone. Skyglass is a new app …",
"url": "https://www.diyphotography.net/skyglass-lets-you-shoot-virtual-productions-in-real-time-with-your-iphone/",
"urlToImage": "https://www.diyphotography.net/wp-content/uploads/2023/07/skyglass-virtual-production-iphone.jpg",
"publishedAt": "2023-07-13T12:18:47Z",
"content": "While it might have just been a pipe dream for all but the most elite Hollywood studios just a handful of years ago, virtual production has come to the masses very quickly. Now, it’s gotten to a poin… [+2169 chars]"
},
{
"source": {
"id": null,
"name": "GameSpot"
},
"author": "Eddie Makuch",
"title": "Hollywood Actors Expected To Begin Strike Today, First Since 1980",
"description": "Hollywood writers have been on strike since May, and now actors are preparing to strike as well. The biggest actor's union in Hollywood, SAG-AFTRA, has confirmed plans to begin striking as soon as today, July 13. The previous contract expired at 11:59 PM on J…",
"url": "https://www.gamespot.com/articles/hollywood-actors-expected-to-begin-strike-today-first-since-1980/1100-6515940/",
"urlToImage": "https://www.gamespot.com/a/uploads/screen_kubrick/1179/11799911/4165191-screenshot2023-07-13at10.07.13am.png",
"publishedAt": "2023-07-13T13:35:00Z",
"content": "Hollywood writers have been on strike since May, and now actors are preparing to strike as well. The biggest actor's union in Hollywood, SAG-AFTRA, has confirmed plans to begin striking as soon as to… [+2964 chars]"
},
{
"source": {
"id": null,
"name": "XDA Developers"
},
"author": "Carsen Joenk",
"title": "Just like Cinderella's carriage, these Prime Day Apple deals go back to normal at midnight",
"description": "Get discounts on laptops, watches, and more before they're gone.",
"url": "https://www.xda-developers.com/apple-prime-day-last-minute-deals/",
"urlToImage": "https://static1.xdaimages.com/wordpress/wp-content/uploads/2022/03/AirPods-Pro-open-case-next-to-MacBook-Air-M1-and-iPad-Air-5-Large.jpeg",
"publishedAt": "2023-07-13T00:21:19Z",
"content": "Amazon Prime Day is about to wrap up, which means you have a limited window to take advantage of Apple's best deals. From AirPods to MacBooks, the tech stalwart is offering up many of its devices for… [+5287 chars]"
},
{
"source": {
"id": null,
"name": "Space.com"
},
"author": "stingrayghost@gmail.com (Jeff Spry)",
"title": "'Foundation' Season 2 clip reveals what it takes to keep a galactic empire together in the face of war (video)",
"description": "Apple TV+ released a new clip from the Season 2 premiere of its stellar space saga based on the classic Isaac Asimov novel, \"Foundation,\" which airs on July 14.",
"url": "https://www.space.com/foundation-season-two-clip-brother-day",
"urlToImage": "https://cdn.mos.cms.futurecdn.net/nfSmN8V87QF6wJ3Ad2tbu9-1200-80.jpg",
"publishedAt": "2023-07-13T14:00:00Z",
"content": "Emmy Award-nominated actor Lee Pace always delivers compelling performances, whether he's trying to dominate the galaxy as Ronan the Accuser in \"Guardians of the Galaxy\" or swaying investors as chari… [+3059 chars]"
},
{
"source": {
"id": null,
"name": "Presse-citron"
},
"author": "Jean-Yves Alric",
"title": "Warren Buffett va gagner 1 milliard grâce à ce placement malin",
"description": "Le célèbre investisseur a une nouvelle fois eu le nez creux.",
"url": "https://www.presse-citron.net/warren-buffett-va-gagner-1-milliard-grace-a-ce-placement-malin/",
"urlToImage": "https://www.presse-citron.net/app/uploads/2022/04/Warren-Buffett-Berkshire-Hathaway.jpg",
"publishedAt": "2023-07-13T10:45:03Z",
"content": "<ul><li>Berkshire Hathaway, la société dinvestissement de Warren Buffett, a acquis des actions dActivision Blizzard peu avant lannonce du rachat par Microsoft</li><li>Alors que lopération pourrait bi… [+2304 chars]"
},
{
"source": {
"id": null,
"name": "BGR"
},
"author": "José Adorno",
"title": "Apple expands Tap to Pay on iPhone to the UK",
"description": "Apple is expanding its Tap to Pay feature to UK users, the company announced this Thursday. With that, businesses across the United Kingdom can now …\nThe post Apple expands Tap to Pay on iPhone to the UK appeared first on BGR.",
"url": "https://bgr.com/tech/apple-expands-tap-to-pay-on-iphone-to-the-uk/",
"urlToImage": "https://bgr.com/wp-content/uploads/2022/02/Apple-Tap-to-Pay.jpg?quality=82&strip=all",
"publishedAt": "2023-07-13T11:15:36Z",
"content": "Apple is expanding its Tap to Pay feature to UK users, the company announced this Thursday. With that, businesses across the United Kingdom can now accept in-person contactless payments through Tap t… [+2275 chars]"
},
{
"source": {
"id": null,
"name": "iMore"
},
"author": "john-anthony.disotto@futurenet.com (John-Anthony Disotto)",
"title": "Ted Lasso leads 54 Emmy Award nominations haul for Apple",
"description": "Apple has landed 54 2023 Emmy Award nominations, with Ted Lasso receiving 21, the most for any comedy.",
"url": "https://www.imore.com/music-movies-tv/ted-lasso-leads-54-emmy-award-nominations-haul-for-apple",
"urlToImage": "https://cdn.mos.cms.futurecdn.net/xdDtVpJQjHrMzGr4nwjgii-1200-80.jpg",
"publishedAt": "2023-07-13T08:41:56Z",
"content": "Apple has received 54 Emmy Award nominations across 13 Apple TV Plus shows, including Ted Lasso.\r\nTed Lasso, the Jason Sudeikis comedy, received 21 comedy nominations, including Outstanding Comedy, m… [+5372 chars]"
},
{
"source": {
"id": null,
"name": "iMore"
},
"author": "Stephen Warwick",
"title": "Apple's student promo lands in the UK with £130 gift cards up for grabs on Mac and iPad",
"description": "Apple has launched its Back to School promotion in the UK, with gift cards and savings on offer for everyone.",
"url": "https://www.imore.com/apple/apples-student-promo-lands-in-the-uk-with-pound130-gift-cards-up-for-grabs-on-mac-and-ipad",
"urlToImage": "https://cdn.mos.cms.futurecdn.net/SJiM52eMpSzhRJnbJgATR5-1200-80.jpg",
"publishedAt": "2023-07-13T10:41:42Z",
"content": "Apple has today launched its annual savings event for higher education students in the UK, offering hefty gift cards with select purchases of its Mac and iPads. \r\nEvery year, Apple offers students a … [+2186 chars]"
},
{
"source": {
"id": null,
"name": "iMore"
},
"author": "Stephen Warwick",
"title": "Apple's amazing Tap to Pay iPhone payment feature arrives in the UK",
"description": "Apple has today announced the launch of its Tap to Pay on iPhone feature in the UK.",
"url": "https://www.imore.com/iphone/apples-amazing-tap-to-pay-iphone-payment-feature-arrives-in-the-uk",
"urlToImage": "https://cdn.mos.cms.futurecdn.net/WCcvFQ4HwxwYQ7DkBgG8LJ-1200-80.jpg",
"publishedAt": "2023-07-13T08:46:21Z",
"content": "Apple has today announced that a big new iPhone payment upgrade is coming to the UK. The feature, already available to US iPhone users, allows any merchant, small or large, to accept payments using n… [+1511 chars]"
},
{
"source": {
"id": null,
"name": "iMore"
},
"author": "oliver@monkeymanmedia.com (Oliver Haslam)",
"title": "Latest macOS Sonoma beta finally makes iCloud Keychain work with third-party browsers",
"description": "Mac iCloud Keychain users can now access their passwords in Chrome and other third-party browsers with the latest macOS Sonoma beta.",
"url": "https://www.imore.com/mac/macos/latest-macos-sonoma-beta-finally-makes-icloud-keychain-work-with-third-party-browsers",
"urlToImage": "https://cdn.mos.cms.futurecdn.net/uPS2FdEtTEAGL5JcY2taQi-1200-80.jpg",
"publishedAt": "2023-07-13T11:36:39Z",
"content": "Apple's latest macOS Sonoma beta has fixed an issue that has plagued users of third-party web browsers for years. With that beta installed, they can finally access their usernames and passwords from … [+1912 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Tim Hardwick",
"title": "Latest iOS 17 Beta Includes 'Save to Photos' Option in Full-Page Screenshot Interface, Better Dual-SIM Support",
"description": "Apple in the latest iOS 17 public and developer betas has added support for saving full-page screenshots as image files in apps where the system supports the feature.\n\n\n\n\n\nIn iOS 16, users can already opt to take a screenshot in apps like Safari, Notes, and M…",
"url": "https://www.macrumors.com/2023/07/13/ios-17-beta-save-full-page-screenshot-image/",
"urlToImage": "https://images.macrumors.com/t/F7oTqlQN4Z9JS9HdjKPoRgxasG0=/2250x/article-new/2023/06/General-iOS-17-Feature-Blue-Green.jpg",
"publishedAt": "2023-07-13T10:02:17Z",
"content": "Apple in the latest iOS 17 public and developer betas has added support for saving full-page screenshots as image files in apps where the system supports the feature.\r\nIn iOS 16, users can already op… [+1092 chars]"
},
{
"source": {
"id": null,
"name": "MacRumors"
},
"author": "Mitchel Broussard",
"title": "Missed Amazon Prime Day? You Can Still Get 9th Gen iPad, AirPods Pro 2, and More for Record Low Prices Today",
"description": "Now that Amazon Prime Day has ended, many of the week's best deals have expired. However, today we are still tracking a few Apple products that remain at their best-ever prices even after the end of Prime Day, including iPad mini 6, AirPods Pro 2, M1 MacBook …",
"url": "https://www.macrumors.com/2023/07/13/missed-amazon-prime-day/",
"urlToImage": "https://images.macrumors.com/t/2BBN__Jmq272RrSqyba15xCk0Zc=/2500x/article-new/2023/07/july-13-image-blue.jpg",
"publishedAt": "2023-07-13T14:10:25Z",
"content": "Now that Amazon Prime Day has ended, many of the week's best deals have expired. However, today we are still tracking a few Apple products that remain at their best-ever prices even after the end of … [+1987 chars]"
},
{
"source": {
"id": null,
"name": "Les Numériques"
},
"author": "Henri Lahera",
"title": "Actualité : iOS 17 / iPadOS 17 : Apple facilite l’installation de la bêta publique sur iPhone et iPad",
"description": "Alors que l’on a récemment pu découvrir les nouveautés d’iOS 17 et d’iPadOS 17 lors de la WWDC, Apple vient enfin de publier la première bêta publique. Voici comment en profiter.",
"url": "https://www.lesnumeriques.com/telephone-portable/ios-17-ipados-17-apple-facilite-l-installation-de-la-beta-publique-sur-iphone-et-ipad-n211788.html",
"urlToImage": "https://cdn.lesnumeriques.com/optim/news/21/211788/9bedb81c-ios-17-apple-facilite-l-installation-de-la-beta-publique-sur-iphone-et-ipad_png__1200_630__0-38-1776-970.jpg",
"publishedAt": "2023-07-13T11:08:00Z",
"content": "Apple vient enfin de déployer la bêta publique de ses très attendus iOS 17 et iPadOS 17. Une version assez stable pour que les utilisateurs lutilisent de façon quotidienne. Il devient donc possible d… [+2390 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Álvaro García M.",
"title": "Apple lanza una nueva actualización de seguridad para iOS 16. Y esta vez no romperá tu iPhone",
"description": "Una de las novedades que trajo iOS 16 fue la posibilidad de recibir actualizaciones rápidas por cuestiones de seguridad. Apple las llama “respuestas rápidas de seguridad” y ya tuvimos ocasión de ver una con iOS 16.4.1. Esta semana se han lanzado dos, lo cual …",
"url": "https://www.xatakamovil.com/apple/apple-lanza-nueva-actualizacion-seguridad-para-ios-16-esta-vez-no-rompera-tu-iphone",
"urlToImage": "https://i.blogs.es/610de4/ios-16/840_560.jpeg",
"publishedAt": "2023-07-13T06:25:53Z",
"content": "Una de las novedades que trajo iOS 16 fue la posibilidad de recibir actualizaciones rápidas por cuestiones de seguridad. Apple las llama respuestas rápidas de seguridad y ya tuvimos ocasión de ver un… [+2180 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Alejandro Alcolea",
"title": "iOS 17 al alcance de todos los iPhone: la primera beta pública ya disponible",
"description": "Ha pasado algo más de un mes desde que Apple anunciara iOS 17 en la WWDC 2023. Durante estas últimas semanas, la compañía ha ido lanzando varias betas para desarrolladores de su nuevo sistema operativo para iPhone, pero como es habitual, ahora llega la beta p…",
"url": "https://www.xatakamovil.com/apple/ios-17-al-alcance-todos-iphone-primera-beta-publica-disponible",
"urlToImage": "https://i.blogs.es/3e21d9/dscf6010/840_560.jpeg",
"publishedAt": "2023-07-13T08:30:58Z",
"content": "Ha pasado algo más de un mes desde que Apple anunciara iOS 17 en la WWDC 2023. Durante estas últimas semanas, la compañía ha ido lanzando varias betas para desarrolladores de su nuevo sistema operati… [+2606 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Enrique Moraleda",
"title": "¿No llegaste al Prime Day de Amazon? Aquí tienes las mejores ofertas en teléfonos Xiaomi, Samsung, Apple y más de PcComponentes, El Corte Inglés o MediaMarkt",
"description": "El Prime Day de Amazon ya ha terminado. Sin embargo puedes encontrar ofertas en los móviles de las compañías más conocidas en otras tiendas como MediaMarkt, El Corte Inglés o PcComponentes. Si estás pensando en cambiar tu dispositivo y hacerlo por menos diner…",
"url": "https://www.xatakamovil.com/ofertas/no-llegaste-al-prime-day-amazon-aqui-tienes-mejores-ofertas-telefonos-xiaomi-samsung-apple-pccomponentes-corte-ingles-mediamarkt",
"urlToImage": "https://i.blogs.es/114cef/plantilla-imagenes---2023-07-13t095917.840/840_560.jpeg",
"publishedAt": "2023-07-13T09:00:59Z",
"content": "El Prime Day de Amazon ya ha terminado. Sin embargo puedes encontrar ofertas en los móviles de las compañías más conocidas en otras tiendas como MediaMarkt, El Corte Inglés o PcComponentes. Si estás … [+5138 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Álvaro García M.",
"title": "El nuevo 'Humor Amarillo' y la última peli de Mario Casas en Netflix apuntan alto: los 31 estrenos de la semana en streaming",
"description": "Que el verano suele ser más pausado es algo que se nota incluso en el streaming, donde por norma general los grandes estrenos ya se han producido o esperan a la época post estival para hacerlo. Sin embargo, aunque con menos ritmo, seguimos encontrando estreno…",
"url": "https://www.xatakamovil.com/streaming/nuevo-humor-amarillo-ultima-peli-mario-casas-netflix-apuntan-alto-31-estrenos-semana-streaming",
"urlToImage": "https://i.blogs.es/6d6d09/estrenos/840_560.jpeg",
"publishedAt": "2023-07-13T10:00:59Z",
"content": "Que el verano suele ser más pausado es algo que se nota incluso en el streaming, donde por norma general los grandes estrenos ya se han producido o esperan a la época post estival para hacerlo. Sin e… [+4332 chars]"
},
{
"source": {
"id": null,
"name": "Xatakamovil.com"
},
"author": "Alejandro Alcolea",
"title": "Enviar SMS sin cobertura de móvil y desde cualquier teléfono: así funciona el accesorio satelital de Motorola que ya está en España",
"description": "Nuestros teléfonos móviles nos permiten comunicarnos mediante la señal que reciben de antenas. Ubicadas en diferentes puntos, y aprovechando las redes de diferentes operadoras, tenemos muchísima cobertura a nivel nacional. Sin embargo, hay puntos a los que no…",
"url": "https://www.xatakamovil.com/conectividad/enviar-sms-cobertura-movil-cualquier-telefono-asi-funciona-accesorio-satelital-motorola-que-esta-espana",
"urlToImage": "https://i.blogs.es/32f51e/img_20230301_121458936/840_560.jpeg",
"publishedAt": "2023-07-13T13:46:59Z",
"content": "Nuestros teléfonos móviles nos permiten comunicarnos mediante la señal que reciben de antenas. Ubicadas en diferentes puntos, y aprovechando las redes de diferentes operadoras, tenemos muchísima cobe… [+3476 chars]"
},
{
"source": {
"id": "the-washington-post",
"name": "The Washington Post"
},
"author": "Digg Editors",
"title": "Tracy Chapman, Luke Combs And The Complicated Response To 'Fast Car'",
"description": "Luke Combs’s remake of Tracy Chapman’s 1988 hit « Fast Car » now dominates the country charts, renewing difficult conversations about diversity in Nashville.",
"url": "https://www.washingtonpost.com/arts-entertainment/2023/07/13/tracy-chapman-luke-combs-fast-car-cover/",
"urlToImage": "https://www.washingtonpost.com/wp-apps/imrs.php?src=https://arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/FWH7FCZVZ4CUI6GM7ACY4J3RZU.jpg&w=1440",
"publishedAt": "2023-07-13T14:09:15Z",
"content": "Comment on this story\r\nComment\r\nTracy Chapmans Fast Car is one of those songs that you just feel in your soul: the lyrics about the yearning to escape, the gentle guitar underlying a feeling of despa… [+10990 chars]"
},
{
"source": {
"id": null,
"name": "Timeextension.com"
},
"author": "Digg Editors",
"title": "Meet The Unsung Pioneer Behind The Most Hated Zelda Games Of All Time",
"description": "\"I can understand that people were disappointed\"",
"url": "https://www.timeextension.com/features/meet-the-unsung-pioneer-behind-the-most-hated-zelda-games-of-all-time",
"urlToImage": "https://images.timeextension.com/070b71823421c/1280x720.jpg",
"publishedAt": "2023-07-13T14:07:53Z",
"content": "Image: Philips\r\nThe Legend of Zelda series is home to some of the most critically-acclaimed video games ever made, and the franchise is without a doubt one of the most important in Nintendo's illustr… [+17129 chars]"
},
{
"source": {
"id": null,
"name": "Rolling Stone"
},
"author": "Daniel Kreps",
"title": "SAG-AFTRA Strike Looms as Contract Deadline Passes Without New Deal",
"description": "Actors' union will hold a strike vote on Thursday morning as Hollywood braces for shut-down",
"url": "https://www.rollingstone.com/tv-movies/tv-movie-news/sag-aftra-strike-1234787536/",
"urlToImage": "https://www.rollingstone.com/wp-content/uploads/2023/07/GettyImages-1534508288.jpg?w=1600&h=900&crop=1",
"publishedAt": "2023-07-13T08:16:37Z",
"content": "Hollywood is officially in the midst of what could be an industry-crippling “double strike” as the SAG-AFTRA television, theatrical, and streaming contracts expired without a deal at midnight. \r\nFoll… [+4952 chars]"
},
{
"source": {
"id": null,
"name": "Playpcesor.com"
},
"author": "Esor Huang",
"title": "Google Bard 開放支援 AI 中文問答,6種製作中文試算表與報告案例",
"description": "Google Bard 是 Google 推出的 ChatGPT 競爭產品,同樣可以進行 AI 對話問答,也可以生成從報告文件到表格資料等內容。並且目前免費使用,還有一些特殊功能,像是語音輸入、連上網路分析資料、製作 Google 試算表、發送 Gmail 等等。(延伸閱讀: ...",
"url": "https://www.playpcesor.com/2023/07/google-bard-ai-6.html",
"urlToImage": "https://blogger.googleusercontent.com/img/a/AVvXsEgOhYsfLJfEFAnyjLDxV-xCNKUzFFvnGpGJYCyCL-anxIblt78-Tb2v7tWPsOyXkgAiANh-I8TaALa_M28Y45s7WLkH4VhFDL0zu39ORe_0d5fGiGmLBj0344yjc1AaaSFzAaW8Lji8G3z3Bj4wY4tVGm0GcGx9fhExF1fuL0x3O6pv4TqS-VNOKA=w1200-h630-p-k-no-nu",
"publishedAt": "2023-07-13T04:09:00Z",
"content": "Google Bard 是 Google 推出的 ChatGPT 競爭產品,同樣可以進行 AI 對話問答,也可以生成從報告文件到表格資料等內容。並且目前免費使用,還有一些特殊功能,像是語音輸入、連上網路分析資料、製作 Google 試算表、發送 Gmail 等等。(延伸閱讀:Google Bard AI 聊天機器人全球開放, 9 種案例應用的測試筆記)\r\n不過之前 Google Bard 全球… [+3565 chars]"
},
{
"source": {
"id": null,
"name": "Caschys Blog"
},
"author": "Olli",
"title": "Schnelle Sicherheitsmaßnahme: Update für iOS 16.5.1 ist wieder da",
"description": "Apple hat am 10. Juli eine schnelle Sicherheitsmaßnahme für iOS 16.5.1 und macOS 13.4.1 veröffentlicht, sie kurz danach aber wieder zurückgezogen. Gründe hierfür waren Probleme mit der Darstellung von Webseiten in Safari. Apple versprach, ein fehlerbereinigte…",
"url": "https://stadt-bremerhaven.de/schnelle-sicherheitsmassnahme-update-fuer-ios-16-5-1-ist-wieder-da/",
"urlToImage": "https://stadt-bremerhaven.de/wp-content/uploads/2023/07/rsr-entfernen.jpg",
"publishedAt": "2023-07-13T04:20:21Z",
"content": "Apple hat am 10. Juli eine schnelle Sicherheitsmaßnahme für iOS 16.5.1 und macOS 13.4.1 veröffentlicht, sie kurz danach aber wieder zurückgezogen. Gründe hierfür waren Probleme mit der Darstellung vo… [+2523 chars]"
},
{
"source": {
"id": null,
"name": "Caschys Blog"
},
"author": "caschy",
"title": "iCloud-Passwörter: Mit macOS Sonoma auch für andere Browser",
"description": "Mac-Nutzer kennen vermutlich das Problem: Die Mac-interne Passwortverwaltung hat sich seit macOS Ventura etwas gemausert, spielt aber dennoch nur mit dem Browser Safari richtig gut zusammen. Andere Browser hatten da bislang keinen Zugriff. Anders sieht es unt…",
"url": "https://stadt-bremerhaven.de/icloud-passwoerter-mit-macos-sonoma-auch-fuer-andere-browser/",
"urlToImage": "https://stadt-bremerhaven.de/wp-content/uploads/2023/07/icloud.jpg",
"publishedAt": "2023-07-13T05:07:03Z",
"content": "Mac-Nutzer kennen vermutlich das Problem: Die Mac-interne Passwortverwaltung hat sich seit macOS Ventura etwas gemausert, spielt aber dennoch nur mit dem Browser Safari richtig gut zusammen. Andere B… [+1285 chars]"
},
{
"source": {
"id": null,
"name": "Caschys Blog"
},
"author": "caschy",
"title": "Googles KI Bard jetzt mit neuen Funktionen in Deutschland verfügbar",
"description": "Nach ChatGPT dürfen nun auch deutsche Nutzer Googles KI Bard nutzen. Hierbei handelt es sich um ein KI-Experiment in der Anfangsphase, das die Interaktion mit generativer KI ermöglicht. Mit Bard möchte Google Anwendern dabei helfen, mit Neugier Neues zu erkun…",
"url": "https://stadt-bremerhaven.de/googles-ki-bard-jetzt-mit-neuen-funktionen-in-deutschland-verfuegbar/",
"urlToImage": "https://stadt-bremerhaven.de/wp-content/uploads/2023/05/Google_IO_Bard_Keyword_Header_Op.width-1600.format-webp.jpg",
"publishedAt": "2023-07-13T07:00:07Z",
"content": "Nach ChatGPT dürfen nun auch deutsche Nutzer Googles KI Bard nutzen. Hierbei handelt es sich um ein KI-Experiment in der Anfangsphase, das die Interaktion mit generativer KI ermöglicht. Mit Bard möch… [+4406 chars]"
},
{
"source": {
"id": null,
"name": "Caschys Blog"
},
"author": "André Westphal",
"title": "Autorenstreik in Hollywood: Studios wollen die Situation vorerst aussitzen",
"description": "In Hollywood läuft weiterhin der große Autorenstreik und es könnte auch zu einem Streik der Schauspieler-Gewerkschaft SAG-AFTRA (Screen Actors Guild – American Federation of Television and Radio Artists) kommen. Doch wie Deadline berichtet, soll das die Studi…",
"url": "https://stadt-bremerhaven.de/autorenstreik-in-hollywood-studios-wollen-die-situation-vorerst-aussitzen/",
"urlToImage": "https://stadt-bremerhaven.de/wp-content/uploads/2023/05/Hollywood.jpg",
"publishedAt": "2023-07-13T08:30:25Z",
"content": "In Hollywood läuft weiterhin der große Autorenstreik und es könnte auch zu einem Streik der Schauspieler-Gewerkschaft SAG-AFTRA (Screen Actors Guild – American Federation of Television and Radio Arti… [+2241 chars]"
},
{
"source": {
"id": null,
"name": "Frandroid"
},
"author": "Hugo Bernard",
"title": "watchOS 10 arrive en bêta publique : comment mettre à jour votre Apple Watch",
"description": "Après une bêta à destination des développeurs, Apple lance la première bêta publique de watchOS 10. Cette version du système d'exploitation des Apple Watch peut être installée par n'importe qui. On rappelle les nouveautés qui arrivent avec watchOS 10.",
"url": "https://www.frandroid.com/os/watchos/1744901_watchos-10-arrive-en-beta-publique-comment-mettre-a-jour-votre-apple-watch",
"urlToImage": "https://images.frandroid.com/wp-content/uploads/2022/09/apple-watch-series-8-6-copie.jpg",
"publishedAt": "2023-07-13T10:20:32Z",
"content": "Après une bêta à destination des développeurs, Apple lance la première bêta publique de watchOS 10. Cette version du système d'exploitation des Apple Watch peut être installée par n'importe qui. On r… [+2354 chars]"
},
{
"source": {
"id": null,
"name": "Frandroid"
},
"author": "Hugo Bernard",
"title": "Vous avez une PS4 ou une PS5 ? Profitez d’Apple TV+ gratuitement pendant six mois",
"description": "Apple et Sony s'associent pour proposer une offre d'essai gratuite à Apple TV+. Les propriétaires de PlayStation 4 ou de PlayStation 5 peuvent gratuitement profiter du service de SVoD durant six mois.",
"url": "https://www.frandroid.com/marques/sony/1744645_vous-avez-une-ps4-ou-une-ps5-profitez-dapple-tv-gratuitement-pendant-six-mois",
"urlToImage": "https://images.frandroid.com/wp-content/uploads/2020/11/p1099243-scaled-e1604669009283.jpg",
"publishedAt": "2023-07-13T08:47:45Z",
"content": "Apple et Sony s'associent pour proposer une offre d'essai gratuite à Apple TV+. Les propriétaires de PlayStation 4 ou de PlayStation 5 peuvent gratuitement profiter du service de SVoD durant six mois… [+1670 chars]"
},
{
"source": {
"id": null,
"name": "Frandroid"
},
"author": "Hugo Bernard",
"title": "Vous pouvez désormais installer macOS Sonoma en bêta, voici les nouveautés",
"description": "Apple vient de lancer la bêta publique de macOS Sonoma et ajoute par la même occasion des nouveautés sur cette version. Plus besoin donc de s'enregistrer en tant que développeur auprès d'Apple.",