-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleOutput.json
1009 lines (1009 loc) · 92.8 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": 13282,
"articles": [
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Reuters",
"title": "Tesla launches Shanghai megapack battery project: Chinese state media",
"description": "The project is capable of producing 10,000 megapacks per annum, and the ceremony was held in Shanghai, the official Xinhua News Agency reported.",
"url": "https://economictimes.indiatimes.com/tech/technology/tesla-launches-shanghai-megapack-battery-project-chinese-state-media/articleshow/106201828.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-106201903,width-1200,height-630,imgsize-49784,overlay-ettech/photo.jpg",
"publishedAt": "2023-12-22T05:46:37Z",
"content": "Tesla on Friday launched its new megapack battery manufacturing plant in Shanghai with a ceremony for the purchase of the land for the project, Chinese state media reported.The project is capable of … [+1211 chars]"
},
{
"source": { "id": null, "name": "Www.gva.be" },
"author": "adb",
"title": "CEO achter Ozempic is persoon van het jaar volgens Financial Times",
"description": "De CEO van Novo Nordisk, het Deense farmabedrijf achter Ozempic, is uitgeroepen tot persoon van het jaar door de Britse krant Financial Times. Lars Fruergaard Jørgensen wordt geprezen voor zijn pionierswerk dat een diepe impact kan hebben op meerdere vlakken.",
"url": "https://www.gva.be/cnt/dmf20231222_92062403",
"urlToImage": "https://static.gva.be/Assets/Images_Upload/2023/12/22/fbb1822b-c3cd-40a4-8534-c5d6177036e8.jpg?maxheight=460&maxwidth=629",
"publishedAt": "2023-12-22T05:43:27Z",
"content": "De CEO van Novo Nordisk, het Deense farmabedrijf achter Ozempic, is uitgeroepen tot persoon van het jaar door de Britse krant Financial Times. Lars Fruergaard Jørgensen wordt geprezen voor zijn pioni… [+2094 chars]"
},
{
"source": { "id": null, "name": "[Removed]" },
"author": null,
"title": "[Removed]",
"description": "[Removed]",
"url": "https://removed.com",
"urlToImage": null,
"publishedAt": "1970-01-01T00:00:00Z",
"content": "[Removed]"
},
{
"source": { "id": null, "name": "Thairath.co.th" },
"author": null,
"title": "Hyperloop ยังไกลเกินจริง ผู้พัฒนาประกาศหยุดกิจการทำมาตั้งนาน แต่ใช้งานไม่ได้จริง",
"description": "ไฮเปอร์ลูป วัน (Hyperloop One) สตาร์ทอัพจากแคลิฟอร์เนียที่ Richad Branson เจ้าของ Virgin ร่วมลงทุน ผู้พยายามสร้างรถไฟฟ้าความเร็วสูงผ่านท่อใต้ดิน ปฏิวัติวงการขนส่งมวลชน ประกาศยุติกิจการแล้วหลังไม่สามารถสร้างรถไฟไฮเปอร์ลูปให้ใช้งานได้จริง",
"url": "https://www.thairath.co.th/money/tech_innovation/tech_companies/2749745",
"urlToImage": "https://static.thairath.co.th/media/dFQROr7oWzulq5Fa5LJPzdtNzMz8Ab0zxjh9WcDHA7ge7NZZHTp3QoLKybdLndrygMY.jpg",
"publishedAt": "2023-12-22T05:37:00Z",
"content": "Hyperloop One DP World 31 \r\n Hyperloop One 7 Hyperloop One \r\n Hyperloop One \r\nHyperloop One Elon Musk SpaceX Tesla Boring Company 2013 \r\n Hyperloop One Hyperloop Technologies 2014 Brogan BamBrogan … [+458 chars]"
},
{
"source": { "id": null, "name": "STERN.de" },
"author": "STERN.de",
"title": "Elektro-Autos: Elektroautobauer Tesla will beim Fabrikausbau Tempo machen",
"description": "Die E-Auto-Fabrik von Tesla bei Berlin wird im März zwei Jahre alt. Während die Produktion noch hochfährt, will Tesla parallel den geplanten Ausbau vorantreiben und wartet auf die erste Genehmigung.",
"url": "https://www.stern.de/gesellschaft/regional/berlin-brandenburg/elektro-autos--elektroautobauer-tesla-will-beim-fabrikausbau-tempo-machen-34309004.html",
"urlToImage": "https://image.stern.de/34309006/t/ZO/v2/w1440/r1.7778/-/22--urnnewsmldpacom2009010123122299381747v3w800h600l683t294r1847b1567jpeg---4cd58979a8aa179a.jpg",
"publishedAt": "2023-12-22T05:36:53Z",
"content": "Die E-Auto-Fabrik von Tesla bei Berlin wird im März zwei Jahre alt. Während die Produktion noch hochfährt, will Tesla parallel den geplanten Ausbau vorantreiben und wartet auf die erste Genehmigung.\r… [+3589 chars]"
},
{
"source": { "id": null, "name": "Ixbt.com" },
"author": "[email protected] (Jin)",
"title": "Крупнейший отзыв года охватывает более 4,5 млн Honda Accord, Civic, CR-V, HR-V и Acura по всему миру",
"description": "Honda Motor отзывает около 4,5 миллионов автомобилей по всему миру из-за риска отказа топливного насоса, о чем сообщает Reuters. Отзыв включает в себя 2,54 миллиона автомобилей в США и происходит после того, как автопроизводитель ранее отозвал 628 000 автомоб…",
"url": "https://www.ixbt.com/news/2023/12/22/4-5-honda-accord-civic-cr-v-hr-v-acura.html",
"urlToImage": "https://www.ixbt.com/img/n1/news/2023/11/5/2021-honda-accord-sport-2-0t-15_large.png",
"publishedAt": "2023-12-22T05:32:00Z",
"content": "Honda Motor 4,5 - , Reuters.\r\n 2,54 , 628 000 2021 136 000 2020 . Honda .\r\n Honda , , (NHTSA). Honda .\r\n Honda , , 2018 4042 . , Honda Accord, Civic, CR-V, HR-V 2018-2020 , Insight, Ridgeline, Odysse… [+122 chars]"
},
{
"source": { "id": null, "name": "Securitylab.ru" },
"author": "Alexander Antipov",
"title": "Битва за данные: Agent Tesla успешно заражает компьютеры через многолетнюю уязвимость в Microsoft Excel",
"description": "Старая проблема – качественно новые возможности для разрушительной атаки.",
"url": "https://www.securitylab.ru/news/544789.php",
"urlToImage": "https://www.securitylab.ru/upload/iblock/af1/8vuigrbyj7lzhnlj2tcuuir4ltnidkzc.jpg",
"publishedAt": "2023-12-22T05:30:00Z",
"content": ": Agent Tesla Microsoft Excel\r\n08:30 / 22 , 20232023-12-22T08:30:00+03:00 .\r\nMicrosoft Office, , Agent Tesla , -, FTP-. , . VPN-.\r\n\" \r\ndata-html=\"true\" data-original-title=\"Agent Tesla\"\r\n>Agent Te… [+209 chars]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "Sanjay Sipahimalani",
"title": "Netflixâs âLeave the World Behindâ leaves the novel behind",
"description": "The screen version of Rumaan Alamâs accomplished novel Leave the World Behind is a disappointment in more ways than one.",
"url": "https://www.moneycontrol.com/news/trends/lifestyle/netflix-leave-the-world-behind-review-11942191.html",
"urlToImage": "https://images.moneycontrol.com/static-mcnews/2023/12/Julia-Roberts-in-Leave-the-World-Behind-Screengrab-YouTube-Netflix-770x433.jpg",
"publishedAt": "2023-12-22T05:28:49Z",
"content": "It can be a mugs game to compare a screen adaptation with the book its based on. If it takes liberties, theres a chorus of cries from those who loved the original. Too faithful, and it risks being di… [+4562 chars]"
},
{
"source": { "id": null, "name": "Moneycontrol" },
"author": "Reuters",
"title": "Tesla launches Shanghai megapack battery project - Chinese state media",
"description": "The project is capable of producing 10,000 megapacks per annum, and the ceremony was held in Shanghai, the official Xinhua News Agency reported.",
"url": "https://www.moneycontrol.com/news/business/tesla-launches-shanghai-megapack-battery-project-chinese-state-media-11942261.html",
"urlToImage": "https://images.moneycontrol.com/static-mcnews/2023/08/Tesla-770x433.jpg",
"publishedAt": "2023-12-22T05:24:10Z",
"content": "BEIJING/SHANGHAI: Tesla on Friday launched its new megapack battery manufacturing plant in Shanghai with a ceremony for the purchase of the land for the project, Chinese state media reported.\r\nThe pr… [+795 chars]"
},
{
"source": { "id": null, "name": "Hbvl.be" },
"author": "adb",
"title": "CEO achter Ozempic is persoon van het jaar volgens Financial Times",
"description": "De CEO van Novo Nordisk, het Deense farmabedrijf achter Ozempic, is uitgeroepen tot persoon van het jaar door de Britse krant Financial Times. Lars Fruergaard Jørgensen wordt geprezen voor zijn pionierswerk dat een diepe impact kan hebben op meerdere vlakken.",
"url": "https://www.hbvl.be/cnt/dmf20231222_91916115",
"urlToImage": "https://static.hbvl.be/Assets/Images_Upload/2023/12/22/fbb1822b-c3cd-40a4-8534-c5d6177036e8.jpg?maxheight=460&maxwidth=629",
"publishedAt": "2023-12-22T05:19:05Z",
"content": "De CEO van Novo Nordisk, het Deense farmabedrijf achter Ozempic, is uitgeroepen tot persoon van het jaar door de Britse krant Financial Times. Lars Fruergaard Jørgensen wordt geprezen voor zijn pioni… [+2395 chars]"
},
{
"source": { "id": null, "name": "Diepresse.com" },
"author": "Christoph Zotter",
"title": "Mit Populismus wird sich China kaum beeindrucken lassen",
"description": "Die Herausforderung der anrollenden E-Autos aus China ist größer als ein paar Dienstwagen.",
"url": "https://www.diepresse.com/17937993/mit-populismus-wird-sich-china-kaum-beeindrucken-lassen",
"urlToImage": "https://img.diepresse.com/public/incoming/4muv5w-BYD-CHINA/alternates/DPR_SOCIAL_MEINUNG/BYD-CHINA",
"publishedAt": "2023-12-22T05:15:38Z",
"content": "Die Herausforderung der anrollenden E-Autos aus China ist größer als ein paar Dienstwagen. \r\nDer österreichische Staat kauft also chinesische E-Autos. Zumindest vielleicht. Und zwar nur, wenn sie au… [+2244 chars]"
},
{
"source": { "id": null, "name": "Novinky.cz" },
"author": "Ondřej Mára",
"title": "Francie upravuje dotace na elektromobily, dotknou se hlavně aut z Číny",
"description": "Nová pravidla zohledňují emise CO2 vznikající při výrobě nových elektromobilů, což výrazně omezí podporu vozů vyráběných v Číně, kde automobilový průmysl spoléhá na elektřinu z uhelných elektráren.",
"url": "https://www.novinky.cz/clanek/auto-francie-upravuje-dotace-na-elektromobily-dotknou-se-hlavne-aut-z-ciny-40454998",
"urlToImage": "https://d15-a.sdn.cz/d_15/c_img_QJ_w/h88qc/mg4-mg.jpeg?fl=cro,0,0,5472,3078%7Cres,1200,,1%7Cwebp,75",
"publishedAt": "2023-12-22T05:05:00Z",
"content": "Francie upravila podmínky, díky kterým mohou soukromí zákazníci získat dotace na poízení nových elektromobil. Ze seznamu voz, na které je moné dotaci získat, pitom celkem jasn vyplývá, e francouzská … [+2219 chars]"
},
{
"source": { "id": null, "name": "Cnews.ru" },
"author": null,
"title": "Вымогатели, утечки, фишинг: эксперты F.A.C.C.T. назвали основные киберугрозы 2023 года",
"description": "Компания F.A.С.С.T., российский разработчик технологий для борьбы с киберпреступлениями, назвала основные вызовы...",
"url": "https://safe.cnews.ru/news/line/2023-12-22_vymogateliutechkifishing",
"urlToImage": "https://www.cnews.ru/img/design2008/logocnews_f.png",
"publishedAt": "2023-12-22T05:00:00Z",
"content": "F.A...T., , , 2023 . - : 2023 . 2,5 , 321 . 2023 . Telegram- 246 , 29 221 , . CNews F.A...T.\r\n : « »\r\n F.A...T., 12 2023 . - 2023 . 160% . - , , , .\r\n 2023 . 53 . «» Comet ( Shadow), 321 . \r\n Comet (… [+744 chars]"
},
{
"source": { "id": null, "name": "Pravda.sk" },
"author": "Martin Domček",
"title": "Opäť bez francúzov: Toto je 15 najviac predávaných áut na Slovensku",
"description": "Už niet žiadnej pochybnosti o tom, že najpredávanejším autom tohto roku bude na Slovensku Škoda Octavia.",
"url": "https://auto.pravda.sk/magazin/clanok/693561-opat-bez-francuzov-15-najpredavanejsich-aut-na-slovensku-za-november-a-11-mesiacov/",
"urlToImage": "http://ipravda.sk/res/2023/11/29/thumbs/dacia-duster-2023_43-clanokW.jpg",
"publishedAt": "2023-12-22T05:00:00Z",
"content": "U niet iadnej pochybnosti o tom, e najpredávanejím autom tohto roku bude na Slovensku koda Octavia. Roný predaj elektromobilov u po 11 mesiacoch po prvýkrát prekroil hranicu 2 000 kusov. A to v tom í… [+5020 chars]"
},
{
"source": { "id": null, "name": "Fast Company" },
"author": "and Kim Kelly",
"title": "The worst union busters of 2023",
"description": "This year was an exciting one for labor, marked by high-profile strikes and stunning worker victories. But it wasn’t all bread and roses. The union busters stayed plenty busy, too. There are a lot of ways to bust a union; not all of them are legal, but the ri…",
"url": "https://www.fastcompany.com/91001266/the-worst-union-busters-of-2023",
"urlToImage": "https://images.fastcompany.net/image/upload/w_1280,f_auto,q_auto,fl_lossy/wp-cms/uploads/2023/12/p-1-91001266-union-busters-of-2023.jpg",
"publishedAt": "2023-12-22T05:00:00Z",
"content": "This year was an exciting one for labor, marked by high-profile strikes and stunning worker victories. But it wasn’t all bread and roses. The union busters stayed plenty busy, too. There are a lot of… [+8029 chars]"
},
{
"source": { "id": null, "name": "Livemint" },
"author": "Livemint",
"title": "Elon Musk lashes out at state of US financial markets says, ‘immense pressure on companies to…’",
"description": "Musk discusses the benefits of keeping Tesla public, including access to capital, but also acknowledges the pressure to avoid disappointing shareholders and the mismatch between investor time horizons and a company's long-term vision.",
"url": "https://www.livemint.com/companies/people/elon-musk-lashes-out-at-state-of-us-financial-markets-says-immense-pressure-on-companies-to-tesla-x-twitter-spacex-11703216936283.html",
"urlToImage": "https://www.livemint.com/lm-img/img/2023/12/22/1600x900/TESLA-BATTERIES--1_1703220280475_1703220315299.JPG",
"publishedAt": "2023-12-22T04:46:59Z",
"content": "Tesla CEO Elon Musk has lashed out at the state of the US financial markets, citing the intense regulatory pressure faced by public companies such as Tesla. He also noted how shareholder pressure is … [+2614 chars]"
},
{
"source": { "id": null, "name": "Jalopnik" },
"author": "Logan Carter",
"title": "Hyperloop Ultra-High Speed Transport Is Hyper Dead",
"description": "Hyperloop One is the company born to bring Elon Musk’s much hyped contention that it would be possible to engineer underground or above-ground virtually airless tubes to facilitate ultra-high speed mass transit to life. That dream now appears dead as the comp…",
"url": "https://jalopnik.com/hyperloop-ultra-high-speed-transport-is-hyper-dead-1851119429",
"urlToImage": "https://i.kinja-img.com/image/upload/c_fill,h_675,pg_1,q_80,w_1200/be5099bb957de642601a2567af3f204b.jpg",
"publishedAt": "2023-12-22T04:45:00Z",
"content": "Hyperloop One is the company born to bring Elon Musks much hyped contention that it would be possible to engineer underground or above-ground virtually airless tubes to facilitate ultra-high speed ma… [+2687 chars]"
},
{
"source": { "id": null, "name": "Freerepublic.com" },
"author": "Yahoo News",
"title": "Austin, we have a problem! Tesla descends into battery hell",
"description": "AUSTIN, Texas (Reuters) - Elon Musk says prototypes are easy, production is hell. And when it comes to the long-awaited Cybertruck, Tesla's hell is its pioneering 4680 battery. Tesla delivered the first of its futuristic stainless steel-plated electric pickup…",
"url": "https://freerepublic.com/focus/f-chat/4205098/posts",
"urlToImage": null,
"publishedAt": "2023-12-22T04:35:55Z",
"content": "Skip to comments.\r\nAustin, we have a problem! Tesla descends into battery hellYahoo News ^Posted on 12/21/2023 8:35:55 PM PST by Ronaldus Magnus III\r\nAUSTIN, Texas (Reuters) - Elon Musk says prototyp… [+1462 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "insideevs.com",
"title": "Tesla Knew It Installed Defective Parts In Its EVs. It Charged Customers For Repairs Anyway",
"description": "Reports about Tesla’s questionable build quality have popped up occasionally over the years, but a new investigation reveals that the American automaker actively sought to hide the proverbial trash under the rug. It blamed customers for vehicle abuse and prio…",
"url": "https://biztoc.com/x/dc60d76271dd6545",
"urlToImage": "https://c.biztoc.com/p/dc60d76271dd6545/og.webp",
"publishedAt": "2023-12-22T04:30:06Z",
"content": "Reports about Teslas questionable build quality have popped up occasionally over the years, but a new investigation reveals that the American automaker actively sought to hide the proverbial trash un… [+287 chars]"
},
{
"source": { "id": null, "name": "Www.nzz.ch" },
"author": "Günther Meier (GM)",
"title": "Das Ende des Tesla-Privilegs: Liechtenstein will E-Autos künftig nach Gewicht und Leistung besteuern",
"description": "Liechtenstein plant eine komplette Neuordnung der Motorfahrzeugsteuer. Elektroautos sollen künftig gleich behandelt werden wie Benziner. Stärker zur Kasse gebeten werden sollen auch Halter von besonders leistungsstarken SUV- und Sportboliden.",
"url": "https://www.nzz.ch/schweiz/das-ende-des-tesla-privilegs-liechtenstein-will-e-autos-kuenftig-nach-gewicht-und-leistung-besteuern-ld.1771190",
"urlToImage": "https://img.nzz.ch/2023/12/18/962ad105-6dc3-4f35-845b-87c328b52cee.jpeg?width=1200&height=675&fit=bound&quality=75&auto=webp&crop=7164,4030,x0,y553&wmark=nzz",
"publishedAt": "2023-12-22T04:30:00Z",
"content": "Von den 31 000 Personenwagen, die in Liechtenstein zugelassen sind, machen die Elektroautos einen Anteil von 4,2 Prozent aus.\r\nIn Liechtenstein sind Elektro-, Erdgas- und Hybridfahrzeuge seit 1994 st… [+5014 chars]"
},
{
"source": { "id": null, "name": "Investing.com" },
"author": "Reuters",
"title": "Tesla launches Shanghai megapack battery project - Chinese state media",
"description": "Tesla launches Shanghai megapack battery project - Chinese state media",
"url": "https://www.investing.com/news/stock-market-news/tesla-launches-shanghai-megapack-battery-project--chinese-state-media-3262074",
"urlToImage": "https://i-invdn-com.investing.com/news/LYNXMPEE6B0L1_L.jpg",
"publishedAt": "2023-12-22T04:25:39Z",
"content": "BEIJING/SHANGHAI (Reuters) -Tesla on Friday launched its new megapack battery manufacturing plant in Shanghai with a ceremony for the purchase of the land for the project, Chinese state media reporte… [+820 chars]"
},
{
"source": { "id": null, "name": "Yahoo Entertainment" },
"author": null,
"title": "Tesla launches Shanghai megapack battery project - Chinese state media",
"description": null,
"url": "https://consent.yahoo.com/v2/collectConsent?sessionId=1_cc-session_4b0222e8-fdcc-4540-b4a3-123c3ccde1da",
"urlToImage": null,
"publishedAt": "2023-12-22T04:22:10Z",
"content": "Si vous cliquez sur « Tout accepter », nos partenaires (y compris 242 qui font partie du Cadre de transparence et de consentement dIAB) et nous utiliserons également des témoins et vos données person… [+982 chars]"
},
{
"source": { "id": null, "name": "Technews.tw" },
"author": "MoneyDJ",
"title": "伍德調整持股:ARKK 反手買特斯拉、改賣 Coinbase",
"description": "明星基金經理人凱薩琳伍德(Cathie Wood)操盤的方舟旗艦基金「ARK 新興主動型 ETF」(ARK Innovation ETF,代號為 ARKK.US),對特斯拉(Tesla Inc.)開始由賣轉買。 MarketWatch、TheStreet.com等外電報導,根據公告,ARKK 20日...",
"url": "https://finance.technews.tw/2023/12/22/cathie-woods-etfs-are-now-buying-teslas-stock/",
"urlToImage": "https://img.technews.tw/wp-content/uploads/2022/01/04161551/shutterstock_1140629366.jpg",
"publishedAt": "2023-12-22T04:15:23Z",
"content": "Cathie WoodARK ETFARK Innovation ETF ARKK.USTesla Inc.\r\nMarketWatchTheStreet.comARKK 2093,96520247.142,320\r\nARKK7.59%Coinbase Global Inc.10.89%\r\nARKK10ARKK245,1976,330\r\n20ARKK132,782Coinbase2,150133,… [+89 chars]"
},
{
"source": { "id": null, "name": "heise online" },
"author": "Frank Schräer",
"title": "Hochgeschwindigkeitstransport: Hyperloop One hat wohl den Betrieb eingestellt",
"description": "Hyperloop One wollte Hochgeschwindigkeitstransportsysteme in Vakuumtunneln entwickeln, aber mehr als Testfahrten wurden nicht geschafft. Jetzt ist Schluss.",
"url": "https://www.heise.de/news/Hochgeschwindigkeitstransport-Hyperloop-One-hat-wohl-den-Betrieb-eingestellt-9581045.html",
"urlToImage": "https://heise.cloudimg.io/bound/1200x1200/q85.png-lossy-85.webp-lossy-85.foil1/_www-heise-de_/imgs/18/4/5/1/7/4/6/0/Hyperloop_Cargospeed-4f8f65b302607d9a.webp",
"publishedAt": "2023-12-22T04:14:00Z",
"content": "Das US-amerikanische Unternehmen Hyperloop One ist offenbar am Ende. Die Firma wollte futuristische Hochgeschwindigkeitstransportsysteme entwickeln, die Menschen und Güter in Vakuumtunneln enorm schn… [+2828 chars]"
},
{
"source": { "id": null, "name": "Autoblog.com.uy" },
"author": "[email protected] (Rodrigo)",
"title": "Prueba: BYD Seal EV520 AWD (82,56 kWh)",
"description": "<table><tr><td></td></tr><tr><td>Probamos al BYD Seal en su variante más potente y de mayor autonomía, la EV520 AWD.</td></tr>\r\n</table>Probamos al nuevo sedán mediano de BYD, el Seal, en su variante más potente y equipada, la EV520 AWD. Cuenta con dos motore…",
"url": "https://www.autoblog.com.uy/2023/12/prueba-byd-seal-ev520-awd-8256-kwh.html",
"urlToImage": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiifh6FZpLBp7n2qwVKe_Jen7oyXzTL32lRG6lOK_Tm-v1sMLba7qODDYTaukQQ9x4jojpbWmkIeW-km52RhseFfbaCFlvwuxRHvHuAMuFbeI-aCzNblbNgs25fsc8pRwSvFP8KufFn9HNiCPcKFIX1Vge_rKVeL9pTP7gTslOEsl3P5uMzm2h-azFxHi8/w1200-h630-p-k-no-nu/Prueba_%20BYD%20Seal%20EV520%20AWD%20(82,56%20kWh)-084.jpg",
"publishedAt": "2023-12-22T04:09:00Z",
"content": "Probamos al nuevo sedán mediano de BYD, el Seal, en su variante más potente y equipada, la EV520 AWD. Cuenta con dos motores 390 kW (523 cv), junto a una batería con una capacidad de 82,56 kWh, que l… [+29006 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Reuters",
"title": "Austin, we have a problem! Tesla descends into battery hell",
"description": "Tesla is still a long way off the production pace of its Cybertruck, and one of the main bottlenecks is the speed it can make the 4680 batteries used in the Cybertruck with its new dry-coating technology.",
"url": "https://economictimes.indiatimes.com/tech/technology/austin-we-have-a-problem-tesla-descends-into-battery-hell/articleshow/106198963.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-106199010,width-1200,height-630,imgsize-297514,overlay-ettech/photo.jpg",
"publishedAt": "2023-12-22T04:08:28Z",
"content": "Elon Musk says prototypes are easy, production is hell. And when it comes to the long-awaited Cybertruck, Tesla's hell is its pioneering 4680 battery.Tesla delivered the first of its futuristic stain… [+7145 chars]"
},
{
"source": { "id": null, "name": "STERN.de" },
"author": "STERN.de",
"title": "Elektro-Autos: Tesla hofft auf schnelles Tempo für Ausbau der Fabrik",
"description": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.",
"url": "https://www.stern.de/gesellschaft/regional/berlin-brandenburg/elektro-autos--tesla-hofft-auf-schnelles-tempo-fuer-ausbau-der-fabrik-34309004.html",
"urlToImage": "https://image.stern.de/34309006/t/tI/v1/w1440/r1.7778/-/22--urnnewsmldpacom2009010123122299381747v3w800h600l683t294r1847b1567jpeg---4cd58979a8aa179a.jpg",
"publishedAt": "2023-12-22T04:06:57Z",
"content": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.\r\n… [+1908 chars]"
},
{
"source": { "id": null, "name": "STERN.de" },
"author": "STERN.de",
"title": "Elektro-Autos: Tesla hofft auf schnelles Tempo für Ausbau der Fabrik",
"description": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.",
"url": "https://www.stern.de/gesellschaft/regional/berlin-brandenburg/elektro-autos--tesla-hofft-auf-schnelles-tempo-fuer-ausbau-der-fabrik-34309004.html",
"urlToImage": "https://image.stern.de/34309006/t/tI/v1/w1440/r1.7778/-/22--urnnewsmldpacom2009010123122299381747v3w800h600l683t294r1847b1567jpeg---4cd58979a8aa179a.jpg",
"publishedAt": "2023-12-22T04:06:57Z",
"content": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.\r\n… [+1908 chars]"
},
{
"source": { "id": null, "name": "DIE WELT" },
"author": "Holger Zschäpitz, Philipp Vetter",
"title": "Die Zukunft der glorreichen Sieben und ein furioses Weihnachtsfinale",
"description": "In der heutigen Folge „Alles auf Aktien“ sprechen die Finanzjournalisten Philipp Vetter und Holger Zschäpitz über schwache Zahlen bei Nike, einen Ausverkauf bei Delivery Hero und das Comeback-Kid am Kryptomarkt.",
"url": "https://www.welt.de/podcasts/alles-auf-aktien/article249189594/Boersen-Podcast-Apple-Nvidia-Tesla-und-Co-Die-Zukunft-der-glorreichen-Sieben.html",
"urlToImage": "https://img.welt.de/img/podcasts/alles-auf-aktien/mobile244546294/4231352447-ci16x9-w1200/vetter-zschae-DWO-Podcast-Teaser-AllesAufAktien-mit-2zu3-vetter-zschaepitz-aw.jpg",
"publishedAt": "2023-12-22T04:06:22Z",
"content": "Außerdem geht es um Micron Technologies, Solana, Bitcoin, Marathon Digital, BASF, Harbor Energy, Apple, Amazon, Alphabet, Meta, Microsoft, Nvidia, Tesla, AMD, Intel, Activision Blizzard.\r\nHier die ak… [+713 chars]"
},
{
"source": { "id": null, "name": "Ithome.com.tw" },
"author": "張明德",
"title": "【高效率GPU I/O躍居次世代AI資料中心重要角色】輝達GPU直連應用架構的進化",
"description": "iThome\r\n\n \r\n在AI應用熱潮之下,作為運算能力源頭的GPU,成為最關鍵的基礎元件。因而GPU規格及運算能力的進展,也成為當前IT基礎設施發展的焦點。\r\n\n但隨著AI規模擴展,GPU應用涉及的I/O資料傳輸架構,已成為影響AI效能的另一項關鍵要素,影響力不下於GPU本身運算能力的發展。\r\n\n首先,GPU只是運算單元,在執行運算工作之前,必須先從儲存與網路單元載入資料,因而載入資料所經由的I/O傳輸通道效率,將直接影響GPU系統的整體效率。無論GPU運算能力如何強大,如果資料傳輸的I/O延遲過大或頻寬不足,…",
"url": "https://www.ithome.com.tw/tech/160491",
"urlToImage": "https://s4.itho.me/sites/default/files/1161-feng_mian_2-960-jpg.jpg",
"publishedAt": "2023-12-22T03:50:47Z",
"content": "AIGPUGPUIT\r\nAIGPUI/OAIGPU\r\nGPUI/OGPUGPUI/OGPUGPUI/O\r\nGPUAIGPUGPUGPUGPUGPUGPUI/O\r\nAIGPUI/OAII/OI/OAITBI/OGPUI/OAI\r\nGPUNvidiaGPUI/OGPUDirectNVLinkNVSwitchGPU\r\nI/ONvidiaGPUNvidiaGPUI/OGPUI/OGPU\r\nGPUDire… [+3184 chars]"
},
{
"source": { "id": "focus", "name": "Focus" },
"author": "DPA",
"title": "Elektro - Tesla hofft auf schnelles Tempo für Ausbau der Fabrik",
"description": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.",
"url": "https://www.focus.de/finanzen/news/elektro-tesla-hofft-auf-schnelles-tempo-fuer-ausbau-der-fabrik_id_259520050.html",
"urlToImage": "https://p6.focus.de/img/finanzen/news/id_259520049/tesla-kritisierte-das-aus-der-kaufpraemie-fuer-e-autos-durch-den-bund..jpg?im=Crop%3D%280%2C146%2C2048%2C1024%29%3BResize%3D%281200%2C627%29&impolicy=perceptual&quality=mediumHigh&hash=20a9133533f7a6ea059f902a35a5c4ba297a0b22c22b81c119b05d1370235fbf",
"publishedAt": "2023-12-22T03:35:05Z",
"content": "Der US-Elektroautobauer Tesla will beim geplanten Ausbau seiner Deutschland-Fabrik Tempo machen. «Wir hoffen, dass im ersten Quartal die Genehmigung für den ersten Teilantrag erteilt wird», sagte der… [+1662 chars]"
},
{
"source": { "id": null, "name": "ArchDaily" },
"author": "Martin Pedersen",
"title": "Bill McKibben on COP28, Maintaining Hope, and Walking in the Woods",
"description": "Discover the challenges of transitioning to renewable energy and building a green grid in the architecture industry. Learn more now.",
"url": "https://www.archdaily.com/1011510/bill-mckibben-on-cop28-maintaining-hope-and-walking-in-the-woods",
"urlToImage": "https://images.adsttc.com/media/images/6585/5e99/a700/7801/7e56/0d2f/large_jpg/bill-mckibben-on-cop28-maintaining-hope-and-walking-in-the-woods_1.jpg?1703239333",
"publishedAt": "2023-12-22T03:30:00Z",
"content": "Courtesy of New York Times\r\nThis article was originally published on Common Edge.\r\nThe biennale UN climate conference, COP28, concluded in Dubai this week with a commitment to the eventual phasing ou… [+7212 chars]"
},
{
"source": { "id": null, "name": "STERN.de" },
"author": "STERN.de",
"title": "Elektro: Tesla hofft auf schnelles Tempo für Ausbau der Fabrik",
"description": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.",
"url": "https://www.stern.de/wirtschaft/news/elektro--tesla-hofft-auf-schnelles-tempo-fuer-ausbau-der-fabrik-34308972.html",
"urlToImage": "https://image.stern.de/34308974/t/iA/v1/w1440/r1.7778/-/22--urnnewsmldpacom2009010123122299381490v3w800h600l89t343r1801b1504jpeg---23bd260056c49f22.jpg",
"publishedAt": "2023-12-22T03:28:14Z",
"content": "Die Fabrik ist nicht mal zwei Jahre alt, da blickt US-Autobauer Tesla auf den geplanten Ausbau. Der Werksleiter sagt, warum er den erwarteten ersten Teil der Genehmigung für einen Meilenstein hält.\r\n… [+1939 chars]"
},
{
"source": { "id": "die-zeit", "name": "Die Zeit" },
"author": "ZEIT ONLINE: News -",
"title": "Elektro: Tesla hofft auf schnelles Tempo für Ausbau der Fabrik",
"description": "Hier finden Sie Informationen zu dem Thema „Elektro“. Lesen Sie jetzt „Tesla hofft auf schnelles Tempo für Ausbau der Fabrik“.",
"url": "https://www.zeit.de/news/2023-12/22/tesla-hofft-auf-schnelles-tempo-fuer-ausbau-der-fabrik",
"urlToImage": "https://img.zeit.de/news/2023-12/22/tesla-hofft-auf-schnelles-tempo-fuer-ausbau-der-fabrik-image-group/wide__1300x731",
"publishedAt": "2023-12-22T03:28:14Z",
"content": "Der US-Elektroautobauer Tesla will beim geplanten Ausbau seiner Deutschland-Fabrik Tempo machen. «Wir hoffen, dass im ersten Quartal die Genehmigung für den ersten Teilantrag erteilt wird», sagte der… [+2387 chars]"
},
{
"source": { "id": null, "name": "Investing.com" },
"author": "Reuters",
"title": "Cybertruck designer says Tesla stainless steel pickup is no experiment",
"description": "Cybertruck designer says Tesla stainless steel pickup is no experiment",
"url": "https://www.investing.com/news/stock-market-news/cybertruck-designer-says-tesla-stainless-steel-pickup-is-no-experiment-3262065",
"urlToImage": "https://i-invdn-com.investing.com/news/Tesla_800x533_L_1613479614.jpg",
"publishedAt": "2023-12-22T03:25:41Z",
"content": "By Nichola Groom and Cath Turner\r\nLOS ANGELES (Reuters) - The angular, polarizing design of the Cybertruck will help boost the Tesla (NASDAQ:TSLA) brand, the electric vehicle maker's chief designer s… [+2165 chars]"
},
{
"source": { "id": null, "name": "CleanTechnica" },
"author": "José Pontes",
"title": "30% Of New Cars In France Now Plugin Electric Cars!",
"description": "1 in 5 cars now sold in November was a BEV Thanks to upcoming subsidy changes, plugin vehicles continue to ... [continued]\nThe post 30% Of New Cars In France Now Plugin Electric Cars! appeared first on CleanTechnica.",
"url": "https://cleantechnica.com/2023/12/21/30-of-new-cars-in-france-now-plugin-electric-cars-2/",
"urlToImage": "https://cleantechnica.com/wp-content/uploads/2023/12/France-EV-Sales-Report-November-2023.png",
"publishedAt": "2023-12-22T03:23:28Z",
"content": "Sign up for daily news updates from CleanTechnica on email. Or follow us on Google News!\r\n1 in 5 cars now sold in November was a BEV\r\nThanks to upcoming subsidy changes, plugin vehicles continue to r… [+12258 chars]"
},
{
"source": { "id": null, "name": "CNA" },
"author": null,
"title": "Cybertruck designer says Tesla stainless steel pickup is no experiment",
"description": "LOS ANGELES : The angular, polarizing design of the Cybertruck will help boost the Tesla brand, the electric vehicle maker's chief designer said on Thursday, adding that the pickup was no experiment.\"Love it or hate it, it's a conversation starter, and it get…",
"url": "https://www.channelnewsasia.com/business/cybertruck-designer-says-tesla-stainless-steel-pickup-no-experiment-4006306",
"urlToImage": "https://onecms-res.cloudinary.com/image/upload/s--fXERrxLQ--/fl_relative,g_south_east,l_one-cms:core:watermark:reuters,w_0.1/f_auto,q_auto/c_fill,g_auto,h_676,w_1200/v1/one-cms/core/2023-12-22t032233z_1_lynxmpejbl01s_rtroptp_3_tesla-batteries.jpg?itok=u75rffyS",
"publishedAt": "2023-12-22T03:22:33Z",
"content": "LOS ANGELES : The angular, polarizing design of the Cybertruck will help boost the Tesla brand, the electric vehicle maker's chief designer said on Thursday, adding that the pickup was no experiment.… [+2207 chars]"
},
{
"source": { "id": null, "name": "Yahoo Entertainment" },
"author": null,
"title": "Cybertruck designer says Tesla stainless steel pickup is no experiment",
"description": null,
"url": "https://consent.yahoo.com/v2/collectConsent?sessionId=1_cc-session_f6fc9660-7ba5-4786-9549-5e6a1c3a7140",
"urlToImage": null,
"publishedAt": "2023-12-22T03:22:33Z",
"content": "Si vous cliquez sur « Tout accepter », nos partenaires (y compris 242 qui font partie du Cadre de transparence et de consentement dIAB) et nous utiliserons également des témoins et vos données person… [+982 chars]"
},
{
"source": { "id": null, "name": "Marketscreener.com" },
"author": null,
"title": "Cybertruck designer says Tesla stainless steel pickup is no experiment",
"description": "(marketscreener.com) The angular, polarizing\ndesign of the Cybertruck will help boost the Tesla brand, the\nelectric vehicle maker's chief designer said on Thursday, adding\nthat the pickup was no experiment.\n \"Love it or hate it, it's a conversation starter, a…",
"url": "https://www.marketscreener.com/quote/stock/TESLA-INC-6344549/news/Cybertruck-designer-says-Tesla-stainless-steel-pickup-is-no-experiment-45622126/",
"urlToImage": "https://www.marketscreener.com/images/reuters/2023-12/2023-12-21T111607Z_1_LYNXMPEJBK0BS_RTROPTP_3_TESLA-BATTERIES.JPG",
"publishedAt": "2023-12-22T03:20:18Z",
"content": "LOS ANGELES, Dec 21 (Reuters) - The angular, polarizing\r\ndesign of the Cybertruck will help boost the Tesla brand, the\r\nelectric vehicle maker's chief designer said on Thursday, adding\r\nthat the pick… [+2246 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "wsj.com",
"title": "Tesla Designer: Cybertruck’s Funky Design Gives It an Edge",
"description": "Tesla ’s top designer said the recently launched Cybertruck will test whether a pickup with unconventional looks can gain traction in a category known for meat-and-potatoes styling. “Some people’s trash is other people’s treasure,” Franz von Holzhausen said o…",
"url": "https://biztoc.com/x/7a61de3bf7a2c94e",
"urlToImage": "https://c.biztoc.com/p/7a61de3bf7a2c94e/s.webp",
"publishedAt": "2023-12-22T03:06:13Z",
"content": "Tesla s top designer said the recently launched Cybertruck will test whether a pickup with unconventional looks can gain traction in a category known for meat-and-potatoes styling.Some peoples trash … [+231 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "finance.yahoo.com",
"title": "Musk Blasts Public Markets, Says Indexing Has ‘Gone Too Far’",
"description": "Elon Musk is lashing out at the state of US financial markets. • None Hyperloop One to Shut Down After Failing to Reinvent Transit • None US Inflation Report to Show Fed’s Battle Is Now All But Complete In a wide-ranging talk with ARK Investment Management’s …",
"url": "https://biztoc.com/x/9340cf40638929f1",
"urlToImage": "https://c.biztoc.com/p/9340cf40638929f1/s.webp",
"publishedAt": "2023-12-22T03:06:06Z",
"content": "Elon Musk is lashing out at the state of US financial markets.None Hyperloop One to Shut Down After Failing to Reinvent TransitNone US Inflation Report to Show Feds Battle Is Now All But CompleteIn a… [+305 chars]"
},
{
"source": { "id": null, "name": "Technews.tw" },
"author": "Chen Kobe",
"title": "募資 4.5 億美元的超級高鐵 Hyperloop One 準備關門大吉",
"description": "曾經轟動一時的超級高鐵新創公司 Hyperloop One,現正準備裁撤幾乎所有員工,並將剩餘資產變賣出售,這個 4.5 億美元資金堆積起來的夢想歷經十年,正式宣告破滅。 由杜拜環球港務和維珍集團合力投資的 Hyperloop One,從 2014 年開始販售夢想,在募集了 4.5 億美元之後,他們...",
"url": "https://technews.tw/2023/12/22/hyperloop-one-is-closing/",
"urlToImage": "https://img.technews.tw/wp-content/uploads/2020/11/17115315/107791060_2891256737768139_8928663621552662713_o-e1605585208138.jpg",
"publishedAt": "2023-12-22T02:58:28Z",
"content": "Hyperloop One 4.5 \r\n Hyperloop One 2014 4.5 \r\nhyperloop 2013 Elon Musk Tesla SpaceX Hyperloop Alpha 1,000 \r\n The Boring Company hyperloop 20142018 Hyperloop One\r\nHyperloop One \r\n2013 Brogan BamBrogan… [+248 chars]"
},
{
"source": { "id": "bbc-news", "name": "BBC News" },
"author": "https://www.facebook.com/bbcnews",
"title": "Tech Trends 2024: AI and electric vehicle deals",
"description": "From an AI slowdown to humanoid robots doing real work - tech trends to watch out for in 2024.",
"url": "https://www.bbc.co.uk/news/business-67273155",
"urlToImage": "https://ichef.bbci.co.uk/news/1024/branded_news/D86E/production/_131660455_gettyimages-1258475356.jpg",
"publishedAt": "2023-12-22T02:27:54Z",
"content": "In the tech world, 2023 will perhaps be remembered as the year that generative AI went mainstream. \r\nFrom computer code, to artwork, to essays, generative AI systems can quickly create a range of con… [+6390 chars]"
},
{
"source": { "id": "the-times-of-india", "name": "The Times of India" },
"author": "Reuters",
"title": "Wall Street ends sharply higher, rebounding with a boost from chips",
"description": "All three major U.S. stock posted gains as chips surged, led by Micron Technology after its better-than-expected quarterly forecast, putting the tech-heavy Nasdaq out front.",
"url": "https://economictimes.indiatimes.com/markets/stocks/news/wall-st-ends-sharply-higher-rebounding-with-a-boost-from-chips/articleshow/106195882.cms",
"urlToImage": "https://img.etimg.com/thumb/msid-106195899,width-1200,height-630,imgsize-99680,overlay-etmarkets/photo.jpg",
"publishedAt": "2023-12-22T02:19:10Z",
"content": "U.S. stocks closed higher on Thursday, winning back much of the previous day's losses, as economic data fueled optimism that the Federal Reserve would ease monetary policy and revived investor risk a… [+3120 chars]"
},
{
"source": {
"id": "the-wall-street-journal",
"name": "The Wall Street Journal"
},
"author": "Rebecca Elliott",
"title": "Tesla Designer: Cybertruck’s Funky Design Gives It an Edge",
"description": "The company is embracing the polarizing look of its newest vehicle as a way to draw customers to the brand",
"url": "https://www.wsj.com/business/autos/tesla-cybertruck-design-08c405c3",
"urlToImage": "https://images.wsj.net/im-904488/social",
"publishedAt": "2023-12-22T01:50:58Z",
"content": "Teslas top designer said the recently launched Cybertruck will test whether a pickup with unconventional looks can gain traction in a category known for meat-and-potatoes styling.\r\nSome peoples trash… [+320 chars]"
},
{
"source": { "id": null, "name": "Elespanol.com" },
"author": "Ismael Marinero",
"title": "El genial invento de una adolescente de 14 años contra la sequía: ahorra más de 5 litros por ducha",
"description": "La joven Rani East-Jeffs diseñó y fabricó un prototipo funcional que impide el desperdicio de agua cada vez que alguien abre el grifo para ducharse.",
"url": "https://www.elespanol.com/omicrono/tecnologia/20231222/genial-invento-adolescente-anos-sequia-ahorra-litros-ducha/818168280_0.html",
"urlToImage": "https://s1.elespanol.com/2023/12/18/omicrono/tecnologia/818178795_238522345_1706x960.jpg",
"publishedAt": "2023-12-22T01:46:29Z",
"content": "La sequía sigue afectando a varias comunidades autónomas en España, principalmente Cataluña y Andalucía, donde desde hace meses afrontan restricciones al consumo de agua debido a los peores registros… [+6218 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "wsj.com",
"title": "Tesla Designer: Cybertruck’s Funky Design Gives It an Edge",
"description": "Tesla ’s top designer said the recently launched Cybertruck will test whether a pickup with unconventional looks can gain traction in a category known for meat-and-potatoes styling. “Some people’s trash is other people’s treasure,” Franz von Holzhausen said o…",
"url": "https://biztoc.com/x/16447ae997f8bf86",
"urlToImage": "https://c.biztoc.com/p/16447ae997f8bf86/s.webp",
"publishedAt": "2023-12-22T01:44:07Z",
"content": "Tesla s top designer said the recently launched Cybertruck will test whether a pickup with unconventional looks can gain traction in a category known for meat-and-potatoes styling.Some peoples trash … [+231 chars]"
},
{
"source": { "id": null, "name": "Ozbargain.com.au" },
"author": "Iwantthatbargain",
"title": "50% Discount at Tesla Supercharger at Non Peak Hours at Select Sites",
"description": "For those who are traveling long distance during the holidays, Tesla is offering a 50% lower rate at select Supercharging locations this summer. Plug in before 9 AM or after 9 PM from Friday 22 December 2023 to Sunday 7 January 2024 to access lower rates. Tap…",
"url": "https://www.ozbargain.com.au/node/821957",
"urlToImage": "https://files.ozbargain.com.au/n/57/821957x.jpg?h=40e21392",
"publishedAt": "2023-12-22T01:41:02Z",
"content": "Model Y purchase: Referee gets $375 off & 90 days Enhanced Autopilot. Referrer gets 10,000 credits. Referrer can also earn 100 credits if the referee takes a test drive.\r\nLimit of up to 12 order … [+55 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "aol.com",
"title": "AI will spur more hiring, not less, as it enables ‘more ingenuity per person,’ says top Adobe executive Scott Belsky",
"description": "Artificial intelligence will lead to mass unemployment or create more jobs, depending on who you ask. So which view is right? Few people have better insight into this question than Scott Belsky, Adobe’s chief strategy officer and executive vice president of d…",
"url": "https://biztoc.com/x/5cf3ec8c9ef3d7eb",
"urlToImage": "https://c.biztoc.com/p/5cf3ec8c9ef3d7eb/s.webp",
"publishedAt": "2023-12-22T01:40:06Z",
"content": "Artificial intelligence will lead to mass unemployment or create more jobs, depending on who you ask. So which view is right? Few people have better insight into this question than Scott Belsky, Adob… [+298 chars]"
},
{
"source": { "id": null, "name": "BusinessLine" },
"author": "BL Internet Desk",
"title": "Share Market Highlights 22 December 2023: Sensex climbs 241 pts to settle at 71,106; Nifty closes at 21,349",
"description": "Sensex, Nifty updates 22 December 2023 - Find here all the live updates related to Sensex, Nifty, BSE, NSE, share prices and Indian stock markets for 22 December 2023. -- Sensex, Nifty, Share Prices : Positive global trends propel Sensex and Nifty upward on …",
"url": "https://www.thehindubusinessline.com/markets/stock-market-highlights-22-december-2023/article67662064.ece",
"urlToImage": "https://bl-i.thgim.com/public/incoming/tgsphr/article67656820.ece/alternates/LANDSCAPE_1200/stock%20market%20share%20market%20live%20updates.jpg",
"publishedAt": "2023-12-22T01:33:26Z",
"content": "<li></li>\r\nDecember 22, 2023 16:09Stock markets climb for 2nd day on buying in IT shares\r\nStock markets extended gains for a second day on Friday following buying in IT stocks and firm trends in the … [+45854 chars]"
},
{
"source": { "id": null, "name": "Rolling Stone" },
"author": "Charisma Madarang",
"title": "Elon Musk’s Hyperloop Bites the Dust",
"description": "The futuristic transportation startup is shutting down, adding another blow to the billionaire's growing list of woes",
"url": "https://www.rollingstone.com/culture/culture-news/elon-musk-hyperloop-tesla-1234934812/",
"urlToImage": "https://www.rollingstone.com/wp-content/uploads/2023/12/Elon-Musk-Hyperloop.jpg?w=1600&h=900&crop=1",
"publishedAt": "2023-12-22T01:20:57Z",
"content": "Elon Musk‘s high-profile transportation startup, Hyperloop One, is shuttering its airless tubes.\r\nThe company is laying off employees, selling remaining assets (which include a test track and machine… [+2995 chars]"
},
{
"source": { "id": null, "name": "Xataka.com.mx" },
"author": "Aleyda Ángel",
"title": "Uno de los futuristas sueños de Elon Musk está muerto: Hyperloop One cerrará a finales de este 2023",
"description": "La futurista startup de transporte de Elon Musk, Hyperloop One, cerrará en pocos días, justo a finales de este 2023, de acuerdo con personas familiarizadas con la situación que platicaron con Bloomberg.\n<!-- BREAK 1 -->\nHyperloop One prometió transportar pers…",
"url": "https://www.xataka.com.mx/automovil/uno-futuristas-suenos-elon-musk-esta-muerto-hyperloop-one-cerrara-a-finales-este-2023",
"urlToImage": "https://i.blogs.es/eea4f8/hyperloop-one-cerrara-este-2023/840_560.jpeg",
"publishedAt": "2023-12-22T01:15:16Z",
"content": "La futurista startup de transporte de Elon Musk, Hyperloop One, cerrará en pocos días, justo a finales de este 2023, de acuerdo con personas familiarizadas con la situación que platicaron con Bloombe… [+1857 chars]"
},
{
"source": { "id": null, "name": "Noticiasautomotivas.com.br" },
"author": "Ricardo de Oliveira",
"title": "Firefly será nova marca da NIO na Europa; e aqui?",
"description": "Os carros da marca chinesa NIO não são exatamente baratos, sendo ela um dos concorrentes diretos da Tesla e isso incomoda a direção da marca, que está",
"url": "https://www.noticiasautomotivas.com.br/firefly-sera-nova-marca-da-nio-na-europa-e-aqui/",
"urlToImage": "https://images.noticiasautomotivas.com.br/img/f/nio-es8-1.jpg",
"publishedAt": "2023-12-22T01:10:02Z",
"content": "nio es8 1\r\nOs carros da marca chinesa NIO não são exatamente baratos, sendo ela um dos concorrentes diretos da Tesla e isso incomoda a direção da marca, que está perdendo terreno no mercado europeu.\r… [+2058 chars]"
},
{
"source": { "id": null, "name": "Digital Trends" },
"author": "Trevor Mogg",
"title": "Watch Tesla’s synchronized light show using five Cybertrucks",
"description": "It probably won’t ever replace fireworks, but Tesla’s synchronized light show using five Cybertrucks looks like a fun little endeavor nonetheless.",
"url": "https://www.digitaltrends.com/cars/watch-tesla-synchronized-light-show-using-five-cybertrucks/",
"urlToImage": "https://www.digitaltrends.com/wp-content/uploads/2023/12/cybertruck-light-show.jpg?resize=1200%2C630&p=1",
"publishedAt": "2023-12-22T01:05:53Z",
"content": "Tesla has shared a video of five Cybertrucks performing a synchronized light show.\r\nIt’s not clear why the automaker has done this, but with the Cybertrucks’ frunks lit up red, and the vehicles front… [+1758 chars]"
},
{
"source": { "id": null, "name": "Eluniversal.com.co" },
"author": "EFE",
"title": "Elon Musk colonizó la Amazonía, pero la minería ilegal se aprovecha de él",
"description": "El magnate Elon Musk ha conquistado en tiempo récord el mercado de internet por satélite en la Amazonía brasileña con su red Starlink, cada vez más popular entre la población de la mayor selva tropical del mundo, incluidos los buscadores de oro clandestinos.",
"url": "https://www.eluniversal.com.co/ciencia/elon-musk-colonizo-la-amazonia-pero-la-mineria-ilegal-se-aprovecha-de-el-NH9678096",
"urlToImage": "https://www.eluniversal.com.co/binrepository/1218x686/414c0/800d686/none/13704/IPVT/musk-amazonia-oro-ilegal-1_9201325_20231221194216.jpg",
"publishedAt": "2023-12-22T00:42:12Z",
"content": "El magnate Elon Musk ha conquistado en tiempo récord el mercado de internet por satélite en la Amazonía brasileña con su red Starlink, cada vez más popular entre la población de la mayor selva tropic… [+4054 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "marketwatch.com",
"title": "Elon Musk tells Cathie Wood he wants to make X a 'giant brain' and financial platform",
"description": "Elon Musk says he hopes to turn X into a “giant brain” and pivot it into a financial platform once it secures money-transfer licenses. “We want to create a group mind or collective consciousness where each person is reporting information to the system, and gi…",
"url": "https://biztoc.com/x/524b74df99999a0e",
"urlToImage": "https://c.biztoc.com/p/524b74df99999a0e/s.webp",
"publishedAt": "2023-12-22T00:36:06Z",
"content": "Elon Musk says he hopes to turn X into a giant brain and pivot it into a financial platform once it secures money-transfer licenses.We want to create a group mind or collective consciousness where ea… [+299 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "investors.com",
"title": "Cathie Wood Buys Tesla Stock For First Time In 8 Months As Tesla Faces Possible Recall",
"description": "Cathie Wood and her Ark Invest purchased TSLA stock for the first time since late April, picking up more than 100,000 shares Wednesday. That comes as Tesla (TSLA) appears to be facing mounting pressure from regulators after a Reuters report found the EV giant…",
"url": "https://biztoc.com/x/cd7f57b972a47697",
"urlToImage": "https://c.biztoc.com/p/cd7f57b972a47697/s.webp",
"publishedAt": "2023-12-22T00:02:17Z",
"content": "Cathie Wood and her Ark Invest purchased TSLA stock for the first time since late April, picking up more than 100,000 shares Wednesday. That comes as Tesla (TSLA) appears to be facing mounting pressu… [+285 chars]"
},
{
"source": { "id": null, "name": "MarketWatch" },
"author": "Jon Swartz",
"title": "Elon Musk wants to create a ‘giant brain’ and financial platform on X",
"description": "Musk spoke in a wide-ranging, 100-minute interview with Cathie Wood, chief executive of investment-management firm ARK Invest, on X's Spaces app Thursday.",
"url": "https://www.marketwatch.com/story/elon-musk-wants-to-create-a-giant-brain-and-financial-platform-on-x-6b9ef4f1",
"urlToImage": "https://images.mktw.net/im-89681219/social",
"publishedAt": "2023-12-21T23:56:00Z",
"content": "Elon Musk says he hopes to turn X into a giant brain and pivot it into a financial platform once it secures money-transfer licenses.We want to create a group mind or collective consciousness where ea… [+3437 chars]"
},
{
"source": { "id": "next-big-future", "name": "Next Big Future" },
"author": "Brian Wang",
"title": "Mexican Governor Says Tesla May Triple the Size of Gigamexico",
"description": "The governor of Nuevo León says Tesla will double or triple the size of the GigaMexico factory and they will build the next-generation car, Cybertruck, and maybe Model Y, and its 4680 batteries there. Garcia noticed that in meetings with Tesla, he heard how t…",
"url": "https://www.nextbigfuture.com/2023/12/mexican-governor-says-tesla-may-triple-the-size-of-gigamexico.html",
"urlToImage": "https://nextbigfuture.s3.amazonaws.com/uploads/2023/12/Screen-Shot-2023-12-21-at-3.49.25-PM.jpg",
"publishedAt": "2023-12-21T23:50:24Z",
"content": "The governor of Nuevo León says Tesla will double or triple the size of the GigaMexico factory and they will build the next-generation car, Cybertruck, and maybe Model Y, and its 4680 batteries there… [+2236 chars]"
},
{
"source": { "id": null, "name": "New Zealand Herald" },
"author": "Audrey Young",
"title": "Nicola Willis’ anaemic mini-Budget leaves key questions hanging - Audrey Young",
"description": "OPINION: We wanted details about tax cuts. We did not get them.",
"url": "https://www.nzherald.co.nz/nz/politics/nicola-willis-anaemic-mini-budget-leaves-key-questions-hanging-audrey-young/ADVKL4JJ5NBZBPNGIM6WPRY47A/",
"urlToImage": "https://www.nzherald.co.nz/resizer/9DJj2l1iJjRvWASRr8hEV3vQ19g=/1200x675/smart/filters:quality(70)/cloudfront-ap-southeast-2.images.arcpublishing.com/nzme/4RGIBNO5AJHPHNIKBOEIN7A474.jpg",
"publishedAt": "2023-12-21T23:32:27Z",
"content": "OPINION\r\nThis is a transcript of Audrey Youngs subscriber-only Premium Politics newsletter. To sign up, click on your profile at nzherald.co.nz and select Newsletters. For a step-by-step guide, click… [+6595 chars]"
},
{
"source": { "id": null, "name": "Fark.com" },
"author": null,
"title": "The Color Purple removed from Florida schools. The book, not the actual color...though that's probably next [Florida]",
"description": "The Color Purple removed from Florida schools. The book, not the actual color...though that's probably next",
"url": "https://www.fark.com/comments/13095296/The-Color-Purple-removed-from-Florida-schools-The-book-not-actual-colorthough-thats-probably-next",
"urlToImage": "https://usrimg-full.fark.net/N/Nm/fark_NmWRPLcL1TX1FblJIZThdpxJMng.jpg?AWSAccessKeyId=JO3ELGV4BGLFW7Y3EZXN&Expires=1703480400&Signature=4esS0xbko3L76F9mYqFTMipxRkk%3D",
"publishedAt": "2023-12-21T23:20:56Z",
"content": "tudorgurl:WickerNipple: In case you wanna Ctrl-F for the bible out of lulz.\r\n\"In the Belly of the Beast,\" Jack Henry Abbott\"The Pool Was Empty,\" Gilles Abier\"The Poet X,\" Elizabeth Acevedo\"With the F… [+24283 chars]"
},
{
"source": { "id": "next-big-future", "name": "Next Big Future" },
"author": "Brian Wang",
"title": "Tesla Shanghai Expanding to Double Car Production and Build Megapacks",
"description": "Tesla plans to restart the third phase of its Shanghai plant project, possibly focusing on the production of the $25,000 model it will launch in the future, according to a report in local media outlet LatePost in December. Tesla began preparations for the con…",
"url": "https://www.nextbigfuture.com/2023/12/tesla-shanghai-expanding-to-double-car-production-and-build-megapacks.html",
"urlToImage": "https://nextbigfuture.s3.amazonaws.com/uploads/2023/12/Screen-Shot-2023-12-21-at-9.31.49-AM.jpg",
"publishedAt": "2023-12-21T23:17:36Z",
"content": "Tesla plans to restart the third phase of its Shanghai plant project, possibly focusing on the production of the $25,000 model it will launch in the future, according to a report in local media outle… [+1690 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "asia.nikkei.com",
"title": "Huawei tech drives smaller Chinese players' challenge to BYD, Tesla",
"description": "GUANGZHOU -- Huawei Technologies is launching a full offensive in the electric-vehicle market, forming tie-ups with smaller automakers to expand the network of customers that use its autonomous-driving technology. The effort is paying off. The revamped Aito M…",
"url": "https://biztoc.com/x/686e8091f91bb875",
"urlToImage": "https://c.biztoc.com/p/686e8091f91bb875/s.webp",
"publishedAt": "2023-12-21T23:04:12Z",
"content": "GUANGZHOU -- Huawei Technologies is launching a full offensive in the electric-vehicle market, forming tie-ups with smaller automakers to expand the network of customers that use its autonomous-drivi… [+271 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "newsweek.com",
"title": "Tesla faces mass recall over parts in cars breaking",
"description": "Tesla could face a government-mandated recall of two of its models in Norway over concerns about the cars' suspension. The Norwegian Public Roads Administration (Statens vegvesen) told Reuters on Thursday that it had begun an investigation into the electric v…",
"url": "https://biztoc.com/x/7bfa81f255d96c3d",
"urlToImage": "https://c.biztoc.com/p/7bfa81f255d96c3d/og.webp",
"publishedAt": "2023-12-21T23:04:11Z",
"content": "Tesla could face a government-mandated recall of two of its models in Norway over concerns about the cars' suspension.The Norwegian Public Roads Administration (Statens vegvesen) told Reuters on Thur… [+293 chars]"
},
{
"source": { "id": null, "name": "N-tv.de" },
"author": "n-tv NACHRICHTEN",
"title": "Neue Hoffnung auf Zinssenkungen: US-Indizes kommen nach Rückschlag zurück",
"description": "Nach den Gewinnmitnahmen des Vortags kommen die Anleger an der Wall Street wieder aus der Deckung. Schwache Konjunkturdaten nähren die Hoffnung auf baldige Zinssenkungen. Bei den Einzelwerten ist vor allem der Chiphersteller Micron gefragt.",
"url": "https://www.n-tv.de/wirtschaft/US-Indizes-kommen-nach-Rueckschlag-zurueck-article24617752.html",
"urlToImage": "https://bilder4.n-tv.de/img/incoming/crop24617751/3501322970-cImg_16_9-w1200/1b51e58e47ff76061fb51c1e9fcc2023.jpg",
"publishedAt": "2023-12-21T23:03:22Z",
"content": "Nach den Gewinnmitnahmen des Vortags kommen die Anleger an der Wall Street wieder aus der Deckung. Schwache Konjunkturdaten nähren die Hoffnung auf baldige Zinssenkungen. Bei den Einzelwerten ist vor… [+3338 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "fortune.com",
"title": "AI will spur more hiring, not less, as it enables 'more ingenuity per person,' says top Adobe executive Scott Belsky",
"description": "Artificial intelligence will lead to mass unemployment or create more jobs, depending on who you ask. So which view is right? Few people have better insight into this question than Scott Belsky, Adobe’s chief strategy officer and executive vice president of d…",
"url": "https://biztoc.com/x/cc5f6f1f2e59a8ae",
"urlToImage": "https://c.biztoc.com/p/cc5f6f1f2e59a8ae/s.webp",
"publishedAt": "2023-12-21T22:38:06Z",
"content": "Artificial intelligence will lead to mass unemployment or create more jobs, depending on who you ask. So which view is right? Few people have better insight into this question than Scott Belsky, Adob… [+304 chars]"
},
{
"source": { "id": "fortune", "name": "Fortune" },
"author": "Steve Mollman",
"title": "AI will spur more hiring, not less, as it enables 'more ingenuity per person,' says top Adobe executive Scott Belsky",
"description": "Adobe's chief strategy officer says AI will enable \"more ingenuity per person,\" and companies will want to expand and hire more as a result.",
"url": "https://fortune.com/2023/12/21/ai-will-spur-more-hiring-and-ingenuity-per-person-adobe-scott-belsky/",
"urlToImage": "https://content.fortune.com/wp-content/uploads/2023/12/scott-belsky-adobe.jpeg?resize=1200,600",
"publishedAt": "2023-12-21T22:34:07Z",
"content": "Artificial intelligence will lead to mass unemployment or create more jobs, depending on who you ask. So which view is right? Few people have better insight into this question than Scott Belsky, Adob… [+4507 chars]"
},
{
"source": { "id": null, "name": "Bright.nl" },
"author": "[email protected] (Tonie van Ringelestijn)",
"title": "Deze Russische elektrische auto is geen Tesla-killer maar 'de lelijkste auto ooit'",
"description": "Rusland komt met een eigen elektrische auto: de Amber. Het prototype is zo lelijk dat de hele wereld de spot drijft met het autootje. Begrijpelijk, want dit ontwerp doet gewoon pijn aan je ogen.",
"url": "https://www.bright.nl/nieuws/1169628/deze-russische-elektrische-auto-is-geen-tesla-killer-maar-de-lelijkste-auto-ooit.html",
"urlToImage": "https://br.cdn.pxr.nl/news/2023/12/21/fbc620639ae68d962a75fceaa8e670527134e98a.jpg",
"publishedAt": "2023-12-21T22:26:00Z",
"content": "Rusland komt met een eigen elektrische auto: de Amber. Het prototype is zo lelijk dat de hele wereld de spot drijft met het autootje. Begrijpelijk, want dit ontwerp doet gewoon pijn aan je ogen.\r\nArt… [+2245 chars]"
},
{
"source": { "id": null, "name": "New York Post" },
"author": "Lydia Moynihan",
"title": "Activision execs weigh defamation suit after California drops sex harass allegations",
"description": "The California Civil Rights Department had been investigating the company behind “Call of Duty'' and “Candy Crush” since 2021.",
"url": "https://nypost.com/2023/12/21/business/activision-execs-weigh-counter-suit-after-sex-harass-allegations-dropped/",
"urlToImage": "https://nypost.com/wp-content/uploads/sites/2/2023/12/Activision-Blizzard-still.jpg?quality=75&strip=all&w=1024",
"publishedAt": "2023-12-21T22:22:07Z",
"content": "Executives at Activision Blizzard are weighing a possible countersuit against a California state agency that had claimed the gaming giant had a toxic frat boy workplace — only to drop its litigation … [+2159 chars]"
},
{
"source": { "id": null, "name": "The Federalist" },
"author": "Evita Duffy-Alfonso",
"title": "Here Are The Lessons The Obamas Don’t Want You Taking Away From ‘Leave The World Behind’",
"description": "Netflix's Michelle and Barack Obama-produced movie 'Leave the World Behind' is fomenting a lot of fear on the internet.",
"url": "https://thefederalist.com/2023/12/21/here-are-the-lessons-the-obamas-dont-want-you-taking-away-from-leave-the-world-behind/",
"urlToImage": "https://thefederalist.com/wp-content/uploads/2023/12/Untitled-design-77-scaled.jpg",
"publishedAt": "2023-12-21T22:11:04Z",
"content": "Warning: Spoilers ahead.\r\nNetflix’s Michelle and Barack Obama-produced movie Leave the World Behind, which is currently the most-watched film on the platform, is fomenting a lot of fear on the intern… [+7451 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "thedailyupside.com",
"title": "Tesla’s Nordic Headache Intensifies",
"description": "Tesla made the naughty list on Santa’s home turf of Scandinavia. Following a Reuters investigation published earlier this week into tens of thousands of complaints about parts failing on new Tesla vehicles, Norway’s road regulator says it’s looking into Tesla…",
"url": "https://biztoc.com/x/b1e84915d2bec667",
"urlToImage": "https://c.biztoc.com/p/b1e84915d2bec667/s.webp",
"publishedAt": "2023-12-21T22:06:07Z",
"content": "Tesla made the naughty list on Santas home turf of Scandinavia.Following a Reuters investigation published earlier this week into tens of thousands of complaints about parts failing on new Tesla vehi… [+294 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "investorplace.com",
"title": "LCID Stock: Lucid Motors Fans Cheer Potential Tariffs on Chinese EVs",
"description": "A White House trade policy has the potential to usher in a new bull market for EV stocks Lucid Motors (NASDAQ: ) and some of its peers may be receiving an early Christmas gift from the White House this year. According to reports, the Biden administration is c…",
"url": "https://biztoc.com/x/dcfcde506c6eaba0",
"urlToImage": "https://c.biztoc.com/p/dcfcde506c6eaba0/s.webp",
"publishedAt": "2023-12-21T22:04:49Z",
"content": "A White House trade policy has the potential to usher in a new bull market for EV stocksLucid Motors (NASDAQ: ) and some of its peers may be receiving an early Christmas gift from the White House thi… [+292 chars]"
},
{
"source": { "id": null, "name": "KPBS" },
"author": "Robert Lewis and Wendy Fry",
"title": "California exports the risk from its hazardous waste. One neighborhood in Mexico shows the consequences",
"description": "An ongoing CalMatters investigation has shown how California companies and governments avoid the Golden State’s strict environmental regulations by shipping toxic waste across state borders. New reporting shows how California exports the risk to Mexico.",
"url": "https://www.kpbs.org/news/environment/2023/12/21/california-exports-the-risk-from-its-hazardous-waste-one-neighborhood-in-mexico-shows-the-consequences",
"urlToImage": "https://cdn.kpbs.org/dims4/default/c5fc079/2147483647/strip/true/crop/2000x1050+0+142/resize/1200x630!/quality/90/?url=http%3A%2F%2Fkpbs-brightspot.s3.us-west-2.amazonaws.com%2F6a%2F2f%2F875b36304f6aae3ddc8475dc1096%2F101923-temarry-tecate-mg-cm-02.jpg",
"publishedAt": "2023-12-21T21:43:59Z",
"content": "The fumes that wandered into Martha Beatriz Leóns preschool on the outskirts of Tecate, Mexico smelled way worse than usual, like rotting garbage. Or maybe it was ammonia. One woman compared it to sp… [+14044 chars]"
},
{
"source": { "id": null, "name": "GlobeNewswire" },
"author": "Purpose Investments Inc.",
"title": "Purpose Investments Inc. Announces Correction to Annual Capital Gain Distribution Rate for Tesla (TSLA) Yield Shares Purpose ETF",
"description": "TORONTO, Dec. 21, 2023 (GLOBE NEWSWIRE) -- Purpose Investments Inc. (“Purpose”) today announced a correction to the annual capital gain distribution rate for Tesla (TSLA) Yield Shares Purpose ETF (Cboe Canada: YTSL; the ETF). The press release on December 20,…",
"url": "https://www.globenewswire.com/news-release/2023/12/21/2800362/0/en/Purpose-Investments-Inc-Announces-Correction-to-Annual-Capital-Gain-Distribution-Rate-for-Tesla-TSLA-Yield-Shares-Purpose-ETF.html",
"urlToImage": "https://ml.globenewswire.com/Resource/Download/a28192cb-6294-4424-8c24-646fee2c81cd",
"publishedAt": "2023-12-21T21:40:00Z",
"content": "TORONTO, Dec. 21, 2023 (GLOBE NEWSWIRE) -- Purpose Investments Inc. (Purpose) today announced a correction to the annual capital gain distribution rate for Tesla (TSLA) Yield Shares Purpose ETF (Cboe… [+2197 chars]"
},
{
"source": { "id": null, "name": "Leblogauto.com" },
"author": "Elisabeth Studer",
"title": "Tesla NACS devient une norme officielle en Amérique du Nord",
"description": "Très beau coup pour Tesla! L’organisation d'harmonisation des normes – la SAE International - vient de publier un document transformant de facto la norme du constructeur de véhicules électriques en une norme de connecteur NACS harmonisée.",
"url": "https://www.leblogauto.com/electrique/tesla-nacs-devient-une-norme-officielle-en-amerique-du-nord-95256",
"urlToImage": "https://medias.leblogauto.com/20/2023/12/photo_article/95256/177582/1200-L-tesla-nacs-devient-une-norme-officielle-en-amrique-du-nord.jpg",
"publishedAt": "2023-12-21T21:30:00Z",
"content": "L’objectif est d'aider à l'installation harmonisée et de contribuer à garantir que tout fournisseur ou fabricant puisse utiliser, fabriquer ou déployer le connecteur J3400 pour les VE et les stations… [+3112 chars]"
},
{
"source": { "id": null, "name": "CleanTechnica" },
"author": "Guest Contributor",
"title": "Towing With A BEV Truck — Analysis",
"description": "Battery electric trucks should, in theory, be superior to gas & diesel trucks due to their powerful, higher torque electric ... [continued]\nThe post Towing With A BEV Truck — Analysis appeared first on CleanTechnica.",
"url": "https://cleantechnica.com/2023/12/21/towing-with-a-bev-truck-analysis/",
"urlToImage": "https://cleantechnica.com/wp-content/uploads/2023/12/Tesla-Cybertruck-Towing-Camper.jpeg",
"publishedAt": "2023-12-21T21:29:34Z",
"content": "Sign up for daily news updates from CleanTechnica on email. Or follow us on Google News!\r\nBattery electric trucks should, in theory, be superior to gas & diesel trucks due to their powerful, high… [+20257 chars]"
},
{
"source": { "id": null, "name": "Electrek" },
"author": "Peter Johnson",
"title": "Chevy Blazer EV and Cadillac Lyriq will lose tax credit eligibility, but only temporarily",
"description": "GM revealed the new Chevy Blazer EV and Cadillac Lyriq are expected to lose eligibility for the EV tax credit starting January 1. According to GM, the disqualification is only temporary due to minor components.\n more…\nThe post Chevy Blazer EV and Cadillac Lyr…",
"url": "https://electrek.co/2023/12/21/chevy-blazer-ev-cadillac-lyriq-lose-tax-credit-eligibility/",
"urlToImage": "https://i0.wp.com/electrek.co/wp-content/uploads/sites/3/2023/12/Chevy-Blazer-EV-tax-credit.jpeg?resize=1200%2C628&quality=82&strip=all&ssl=1",
"publishedAt": "2023-12-21T21:25:39Z",
"content": "GM revealed the new Chevy Blazer EV and Cadillac Lyriq are expected to lose eligibility for the EV tax credit starting January 1. According to GM, the disqualification is only temporary due to minor … [+2349 chars]"
},
{
"source": { "id": null, "name": "Elchapuzasinformatico.com" },
"author": "Protector Indefinido",
"title": "Tesla mintió a sus clientes: las piezas que fallan en sus coches no son culpa del propietario, vienen defectuosas de serie",
"description": "Aunque parezca algo un poco surrealista, la forma de proceder en Tesla con la garantía es, como poco, reprochable. No diremos nada que no hayan dicho periodistas del motor en nuestro país, en Europa o en EE.UU., cuando se afirma que las calidades de Tesla son…",
"url": "https://elchapuzasinformatico.com/?p=537002",
"urlToImage": "https://elchapuzasinformatico.com/wp-content/uploads/2023/12/Tesla-piezas-defectuosas-de-serie-engano-clientes.jpg",
"publishedAt": "2023-12-21T21:12:46Z",
"content": "Aunque parezca algo un poco surrealista, la forma de proceder en Tesla con la garantía es, como poco, reprochable. No diremos nada que no hayan dicho periodistas del motor en nuestro país, en Europa … [+4790 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "arstechnica.com",
"title": "EVs and hybrids had a noticeable effect on US fuel consumption, says EPA",
"description": "I like the idea of drawing the year to a close with some good news for a change, and I think maybe the US Environmental Protection Agency does as well. On Wednesday, the EPA published its Automotive Trends Report, which now included data for model-year 2022 v…",
"url": "https://biztoc.com/x/4928b072c4578d91",
"urlToImage": "https://c.biztoc.com/p/4928b072c4578d91/og.webp",
"publishedAt": "2023-12-21T21:08:14Z",
"content": "I like the idea of drawing the year to a close with some good news for a change, and I think maybe the US Environmental Protection Agency does as well. On Wednesday, the EPA published its Automotive … [+270 chars]"
},
{
"source": { "id": null, "name": "Adevarul.ro" },
"author": "Valentin Bolocan",
"title": "Statul ar putea suporta o parte din leasingul maşinilor electrice",
"description": "Ministerul Mediului vrea să preia modelul francez prin care cei cu venituri limitate și care circulă un număr rezonabil de kilometri pe an pot beneficia de leasing subvenționat la mașinile electrice.",
"url": "https://adevarul.ro/stiri-interne/evenimente/statul-ar-putea-suporta-o-parte-din-leasingul-2326143.html",
"urlToImage": "https://cdn.adh.reperio.news/image-2/25ee6a5d-881a-450a-a412-4e1910f555b2/index.png?p=f%3Djpeg%26w%3D1200%26h%3D630%26r%3Dcover%26c%3D0%252C0%252C1%252C0.873",
"publishedAt": "2023-12-21T21:00:25Z",
"content": "Ministerul Mediului vrea\r\ns preia modelul francez prin care cei cu venituri limitate i care circul un\r\nnumr rezonabil de kilometri pe an pot beneficia de leasing subvenionat la\r\nmainile electrice. \r\n… [+2820 chars]"
},
{
"source": { "id": null, "name": "MarketWatch" },
"author": "Michael Brush",
"title": "These unsung stock market heroes offer 9 favorite picks for 2024",
"description": "3 top newsletters: 'Magnificent Seven' take a pause; dividend-rich value and energy stocks take the lead.",
"url": "https://www.marketwatch.com/story/these-unsung-stock-market-heroes-offer-9-favorite-picks-for-2024-7eea2a49",
"urlToImage": "https://images.mktw.net/im-833483/social",
"publishedAt": "2023-12-21T20:56:00Z",
"content": "Stock newsletter writers dont pop up much on CNBC, but that doesnt mean you should ignore these unsung market heroes. Many are great analysts with solid long-term records. So, each year around this t… [+7737 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "thestreet.com",
"title": "Jim Cramer identifies what separates the Magnificent 7 from the rest",
"description": "If you've made money in the market in 2023, chances are you owned at least one of the Magnificent 7 stocks. Shares of Meta Platforms (META) - Get Free Report, Amazon (AMZN) - Get Free Report, Microsoft (MSFT) - Get Free Report, Tesla (TSLA) - Get Free Report,…",
"url": "https://biztoc.com/x/bd380315b08ed12a",
"urlToImage": "https://c.biztoc.com/p/bd380315b08ed12a/s.webp",
"publishedAt": "2023-12-21T20:52:47Z",
"content": "If you've made money in the market in 2023, chances are you owned at least one of the Magnificent 7 stocks.Shares of Meta Platforms (META) - Get Free Report, Amazon (AMZN) - Get Free Report, Microsof… [+277 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "asia.nikkei.com",
"title": "Huawei tech helps smaller Chinese players take on BYD, Tesla",
"description": "GUANGZHOU -- Huawei Technologies is launching a full offensive in the electric-vehicle market, forming tie-ups with smaller automakers to expand the network of customers that use its autonomous-driving technology. The effort is paying off. The revamped Aito M…",
"url": "https://biztoc.com/x/c861070e675ca0f3",
"urlToImage": "https://c.biztoc.com/p/c861070e675ca0f3/s.webp",
"publishedAt": "2023-12-21T20:44:12Z",
"content": "GUANGZHOU -- Huawei Technologies is launching a full offensive in the electric-vehicle market, forming tie-ups with smaller automakers to expand the network of customers that use its autonomous-drivi… [+271 chars]"
},
{
"source": { "id": null, "name": "New Atlas" },
"author": "Ben Coxworth",
"title": "Cyberdrop ebike trailer channels the spirit of the Cybertruck",
"description": "You can do a lot of things with the Tesla Cybertruck, but you can't tow it behind your ebike to sleep in on \"bike-packing\" trips. You can, however, do exactly that with the Cybertruck-inspired Cyberdrop trailer – or at least you will be able to, once it reach…",
"url": "https://newatlas.com/bicycles/cyberdrop-ebike-trailer/",
"urlToImage": "https://assets.newatlas.com/dims4/default/d533ea0/2147483647/strip/true/crop/3910x2053+0+277/resize/1200x630!/quality/90/?url=http%3A%2F%2Fnewatlas-brightspot.s3.amazonaws.com%2F9b%2Fa8%2F9e7a60ab4211a10158a8057aab9d%2Fdji-0249.jpeg&na.image_optimisation=0",
"publishedAt": "2023-12-21T20:38:05Z",
"content": "You can do a lot of things with the Tesla Cybertruck, but you can't tow it behind your ebike to sleep in on \"bike-packing\" trips. You can, however, do exactly that with the Cybertruck-inspired Cyberd… [+2990 chars]"
},
{
"source": { "id": null, "name": "Psychology Today" },
"author": "Cami Rosso",
"title": "AI Uses Brain Chemistry for Precision Neuroscience",
"description": "AI software that uses data from noninvasive magnetic resonance spectroscopy (MRS) scans to provide measurements of brain chemicals.",
"url": "https://www.psychologytoday.com/intl/blog/the-future-brain/202312/ai-uses-brain-chemistry-for-precision-neuroscience",
"urlToImage": "https://cdn2.psychologytoday.com/assets/styles/manual_crop_1_91_1_1528x800/public/teaser_image/blog_entry/2023-12/pic015111.jpg?itok=Qn8Q295e",
"publishedAt": "2023-12-21T20:37:30Z",
"content": "Virtual brain biopsies by clinicians may become possible with the application of artificial intelligence (AI) machine learning combined with noninvasive brain scans. BrainSpec's AI software has achie… [+3481 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "thestreet.com",
"title": "These sectors and stocks dominated Wall Street's 2023 gains",
"description": "2023 was a standout year for stocks with the S&P 500 surging 25 percent, well above the average return of 10%. But it wasn’t just tech that led the gains this year -- TheStreet’s J.D. Durkin breaks down which sectors popped and which sectors flopped throughou…",
"url": "https://biztoc.com/x/74d866b0bb18f8db",
"urlToImage": "https://c.biztoc.com/p/74d866b0bb18f8db/s.webp",
"publishedAt": "2023-12-21T20:37:12Z",
"content": "2023 was a standout year for stocks with the S&P 500 surging 25 percent, well above the average return of 10%. But it wasnt just tech that led the gains this year -- TheStreets J.D. Durkin breaks… [+271 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "cryptopotato.com",
"title": "Dogecoin and Shiba Inu Price Outlook for 2024: Can Sponge V2 Outperform?",
"description": "As we enter 2024, there’s a massive surge of optimism in the crypto community, especially around meme coins. Dogecoin and Shiba Inu, in particular, are drawing significant attention. These coins showed signs of consolidation over the past few days after a con…",
"url": "https://biztoc.com/x/695493ad71f31aca",
"urlToImage": "https://c.biztoc.com/p/695493ad71f31aca/s.webp",
"publishedAt": "2023-12-21T20:36:46Z",
"content": "As we enter 2024, theres a massive surge of optimism in the crypto community, especially around meme coins. Dogecoin and Shiba Inu, in particular, are drawing significant attention.These coins showed… [+282 chars]"
},
{
"source": { "id": null, "name": "Forbes.com.mx" },
"author": "Forbes Staff",
"title": "Una mexicana, dos españolas y una chilena, entre las precandidatas a los Óscar",
"description": "Forbes México.\n Una mexicana, dos españolas y una chilena, entre las precandidatas a los Óscar\n\nLa mexicana Lila Avilés sigue en la contienda por la nominación a mejor película internacional gracias a su filme 'Tótem'.\nUna mexicana, dos españolas y una chilen…",
"url": "https://www.forbes.com.mx/una-mexicana-dos-espanolas-y-una-chilena-entre-las-precandidatas-a-los-oscar/",
"urlToImage": "https://cdn.forbes.com.mx/2023/12/Lila-Aviles-Totem-1024x658.png",
"publishedAt": "2023-12-21T20:18:48Z",
"content": "La película española ‘La sociedad de la nieve’, de Juan Antonio Bayona; la mexicana ‘Tótem’, de Lila Avilés; el documental chileno ‘La memoria infinita’, de Maite Alberdi, y el cortometraje de Pedro … [+1776 chars]"
},
{
"source": { "id": null, "name": "Zacjohnson.com" },
"author": "Zac Johnson",
"title": "Cornelius Vanderbilt Net Worth – How Much Is Cornelius Vanderbilt Worth?",
"description": "Cornelius Vanderbilt, also known as “the Commodore,” was an American business magnate who amassed a vast fortune through his ventures in railroads and shipping. His net worth, estimated at $185 billion, solidifies his position as one of the wealthiest individ…",
"url": "https://zacjohnson.com/cornelius-vanderbilt-net-worth/",
"urlToImage": "https://zacjohnson.com/wp-content/uploads/2023/12/cornelius-vanderbilt-net-worth.jpg",
"publishedAt": "2023-12-21T20:17:43Z",
"content": "Cornelius Vanderbilt, also known as “the Commodore,” was an American business magnate who amassed a vast fortune through his ventures in railroads and shipping. His net worth, estimated at $185 billi… [+24655 chars]"
},
{
"source": { "id": null, "name": "Yanko Design" },
"author": "Tim Stevens",
"title": "Hyundai Ioniq 6 Review",
"description": "Hyundai Ioniq 6 ReviewThe battle for aerodynamic performance has created some compelling shapes over the years, but it’s mandated far more that would be called boring. Amorphous machines...",
"url": "https://www.yankodesign.com/2023/12/21/hyundai-ioniq-6-review/",
"urlToImage": "https://www.yankodesign.com/images/design_news/2023/12/hyundai-ioniq-6-review/2023_Hyundai_Ioniq-6_Review_yankodesign_hero.jpg",
"publishedAt": "2023-12-21T20:15:58Z",
"content": "PROS:\r\n<ul><li>Stellar range</li><li>Compelling style</li><li>Good technology</li></ul>\r\nCONS:\r\n<ul><li>Tiny trunk</li><li>Limited headroom</li><li>Inaccurate range predictions</li></ul>\r\nRATINGS:\r\nE… [+10273 chars]"
},
{
"source": { "id": null, "name": "Adevarul.ro" },
"author": "Afrodita Cicovschi",
"title": "Românii vor mașini SH mai noi și pe benzină, deși s-au scumpit enorm",
"description": "Evoluția pieței auto second hand din România frânează în 2023, cu o creștere de doar 1 – 2% în 2023, la un volum care ar putea depăși, în premieră, 320.000 de mașini second hand înmatriculate.",
"url": "https://adevarul.ro/economie/romanii-vor-masini-sh-mai-noi-si-pe-benzina-desi-2325981.html",
"urlToImage": "https://cdn.adh.reperio.news/image-2/2612d465-fc3b-432f-ba17-9b898f55c51f/index.jpeg?p=f%3Djpeg%26w%3D1200%26h%3D630%26r%3Dcover%26c%3D0%252C0%252C1%252C0.903",
"publishedAt": "2023-12-21T20:15:25Z",
"content": "Evoluia pieei auto second hand din România frâneaz în 2023, cu o cretere de doar 1 2% în 2023, la un volum care ar putea depi, în premier, 320.000 de maini second hand înmatriculate.\r\nO alt premier, … [+3533 chars]"
},
{
"source": { "id": null, "name": "Terra.com.br" },
"author": "Guia do Carro",
"title": "Calmon: carros elétricos perdem ritmo em mercados da Europa",
"description": "É certo que a China continua como o maior mercado de carros 100% elétricos do mundo graças aos ...",
"url": "https://www.terra.com.br/carros-motos/calmon-carros-eletricos-perdem-ritmo-em-mercados-da-europa,479e0b4b2dc21c845df058366fb060d401e5qbhy.html",
"urlToImage": "https://p2.trrsf.com/image/fget/cf/1200/630/middle/images.terra.com/2023/03/01/db2023au00092_medium-1iexso2tcgspu.jpg",
"publishedAt": "2023-12-21T20:14:51Z",
"content": "É certo que a China continua como o maior mercado de carros 100% elétricos do mundo graças aos subsídios explícitos e implícitos, além das imposições por parte do governo ditatorial. Em alguns dos gr… [+2511 chars]"
},
{
"source": { "id": null, "name": "Shiftdelete.net" },
"author": "Ömer Dursun",
"title": "Dev fabrikada yangın! Yüzlerce otomobil kül oldu",
"description": "Bu içerik ilk olarak Dev fabrikada yangın! Yüzlerce otomobil kül oldu adresinde yayınlandı Teknoloji Haberleri - ShiftDelete.Net.",
"url": "https://shiftdelete.net/general-motors-factory-zero-yangin",
"urlToImage": "https://ares.shiftdelete.net/2023/12/general-motors-factory-zero-yangin.jpg",
"publishedAt": "2023-12-21T20:14:04Z",
"content": "Elektrikli otomobil fabrikalar yangn riskleriyle mücadele etmeye devam ediyor. Son olarak ABD’de gelen bir habere göre, General Motors’un fabrikasnda dev bir yangn çkt. Factory Zero isimli araç monta… [+1487 chars]"
},
{
"source": { "id": null, "name": "Biztoc.com" },
"author": "theverge.com",
"title": "American automakers are losing the race to make more fuel-efficient vehicles",
"description": "The US saw record gains in fuel efficiency last year, but it still falls short of what’s needed to meet fast-approaching deadlines. Thanks to their love of large vehicles, American automakers have fallen behind their competitors when it comes to getting more …",
"url": "https://biztoc.com/x/3e22651f2a79e4ed",
"urlToImage": "https://c.biztoc.com/p/3e22651f2a79e4ed/og.webp",
"publishedAt": "2023-12-21T20:08:10Z",
"content": "The US saw record gains in fuel efficiency last year, but it still falls short of whats needed to meet fast-approaching deadlines. Thanks to their love of large vehicles, American automakers have fal… [+273 chars]"
},
{
"source": { "id": null, "name": "Freerepublic.com" },
"author": "Federalist",
"title": "Why Is Joe Biden Screwing Seniors To Subsidize Electric Vehicles?",
"description": "The Biden administration is more interested in pet projects, unsustainable green schemes, and ideological revenue redistribution than in the core functions of government.. The Biden administration is so obsessed with making electric vehicles (EVs) work as par…",
"url": "https://freerepublic.com/focus/f-news/4205000/posts",
"urlToImage": null,
"publishedAt": "2023-12-21T20:04:26Z",
"content": "Skip to comments.\r\nWhy Is Joe Biden Screwing Seniors To Subsidize Electric Vehicles?Federalist ^\r\n | December 20, 2023\r\n | Jeff Reynolds\r\nPosted on 12/21/2023 12:04:26 PM PST by george76\r\nThe Biden a… [+5148 chars]"
},
{
"source": { "id": "bild", "name": "Bild" },
"author": "Jan Menno Gebhardt",
"title": "Sie nennen es Auto - Russen bauen hässlichstes E-Auto der Welt",
"description": "Das tut weh in den Augen! Hässliches Russen-E-Auto sorgt im Netz für Spott.Foto: Moscow Polytechnic University / PR",
"url": "https://www.bild.de/auto/auto-news/auto-news/haesslichster-neuwagen-der-welt-das-nennen-die-russen-ein-e-auto-86507316.bild.html",
"urlToImage": "https://images.bild.de/65840c53ccbf7b1f3c4c9d9a/9ea375edeab234ba72785d832cc6f940,dc38111c?w=1280",
"publishedAt": "2023-12-21T20:03:37Z",
"content": "Das tut weh in den Augen!\r\nIn Russland wurde gerade ein E-Auto-Prototyp vorgestellt, der im Internet für viel Spott sorgt. Der Amber, ein von Avtotor bei der polytechnischen Uni in Moskau in Auftrag … [+1024 chars]"
},
{
"source": { "id": null, "name": "Protothema.gr" },
"author": null,
"title": "Πόσο κοστίζουν τα ανταλλακτικά του Tesla Cybertruck;",
"description": "Η επίσημη παρουσίαση του Tesla Cybertruck και η έναρξη των πωλήσεων του σημαίνει και την παράλληλη έναρξη για τη διάθεση των ανταλλακτικών που θα χρειάζονται οι ιδιοκτήτες του. | Newsauto.gr",
"url": "https://www.protothema.gr/newsautogr/article/1448661/poso-kostizoun-ta-adallaktika-tou-tesla-cybertruck/",
"urlToImage": "https://i1.prth.gr/images/640x360share/files/2023-12-21/231205141847_tesla-cybertruck.jpg",
"publishedAt": "2023-12-21T20:00:00Z",
"content": "Content snippet: CookieBar"
},
{
"source": { "id": null, "name": "AndroidGuys" },
"author": "AndroidGuys",
"title": "Blackview Oscal, in Partnership with Indiegogo, is Set to Launch the World’s First Rugged Portable Power Station PowerMax 3600 for Home and Outdoor use",
"description": "In today’s connected world, people’s reliance on electricity is growing by the day. Outdoor adventurers in the wild or households during unexpected power outages all require a dependable power source. However, the electrical grid can’t reach every nook and cr…",
"url": "https://www.androidguys.com/promoted-news/blackview-oscal-in-partnership-with-indiegogo-is-set-to-launch-the-worlds-first-rugged-portable-power-station-powermax-3600-for-home-and-outdoor-use/",
"urlToImage": "https://www.androidguys.com/wp-content/uploads/2023/12/image-13.jpeg",
"publishedAt": "2023-12-21T19:57:18Z",
"content": "In today’s connected world, people’s reliance on electricity is growing by the day. Outdoor adventurers in the wild or households during unexpected power outages all require a dependable power source… [+11935 chars]"
},
{
"source": { "id": null, "name": "Hipertextual" },
"author": "Gabriel Erard",
"title": "Tesla culpó a clientes por fallos en sus coches, sabiendo que eran por piezas defectuosas, afirma ‘Reuters’",
"description": "Otra vez, Tesla se ve envuelta en una polémica por aparentes problemas en sus coches eléctricos. Según un nuevo informe de Reuters, la empresa de Elon Musk ha culpado a sus clientes por una serie de fallos mecánicos registrados en sus vehículos, cuando supues…",
"url": "http://hipertextual.com/2023/12/tesla-culpo-clientes-fallos-provocados-piezas-defectuosas",
"urlToImage": "https://imgs.hipertextual.com/wp-content/uploads/2023/12/dmitry-novikov-49gi04Retc4-unsplash-scaled.jpg",
"publishedAt": "2023-12-21T19:51:58Z",
"content": "Otra vez, Tesla se ve envuelta en una polémica por aparentes problemas en sus coches eléctricos. Según un nuevo informe de Reuters, la empresa de Elon Musk ha culpado a sus clientes por una serie de … [+4687 chars]"
},
{
"source": { "id": null, "name": "Marketscreener.com" },
"author": null,