-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayoffanalysistc.json
2182 lines (2182 loc) · 626 KB
/
layoffanalysistc.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
[
{"title": null, "date": null, "description": null, "url": null},
{"title": "The long goodbye at Salesforce continues with more layoffs reported today", "date": "6 hours ago", "description": "It would be easy to think that when Salesforce announced that it was laying off 10% of the workforce... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoRxnWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fthe-long-goodbye-at-salesforce-continues-with-more-layoffs-off-reported-today%2f/RK=2/RS=AqEXGgPk375wS4kItC8AngWH9M8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A comprehensive list of 2023 tech layoffs", "date": "March 8, 2023", "description": "In 2023, ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoRyHWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2ftech-industry-layoffs%2f/RK=2/RS=n7KnFVKlhJAo9b_CSHol8c7D4aE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "SiriusXM announces layoffs of 475 people, or 8% of its total workforce", "date": "March 6, 2023", "description": "SiriusXM, the satellite radio company and Pandora owner, disclosed today it's laying off 475... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoRynWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fsiriusxm-announces-layoffs-of-475-people-or-8-of-its-total-workforce%2f/RK=2/RS=XSKA5EVe.hAHc1Tf05_boL1MRig-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Nigerian B2B e-commerce startup Alerzo cuts 15% of full-time staff in second round of layoffs", "date": "March 6, 2023", "description": "Alerzo, a Nigerian B2B e-commerce platform that digitizes commerce and payments processes between... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoRzHWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fnigerian-b2b-e-commerce-startup-alerzo-cuts-15-of-full-time-staff-in-second-round-of-layoffs%2f/RK=2/RS=zAAP6PNYUmfMtXNMGaFwyLX.LPE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Waymo cuts 200 employees after second round of layoffs", "date": "March 1, 2023", "description": "Alphabet's Waymo has issued its second round of ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoRznWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fwaymo-cuts-200-employees-after-second-round-of-layoffs%2f/RK=2/RS=HnAmUDty2tFWLGGgKnSYiKmjV7Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "More layoffs at Twitter, and loyalist Esther Crawford isn't spared", "date": "February 26, 2023", "description": "Twitter has laid off more than 200 employees, according to a report from The New York Times,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoR0HWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f26%2fmore-layoffs-at-twitter-and-loyalist-esther-crawford-isnt-spared%2f/RK=2/RS=xMxFTgWbFVf0z6Gz81cJn.Chko4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Making layoffs suck less: How to announce job cuts and retain top performers", "date": "February 23, 2023", "description": "There is no way to sugarcoat it: For many founders, 2022 was a tough year to be a boss, and 2023 is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoR0nWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fmaking-layoffs-suck-less-how-to-announce-job-cuts-and-retain-top-performers%2f/RK=2/RS=c6yX9gXxTzXvX7uN09cCUVcPm4g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Chipper Cash executes second round of layoffs less than three months after axing 12.5% of staff", "date": "February 20, 2023", "description": "African cross-border payments platform Chipper Cash conducted a second round of ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoR1HWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f20%2fchipper-cash-executes-second-round-of-layoffs-less-than-three-months-after-axing-12-5-of-staff%2f/RK=2/RS=fUGXhz1Uh8ETe0siWLVqG.iNcA0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Layoffs spell opportunity for some fintech startups", "date": "February 19, 2023", "description": "The consumer fintech company is focused on helping people build credit and raised $30 million in... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoR1nWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f19%2fwhos-hiring-in-the-world-of-fintech%2f/RK=2/RS=zjYpzuezJ3oaRYowGcusTdydFfI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tech layoffs are creating a new era of scrappy (and humbled) founders", "date": "February 17, 2023", "description": "The onramps into Silicon Valley often include access: to a smart mentor, a well-connected venture... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZepwtkeNoR2HWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514143/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2ftech-layoffs-new-founders%2f/RK=2/RS=2yZjrCeEioNCdJXC.POLmTYh6TQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "US markets shrug off record unemployment numbers as tech shares rise", "date": "April 2, 2020", "description": "Despite reports of historic ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwShTOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f04%2f02%2fu-s-markets-shrug-off-record-unemployment-numbers-as-tech-shares-rise%2f/RK=2/RS=.kr4CBka7Pit.rH8ZjmeE63Me.c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The Chilling Story of Genius in a Land of Chronic Unemployment", "date": "May 15, 2011", "description": "Ever since he could remember, Ibrahim Boakye had a knack for understanding how things worked. Boakye... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwShzOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2011%2f05%2f15%2fthe-chilling-story-of-genius-in-a-land-of-chronic-unemployment%2f/RK=2/RS=uKDJB6iAfH9quvZ7M1ul9NgLNQ8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Dice Reports Murky Waters For Tech Jobs", "date": "July 2, 2009", "description": "After months of dismal ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSiTOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2009%2f07%2f02%2fdice-reports-murky-waters-for-tech-jobs%2f/RK=2/RS=pOxa0K7unv4q5ELFhjj.uZ94y2A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Geico admits fraudsters stole customers' driver's license numbers for months", "date": "April 19, 2021", "description": "...the California attorney general's office, Geico said information gathered from other sources was... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSizOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f04%2f19%2fgeico-driver-license-numbers-scraped%2f/RK=2/RS=Kr3ZWTGDdTOly9uyMomsYnpeSTQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Inside the human cost of Better.com's brutal layoffs", "date": "September 28, 2022", "description": "Indeed, whereas most companies try to avoid repeated layoffs, the outfit -- which gained notoriety... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSjTOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f09%2f28%2fbetter-com-employees-detail-their-experiences%2f/RK=2/RS=s5miA7OsucRgBOqfdcfHzQU6bP8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Smartphone makers searched for a way forward at MWC 2023", "date": "March 3, 2023", "description": "The arrival of 5G was a nice reprieve, but next-generation telecom standards don\u2019t arrive every... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSjzOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2fsmartphone-makers-searched-for-a-way-forward-at-mwc-2023%2f/RK=2/RS=8WFzkjoK66INcfA1gCsumcqOkJ0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is Xiaomi's shine dimming in India?", "date": "February 12, 2023", "description": "Xiaomi \u2014 the company that originally made its name as \"the Apple of China\" \u2014 broke out of its home... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSkTOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f12%2fxiaomi-india-challenges%2f/RK=2/RS=Makr6dYZAyYKBbue0fMPff8tji4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The tech jobs market might not be as shaky as it feels", "date": "February 16, 2023", "description": "When you lose 100,000 jobs in one month, as happened in tech in January, it\u2019s easy to think that the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSkzOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fjobs-layoffs-big-tech%2f/RK=2/RS=Zom3k37RrgihoGemLU98N0Z_L_w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "What's going on in the Dutch startup scene?", "date": "January 27, 2023", "description": "In a magnificently frank conversation, I spoke with HRH Prince Constantijn, fourth in line to the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSlTOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f27%2fhrh-prince-constantijn-at-ces-2023%2f/RK=2/RS=ksA.CKuikYwd0If_Prof8CfuwX4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "House passes historic $2 trillion coronavirus economic rescue bill", "date": "March 27, 2020", "description": "On Friday, the House of Representatives passed a historic stimulus package known as the Coronavirus... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dgpwtkyBwSlzOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514145/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f03%2f27%2fcares-act-stimulus-package-covid-19%2f/RK=2/RS=t2GCkAlQR4DCVA_BGhiR9aE_nX0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "During a recession, look to drive growth through customer retention", "date": "November 22, 2022", "description": "The global economy is teetering on the verge of a ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR8sinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f11%2f22%2fduring-a-recession-look-to-drive-growth-through-customer-retention%2f/RK=2/RS=ri.UbXXS7.3jIg2qtiZfxc0kNjg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Learn how to recession-proof your startup and more with these Disrupt roundtables", "date": "August 3, 2022", "description": "The roundtable discussions at TechCrunch Disrupt \u2014 coming to you live and in person on October 18-20... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR9MinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f03%2frecession-proof-your-startup-and-more-catch-these-disrupt-roundtables%2f/RK=2/RS=m9PY0JWttk9oHjdckTKuF7s3EGs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "3 ways PE firms can ensure relevant due diligence for M&A targets ahead of a recession", "date": "January 3, 2023", "description": "... uncertainty, market volatility, rising interest rates, inflation and the ongoing Ukraine-Russia... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR9sinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f03%2fhow-pe-firms-can-ensure-relevant-due-diligence-for-ma-targets-ahead-of-a-recession%2f/RK=2/RS=0KhancSl9T.YVFuGNZlqo7RvcGk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How to grow a SaaS company efficiently in a recession", "date": "July 28, 2022", "description": "Efficiency is now especially important for startups, which are always running fast toward a cliff.... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR.MinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f07%2f28%2fhow-to-grow-a-saas-company-efficiently-in-a-recession%2f/RK=2/RS=kBsjcFS23TuPcjiKSGYp0RUdncs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "3 ways SaaS businesses can boost revenue in a recession", "date": "December 6, 2022", "description": "It\u2019s an unprecedented time to be in SaaS. The SaaS market could grow almost 10% every year to 2027 \u2014... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR.sinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f06%2f3-ways-saas-businesses-can-boost-revenue-in-a-recession%2f/RK=2/RS=k9FYb6RyhYG8ERm0j0JOTdL_Tng-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The sky isn't falling for cloud software spend", "date": "March 8, 2023", "description": "If you read the startup press, you might think that everyone in tech is still nursing a stiff... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR_MinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fthe-sky-isnt-falling-for-cloud-software-spend%2f/RK=2/RS=btsQXrwUvAzXN95yWwCpP0_czhQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Z\u016bm founder strikes balance between accessibility and a massive logistics network", "date": "August 19, 2022", "description": "Z\u016bm\u2019s mission is simple \u2013 to introduce student transportation that is reliable, efficient,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwR_sinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f19%2fzum-founder-strikes-balance-between-accessibility-and-a-massive-logistics-network%2f/RK=2/RS=zg8ytWg9rNEu10fLLvvhMFl.NnM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "When will IPOs return? The past may hold some clues", "date": "January 4, 2023", "description": "Capital was extremely cheap to borrow as interest rates dipped as low as 1.67% (compared to rates in... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwRAMmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f04%2fwhen-will-ipos-return-the-past-may-hold-some-clues%2f/RK=2/RS=B_Lti4PGqjAlPFP38DiIECFDbGw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Soci raises $120M in debt and equity to grow its marketing management platform", "date": "March 7, 2023", "description": "Co-founder and CEO Afif Khoury says that the new capital -- a combination of debt and equity of... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwRAsmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fsoci-raises-120m-in-debt-and-equity-to-grow-its-marketing-management-platform%2f/RK=2/RS=1zYc0A2ZS9skP3eqWhMa4eB4Xow-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "To fix the climate, these 10 investors are betting the house on the ocean", "date": "March 2, 2023", "description": "Climate change is a problem important and pressing enough that investors have begun to grasp the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr91fBipwtktzwRBMmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514146/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fto-fix-the-climate-these-10-investors-are-betting-the-house-on-the-ocean%2f/RK=2/RS=Yp4rqwqkDjM0UlZA3gL_dcmJcBA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ethereum NFT marketplace passes $1B in volume for first time since May as the creator royalties war...", "date": "February 28, 2023", "description": "The NFT market may be finding its footing again as the market for non-fungible tokens on the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRE1enBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2fethereum-nft-marketplace-passes-1b-in-volume-for-first-time-since-may-as-the-creator-royalties-war-heats-up%2f/RK=2/RS=yoh7xMAR0k45_Yrv.izZvemo.zY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How are global chipmakers preparing for the US-China chip war?", "date": "February 24, 2023", "description": "After implementing sweeping restrictions on the export of semiconductors to China last October, the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRFVenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fhow-are-global-chipmakers-preparing-for-the-us-china-chip-war%2f/RK=2/RS=lbN.C4KuQzDJHMVmm39MvdvjG4w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A year on from Russia's invasion, Ukrainian startups show astounding resilience", "date": "February 24, 2023", "description": "Today marks exactly one year since Russia's illegal, unprovoked and brutal invasion of Ukraine. This... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRF1enBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fa-year-on-from-russias-invasion-ukrainian-startups-show-astounding-resilience%2f/RK=2/RS=psn8RAzWXZF_NCdyI8ppHKtVJFs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley goes to war", "date": "February 15, 2023", "description": "At Andreessen Horowitz\u2019s recent American Dynamism summit, Hadrian founder and CEO Chris Power... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRGVenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2fdefense-tech-startups-war%2f/RK=2/RS=906cPk24ih3LZx7m0M89Vi.CfXc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Intuitive Machines\u2019 post-SPAC war chest depleted by shareholder redemptions", "date": "February 15, 2023", "description": "Lunar technology company Intuitive Machines received far less cash from its merger with a special... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRG1enBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2fintuitive-machines-post-spac-war-chest-depleted-by-shareholder-redemptions%2f/RK=2/RS=wJKM7yWVW7lsmfadjxJV.f3Yu.I-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ford discounts its all-electric Mustang Mach-E in response to Tesla's EV price war", "date": "January 30, 2023", "description": "Ford said Monday it has increased production and cut the price of its all-electric Mustang Mach-E... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRHVenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2fford-discounts-its-all-electric-mustang-mach-e-in-response-to-teslas-ev-price-war%2f/RK=2/RS=wctI98x7WANROJ65btnQBKp_ehY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "EU's top diplomat fires warning shot at Elon Musk over Twitter disinformation", "date": "February 7, 2023", "description": "... 9 has attracted criticism from the European Union's top diplomat who has warned it could... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRH1enBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2felon-musk-twitter-disinformation-josep-borrell%2f/RK=2/RS=sNzMpuzd3Wc9OElsEkiezG.DtIA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Zeekr goes on a hiring spree, Tesla kicks off a price war and Hesai files for an IPO", "date": "January 23, 2023", "description": "Before I jump into our regular news roundup, I wanted to bring your attention to Zeekr, the premium... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRIVenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f23%2fzeekr-goes-on-a-hiring-spree-tesla-kicks-off-a-price-war-and-hesai-files-for-an-ipo%2f/RK=2/RS=YqnWJXcdYVw5lK6rFOUT6Z_tkmg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Startup founders go to war with UK government over its moves to appoint bank into key ecosystem role", "date": "November 15, 2022", "description": "Nothing less than a ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRI1enBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f11%2f15%2fstartup-founders-go-to-war-with-uk-government-over-its-moves-to-appoint-bank-into-key-ecosystem-role%2f/RK=2/RS=zLiB9Mwg3_Y2lFLKR3PlTBWnXQU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Starlink isn't a charity, but the Ukraine war isn't a business opportunity", "date": "October 15, 2022", "description": "What appeared earlier this year to be a selfless act of technotopianism, the widespread deployment... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgwqZkpwtkX_QRJVenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514148/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f10%2f15%2fstarlink-isnt-a-charity-but-the-ukraine-war-isnt-a-business-opportunity%2f/RK=2/RS=5fmtUks2FqVfZJgYD9isHagD5yA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Eyeing a new lunar economy, ispace plans to land on the moon at the end of April", "date": "February 27, 2023", "description": "Tokyo-based ispace said Monday that its Hakuto-R lunar lander is on track to reach the moon at the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQIShjenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2feyeing-a-new-lunar-economy-ispace-plans-to-land-on-the-moon-at-the-end-of-april%2f/RK=2/RS=GBrLkTbp5qUXjhcJGsAGT_GwkmM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "India's gig economy drivers face bust in the country's digital boom", "date": "January 25, 2023", "description": "Suneeta Kohli, a female Uber driver in New Delhi, had her account suddenly disabled one evening... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISiDenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2findia-gig-workers-problems%2f/RK=2/RS=2wIlXxUJC3CzCvYcJsENlfPKJnc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The app economy slowed for the first time in 2022, with consumer spend down 2% to $167 billion", "date": "January 11, 2023", "description": "An annual review of the app ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISijenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f11%2fthe-app-economy-slowed-for-the-first-time-in-2022-with-consumer-spend-down-2-to-167-billion%2f/RK=2/RS=vo9zlFDSy3TbjZg4uRYzjc6pE_Q-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The FTC orders HomeAdvisor to pay up to $7.2M for lying about lead quality and other matters", "date": "January 23, 2023", "description": "...Federal Trade Commission has ordered home services marketplace HomeAdvisor to pay up to $7.2... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISjDenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f23%2fthe-ftc-fines-homeadvisor-up-to-7-2m-for-lying-about-lead-quality-and-other-matters%2f/RK=2/RS=59HpDPcG3YYLklBBPK4ClCAX8fA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "This startup brings Southeast Asia's vacant hospital rooms into the sharing economy", "date": "January 2, 2023", "description": "Uber and Airbnb have long been the poster children for the sharing ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISjjenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f02%2fthis-startup-brings-southeast-asias-vacant-hospital-rooms-into-the-sharing-economy%2f/RK=2/RS=d_A7EUqSGoaS6fhCICHWKDKf89M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "What to expect from the creator economy in 2023", "date": "January 2, 2023", "description": "YouTube ad revenue is declining, and creator funds for platforms like Pinterest have dried up. It... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISkDenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f02%2fwhat-to-expect-from-the-creator-economy-in-2023%2f/RK=2/RS=H_JwsU6zZIKdiST3D3h66zssCd8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How we covered the creator economy in 2022", "date": "December 31, 2022", "description": "This summer, I went straight from VidCon -- the largest creator conference -- to a labor journalism... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISkjenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f31%2fhow-we-covered-the-creator-economy-in-2022%2f/RK=2/RS=s4UZ._BI.2042KMelsRLe.y2Hg4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "This Week in Apps: ChatGPT app scammers, Instagram revamp and a consumer spending slowdown", "date": "January 14, 2023", "description": "Welcome back to This Week in Apps, the weekly TechCrunch series that recaps the latest in mobile OS... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISlDenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f14%2fthis-week-in-apps-chatgpt-app-scammers-instagram-revamp-and-a-consumer-spending-slowdown%2f/RK=2/RS=mFdtm9MgCe9Gh5LGTbx2_.Otm5c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank trading halted; staff asked to work from home as SVB seeks a buyer, say reports", "date": "8 hours ago", "description": "Silicon Valley Bank Financial, the publicly traded holding firm of Silicon Valley Bank, has paused... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISljenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fsilicon-valley-bank-financial-in-talks-to-sell-itself-report-says%2f/RK=2/RS=vWC24lgOVmS4I_v4ACyAwcVU7Ow-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "3 Black investors talk about what they're looking for in 2023", "date": "December 22, 2022", "description": "Founders and investors alike are bracing for a tough 2023 as the ", "url": "https://search.techcrunch.com/click/_ylt=AwrOsGxmpwtkFQISmDenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514150/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f22%2f3-black-investors-talk-about-what-theyre-looking-for-in-2023%2f/RK=2/RS=gKaOT8Njxq2P6vgQCb6IPfNU2Ok-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With SVB locked up, how are startups going to pay for stuff?", "date": "2 hours ago", "description": "TechCrunch is currently busy reporting the hell out of the SVB ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSsCenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fwith-svb-locked-up-how-are-startups-going-to-pay-for-stuff%2f/RK=2/RS=k9UE0dR8pbnDXqgxHYuGwUp4Tko-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "SVB is already the talk of SXSW", "date": "55 minutes ago", "description": "...music, arts and tech festival officially kicked off today, and it's already clear that there's... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSsienBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fsvb-is-already-the-talk-of-sxsw%2f/RK=2/RS=gwYbf.fUrhf1kyD2QFZAp0i7HHs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Recycleye grabs $17M, calling plastic crisis a 'tremendous business opportunity'", "date": "February 6, 2023", "description": "Highlighting the plastic industry's infamous track record on recycling, London-based Recycleye says... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoStCenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f06%2frecycleye-grabs-17m-calling-plastic-crisis-a-tremendous-business-opportunity%2f/RK=2/RS=gM06PRYIua0koKtVMss3V7zvPds-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "VRAI wants to tackle the energy crisis by bringing VR simulation training to offshore wind sector", "date": "September 28, 2022", "description": "Virtual reality (VR) has struggled to transition too far beyond gaming circles and specific industry... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoStienBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f09%2f28%2fvrais-brings-vr-simulation-training-to-offshore-wind-and-other-hazardous-industries%2f/RK=2/RS=L0IFg26l8yEGYCxiu6HfpS32XkA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "In times of crisis, fintech startups should take the long view instead of hibernating", "date": "November 10, 2022", "description": "The fintech industry is currently facing several macroeconomic problems, including global economic... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSuCenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f11%2f10%2fin-times-of-crisis-fintech-startups-should-take-the-long-view-instead-of-hibernating%2f/RK=2/RS=vT5AbqJlYwm55WqKvsIA3ShPXuI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "India central bank chief warns crypto will cause the next financial crisis if permitted to grow", "date": "December 20, 2022", "description": "The Indian central bank\u2019s governor said on Wednesday that it\u2019s not at war with crypto, but warned... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSuienBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f20%2findia-central-bank-chief-warns-crypto-will-cause-the-next-financial-crisis-if-permitted-to-grow%2f/RK=2/RS=oq_t3cNv.NRMXb0Rleh9sMb8R9M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "If it\u2019s agtech, it\u2019s climate change: How the crisis is shaping investors\u2019 strategies", "date": "October 7, 2022", "description": "To state the (painfully) obvious: The fates of agriculture and climate change are inextricably... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSvCenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f10%2f07%2fif-its-agtech-its-climate-change-how-the-crisis-is-shaping-investors-strategies%2f/RK=2/RS=iUIikhdWDQI6rxbEzopTDtsoDkA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ULUU wants to solve the plastic crisis with seaweed", "date": "November 15, 2022", "description": "ULUU believes the solution to the plastic ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSvienBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f11%2f15%2fuluu-wants-to-solve-the-plastic-crisis-with-seaweed%2f/RK=2/RS=6xF6qgi6cnzp5Q456edyHA_TCuI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "FlyFeed flies in the face of the global food crisis", "date": "October 7, 2022", "description": "FlyFeed claims it signed more than $10 million worth of contracts and closed a $3 million round of... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSwCenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f10%2f07%2fflyfeed-angel-round%2f/RK=2/RS=BKhc0m.xw8uW7PnQblVEcy_deRw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TechCrunch+ roundup: Gen Z VCs, choosing a GTM model, crypto crisis communication tips", "date": "August 30, 2022", "description": "My parents were pre-Baby Boomers, which made them part of the Silent Generation. Generation Z is... ", "url": "https://search.techcrunch.com/click/_ylt=Awr492dopwtkwCoSwienBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514152/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f30%2ftechcrunch-roundup-gen-z-vcs-choosing-a-gtm-model-crypto-crisis-communication-tips%2f/RK=2/RS=Ve9IZEf.gyXVV9SvJvYdB_YPM0g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "SVB is already the talk of SXSW", "date": "55 minutes ago", "description": "Austin's annual SXSW music, arts and tech festival officially kicked off today, and ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRFbOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fsvb-is-already-the-talk-of-sxsw%2f/RK=2/RS=E2z3y9xs0NnqlJui91QgZjh4JpA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "It\u2019s the last day to save $1,000 on passes to Disrupt 2023", "date": "7 hours ago", "description": "\u2019s come down to this, startup fans. Today\u2019s the last day to beat the buzzer and claim the biggest... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRF7OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2flast-day-save-a-thousand-dollars-techcrunch-disrupt-2023%2f/RK=2/RS=K9ebObnbukSL0mqrik0vHQokKUI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "US strengthens tech ties with India but doesn't seek decoupling from China, Raimondo says", "date": "5 hours ago", "description": "The U.S. government is not seeking to \u201cdecouple\u201d from China, nor is ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRGbOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fus-strengthens-tech-ties-with-india-but-doesnt-seek-decoupling-from-china-raimondo-says%2f/RK=2/RS=ttsAEmC3daA4BNixVCi2wrfCBUQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Prelaunch assembles a pre-seed round to help hardware founders pre-build the right pre-products", "date": "5 hours ago", "description": "One of the core challenges is that ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRG7OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fprelaunch-com-fundraise%2f/RK=2/RS=PdwGhf1kkZZCUaqhfBCx5w7oxXs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The long goodbye at Salesforce continues with more layoffs reported today", "date": "6 hours ago", "description": "would be easy to think that when Salesforce announced that ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRHbOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fthe-long-goodbye-at-salesforce-continues-with-more-layoffs-off-reported-today%2f/RK=2/RS=yknGitmNDRoFA6VWTOwrpfEIir8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Secure messaging apps line up to warn UK's Online Safety Bill risks web security", "date": "5 hours ago", "description": "Secure messaging apps are lining up to oppose measures in the U.K. government's Online Safety Bill... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRH7OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fuk-osb-e2ee-warning%2f/RK=2/RS=5BP.17HWeUjqseefPSX4kSXJ4Jw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank trading halted; staff asked to work from home as SVB seeks a buyer, say reports", "date": "8 hours ago", "description": "...Silicon Valley Bank Financial, the publicly traded holding firm of Silicon Valley Bank, has... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRIbOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fsilicon-valley-bank-financial-in-talks-to-sell-itself-report-says%2f/RK=2/RS=Y_hBIXWnAkN2bE2C2tRZAb3HMbM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Telehealth startup Cerebral shared millions of patients' data with advertisers", "date": "8 hours ago", "description": "Cerebral has revealed ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRI7OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fcerebral-shared-millions-patient-data-advertisers%2f/RK=2/RS=86J7X37zpjUg.GtAp_3zP2BaZ7w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "What the flying heck happened to SVB?", "date": "7 hours ago", "description": "...in its term borrowing. This column, after summarizing SVB's financial moves and the resulting... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRJbOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fwhat-the-flying-heck-happened-to-svb%2f/RK=2/RS=hqG693ht9z9FWqwMfJbrBH1Avxs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Gowalla returns to see if location-based networking is ready for its mainstream moment", "date": "9 hours ago", "description": "...Williams is heading to the annual SXSW music, technology and arts festival in Austin, Texas this... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vRqpwtk5GMRJ7OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514154/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fgowalla-location-based-social-app%2f/RK=2/RS=3IDTosiWHC3w_8Bt7mjxck.9kP4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Roku partners with Best Buy and its advertising business to get first-party shopper data", "date": "6 hours ago", "description": "Roku and Best Buy announced today that as part of their new first-to-market partnership, Roku gets... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR0G.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514156/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2froku-partners-with-best-buy-and-its-advertising-business-to-get-first-party-shopper-data%2f/RK=2/RS=LQovRboxNoZ8Kp.Yu1egIVgigTU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Prosus in talks to sell Olx Autos business in India, other markets", "date": "12 hours ago", "description": "Prosus is actively engaging with multiple players to explore the sale of classified ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR0m.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514156/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fprosus-in-talks-to-sell-olx-autos-business-in-india-other-markets%2f/RK=2/RS=MAlv4tM4brOWwT_16toA2qLQZaU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "QuantWare raises \u20ac6M to scale its quantum processor business", "date": "March 8, 2023", "description": "QuantWare, the Dutch startup that builds quantum processors for research and commercial usage, today... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR1G.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514156/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fquantware-raises-e6m-to-scale-its-quantum-processor-business%2f/RK=2/RS=hA1dxuLIXH8.zWixUI4DnrHQe90-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Building a lean B2B startup growth stack", "date": "March 9, 2023", "description": "Growing a B2B ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR1m.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514156/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fbuilding-a-lean-b2b-startup-growth-stack%2f/RK=2/RS=wj4_ndI6dT7KTVEPAyvhPF_PeGo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Microsoft brings an AI-powered Copilot to its business app suite", "date": "March 6, 2023", "description": "Microsoft today introduced what it's calling the \"next generation\" of AI product updates across its... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR2G.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514156/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fmicrosoft-dynamics-copilot%2f/RK=2/RS=oJzXo_9YLSC6S35nqJ_5av9Kv0M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "If you have more than one business model, you don't have a business model", "date": "March 5, 2023", "description": "The ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR2m.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514156/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f05%2fkeep-it-simple-on-the-business-models%2f/RK=2/RS=HKGk9zcl2omHH_sCO9poJFj_iUs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Open banking startup Abound nabs $601M to supercharge its AI-based consumer lending platform", "date": "March 6, 2023", "description": "...data and rails and using them as an alternative to traditional credit networks to build products.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR3G.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514157/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fopen-banking-loans-platform-abound-nabs-601m-to-supercharge-its-consumer-lending-business%2f/RK=2/RS=qf3h0JB3DlZKHjlUbxsthGTJYVM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Game developer bans 6,700 cheaters and publishes their usernames", "date": "March 6, 2023", "description": "... from Tarkov game. Lorenzo has more. You get a loan and you get a loan!: Ingrid writes that... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR3m.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514157/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fdaily-crunch-game-publisher-bans-6700-cheaters-and-publishes-their-usernames%2f/RK=2/RS=sYquk8ZxNQtRygU8Xp3vrrDZooY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How to turn an open source project into a profitable business", "date": "March 2, 2023", "description": "Despite the premise of open source software distribution being \"free,\" multibillion dollar companies... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR4G.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514157/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fhow-to-turn-an-open-source-project-into-a-profitable-business%2f/RK=2/RS=cubc2tmZd.ipas53P.vicNj9Azg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Savant Labs aims to bring analytics directly to line of business users", "date": "March 1, 2023", "description": "Too often over the last decade, line of ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLhspwtk.JcR4m.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514157/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fsavant-labs-aims-to-bring-analytics-directly-to-line-of-business-users%2f/RK=2/RS=BdA8y315Y5yrT8moPzgCmqav2o4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Twilio cuts 17% of its workforce just months after previous round of layoffs", "date": "February 13, 2023", "description": "Twilio just announced that it will be conducting a round of ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSVCynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f13%2ftwilio-cuts-17-of-its-workforce-just-months-after-previous-round-of-layoffs%2f/RK=2/RS=Y9f.28hzpBbuyIwDsSh.fkOFRas-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Meta is reportedly planning a fresh round of layoffs", "date": "February 13, 2023", "description": "Meta is preparing a fresh round of job cuts, according to a report from the Financial Times. Two... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSViynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f13%2fmeta-reportedly-planning-fresh-round-layoffs%2f/RK=2/RS=LEOWk6Lj4TSOU20Mz7O24yZV2Fs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Elon takes the stand, Akio Toyoda hands over the CEO keys and layoffs come for Waymo", "date": "January 30, 2023", "description": "Tesla shareholders who traded the company\u2019s stock in the days after CEO Elon Musk\u2019s infamous 2018... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSWCynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2felon-takes-the-stand-akio-toyoda-hands-over-the-ceo-keys-and-layoffs-come-for-waymo%2f/RK=2/RS=UnIV4DTZCuI5f0rDd10klPWVevk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Zoom layoffs impact 15% of staff", "date": "February 7, 2023", "description": "After an unfathomable boom at the onset of the pandemic, Zoom has made the decision to cut 15% of... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSWiynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2fzoom-layoffs-impact-15-of-staff%2f/RK=2/RS=Fawtg0z0K0DrtsRCN2aAaqQhzoE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Groupon cuts another 500 employees in second round of layoffs", "date": "January 30, 2023", "description": "Groupon has laid off another 500 employees in a bid to cut costs, the company said in an SEC filing... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSXCynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2fgroupon-cuts-another-500-employees-in-the-second-round-of-layoffs%2f/RK=2/RS=.CQXlBGCCee_Trp0gFNRe9ECf5U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With SVB locked up, how are startups going to pay for stuff?", "date": "2 hours ago", "description": "TechCrunch is currently busy reporting the hell out of the SVB crisis, but as we sort out the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSXiynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fwith-svb-locked-up-how-are-startups-going-to-pay-for-stuff%2f/RK=2/RS=3OJfG_gdDcg8znyWL5DmtWH6.uY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TC+ roundup: Silicon Valley Bank fails, fintech VC survey, B2B growth tools", "date": "3 hours ago", "description": "To protect SVB\u2019s former customers, who have around $175 billion in deposits, the Federal Deposit... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSYCynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2ftc-roundup-silicon-valley-bank-fails-fintech-vc-survey-b2b-growth-tools%2f/RK=2/RS=mVvizB_cEJfGrYQODwOGRpqKxg4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Area 120, Google's in-house incubator, severely impacted by Alphabet mass layoffs", "date": "January 20, 2023", "description": "Area 120, the Google in-house incubator responsible for products such as Checks, Tables, Stack and... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSYiynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f20%2farea-120-googles-in-house-incubator-severely-impacted-by-alphabet-mass-layoffs%2f/RK=2/RS=ECcpnaAH4e6bTJ.EZAcQuP0sKEo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Crypto recruiters see opportunity to snatch up talent amid Big Tech layoffs", "date": "January 24, 2023", "description": "A number of major crypto companies in recent months have laid off employees in an effort to keep... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSZCynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f24%2fcrypto-recruiters-see-opportunity-to-snatch-up-talent-amid-big-tech-layoffs%2f/RK=2/RS=edo4br93qlzihU6qvwb3FkmDflY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ChatGPT goes pro, layoffs at Alphabet, and Dungeons & Dragons flirts with restrictive new licensing", "date": "January 14, 2023", "description": "Welcome, welcome, folks, to Week in Review, TechCrunch's regular column that recaps the last week in... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_41upwtkjhUSZiynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514158/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f14%2fchatgpt-goes-pro-layoffs-at-alphabet-and-dungeons-dragons-flirts-with-restrictive-new-licensing%2f/RK=2/RS=Orle9CwyQIuZe.j4OB_iDKl5liU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Smartphone makers searched for a way forward at MWC 2023", "date": "March 3, 2023", "description": "The arrival of 5G was a nice reprieve, but next-generation telecom standards don\u2019t arrive every... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR79qnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2fsmartphone-makers-searched-for-a-way-forward-at-mwc-2023%2f/RK=2/RS=476DoCS.van2EelQh_4baObaEgo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is Xiaomi's shine dimming in India?", "date": "February 12, 2023", "description": "Xiaomi \u2014 the company that originally made its name as \"the Apple of China\" \u2014 broke out of its home... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR8dqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f12%2fxiaomi-india-challenges%2f/RK=2/RS=Vz9kgZWQuQi9srf1Jtnl8T9BMGI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The tech jobs market might not be as shaky as it feels", "date": "February 16, 2023", "description": "When you lose 100,000 jobs in one month, as happened in tech in January, it\u2019s easy to think that the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR89qnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fjobs-layoffs-big-tech%2f/RK=2/RS=BaYRW3JoYVtosJrwpWTtKyGrNFw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "What's going on in the Dutch startup scene?", "date": "January 27, 2023", "description": "In a magnificently frank conversation, I spoke with HRH Prince Constantijn, fourth in line to the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR9dqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f27%2fhrh-prince-constantijn-at-ces-2023%2f/RK=2/RS=RrR4I4YHOqRyjADoXpa6kZseato-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "House passes historic $2 trillion coronavirus economic rescue bill", "date": "March 27, 2020", "description": "On Friday, the House of Representatives passed a historic stimulus package known as the Coronavirus... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR99qnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f03%2f27%2fcares-act-stimulus-package-covid-19%2f/RK=2/RS=_qdpph0BfMUmpG8ha8r64hWxIto-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "When will IPOs return? The past may hold some clues", "date": "January 4, 2023", "description": "Capital was extremely cheap to borrow as interest rates dipped as low as 1.67% (compared to rates in... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR.dqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f04%2fwhen-will-ipos-return-the-past-may-hold-some-clues%2f/RK=2/RS=jkjMUEQ9nRK.qKrbA8YonHlga5g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TechCrunch+ roundup: Revisit your marketing stack, pitch deck teardown, after the acquisition", "date": "August 5, 2022", "description": "Today, we learned that the U.S. added 528,000 new jobs last month and the ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR.9qnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f05%2ftechcrunch-roundup-revisit-your-marketing-stack-pitch-deck-teardown-after-the-acquisition%2f/RK=2/RS=uJaIBYPz.PRmRx84MRTrKuOO.jo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "3 Black founders predict little will change in VC in 2023", "date": "December 19, 2022", "description": "For Black founders, who have rarely received more than 1% of total venture capital invested in... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR_dqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f19%2f3-black-founders-predict-little-will-change-in-vc-in-2023%2f/RK=2/RS=Wk.5fVEmIffBe3rJEx1kNV7oQIw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Monzo to shutter Las Vegas customer support office, 165 employees being let go", "date": "April 9, 2020", "description": "Following voluntary employee furloughs and salary cuts in the U.K., Monzo is continuing to take... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksR_9qnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f04%2f09%2fmonzo-to-shutter-las-vegas%2f/RK=2/RS=OLh4iwUfC4QhrqL54UplGqqH0SE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Lyft will require face masks for riders and drivers", "date": "May 7, 2020", "description": "Lyft today announced a new health initiative that will require drivers and riders to wear face masks... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWJwpwtkcksRAdunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514160/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f05%2f07%2flyft-now-requires-face-masks-for-riders-and-drivers%2f/RK=2/RS=I9sNbKqjXcJXWYsWwp1Xq4DWxAs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "To fix the climate, these 10 investors are betting the house on the ocean", "date": "March 2, 2023", "description": "Climate change is a problem important and pressing enough that investors have begun to grasp the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR4QSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fto-fix-the-climate-these-10-investors-are-betting-the-house-on-the-ocean%2f/RK=2/RS=lwpEkZKVbmQET7f0qev9S6NnZSM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Waymo cuts 200 employees after second round of layoffs", "date": "March 1, 2023", "description": "Alphabet's Waymo has issued its second round of layoffs this year, the company confirmed to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR4wSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fwaymo-cuts-200-employees-after-second-round-of-layoffs%2f/RK=2/RS=mJ2tFaCM7LrmlK_6oP56I2xc8mw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Biotech proved a surprisingly bright spot in 2022\u2019s startup correction", "date": "February 25, 2023", "description": "No startup sector was entirely immune from the 2022\u2019s market uncertainty \u2014 except maybe AI \u2014 but... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR5QSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f25%2fbiotech-fundraising-2022%2f/RK=2/RS=EkTVffaD9N73CH_eIe2drsjV3fQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is ocean conservation the next climate tech? 7 investors explain why they\u2019re all in", "date": "February 23, 2023", "description": "For an ecosystem that covers a majority of the planet, the oceans have basically been ignored by... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR5wSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fis-ocean-conservation-the-next-climate-tech-7-investors-explain-why-theyre-all-in%2f/RK=2/RS=I8Yip12kQujoXv5e2nuRI4j9lBA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "5 tactics for managing paid customer acquisition during a downturn", "date": "February 21, 2023", "description": "Companies across every sector were paying more per \u201ceyeball\u201d than ever as customer acquisition costs... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR6QSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f21%2f5-tactics-for-managing-paid-customer-acquisition-during-a-downturn%2f/RK=2/RS=vPyKGkAOiuofegj66PufC8CauMY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is this the end of the BNPL boom?", "date": "February 13, 2023", "description": "When the economy was booming, the buy now, pay later space thrived. Citing economic turbulence,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR6wSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f13%2fis-this-the-end-of-the-bnpl-boom%2f/RK=2/RS=OwEwramP5Yo3G1LzIptNUwXg01M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Got product-market fit? Learn how to find it at TC Early Stage", "date": "February 17, 2023", "description": "This one crucial achievement determines the future growth and profitability of your startup, which... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR7QSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2fhow-to-find-product-market-fit-techcrunch-early-stage-2023%2f/RK=2/RS=dvOwf9ejWKxmx4mJEefwirgA87Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Lyft is charging riders wait time fees \u2014 but drivers aren't reaping the rewards", "date": "February 17, 2023", "description": "Lyft finally started charging riders wait time fees in December, but drivers are complaining those... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR7wSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2flyft-is-charging-riders-wait-time-fees-but-drivers-arent-reaping-the-rewards%2f/RK=2/RS=7IAG7_i1DwlJVWeGk.UmE6gtMw0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ushur, which aims to automate aspects of the customer experience, raises $50M", "date": "February 7, 2023", "description": "In a recent survey by Zapier -- not the most unbiased source, granted, given that the company sells... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR8QSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2fushur-which-aims-to-automate-aspects-of-the-customer-experience-raises-50m%2f/RK=2/RS=PATDty.NhoW9wgBngYmWLj2NrWI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The tech jobs market might not be as shaky as it feels", "date": "February 16, 2023", "description": "When you lose 100,000 jobs in one month, as happened in tech in January, it\u2019s easy to think that the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGRypwtk4BIR8wSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514162/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fjobs-layoffs-big-tech%2f/RK=2/RS=vrDwd8QFEcmlHAsmJHoG3iB1ULI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Meta sued by Ethiopians and Kenyan rights group for fueling Tigray War", "date": "December 14, 2022", "description": "...and southern Africa. The case claims that Meta has failed to employ enough safety measures on... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R0FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f14%2fmeta-sued-by-ethiopians-and-kenyan-rights-group-for-fueling-tigray-war%2f/RK=2/RS=sqAIx_1qea3D40TeWz6DWQNzV2I-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Meta reports takedowns of influence ops targeting US midterms, Ukraine war", "date": "September 27, 2022", "description": "Another bit of self-reporting from Meta today vis-a-vis internal efforts to identify and shut down... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R0linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f09%2f27%2fmeta-disinformation-china-russia-us-midterms-ukraine%2f/RK=2/RS=AmMbsYjtyAIG4UIdCPx.jLTFyIc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "GOP\u2019s war on ESG could come back to bite it", "date": "October 6, 2022", "description": "Less than two months before Hurricane Ian swept across Florida, its governor, Ron DeSantis, referred... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R1FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f10%2f06%2fgops-war-on-esg-could-come-back-to-bite-it%2f/RK=2/RS=R76UaAh8Cz3oxqrHTy8Z7H0_lNE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Review: God of War Ragnarok", "date": "November 3, 2022", "description": "The 2018 reboot of long-running PlayStation action series God of ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R1linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f11%2f03%2freview-god-of-war-ragnarok%2f/RK=2/RS=Dr2cDpg5NTNKDAP33.AXpnugy1E-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Amazon set to release a \u2018God of War\u2019 live-action series on Prime Video", "date": "December 14, 2022", "description": "\u201cGod of ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R2FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f14%2famazon-prime-video-god-of-war-live-action-series%2f/RK=2/RS=ibqkFoCCOmDJv4O0WElpDsgHUnQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How to effectively manage a remote team during wartime", "date": "October 31, 2022", "description": "There are a lot of studies about crisis management on the web, but none of them tell us how to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R2linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f10%2f31%2fhow-to-effectively-manage-a-remote-team-during-wartime%2f/RK=2/RS=yKnQMBaTGLhcCO50upnJ0lICXYI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Why invest in Ukrainian startups today?", "date": "February 3, 2023", "description": "For the first time in the program's history, it will include targeted support for Ukraine. This is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R3FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f03%2fwhy-invest-in-ukrainian-startups-today%2f/RK=2/RS=2jjHlIt12rrkaRXGV4oqM0cz2Io-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Humane, a secretive AI startup founded by ex-Apple employees, raises another $100M", "date": "March 8, 2023", "description": "A startup founded by ex-Apple design and engineering team Imran Chaudhri and Bethany Bongiorno,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R3linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fhumane-the-secretive-ai-startup-founded-by-ex-apple-employees-raises-another-100m%2f/RK=2/RS=mA3Xe7ZCdwkvrnnnRGVp_BmgiBU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Slush revokes $1M pitch prize from Russian founders after industry outcry [Updated]", "date": "November 21, 2022", "description": "Immigram -- a talent immigration platform founded by two Russian passport holders -- has been... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R4FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f11%2f21%2fslush-and-vc-pitch-judges-revoke-decision-to-hand-1m-to-russian-founders-after-industry-outcry%2f/RK=2/RS=nFHlRjtynlFt8eDpoBkESaH.oRo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sonos CEO Patrick Spence on right to repair, spatial audio and those never-ending lawsuits", "date": "March 7, 2023", "description": "This morning Sonos announced a pair of speakers. The Era 100 is a $249 stereo system that replaces... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeVh0pwtko98R4linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514164/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fsonos-ceo-patrick-spence-on-right-to-repair-spatial-audio-and-those-never-ending-lawsuits%2f/RK=2/RS=fPxOzhW3akmu6mB4Akfmd3DWKH4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank shoots self in foot", "date": "24 hours ago", "description": "It may go down in the history books about Silicon Valley: the time that its most prominent bank, a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPYhOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilicon-valley-bank-shoots-self-in-foot%2f/RK=2/RS=IlKdzZE7nRRFCBvH4JQMkw_HZnM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A look at the budding market for the text that prompts AI systems", "date": "March 9, 2023", "description": "Writing the text strings that instruct AI systems like ChatGPT and DALL-E 2 to generate essays,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPZBOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fa-look-at-the-budding-market-for-the-text-that-prompts-ai-systems%2f/RK=2/RS=3K8U1lhDQni0FBTSTBI_ppFG0Wk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Envisics raises $50M at a $500M valuation for its in-car holographic tech", "date": "March 8, 2023", "description": "The automotive industry is starting to show some signs of recovery after a big contraction during... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPZhOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fenvisics-raises-50m-at-a-500m-valuation-for-its-in-car-holographic-tech%2f/RK=2/RS=e8hb.A6rdFTC4ecU_ChZ7VMJ6oE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "UK takes another bite at post-Brexit data protection reform -- with 'new GDPR'", "date": "March 8, 2023", "description": "Turns out the UK government, under current prime minister Rishi Sunak, is not replacing the GDPR, as... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPaBOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fuk-data-reform-bill-no-2%2f/RK=2/RS=gfwAxbfZAOEvlqIxXySFEWvdZoI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: AI-driven fintech Candidly nabs $20.5M Series B to help consumers 'crush debt'", "date": "March 7, 2023", "description": "It\u2019s been a busy news day, and Haje is on deadline trying to finish this week\u2019s pitch deck teardown,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPahOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fdaily-crunch-ai-driven-fintech-candidly-nabs-20-5m-series-b-to-help-consumers-crush-debt%2f/RK=2/RS=35n7T1RG6W0p2wNe0kGGOqPuYgI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "When will IPOs return? The past may hold some clues", "date": "January 4, 2023", "description": "Capital was extremely cheap to borrow as interest rates dipped as low as 1.67% (compared to rates in... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPbBOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f04%2fwhen-will-ipos-return-the-past-may-hold-some-clues%2f/RK=2/RS=V3gCa7T2sBwdNVkt4HZO_U1hc0k-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Assured Allies secures $42.5M Series B to help Americans \u2018successfully age\u2019", "date": "March 7, 2023", "description": "Assured Allies, an insurtech company focused on retirement savings, announced today the closing of... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPbhOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fassured-allies-retirement-insurance-series-b%2f/RK=2/RS=Rzxgvlu0otRlHg6VsztsxndPvus-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A list of robotics companies that are hiring", "date": "March 7, 2023", "description": "The ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPcBOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fa-list-of-robotics-companies-that-are-hiring%2f/RK=2/RS=ss45xAk0UbUFTvG_7Qy4cSrIDEY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Max Q: About that 'for sale' sign on a ULA Atlas V", "date": "March 6, 2023", "description": "According to data reviewed by TechCrunch, Chinese subsidiaries of American venture capital firms are... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPchOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fmax-q-about-that-for-sale-sign-on-a-ula-atlas-v%2f/RK=2/RS=OSUOhmsXpoyaLT1lyYLO3SUj0hA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "What you need to know about raising a Series A", "date": "March 7, 2023", "description": "A Series A, however, requires that big vision plus business traction. Josh Coyne, partner at Kleiner... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgNrN2pwtkdrQPdBOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514166/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fhow-to-raise-series-a-techcrunch-early-stage-2023%2f/RK=2/RS=iOUTgWM0lxEiWynOCy8hbz_pNQo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Samsung heir receives presidential pardon in a bid to 'overcome economic crisis'", "date": "August 12, 2022", "description": "Samsung Electronics vice chairman Jay Y. Lee will receive a presidential pardon on Monday, South... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ4f.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f12%2fsamsung-heir-receives-presidential-pardon-in-a-bid-to-overcome-economic-crisis%2f/RK=2/RS=03mRqT4akSQVFl8..eVK7e.NGOY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "When will IPOs return? The past may hold some clues", "date": "January 4, 2023", "description": "Capital was extremely cheap to borrow as interest rates dipped as low as 1.67% (compared to rates in... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ4_.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f04%2fwhen-will-ipos-return-the-past-may-hold-some-clues%2f/RK=2/RS=w7gVxy77kFj2vqdL0Bng4Z0wl6g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Yelp update to warn consumers Crisis Pregnancy Centers aren't abortion care providers", "date": "August 23, 2022", "description": "Yelp is now following suit. The company announced, in an exclusive first shared with Axios, that it... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ5f.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f23%2fyelp-update-to-warn-consumers-crisis-pregnancy-centers-arent-abortion-care-providers%2f/RK=2/RS=uF2eoAQrxETl136N6zzA25L2NqA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Gowalla returns to see if location-based networking is ready for its mainstream moment", "date": "9 hours ago", "description": "Gowalla co-founder and CEO Josh Williams is heading to the annual SXSW music, technology and arts... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ5_.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fgowalla-location-based-social-app%2f/RK=2/RS=7zINfrL1yhTcPcAXeQG1_ad.NtE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How to effectively manage a remote team during wartime", "date": "October 31, 2022", "description": "There are a lot of studies about ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ6f.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f10%2f31%2fhow-to-effectively-manage-a-remote-team-during-wartime%2f/RK=2/RS=6vlwWnyFcmuuls_MItW4BoR.WOI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Crypto-friendly bank Silvergate to wind down after FTX blow-up", "date": "March 8, 2023", "description": "...Corporation, the holding company of crypto-focused Silvergate Bank, announced Wednesday its... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ6_.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fcrypto-friendly-bank-silvergate-to-wind-down-after-ftx-blow-up%2f/RK=2/RS=HJJC9FoXnowKI9godnFvyZ32p5Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Google Search and Maps will now clearly label if a healthcare facility provides abortions", "date": "August 25, 2022", "description": "Google will start adding clear labels to Search and Map listings for healthcare facilities that... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ7f.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f25%2fgoogle-search-and-maps-will-now-clearly-label-if-a-healthcare-facility-provides-abortions%2f/RK=2/RS=ur17f2P7GuxRS08Lj2rw8td8x5c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Fynn raises $36M for a platform to finance students in vocational education", "date": "March 7, 2023", "description": "A startup called Fynn has built a financing platform for these vocational hopefuls -- a \"SoFi for... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ7_.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2ffynn-raises-36m-for-a-platform-to-finance-students-in-vocational-education%2f/RK=2/RS=9QvEuZKlNPwL8yOFOEP7THYMrLE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The tech behind Artifact, the newly launched news aggregator from Instagram's co-founders", "date": "March 7, 2023", "description": "Late last month, Artifact, a personalized news reader built by Instagram\u2019s co-founders, opened to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ8f.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fthe-tech-behind-artifact-the-newly-launched-news-aggregator-from-instagrams-co-founders%2f/RK=2/RS=LoEtXBjmDLl0oqwKoB_KnbSoLdo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How Scout Motors plans to bring rugged, retro cred to the EV era", "date": "March 3, 2023", "description": "\"We're operating out of everywhere,\" Scott Keogh said with a laugh in his first interview as CEO of... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjZsd3pwtkpfIQ8_.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514167/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2fhow-scout-motors-plans-to-bring-rugged-retro-cred-to-the-ev-era%2f/RK=2/RS=dMsyqApWjtdR5rzFTaz4tXRD4jo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Bird still has a long way to go to reach profitability", "date": "10 hours ago", "description": "Shared micromobility company Bird reported a somewhat head-scratching fourth-quarter and full-year... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsSyganBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fbird-still-has-a-long-way-to-go-to-reach-profitability%2f/RK=2/RS=pIHwqshBPKZgLt7uo2D2FengZGQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Apple could reportedly release a HomePod with a display", "date": "10 hours ago", "description": "According to analyst Ming-Chi Kuo, Apple could be working on a new HomePod device that would feature... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsSzAanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fapple-could-reportedly-release-a-homepod-with-a-display%2f/RK=2/RS=y0IPVobpJXSnDeD6SHSrtnMUGQo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "PeopleGrove security lapse exposed users' personal information", "date": "9 hours ago", "description": "PeopleGrove confirmed Thursday that ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsSzganBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fpeoplegrove-users-data-exposed%2f/RK=2/RS=zrH9UBMuqhXDPUi9JxL4PvFAGOo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Everything you know about computer vision may soon be wrong", "date": "8 hours ago", "description": "Computer vision could be a lot faster and better if we skip the concept of still frames and instead... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS0AanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fubicept-computer-vision%2f/RK=2/RS=mfSmDVJx1BYoSSuXzesvZRxAEy8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Flat is the new up, down is the new flat, dead is the new down", "date": "7 hours ago", "description": "Hello and welcome back to Equity, a podcast about the business of startups, where we unpack the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS0ganBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fflat-is-the-new-up-down-is-the-new-flat-dead-is-the-new-down%2f/RK=2/RS=_WpJHXfhhnM.hlLuLaF1viXLFQM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "For startup competition, SVB\u2019s nightmare is a win and a dare", "date": "3 hours ago", "description": "At least that\u2019s the case for Series CEO Brexton Pham, who has been building a full-stack enterprise... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS1AanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2ffor-startup-competition-svbs-nightmare-is-a-win-and-a-dare%2f/RK=2/RS=d3BxgjVEkRAtaPzcd3nIsEtmFjA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "UK closes 'Jedi Blue' antitrust collusion case against Google and Meta", "date": "7 hours ago", "description": "The U.K.'s Competition and Markets Authority (CMA) won't be pursuing an anticompetition collusion... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS1ganBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fuk-retreats-from-jedi-blue-antitrust-collusion-case-against-google-and-meta%2f/RK=2/RS=CP.xxWZGqpKwbzPRfRBOUMfN2rE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How the FBI proved a remote admin tool was actually malware", "date": "March 9, 2023", "description": "On Thursday, the U.S. government announced that ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS2AanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fhow-the-fbi-proved-a-remote-admin-tool-was-actually-malware%2f/RK=2/RS=ASrz4jNUafS4U9ctpyd_lm4G3YI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "It turns out burn reduction at startups is more aspiration than reality", "date": "March 9, 2023", "description": "'s not every day that banking news is the big story in the startup world, but here we are.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS2ganBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fit-turns-out-burn-reduction-at-startups-is-more-aspiration-than-reality%2f/RK=2/RS=n0lFAE8lewRdgLU1wKj63dHBM90-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "New wave of VC funds show it's time to rethink how many LPs is \u2018too many'", "date": "March 9, 2023", "description": "Last month, Chicago-based Chalo Ventures surpassed 100 LPs. For founder and general partner Haris... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjcFd5pwtkcHsS3AanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514169/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fventure-capital-firms-limited-partners%2f/RK=2/RS=dF76NjgA_TyMER64uL1LWBmOY8c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Perhaps Substack can grow just fine without venture dollars", "date": "March 3, 2023", "description": "Substack, a publishing platform known for its newsletter service, announced this week that it had... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR2qSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2fperhaps-substack-can-grow-just-fine-without-venture-dollars%2f/RK=2/RS=eW.EcKF7dXKVQfE97QfSpo_s.84-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TikTok launches 'Sounds for Business' to help marketers create engaging content", "date": "February 28, 2023", "description": "TikTok announced today that it's launching Sounds for ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR3KSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2ftiktok-launches-sounds-for-business-to-help-marketers-create-engaging-content%2f/RK=2/RS=L1F9xyCDxwGPCmzfRp48jDRiGrA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TechCrunch+ roundup: Ocean tech investor survey, AI and PR, L-1 visa options", "date": "March 3, 2023", "description": "Last week, the U.S. Federal Trade Commission, which protects consumers from deceptive ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR3qSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2ftechcrunch-roundup-ocean-tech-investor-survey-ai-and-pr-l-1-visa-options%2f/RK=2/RS=qftAbEdkP759T8oSrsQ6HfIOx2c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Bitwise Industries lands $80M to expand its sprawling software dev business", "date": "February 28, 2023", "description": "In 2013, Irma Olguin Jr. -- a third-generation Mexican American and the first in her family to go to... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR4KSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2fbitwise-industries-lands-80m-to-expand-its-sprawling-software-dev-business%2f/RK=2/RS=cZ1NFHlHm7xutxVt0pL8PKvmrFM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sono Motors has killed off its Sion EV in a pivot to solar tech business", "date": "February 24, 2023", "description": "The German-based company, which went public in November 2022, announced Friday it is laying off 300... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR4qSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fsono-motors-has-killed-off-its-sion-ev-in-a-pivot-to-solar-tech-business%2f/RK=2/RS=1sJNStLRNpDMzf5K.amnk9DMiEA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Coinbase is adding another layer to its business through the blockchain space", "date": "February 23, 2023", "description": "...rolled out in the layer-2 blockchain space as Coinbase, the second largest crypto exchange by... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR5KSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fcoinbase-is-adding-another-layer-to-its-business-through-the-blockchain-space%2f/RK=2/RS=SwiZqvFLm.6Jft6zNlXRv2UBTvs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Pagos raises $34M as the demand for 'payment intelligence' rises", "date": "February 27, 2023", "description": "...Braintree/Venmo was acquired by PayPal in September 2013. Blomberg, for his part, has launched... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR5qSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fpagos-raises-34m-as-the-demand-for-payment-intelligence-rises%2f/RK=2/RS=ntBRtSCnYPg.nnEqtaIC8oycKac-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Pitch Deck Teardown: MiO Marketplace's $550K angel deck", "date": "March 9, 2023", "description": "Of those 40, just three were angel rounds, so today, we'll take apart the angel deck of MiO... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR6KSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsample-angel-pitch-deck-mio-marketplace%2f/RK=2/RS=sE69ybQzqOLxcxr9Z1TIpRI6Obw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "For startup competition, SVB\u2019s nightmare is a win and a dare", "date": "3 hours ago", "description": "At least that\u2019s the case for Series CEO Brexton Pham, who has been building a full-stack enterprise... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR6qSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2ffor-startup-competition-svbs-nightmare-is-a-win-and-a-dare%2f/RK=2/RS=fpzYhBYxkcTuMsZnqTzBEzYT_8g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TC+ roundup: Silicon Valley Bank fails, fintech VC survey, B2B growth tools", "date": "3 hours ago", "description": "To protect SVB\u2019s former customers, who have around $175 billion in deposits, the Federal Deposit... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.xBd7pwtkhpoR7KSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514172/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2ftc-roundup-silicon-valley-bank-fails-fintech-vc-survey-b2b-growth-tools%2f/RK=2/RS=23DLNUglXNJvERtdxuZ9ek5oIvA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "While layoffs keep coming, so far Apple has steered clear", "date": "January 20, 2023", "description": "On Wednesday, Microsoft announced it was laying off 10,000 people. You\u2019ll notice one company is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRfl2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f20%2fwhile-layoffs-keep-coming-so-far-apple-has-steered-clear%2f/RK=2/RS=9aWwkDB64TAPffVfe6ecdl6WXN0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Even well-funded fintech companies are laying off workers", "date": "February 6, 2023", "description": "...so that we could at least have some power for a little while. Anyway, hopefully by the time I\u2019m... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRgF2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f06%2feven-well-funded-fintech-companies-are-laying-off-workers%2f/RK=2/RS=6t5OXPkHj97eJEiapAT7BtWACaE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Salesforce turmoil continues into new year, as recent layoffs attest", "date": "January 10, 2023", "description": "Salesforce has been in the news a lot recently, and largely not for positive reasons. It has been an... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRgl2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f10%2fsalesforce-turmoil-continues-into-new-year-as-recent-layoffs-attest%2f/RK=2/RS=1zJBayCcVCof.w.gfd5XCYHV18c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Laid off from your crypto job? Here's what founders are looking for in new talent", "date": "January 26, 2023", "description": "continue to spread across the crypto job market amid macroeconomic volatility and bearish... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRhF2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f26%2flaid-off-from-your-crypto-job-heres-what-founders-are-looking-for-in-new-talent%2f/RK=2/RS=d0tAJBFpSzxKdMt.P8j3bJkcwuo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Google parent Alphabet cuts 6% of its workforce, impacting 12,000 people", "date": "January 20, 2023", "description": "... Pichai, the narrative followed a similar trajectory to that of other companies that have... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRhl2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f20%2fgoogle-parent-alphabet-cuts-6-of-its-workforce-impacting-12000-people%2f/RK=2/RS=dtuQ3pseFSSyi2lqLmG3XP4VRq0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sophos to lay off 450 employees globally", "date": "January 18, 2023", "description": "\"Sophos today announced an internal restructuring which has resulted in job losses and the start of... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRiF2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f18%2fsophos-global-layoffs%2f/RK=2/RS=GggnN4lrxJEi.ElocK3cb83ZZNM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Waymo lays off staff as Alphabet announces 12,000 job cuts", "date": "January 24, 2023", "description": "Waymo, the self-driving technology unit under Alphabet, quietly laid off workers Monday, according... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRil2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f24%2fwaymo-lays-off-staff-as-alphabet-announces-12000-job-cuts%2f/RK=2/RS=Vtkh8IXFWG8T1SfkHClyRv6WZ4o-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Spotify cuts 6% of its workforce, impacting 600 people", "date": "January 23, 2023", "description": "Music streaming service Spotify has announced that it will be conducting a round of ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRjF2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f23%2fspotify-cuts-6-of-its-workforce-impacting-600-people%2f/RK=2/RS=zkaJfNAcUijPDUtU5VnyDMmPRh0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: GoMechanic lays off 70% after investors discover 'founders knowingly misstated facts'", "date": "January 18, 2023", "description": "More ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRjl2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f18%2fdaily-crunch-gomechanic-lays-off-70-after-investors-discover-founders-knowingly-misstated-facts%2f/RK=2/RS=6OKH6zDN_TKj0_JHnESfJ37udvI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Company created by Citrix-Tibco merger confirms it has laid off 15% of staff", "date": "January 11, 2023", "description": "The continuing onslaught of tech ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE1.pwtkeewRkF2nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514174/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f11%2fcompany-created-by-citrix-tibco-merger-confirms-it-has-laid-off-15-of-staff%2f/RK=2/RS=SOctov7OBe__vo.hQNi9t9N10do-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "OpenClassrooms Premium Is Now Free For Unemployed People In France", "date": "October 23, 2015", "description": "OpenClassrooms is one of the leading MOOC platform in France, and it signed an interesting deal with... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSrRunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2015%2f10%2f23%2fopenclassrooms-premium-is-now-free-for-unemployed-people-in-france%2f/RK=2/RS=w24tpoDSrA8oK7s4H5NbypANu1Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Get fired? Virgin Mobile will eat your phone bill for 3 months", "date": "April 9, 2009", "description": "It started with the car companies. Looking to capture some of this crazy in a bottle and turn it... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSrxunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2009%2f04%2f09%2fget-fired-virgin-mobile-will-eat-your-phone-bill-for-3-months%2f/RK=2/RS=gq01DFBLhDwkace7bMoSe04oB7o-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Smartphone shipments dropped 9% in Q2", "date": "July 18, 2022", "description": "The trend pre-dates the pandemic, but has only accelerated during the pandemic, thanks to various... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSsRunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f07%2f18%2fsmartphone-shipments-dropped-9-in-q2%2f/RK=2/RS=kWzS4H9fhL700Gfb939_G.cOTDs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Flipboard expands local news coverage to reach 50 cities across US and Canada", "date": "June 9, 2020", "description": "In January, personalized news app Flipboard announced it was expanding into local news. From the new... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSsxunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f06%2f09%2fflipboard-expands-local-news-coverage-to-reach-50-cities-across-u-s-and-canada%2f/RK=2/RS=le3tQz.5dgd.P.1WF6292yPYH3A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Instacart shoppers are planning a nationwide strike to demand better safety protections and pay amid...", "date": "March 27, 2020", "description": "Instacart shoppers, led by the folks over at Gig Workers Collective, are planning a nationwide... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgStRunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f03%2f27%2finstacart-shopper-strike-covid-19%2f/RK=2/RS=k5WgKv7ZbiZAy48aYmQ5bhUje_U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Bold Knot Is A Cute Top-Up Charger Built By A Startup From The West Bank", "date": "May 29, 2015", "description": " https://tcprotectedembed.com/protected-iframe/5bc51824b8fd246a3673016c50d9867c-24588526-39990176 (... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgStxunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2015%2f05%2f29%2fbold-knot%2f/RK=2/RS=BCpZpDXOPaTPFUdw.CH3NQ1V5RU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "AI startup Eightfold valued at $2.1B in SoftBank-led $220M funding", "date": "June 10, 2021", "description": "Eightfold AI, a startup which uses deep learning and artificial intelligence to help companies find,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSuRunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f06%2f10%2fai-startup-eightfold-valued-at-2-1b-in-softbank-led-220m-funding%2f/RK=2/RS=yrl6AIeUqqPJhZQw1AheUjV.dBg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Castiron serves up a $6M seed round to support 'food artisans'", "date": "January 18, 2022", "description": "The pandemic hasn't been easy for anyone, but the food service industry has been hit particularly... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSuxunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f01%2f18%2fcastiron-serves-up-a-6m-seed-round-to-support-food-artisans%2f/RK=2/RS=TLLymZPQtRST23.K.z.1tfrU.hY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Time to rethink every website in the world", "date": "August 11, 2011", "description": "I tried out Kindle Cloud Reader and holy shit, I feel like Mosaic was just invented and now we have... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSvRunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2011%2f08%2f11%2ftime-to-rethink-every-website-in-the-world%2f/RK=2/RS=O2g275d_Dus0bu3E0Zt6K5LkorA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Stocks are selling off again, and SaaS shares are taking the biggest lumps", "date": "September 4, 2020", "description": "Update: While this piece was in edit, news broke in the FT and the WSJ that SoftBank -- yes, that... ", "url": "https://search.techcrunch.com/click/_ylt=Awr4.RWApwtkTFgSvxunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514176/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f09%2f04%2fstocks-are-selling-off-again-and-saas-shares-are-taking-the-biggest-lumps%2f/RK=2/RS=yqavmTvk_1cjco4jZpZ2yeaIgkg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ToolJet, an open source low-code app builder, wants to help companies do more with less", "date": "February 2, 2023", "description": "Indeed, most of the big tech companies have announced significant layoffs these past few months,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRS_GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f02%2ftooljet-an-open-source-low-code-app-builder-wants-to-help-companies-do-more-with-less%2f/RK=2/RS=yDp_qI_c6fpmN3a6VtyZY84t3qo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ford left '$2B of profits on the table' in 2022", "date": "February 2, 2023", "description": "Ford reported Thursday it earned $10.4 billion in net income last year, falling well below its own... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRTfGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f02%2fford-earnings-left-2b-of-profits-on-the-table-in-2022%2f/RK=2/RS=0s15RnJ3PxlOVOp3MSnMux1PSlQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Zopa, the UK neobank, raises $93M more at a $1B+ valuation", "date": "February 1, 2023", "description": "After raising $300 million in a round led by SoftBank back in 2021, U.K. neobank Zopa has closed a... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRT_GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f01%2fzopa-the-uk-neobank-raises-93m-more-at-a-1b-valuation%2f/RK=2/RS=3WB7msh5NlXeAJ8heiofcP219XI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Disclo aims to inspire inclusive workplaces \u2014 starting with disability accommodations", "date": "February 1, 2023", "description": "Disclo CEO and co-founder Hannah Olson was diagnosed with Lyme disease when she was in college.... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRUfGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f01%2fdisclo-aims-to-inspire-inclusive-workplaces-starting-with-disability-accommodations%2f/RK=2/RS=RYOXFsl_.Qh12mrnldghcxuhlZI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Rebar robotics firm Toggle adds another $3M to its fundraising tally", "date": "February 2, 2023", "description": "There\u2019s no denying that the robotics startup world has taken a hit during the ongoing economic... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRU_GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f02%2frebar-robotics-firm-toggle-adds-another-3m-to-its-fundraising-tally%2f/RK=2/RS=88aIp4L1szUrHvSeCZ2xhnUE8Z4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "$500M in, GV gears up for more deals in Europe with a new partner in London, Luna Dai Schmid", "date": "February 7, 2023", "description": "Startups are raising less, and less often, right now, and some portfolios are buckling under the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRVfGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2f500m-in-gv-gears-up-for-more-deals-in-europe-with-a-new-partner-in-london-luna-dai-schmid%2f/RK=2/RS=zHLxmnEcuNeCUDq.BT.rqpfabqg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Stripper Web, a 20-year-old forum for sex workers, is shutting down. No one knows why.", "date": "January 31, 2023", "description": "\u201cThis place was a digital dressing room where I could listen in on thousands of interesting,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRV_GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f31%2fstripperweb-forum-shut-down%2f/RK=2/RS=Uy4LOh3zk_t1e8rLvP53N.r4UtE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Usage-based pricing is rising, but not replacing other models", "date": "February 2, 2023", "description": "Usage-based pricing (UBP) is on the rise \u2014 61% of SaaS companies used this model in some form in... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRWfGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f02%2fusage-based-pricing-is-rising-but-not-replacing-other-models%2f/RK=2/RS=DVv3LHGTQvj1.E4c7zH9bv_uh_A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Jumia's investors rethink their stakes \u2014 for better and worse", "date": "January 26, 2023", "description": "Baillie Gifford, the Edinburgh-based asset management firm long known to have a penchant for pre-IPO... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRW_GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f26%2fjumias-investors-rethink-their-stakes-for-better-and-worse%2f/RK=2/RS=hG9QfS8RaHzl9oVRWcZtex0G460-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Apple HomePod (2023) review", "date": "January 31, 2023", "description": "...into home control. Smart lights, smart smoke detectors, smart locks, smart doorbells -- and at... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1yiBpwtkiTIRXfGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514178/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f31%2fapple-homepod-2023-review%2f/RK=2/RS=VytskCPS6m.pqepFlx.ieelWIxs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sonos CEO Patrick Spence on right to repair, spatial audio and those never-ending lawsuits", "date": "March 7, 2023", "description": "This morning Sonos announced a pair of speakers. The Era 100 is a $249 stereo system that replaces... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rga.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fsonos-ceo-patrick-spence-on-right-to-repair-spatial-audio-and-those-never-ending-lawsuits%2f/RK=2/RS=HR8Nmh_iUR9cpjH3Y5FFHi4KUA0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Enterprise SaaS companies continue to navigate a complex economic environment", "date": "March 4, 2023", "description": "It\u2019s been a tough time for enterprise SaaS companies. At the same time, enterprise SaaS companies... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rg6.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f04%2fenterprise-saas-companies-continue-to-navigate-a-complex-economic-environment%2f/RK=2/RS=0C2m.RrlLukyYyF.maK4UVQ1Jd4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "As tensions build, Silicon Valley\u2019s Chinese affiliates invest in sensitive space tech", "date": "March 2, 2023", "description": "Chinese subsidiaries of American venture capital firms are investing money from U.S.-based funds... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rha.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fchina-semiconductor-restrictions-investments%2f/RK=2/RS=i9yVRzRwbYVups63HkNOPVaiu18-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Chase and DoorDash deliver new co-branded credit card with loyalty rewards", "date": "March 1, 2023", "description": "There are indeed some nice perks that come with being a cardholder, but we\u2019ll let Aisha tell you... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rh6.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fdaily-crunch-chase-and-doordash-deliver-new-co-branded-credit-card-with-loyalty-rewards%2f/RK=2/RS=pbP.GbxulGfq7PiEbSqE7CsiBB4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Born of drone tech, insuretech Flock raises $38M Series B to nudge commercial drivers towards safety", "date": "February 27, 2023", "description": "If you tell a driver their insurance premium will go down if they drive more safely, then - it turns... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Ria.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fborn-of-drone-tech-insuretech-flock-raises-38m-series-b-to-nudge-commercial-drivers-towards-safety%2f/RK=2/RS=vZOegNBQ7Ixiq2qGlaVsLUKnGjo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Falling short of analysts' estimates, Warner Bros. Discovery posts $2.1B net loss for...", "date": "February 24, 2023", "description": "Black History Month continues! Fashion layoffs: Secondhand apparel marketplace Poshmark is now... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Ri6.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fdaily-crunch-falling-short-of-analysts-estimates-warner-bros-discovery-posts-2-1b-net-loss-for-q4-2022%2f/RK=2/RS=keLEzatBl_ZfTPOKmQ3iy0zne0o-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Hacker group defaces Russian websites to display the Kremlin on fire", "date": "February 24, 2023", "description": "A hacker group that goes by CH01 defaced a series of Russian websites on the anniversary of the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rja.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fhacker-group-defaces-russian-websites-to-display-the-kremlin-on-fire%2f/RK=2/RS=zU6zg0I9T085jwAqafXxLVhYc38-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Chain Reaction raises $70M, emerges from stealth to launch chips designed to compute encrypted data", "date": "February 23, 2023", "description": "As the networking industry explores homomorphic encryption, blockchains and other cryptographic... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rj6.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fchain-reaction-raises-70m-emerges-from-stealth-to-launch-chips-designed-to-compute-encrypted-data%2f/RK=2/RS=qamAnn6SB9uJMVQQlSFA02FF7v8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Max Q: Only a matter of time", "date": "February 20, 2023", "description": "Lunar technology company Intuitive Machines received far less cash from its merger with a special... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rka.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f20%2fmax-q-only-a-matter-of-time%2f/RK=2/RS=_LxDlKniAvTzFLQU45raxhSS7oY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ford halts production and shipments of electric F-150 Lightning over battery concerns", "date": "February 14, 2023", "description": "Ford paused the F-150 Lightning's production and shipments due to a potential battery issue, a... ", "url": "https://search.techcrunch.com/click/_ylt=Awr929OEpwtkYG4Rk6.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514180/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f14%2fford-halts-production-and-shipments-of-electric-f-150-lightning-over-battery-concerns%2f/RK=2/RS=r7.ppSnTVS_Rx_Tt4BVRHr65Llg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Nigerian B2B e-commerce startup Alerzo cuts 15% of full-time staff in second round of layoffs", "date": "March 6, 2023", "description": "Alerzo, a Nigerian B2B e-commerce platform that digitizes commerce and payments processes between... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIR9z.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fnigerian-b2b-e-commerce-startup-alerzo-cuts-15-of-full-time-staff-in-second-round-of-layoffs%2f/RK=2/RS=IhZUpHGfqfGhn3Qx0s2LexQMrwI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Open banking startup Abound nabs $601M to supercharge its AI-based consumer lending platform", "date": "March 6, 2023", "description": "After a slow start in the U.K. and Europe, open banking is catching on with fintechs, which are... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIR.T.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fopen-banking-loans-platform-abound-nabs-601m-to-supercharge-its-consumer-lending-business%2f/RK=2/RS=mCRBUKQB5elYPOnoKJYdhkTC1TU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Another AV company hits the skids, Scout Motors picks a home and Tesla's tepid investor day", "date": "March 6, 2023", "description": "FYI, next week I will be in Austin to attend SXSW. In the days leading up to Tesla Investor Day,... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIR.z.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fanother-av-company-hits-the-skids-scout-motors-picks-a-home-and-teslas-tepid-investor-day%2f/RK=2/RS=M1Lzn7KYym9ok1nhwVyojy.M0YY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Will one good quarter appease the activist investors dogging Salesforce?", "date": "March 5, 2023", "description": "Salesforce is dealing with five powerful activist investors. Salesforce checked that box with a... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIR_T.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f05%2fsalesforce-activist-investors-earnings-results%2f/RK=2/RS=KBbF_z2cxvTNOc5IE42qPPleRls-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Enterprise SaaS companies continue to navigate a complex economic environment", "date": "March 4, 2023", "description": "It\u2019s been a tough time for enterprise SaaS companies. At the same time, enterprise SaaS companies... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIR_z.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f04%2fenterprise-saas-companies-continue-to-navigate-a-complex-economic-environment%2f/RK=2/RS=YQHAeBmRMDclPibkxnw0Wb3._mU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "This Week in Apps: Jack Dorsey-backed Bluesky, social apps' teen protections, Twitter clients get...", "date": "March 4, 2023", "description": "Welcome back to This Week in Apps, the weekly TechCrunch series that recaps the latest in mobile OS... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIRAUCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f04%2fthis-week-in-apps-jack-dorsey-backed-bluesky-social-apps-teen-protections-twitter-clients-get-help%2f/RK=2/RS=jbNPuvt8rcvV9bvmoEex1jcWF1M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "BlocPower hits its stride, landing $25M Series B to expand its residential energy retrofit platform", "date": "March 3, 2023", "description": "For all the focus on carbon pollution produced by shipping and aviation, some of the most... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIRA0CnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2fblocpower-hits-its-stride-landing-25m-series-b-to-expand-its-residential-energy-retrofit-platform%2f/RK=2/RS=YooE6ZVWq_UHt4WeS1ZZU.ub9FE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "To fix the climate, these 10 investors are betting the house on the ocean", "date": "March 2, 2023", "description": "Climate change is a problem important and pressing enough that investors have begun to grasp the... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIRBUCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fto-fix-the-climate-these-10-investors-are-betting-the-house-on-the-ocean%2f/RK=2/RS=YEktUnXSzRUH7cTl.QWRcr1s9gE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Universal Hydrogen takes to the air with the largest hydrogen fuel cell ever to fly", "date": "March 2, 2023", "description": "As a Universal Hydrogen-branded plane, equipped with the largest hydrogen fuel cell ever to power an... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIRB0CnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2funiversal-hydrogen-takes-to-the-air-with-the-largest-hydrogen-fuel-cell-ever-to-fly%2f/RK=2/RS=XKeM5qrmMGEuT0tAiJ83.HOEe7w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Savant Labs aims to bring analytics directly to line of business users", "date": "March 1, 2023", "description": "Too often over the last decade, line of business people have been forgotten when it comes to... ", "url": "https://search.techcrunch.com/click/_ylt=Awrjc.KGpwtkvdIRCUCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514182/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fsavant-labs-aims-to-bring-analytics-directly-to-line-of-business-users%2f/RK=2/RS=iKlaI75KcmSSXZX2ZpU0TAZWpdg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "To fix the climate, these 10 investors are betting the house on the ocean", "date": "March 2, 2023", "description": "Climate change is a problem important and pressing enough that investors have begun to grasp the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSUAGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fto-fix-the-climate-these-10-investors-are-betting-the-house-on-the-ocean%2f/RK=2/RS=cYWToPm6QXHmN2fsn5eAw75INqg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Universal Hydrogen takes to the air with the largest hydrogen fuel cell ever to fly", "date": "March 2, 2023", "description": "As a Universal Hydrogen-branded plane, equipped with the largest hydrogen fuel cell ever to power an... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSUgGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2funiversal-hydrogen-takes-to-the-air-with-the-largest-hydrogen-fuel-cell-ever-to-fly%2f/RK=2/RS=zhd0jR6raHbhwqBV0re2oGFpsxw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is ocean conservation the next climate tech? 7 investors explain why they\u2019re all in", "date": "February 23, 2023", "description": "For an ecosystem that covers a majority of the planet, the oceans have basically been ignored by... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSVAGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fis-ocean-conservation-the-next-climate-tech-7-investors-explain-why-theyre-all-in%2f/RK=2/RS=26ZvoPeyqL5zEVlzj7Ys6miERNs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "5 tactics for managing paid customer acquisition during a downturn", "date": "February 21, 2023", "description": "Companies across every sector were paying more per \u201ceyeball\u201d than ever as customer acquisition costs... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSVgGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f21%2f5-tactics-for-managing-paid-customer-acquisition-during-a-downturn%2f/RK=2/RS=erDdIjjZShi8LIaICfUT1uoN_38-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Lyft is charging riders wait time fees \u2014 but drivers aren't reaping the rewards", "date": "February 17, 2023", "description": "Lyft finally started charging riders wait time fees in December, but drivers are complaining those... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSWAGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2flyft-is-charging-riders-wait-time-fees-but-drivers-arent-reaping-the-rewards%2f/RK=2/RS=UExjp7aey7YjDzbYcGQtm1J0uyE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Twitter's restrictive API may leave researchers out in the cold", "date": "February 14, 2023", "description": "Earlier this month, Twitter announced that it is going to curtail free access to its API \u2014 the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSWgGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f14%2ftwitters-restrictive-api-may-leave-researchers-out-in-the-cold%2f/RK=2/RS=Vf.ZrMaULC.C4UZH3eDhiQ5Xjuk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Higher egg prices yield demand for alternatives", "date": "February 17, 2023", "description": "Price parity with traditional foods is one of the main challenges for alternative protein startups.... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSXAGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2fhigher-egg-prices-yield-demand-for-alternatives%2f/RK=2/RS=eK6AlgAUgXT2yse.y7mFBhve8eM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Zerocater raises $15M as demand heats up for flexible in-office food services", "date": "February 16, 2023", "description": "Zerocater -- incubated at Y Combinator back in 2011 (back in the days when YC had just 45 companies... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSXgGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fzerocater-raises-15m-as-demand-heats-up-for-flexible-in-office-food-services%2f/RK=2/RS=2ag1tablIaoDdcOo2LfOnt9KRsM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Toyota Research Institute\u2019s robots leave home", "date": "February 16, 2023", "description": "\u201cI think I'm probably just as guilty as everybody else,\u201d Toyota Research Institute's (TRI) senior... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSYAGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2ftoyota-research-institutes-robots-leave-home%2f/RK=2/RS=qYS9oO5rnX7vFQN2.m2GOYfVMhU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Funga wants to accelerate carbon capture using belowground fungal biodiversity", "date": "February 15, 2023", "description": "Funga claims to be the first nature-based carbon removal to be powered by belowground biodiversity... ", "url": "https://search.techcrunch.com/click/_ylt=Awr926qIpwtkeikSYgGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514184/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2ffunga-mushroom-carbon-removal%2f/RK=2/RS=Twzr1W6uIvbinwx2APzGUziRUy0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "India proposes to replace its two-decades-old IT law", "date": "March 9, 2023", "description": "India is proposing to replace ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURvqinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2findia-proposes-to-replace-its-two-decades-old-it-law%2f/RK=2/RS=clHdWLujQwZmhnHWLbirPwfyCh0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank shoots self in foot", "date": "24 hours ago", "description": "may go down in the history books about Silicon Valley: the time that its most prominent bank, a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURwKinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilicon-valley-bank-shoots-self-in-foot%2f/RK=2/RS=kvuZfUJilBgELrD2spj_3xKJn9s-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silvergate\u2019s shiny hinges have rusted as the crypto bank plans to shut down", "date": "March 9, 2023", "description": "On Wednesday, Silvergate Cap", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURwqinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilvergates-shiny-hinges-have-rusted-as-the-crypto-bank-plans-to-shut-down%2f/RK=2/RS=9sfsI_nOjNd5gm4dLAoQ3BZCX7A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Project management service Zenhub raises $10M as it goes beyond GitHub", "date": "March 9, 2023", "description": "Zenhub got its start in 2014 as a project management service for developers that was deeply... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURxKinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fproject-management-service-zenhub-raises-10m-as-it-goes-beyond-github%2f/RK=2/RS=qmlUxQeSJNLo2MnWgkoA6BtPjL4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With this brain map we are one step closer to total fruit fly simulation", "date": "23 hours ago", "description": "...just like us. Unlike us, however, they only have a few thousand neurons in their brains, which... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURxqinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fwith-this-brain-map-we-are-one-step-closer-to-total-fruit-fly-simulation%2f/RK=2/RS=4QqeZJvYAdnXa3mF606wNi0DehY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Meta is working on a decentralized social app", "date": "14 hours ago", "description": "If there is a social media phenomenon getting some kind of popularity, Meta will try to jump in.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURyKinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fmeta-is-working-on-a-decentralized-social-app%2f/RK=2/RS=_tZqsyqWO5dIDdUOEQ7Q0GMVk3U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Mistakes were made (and that's fine)", "date": "March 9, 2023", "description": "...scattered nature of this week\u2019s Actuator. No big, overarching monologs this week \u2014 just a handful... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURyqinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fmistakes-were-made-and-thats-fine%2f/RK=2/RS=TmKhsbNzzbtJgWgc8j9yP8i2ZuU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Some SVB customers are struggling to wire funds out of the bank", "date": "23 hours ago", "description": "The seeming wave of attempted withdrawals comes after SVB announced yesterday that ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURzKinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilicon-valley-back-withdrawal-issues%2f/RK=2/RS=HOwSAnluxGLzzwmpOEFW2ZzW.qk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Loft makes working with virtualized Kubernetes clusters easier", "date": "March 9, 2023", "description": "Loft Labs helps developers -- and the businesses that employ them -- more efficiently use their... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoURzqinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2floft-makes-working-with-virtualized-kubernetes-clusters-easier%2f/RK=2/RS=eKcxUq3UhK2WHX.4fvQDBWdYUqY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Crypto bank Silvergate's 'collywobbles' could add to industry's woes", "date": "March 9, 2023", "description": "Silvergate Cap", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViKpwtknoUR0KinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514186/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilvergate-crypto-bank-problems%2f/RK=2/RS=fynqCHWumUHBycKp7P_1R69DxNs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank is being shut down today by regulators", "date": "5 hours ago", "description": "Silicon Valley Bank has been closed by regulators, which are now in charge of the bank\u2019s deposits,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSKQCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fsilicon-valley-bank-is-being-shut-down-today-by-regulators%2f/RK=2/RS=uVu_oZ5I_8OSb36YRu9Rq19aUKE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TechCrunch+ roundup: Building a core AI team, Brazil\u2019s CVC climate, remote work rituals", "date": "March 7, 2023", "description": "\"This creates a 'chicken or egg' problem: Businesses need production data to deliver a functional... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSKwCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2ftechcrunch-roundup-building-a-core-ai-team-brazils-cvc-climate-remote-work-rituals%2f/RK=2/RS=_wB7O210BzpcaPtszniQx__L9Jw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The best way to start an AI project? Don't think about the models", "date": "March 7, 2023", "description": "The barrier to success for these projects often resides in the time and resources it takes to get... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSLQCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fthe-best-way-to-start-an-ai-project-dont-think-about-the-models%2f/RK=2/RS=eArk_IBlbMuan1Ec3qFaX1ENumI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Going private: A guide to PE tech acquisitions", "date": "February 27, 2023", "description": "Private equity (PE) firms spent a record $226.5 billion on take-private transactions globally in the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSLwCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fgoing-private-a-guide-to-pe-tech-acquisitions%2f/RK=2/RS=XQpjkoOrX8VaSzfGV1CkG460J3k-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "US strengthens tech ties with India but doesn't seek decoupling from China, Raimondo says", "date": "5 hours ago", "description": "The U.S. government is not seeking to \u201cdecouple\u201d from China, nor is it seeking \u201ctechnological... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSMQCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fus-strengthens-tech-ties-with-india-but-doesnt-seek-decoupling-from-china-raimondo-says%2f/RK=2/RS=69EeI44fRyJ1XEuOw._jlEGmZio-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Prelaunch assembles a pre-seed round to help hardware founders pre-build the right pre-products", "date": "5 hours ago", "description": "One of the core challenges is that it has traditionally been hard to do agile hardware product... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSMwCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fprelaunch-com-fundraise%2f/RK=2/RS=ygXp6Ie_y3BF3itWjA9P1WYjGTw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank trading halted; staff asked to work from home as SVB seeks a buyer, say reports", "date": "8 hours ago", "description": "Silicon Valley Bank Financial, the publicly traded holding firm of Silicon Valley Bank, has paused... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSNQCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fsilicon-valley-bank-financial-in-talks-to-sell-itself-report-says%2f/RK=2/RS=l32LJLoZDhN0C1UhRZmXuO9x5f8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Flat is the new up, down is the new flat, dead is the new down", "date": "7 hours ago", "description": "Hello and welcome back to Equity, a podcast about the ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSNwCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fflat-is-the-new-up-down-is-the-new-flat-dead-is-the-new-down%2f/RK=2/RS=qBfLz0E.m6xDV9mqM_pCOj4jpTE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Meta will stop offering Reels bonuses to creators on Facebook and Instagram", "date": "8 hours ago", "description": "Meta is pausing its program to pay bonuses to creators for making Reels and hitting specific... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSOQCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fmeta-will-stop-offering-reels-bonuses-to-creators-on-facebook-and-instagram%2f/RK=2/RS=sOo979iwty3_fkbUyrXgR4K7JOA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Gowalla returns to see if location-based networking is ready for its mainstream moment", "date": "9 hours ago", "description": "Gowalla co-founder and CEO Josh Williams is heading to the annual SXSW music, technology and arts... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO8MuMpwtkoDgSOwCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514188/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fgowalla-location-based-social-app%2f/RK=2/RS=GhInnI.0b.VSNUG3hv9LTbcNoUs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Arrival is running out of cash \u2014 and fast", "date": "March 9, 2023", "description": "The high cost of trying to develop and produce vehicles, a business pivot and three restructurings... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRDranBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2farrival-is-running-out-of-cash-and-fast%2f/RK=2/RS=wM47cHltHVZA8PowQaoj8_PnINc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "MentorcliQ raises over $80 million to grow its employee mentoring software and services", "date": "March 9, 2023", "description": "For years, Phil George was the executive sponsor of a mentoring program at McMaster-Carr, an... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRELanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fmentorcliq-raises-over-80-million-to-grow-its-employee-mentoring-software-and-services%2f/RK=2/RS=hR6NtuWObJfETjUiulpVvdyJj6w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The tech jobs market might not be as shaky as it feels", "date": "February 16, 2023", "description": "When you lose 100,000 jobs in one month, as happened in tech in January, it\u2019s easy to think that the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIREranBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fjobs-layoffs-big-tech%2f/RK=2/RS=.nHsHeKpJvXvt.3Pvm3MCO9OgPU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Better.com\u2019s SPAC gets a lifeline but remains on life support", "date": "March 8, 2023", "description": "Digital mortgage lender Better.com\u2019s SPAC deal with Aurora Acquisition Corp. recently got a new... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRFLanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fbetter-aurora-spac-deal-closing%2f/RK=2/RS=spBEb3K1jodcGsDNQK8hSqEDCuA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Dear Sophie: Last-minute H-1Bs, O-1A & EB-1A extraordinary credential prep", "date": "March 8, 2023", "description": "Here's another edition of \"Dear Sophie,\" the advice column that answers immigration-related... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRFranBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fdear-sophie-last-minute-h-1bs-o-1a-eb-1a-extraordinary-credential-prep%2f/RK=2/RS=zO7z08W_Qvo5X0JqW1EhnL_lThM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Berlin VC fund La Famiglia raises \u20ac250M for both seed and growth B2B startups", "date": "March 8, 2023", "description": "La Famiglia, a Berlin-based VC fund (no, not the Mafia organization, in case there is any confusion)... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRGLanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fberlin-vc-fund-la-famiglia-raises-e250m-for-both-seed-and-growth-b2b-startups%2f/RK=2/RS=NRG5ZMIXti5v8PdSnl6mX16nfmo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Startups should expect more scrutiny from VCs on their hiring plans", "date": "January 25, 2023", "description": "Startups went on a hiring spree in 2021 as VC cash flowed and the job market was hot. The worst for... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRGranBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2fstartups-should-expect-more-scrutiny-from-vcs-on-their-hiring-plans%2f/RK=2/RS=lLn_fRbaWiyV4vcD.c0k3mEDFvM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A list of robotics companies that are hiring", "date": "March 7, 2023", "description": "...We invest so much of our identity in what we do. It\u2019s not healthy, necessarily, but it\u2019s the... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRHLanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fa-list-of-robotics-companies-that-are-hiring%2f/RK=2/RS=2pvgXDPN1XnIwBtKFT3GOyX5yKA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sonos CEO Patrick Spence on right to repair, spatial audio and those never-ending lawsuits", "date": "March 7, 2023", "description": "This morning Sonos announced a pair of speakers. The Era 100 is a $249 stereo system that replaces... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRHranBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fsonos-ceo-patrick-spence-on-right-to-repair-spatial-audio-and-those-never-ending-lawsuits%2f/RK=2/RS=Mq1Rx5f7nCihhPIGxJnoZAtuJXM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Atlassian cuts 5% of its workforce", "date": "March 6, 2023", "description": "Atlassian, the company behind tools like Jira, Confluence and Trello, today announced that, after a... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93miOpwtkppIRILanBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514190/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fatlassian-cuts-5-of-its-workforce%2f/RK=2/RS=jwmV5rZujGZElin5a55p7Tlg.Zo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Apple Tablet will now come with an 9.7-inch OLED screen, says latest rumor", "date": "November 19, 2009", "description": "The sources also indicated that in addition to Foxconn Electronics (Hon Hai Precision Industry),... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R2bOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2009%2f11%2f19%2fapple-tablet-will-now-come-with-an-9-7-inch-oled-screen-says-latest-rumor%2f/RK=2/RS=Ti177HkeW9LV9.vwvZ6P2tf9J3M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Backed By $500,000 In Seed Funding, LiveNinja Launches Its Video Chat Marketplace", "date": "December 7, 2012", "description": "LiveNinja, a video chat marketplace we spotted in TechCrunch Disrupt's Startup Alley in May, is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R27OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2012%2f12%2f07%2fbacked-by-500000-in-seed-funding-liveninja-launches-its-video-chat-marketplace%2f/RK=2/RS=u6uBRId5IuHIG.DwFW9W82Tk5wQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Google announces career and digital training initiative for formerly incarcerated individuals", "date": "April 29, 2021", "description": "Google today announced the launch of Grow with Google Career Readiness for Reentry. The initiative... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R3bOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f04%2f29%2fgoogle-formerly-incarcerated%2f/RK=2/RS=g..I5vrMfJT.EDCR55nwawjWBRQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Does Monster's Acquisition Of Yahoo! HotJobs Matter If The Internet Is The Job Board?", "date": "February 6, 2010", "description": "Previously, he was Senior VP at Yahoo and GM of HotJobs, and before that a Director on... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R37OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2010%2f02%2f06%2fmonster-yahoo-hotjobs-matter-internet-job-board%2f/RK=2/RS=sBnYfFj7QFiAJbjEm8jRVSkYrpI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Gig companies take worker classification fight to Massachusetts through ballot initiative", "date": "August 3, 2021", "description": "A coalition of app-based ride-hailing and on-demand delivery companies including Lyft, Uber,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R4bOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f08%2f03%2fgig-companies-take-worker-classification-fight-to-massachusetts-through-ballot-initiative%2f/RK=2/RS=ewQ7WNjBNE9r4YWXabgYS7NFCTs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "44 million US adults now use 'borrowed' accounts to access streaming services", "date": "May 5, 2020", "description": "According to a new study by Cordcutting.com, there are now more than 44 million U.S. adults who are... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R47OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f05%2f05%2f44-million-u-s-adults-now-use-borrowed-accounts-to-access-streaming-services%2f/RK=2/RS=0iLBysok3Sy6zNYS6CzOc1HIcWs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Amazon launches an Alexa service for property managers", "date": "September 3, 2020", "description": "Amazon wants to bring Alexa to property managers. The company this morning launched a new service,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R5bOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f09%2f03%2famazon-launches-an-alexa-service-for-property-managers%2f/RK=2/RS=X1bpZEFdxrRHCXOV_jE9cuBKilA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Mediflash is a freelancer marketplace for health professionals", "date": "June 18, 2021", "description": "Meet Mediflash, a new French startup that wants to improve temp staffing in healthcare facilities,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R57OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f06%2f18%2fmediflash-is-a-freelancer-marketplace-for-health-professionals%2f/RK=2/RS=kIZpvNujH1i0jQ9lr8SnObIyPk4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Deliberation Could Fix Tech's Immigration Problem", "date": "December 23, 2014", "description": "2014 did not bring the immigration reforms the tech lobby pushed for. Hopes of reform that would... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R6bOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2014%2f12%2f23%2fdeliberation-could-fix-techs-immigration-problem%2f/RK=2/RS=az8S7bJ.3Lvc7VnJ2O_faTFq1f4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Building back better means hiring more workers skilled through alternative routes", "date": "July 28, 2021", "description": "Rather than recognize the skills I possessed, employers could only see my still-developing English... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgLnyQpwtkon0R67OnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514192/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f07%2f28%2fbuilding-back-better-means-hiring-more-workers-skilled-through-alternative-routes%2f/RK=2/RS=EdXowgqjVggCu82sVxcavX0csPo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Raylo raises $136M to build out its gadget lease-and-reuse 'fintech' platform", "date": "January 30, 2023", "description": "With the economy teetering on ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQs2GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2fraylo-raises-136m-to-build-out-its-gadget-lease-and-reuse-fintech-platform%2f/RK=2/RS=E2LJ7r3j3_by.eXhsPPOIXy20nk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is venture funding already back?", "date": "January 30, 2023", "description": "Despite continuing talk about a possible ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQtWGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2fhold-up-venture-funding%2f/RK=2/RS=Vbdt4lFPcZqlwPH27tTE9.WmlWQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "What does selling to platform engineering teams mean for developer relations?", "date": "January 27, 2023", "description": "Startups selling dev tools over the last few years have seen the pendulum swing. Talking to... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQt2GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f27%2fwhat-does-selling-to-platform-engineering-teams-mean-for-developer-relations%2f/RK=2/RS=JlUZ2hpwL_2cGn_CoJudHvIMboU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Construction robotics firm Kewazo raises $10 million", "date": "January 23, 2023", "description": "Like a number of construction robotics firms, Kewazo got a nice boost during the pandemic, as... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQuWGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f23%2fconstruction-robotics-firm-kewazo-raises-10-million%2f/RK=2/RS=7L62Th.C5oOBvZkHr.pJuwmRtoI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tier Mobility and Spin lay off 100 more employees", "date": "January 25, 2023", "description": "The micromobility operator is also reducing the size of its Spin workforce by about 20 employees.... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQu2GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2ftier-mobility-and-spin-lay-off-100-more-employees%2f/RK=2/RS=p1XiwawnnccmZ4uQrb.oDcxyr2Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Then call them 'robots'", "date": "January 26, 2023", "description": "...a return to the trending upward growth. I do believe the growth experienced in 2021 was a direct... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQvWGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f26%2fthen-call-them-robots%2f/RK=2/RS=8_ltgfrCqmXS8kKtriDeWOIxhko-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The thing we thought was happening with robotic investments is definitely happening", "date": "January 25, 2023", "description": "There was a brief, beautiful moment for a few months in 2021 when it felt like robotic investments... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQv2GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2fthe-thing-we-thought-was-happening-with-robotic-investments-is-definitely-happening%2f/RK=2/RS=q7Zi0V7h4sOvDCLDVoNd.SR9ol0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Microsoft services like Outlook and Teams accessible again after outage caused by a 'network issue'", "date": "January 25, 2023", "description": "...we saw customers accelerate their digital spend during the pandemic, we\u2019re now seeing them... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQwWGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2fmicrosoft-teams-outlook-service-outage%2f/RK=2/RS=2PP1SqOwyu3KGhBob47.f6zy2yo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Lightyear stops production on \u20ac250,000 solar-powered EV", "date": "January 23, 2023", "description": "Despite only starting production on the vehicle three months ago, Lightyear is restructuring to... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQw2GnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f23%2flightyear-stops-production-on-e250000-solar-powered-ev%2f/RK=2/RS=663Cww9qNkUuG1PwafIiNBmTcis-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tesla reports $24.3B revenue in the fourth quarter, beating Street estimates", "date": "January 25, 2023", "description": "Tesla just beat Wall Street revenue estimates for the fourth quarter of 2022. Tesla's stock saw a... ", "url": "https://search.techcrunch.com/click/_ylt=Awr.1euSpwtkUVUQxWGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514194/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2ftesla-reports-24-3b-revenue-in-the-fourth-quarter-beating-street-estimates%2f/RK=2/RS=HRH.P1SXgP6QCe_DhCaewuIq.d8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Generative AI search engine startup You.com adds multimodal chat", "date": "February 15, 2023", "description": "In recognition that Black people in the U.S. make up nearly 15% of the population, the Pledge is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SQSWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2fdaily-crunch-generative-ai-search-engine-startup-you-com-adds-multimodal-chat%2f/RK=2/RS=RMz7_O.N9vlJZZtL6FqcuOeqsbo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tiger Global and Ribbit invest another $100 million in PhonePe", "date": "February 14, 2023", "description": "PhonePe has raised another $100 million as part of an ongoing round, a deliberation that has now... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SQyWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f14%2fwalmart-phonepe-india%2f/RK=2/RS=opP3THuC_iGVO42dE5taa9jO_9M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Building a growth marketing team the right way", "date": "February 14, 2023", "description": "Whether you've just secured some VC funding or finally achieved product-market fit, you'll need to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SRSWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f14%2fbuilding-a-growth-marketing-team-the-right-way%2f/RK=2/RS=MJqaw3bqicgysoJqdOi8g2_HL2I-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Amid merger and bankruptcy in the West, lidar maker Hesai nails $190M IPO", "date": "February 13, 2023", "description": "Last week, China's lidar maker Hesai raised an upsized IPO in the U.S. at a time the industry is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SRyWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f13%2famid-merger-and-bankruptcy-in-the-west-lidar-maker-hesai-nails-190m-ipo%2f/RK=2/RS=zVWN4GAQ085n_F.PVB4hpp5SYPw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Costanoa Ventures and Norrsken22 back Smile Identity in $20M Series B round", "date": "February 15, 2023", "description": "The importance of KYC and identity verification in an increasing fintech landscape like Africa\u2019s... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SSSWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2fcostanoa-ventures-and-norrsken22-back-smile-identity-in-20m-series-b-round%2f/RK=2/RS=MaQFgwrpq0v1XgnIuT43LNvEyFg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Apple TV+ unveils trailer and release date for \u2018Tetris\u2019 movie", "date": "February 16, 2023", "description": "Apple TV+ released the first trailer for its -- shall we say, block-busting -- movie \u201cTetris,\u201d based... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SSyWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fapple-tv-tetris-movie-trailer%2f/RK=2/RS=TvGg83V8B0Zz4pmhdkxXscqIC_A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Most sites claiming to catch AI-written text fail spectacularly", "date": "February 16, 2023", "description": "...century CE, the Roman Empire had entered a period of decline and fall. There were several major... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4STSWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f16%2fmost-sites-claiming-to-catch-ai-written-text-fail-spectacularly%2f/RK=2/RS=lQv1bOrMbdgnPQg5URWlHM9rYgk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ford left '$2B of profits on the table' in 2022", "date": "February 2, 2023", "description": "Ford reported Thursday it earned $10.4 billion in net income last year, falling well below its own... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4STyWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f02%2fford-earnings-left-2b-of-profits-on-the-table-in-2022%2f/RK=2/RS=FI.oMusDB8gK27zaonFrMkZOdZo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "China's EV upstart Xpeng ready to take off with flying permit", "date": "February 1, 2023", "description": "Xpeng, a Chinese electric vehicle upstart, is gearing up to launch its eVTOL into the air as it... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SUSWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f01%2fchinas-ev-upstart-xpeng-ready-to-take-off-with-flying-permit%2f/RK=2/RS=76SoMtOlOgK8SzYAAScfhvft7bs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Elon Musk, Tesla found not liable in 'funding secured' tweet lawsuit", "date": "February 3, 2023", "description": "Elon Musk was found not liable in a class-action securities fraud trial that centered on the Tesla... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOrrWUpwtksC4SUyWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514196/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f03%2felon-musk-tesla-found-not-liable-in-funding-secured-tweet-lawsuit%2f/RK=2/RS=zdEIbaNYO4WyGKyjzt6sGP_w81s-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Bitwise Industries lands $80M to expand its sprawling software dev business", "date": "February 28, 2023", "description": "In 2013, Irma Olguin Jr. -- a third-generation Mexican American and the first in her family to go to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARB1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2fbitwise-industries-lands-80m-to-expand-its-sprawling-software-dev-business%2f/RK=2/RS=cN.kzP4jNMswWzGel09CFby2UmI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With 5 activists in the mix, Salesforce will report earnings Wednesday", "date": "February 28, 2023", "description": "Earnings reports come and go; for the most part, they're a fairly routine exercise, but Wednesday\u2019s... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARCVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2fwith-5-activists-in-the-mix-salesforce-will-report-earnings-wednesday%2f/RK=2/RS=j2YE6a16dOtF9TiAQqeYmpaVVJU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Nothing\u2019s Phone (2) will run on Qualcomm\u2019s Snapdragon 8 series", "date": "February 28, 2023", "description": "Whereas Carl Pei\u2019s old company, OnePlus, put on a flashy launch event for a concept device... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARC1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2fnothings-phone-2-will-run-on-qualcomms-snapdragon-8-series%2f/RK=2/RS=JJ6BLBdf3LrPlSOzZFTEY8AMSEA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Who still loves fintech?", "date": "February 27, 2023", "description": "Hello and welcome back to Equity, the podcast about the business of startups, where we unpack the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARDVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fwho-still-loves-fintech%2f/RK=2/RS=RFBsyH1lGqebRzm3t5BBB76F8dw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Of course the Adobe-Figma deal is anti-competitive", "date": "February 27, 2023", "description": "Shares of Adobe sold off following last week's news that the United States government is \"getting... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARD1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fof-course-the-adobe-figma-deal-is-anti-competitive%2f/RK=2/RS=PlaztPgM7nf5sCPPT.XBHMoR6U8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Why so many gigafactories? It\u2019s not just EVs driving demand", "date": "February 27, 2023", "description": "Market share for EVs has been growing even as the overall automotive market has softened in recent... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOAREVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fwhy-so-many-gigafactories-its-not-just-evs-driving-demand%2f/RK=2/RS=GlnvEfROwl5vVCzk534g9DhlOFA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "As companies shift from growth to efficiency, what does it mean for tech budgets?", "date": "February 27, 2023", "description": "It seems like, in very short order, we\u2019ve moved away from a \u201cgrowth over everything\u201d mentality to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARE1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fas-companies-shift-from-growth-to-efficiency-what-does-it-mean-for-tech-budgets%2f/RK=2/RS=hB8.6c3kw9iA5alBzRf.jUWk0F8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Don\u2019t leave developers behind in the Section 230 debate", "date": "February 26, 2023", "description": "Last week marked the first time the U.S. Supreme Court reviewed Section 230 of the Communications... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARFVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f26%2fdont-leave-developers-behind-in-the-section-230-debate%2f/RK=2/RS=tmxklR6x7R_vzxC7w7U4xGEmrA4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Boston's university-to-startup pipeline defies downturn to grow and diversify", "date": "February 27, 2023", "description": "The startup ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARF1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fbostons-university-to-startup-pipeline-defies-downturn-to-grow-and-diversify%2f/RK=2/RS=pYKi0A9_giH6hishcLAg.zaQbrM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Biotech proved a surprisingly bright spot in 2022\u2019s startup correction", "date": "February 25, 2023", "description": "No startup sector was entirely immune from the 2022\u2019s market uncertainty \u2014 except maybe AI \u2014 but... ", "url": "https://search.techcrunch.com/click/_ylt=AwrO_42VpwtkmOARGVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514197/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f25%2fbiotech-fundraising-2022%2f/RK=2/RS=aniQOmDUe4y7zuyVtVBBXxwSeUY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Senate committee presses Meta over data access by developers in 'high risk' countries, per 2018 app...", "date": "February 7, 2023", "description": "Facebook's murky history of letting third party apps help themselves to user data which you may... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS2RWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2fmeta-cambridge-analytica-senate-intelligence-committee-letter%2f/RK=2/RS=eWrZErC2xjaUIvgEWzy2kHvJILs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ShareWell wants to scale mental health support with its 10,000 support groups", "date": "February 6, 2023", "description": "Therapists -- if you can even find one that takes your insurance or new clients -- can add a layer... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS2xWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f06%2fsharewell-pre-seed%2f/RK=2/RS=Kxsc1cmss1tz2MvArt1q4JV.0h4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "EU's top diplomat fires warning shot at Elon Musk over Twitter disinformation", "date": "February 7, 2023", "description": "A controversial move by Twitter-owner Elon Musk to end free access to its APIs by February 9 has... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS3RWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2felon-musk-twitter-disinformation-josep-borrell%2f/RK=2/RS=6qmsni2Xx597kwt3I.uK_LMUFEQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Affirm's stock plunges as it misses earnings, cuts 500 jobs and shutters crypto unit", "date": "February 8, 2023", "description": "In a written statement, founder and CEO Max Levchin said that he takes \u201cfull responsibility for this... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS3xWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f08%2faffirms-stock-plunges-as-it-misses-earnings-cuts-500-jobs-and-shutters-crypto-unit%2f/RK=2/RS=OPJOP4O.YM7Okotdx6SW25vv4Yw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Why invest in Ukrainian startups today?", "date": "February 3, 2023", "description": "For the first time in the program's history, it will include targeted support for Ukraine. This is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS4RWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f03%2fwhy-invest-in-ukrainian-startups-today%2f/RK=2/RS=Pc7kx6PXY.MPkp1E5eIuXVUsc64-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Even well-funded fintech companies are laying off workers", "date": "February 6, 2023", "description": "....S.\u201d This New York Times article does a great job of examining how buy now, pay later may be a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS4xWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f06%2feven-well-funded-fintech-companies-are-laying-off-workers%2f/RK=2/RS=mOyULDLMOBt_g.N.PDCpeMWxQnI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Hands-on with Bing's new ChatGPT-like features", "date": "February 8, 2023", "description": "Yesterday, Microsoft launched the new Bing on the web and in its Edge browser, powered by a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS5RWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f08%2fhands-on-with-the-new-bing%2f/RK=2/RS=xjr9YQX40gyHWRL0YKYYcCq5suQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How Fictiv is making hardware manufacturing more like building software", "date": "February 2, 2023", "description": "Over the past few years, we've spoken with hundreds of hardware startups, and there's one phrase... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS5xWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f02%2fhardware-2023%2f/RK=2/RS=mus9tRxCQzgNAVePgYwSSMBUpg0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Guardz emerges from stealth with $10M for SMB security and cyber insurance to protect against...", "date": "January 31, 2023", "description": "Small and medium businesses have become a growing target for malicious online hackers in recent... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS6RWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f31%2fguardz-emerges-from-stealth-with-10m-for-smb-security-and-cyber-insurance-to-protect-against-attack-as-a-service-breaches%2f/RK=2/RS=cGCDQhMzCdJ_dYfY2Xs2BJWQAVU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "'Most active investor' FJ Labs closes on $260M across two new funds", "date": "January 25, 2023", "description": "Fabrice Grinda says he never intended to run a venture firm. Noting that flurry of checks, potential... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOqSqWpwtkEVcS6xWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514199/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2fmost-active-investor-fj-labs-closes-on-260m-across-two-new-vehicles%2f/RK=2/RS=nbL5zEnKqQFLcfF.acyhtc1sLrw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "'Pan-variant' COVID vaccine could defang future strains thanks to machine learning", "date": "March 9, 2023", "description": "...put an end to boosters and seasonal variant shots, according to MIT researchers. The problem is... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSISOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fpan-variant-covid-vaccine-could-defang-future-strains-thanks-to-machine-learning%2f/RK=2/RS=7UnTR69DTckd6r8qXJWlD9w0aVQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "AI chip startup Mythic rises from the ashes with $13M, new CEO", "date": "March 9, 2023", "description": "Mythic, an AI chip startup that last November reportedly ran out of capital, rose from the ashes... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSIyOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fai-chip-startup-mythic-rises-from-the-ashes-with-13m-new-ceo%2f/RK=2/RS=2U35Ar_lGGIzfZQNQFBav5sm90Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Building a lean B2B startup growth stack", "date": "March 9, 2023", "description": "Growing a B2B business is becoming increasingly complex. ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSJSOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fbuilding-a-lean-b2b-startup-growth-stack%2f/RK=2/RS=Du2E4VmcVbni4ZC2G5g_6FNehLg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Synctera raises $15M to help companies launch embedded banking products in Canada", "date": "March 9, 2023", "description": "Synctera, a banking-as-a-service startup, has raised an additional $15 million as ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSJyOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsynctera-raises-15m-to-help-companies-launch-embedded-banking-products-in-canada%2f/RK=2/RS=6jq8_0fht0bEWqcYkrVCHoA9Wv4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Apple launches its new classical music streaming app for preorder", "date": "March 9, 2023", "description": "...classical music tracks, including new releases in high-quality audio, as well as hundreds of... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSKSOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fapple-launches-its-new-classical-music-streaming-app-for-pre-order%2f/RK=2/RS=BuCjuZCJX.2yGTWZL45Po5o5jiI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ThoughtSpot adds GPT-3 integration to help customers query data", "date": "March 9, 2023", "description": "...which lets you query your data using natural language to get text or a graph back, as... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSKyOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fthoughtspot-adds-gpt-3-integration-to-help-customers-query-data%2f/RK=2/RS=GMmYGIVQs5VqKJYMFImGdFNbdS4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Wheel the World grabs $6M to offer guaranteed accessibility, price match for hotel rooms", "date": "March 9, 2023", "description": "Wheel the World wants to open the world up to people with disabilities and has made ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSLSOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fwheel-the-world-travel-disabilities%2f/RK=2/RS=52gaQZjqFPwZldjPFiBI5MMhI7w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Reddit is shutting down its Clubhouse clone Reddit Talk", "date": "March 9, 2023", "description": "After Clubhouse's rise to fame, every platform rushed to build a clone. On Wednesday, Reddit... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSLyOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2freddit-is-shutting-down-its-clubhouse-clone-reddit-talk%2f/RK=2/RS=YX2bWfCLRKq6cGaX55FDOd1IPWA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Crypto-friendly bank Silvergate to wind down after FTX blow-up", "date": "March 8, 2023", "description": "...Corporation, the holding company of crypto-focused Silvergate Bank, announced Wednesday its... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSMSOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fcrypto-friendly-bank-silvergate-to-wind-down-after-ftx-blow-up%2f/RK=2/RS=.VH355Vhji6e0w.Kn3T78MzBAgQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Envisics raises $50M at a $500M valuation for its in-car holographic tech", "date": "March 8, 2023", "description": "...sales. Envisics -- a U.K. startup that designs holographic in-car technology that projects... ", "url": "https://search.techcrunch.com/click/_ylt=Awr99vSZpwtkSSYSMyOnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514201/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fenvisics-raises-50m-at-a-500m-valuation-for-its-in-car-holographic-tech%2f/RK=2/RS=Ks_Svl4Wu4QZ6jersDTPm6QSvhA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Q1 2023 market map: SaaS cost optimization and management", "date": "9 hours ago", "description": "When engaging with our portfolio companies as well as with new investment opportunities, we've... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSLjCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2fq1-2023-market-map-saas-cost-optimization-and-management%2f/RK=2/RS=uEyNeOm3mVVsUaVGydQpFjDQ08g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Pitch Deck Teardown: Gable's $12M Series A deck", "date": "March 2, 2023", "description": "It seems like only yesterday that I wrote about Gable's $12 million Series A, but it was, in fact,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSMDCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f02%2fsample-series-a-pitch-deck-gable%2f/RK=2/RS=vUhBWkifBJ0p8RJJQc7RN0rB.0o-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silicon Valley Bank shoots self in foot", "date": "24 hours ago", "description": "It may go down in the history books about Silicon Valley: the time that its most prominent bank, a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSMjCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilicon-valley-bank-shoots-self-in-foot%2f/RK=2/RS=5zb1CutwT0of3FnHBOaHHPzgdSk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Silvergate\u2019s shiny hinges have rusted as the crypto bank plans to shut down", "date": "March 9, 2023", "description": "On Wednesday, Silvergate Capital, a publicly traded crypto bank, shared that it would \u201cwind down... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSNDCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilvergates-shiny-hinges-have-rusted-as-the-crypto-bank-plans-to-shut-down%2f/RK=2/RS=spW7.80DpxLqDd1CkTdHtoSLFnQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ChatGPT comes to Microsoft's enterprise-focused, Azure-powered managed service", "date": "March 9, 2023", "description": "ChatGPT, OpenAI's viral, AI-powered chatbot tech, is now available in a more enterprise-friendly... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSNjCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fchatgpt-comes-to-microsofts-enterprise-focused-azure-powered-managed-service%2f/RK=2/RS=HhYJigYCLvuVzctYnHhiHxV9ki0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "As companies shift from growth to efficiency, what does it mean for tech budgets?", "date": "February 27, 2023", "description": "It seems like, in very short order, we\u2019ve moved away from a \u201cgrowth over everything\u201d mentality to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSODCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fas-companies-shift-from-growth-to-efficiency-what-does-it-mean-for-tech-budgets%2f/RK=2/RS=1_7jYM2_S7oMrQ2M_Z7B0K4N55c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Arrival is running out of cash \u2014 and fast", "date": "March 9, 2023", "description": "The high cost of trying to develop and produce vehicles, a ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSOjCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2farrival-is-running-out-of-cash-and-fast%2f/RK=2/RS=sNe4CPLARtNFb_e6wuxQH5OXb1g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Crypto bank Silvergate's 'collywobbles' could add to industry's woes", "date": "March 9, 2023", "description": "Silvergate Capital, a publicly traded crypto bank, announced Wednesday that it would \u201cwind down... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSPDCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsilvergate-crypto-bank-problems%2f/RK=2/RS=q.DoZMRIJWkX3.whmTIc37G9AB0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Railsr, the UK embedded fintech once valued at nearly $1B, goes into bankruptcy protection under new...", "date": "March 9, 2023", "description": "Startups are facing a moment of reckoning in the current economic climate, and today one of the more... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSPjCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2frailsr-off-the-rails-embedded-finance%2f/RK=2/RS=QKVK3.w.7sRuN0rKigt6utR5vUI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Reddit is shutting down its Clubhouse clone Reddit Talk", "date": "March 9, 2023", "description": "After Clubhouse's rise to fame, every platform rushed to build a clone. On Wednesday, Reddit... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOu4yapwtkRxgSQDCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514202/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2freddit-is-shutting-down-its-clubhouse-clone-reddit-talk%2f/RK=2/RS=7qUJGAkiZjC45GFFrDt3_QzmjQo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A list of robotics companies that are hiring", "date": "March 7, 2023", "description": "...We invest so much of our identity in what we do. It\u2019s not healthy, necessarily, but it\u2019s the... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSoy6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fa-list-of-robotics-companies-that-are-hiring%2f/RK=2/RS=H2zoH.iyL0haGFuY638j1dCVuPk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sonos CEO Patrick Spence on right to repair, spatial audio and those never-ending lawsuits", "date": "March 7, 2023", "description": "This morning Sonos announced a pair of speakers. The Era 100 is a $249 stereo system that replaces... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSpS6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f07%2fsonos-ceo-patrick-spence-on-right-to-repair-spatial-audio-and-those-never-ending-lawsuits%2f/RK=2/RS=LwiGqbpGttC6z7wQZvY7DcNz0io-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Atlassian cuts 5% of its workforce", "date": "March 6, 2023", "description": "Atlassian, the company behind tools like Jira, Confluence and Trello, today announced that, after a... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSpy6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fatlassian-cuts-5-of-its-workforce%2f/RK=2/RS=ZEEolzdVn.gJd1LkWxSUuTz8G70-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Game developer bans 6,700 cheaters and publishes their usernames", "date": "March 6, 2023", "description": "No one likes a cheater: Definitely not Russian game developer Battlestate Games, which banned and... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSqS6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fdaily-crunch-game-publisher-bans-6700-cheaters-and-publishes-their-usernames%2f/RK=2/RS=Q_szoh.HnI72NLyLgm0KmvZDnD8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Twitter fixes broken links and images caused by 'internal change'", "date": "March 6, 2023", "description": "... current API plan does not include access to this endpoint, please see... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSqy6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2ftwitter-images-and-links-are-currently-broken%2f/RK=2/RS=NfK1ZIwFkeYzNC5VNJCWD3I0DeM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Valuation pressure on software startups is easing", "date": "March 6, 2023", "description": "Are you tired of bad news for startups? When we refer to startups, we generally mean tech-focused... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSrS6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fvaluation-pressure-on-software-startups-is-easing%2f/RK=2/RS=L7r3V1QoNsKjS4WxA3X2UdRPiVM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Another AV company hits the skids, Scout Motors picks a home and Tesla's tepid investor day", "date": "March 6, 2023", "description": "FYI, next week I will be in Austin to attend SXSW. In the days leading up to Tesla Investor Day,... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSry6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f06%2fanother-av-company-hits-the-skids-scout-motors-picks-a-home-and-teslas-tepid-investor-day%2f/RK=2/RS=ZkpC5MaMo3r8n2agpzYF5PwbtBc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Amazon and Better.com\u2019s unlikely pairing", "date": "March 5, 2023", "description": "Last week, my good friend and and Equity podcast co-host Natasha Mascarenhas and I reported that... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSsS6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f05%2famazon-and-fintech-better-coms-unlikely-pairing%2f/RK=2/RS=EBRKJzIm4n3BfRGONKM0N9RH89I-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Enterprise SaaS companies continue to navigate a complex economic environment", "date": "March 4, 2023", "description": "It\u2019s been a tough time for enterprise SaaS companies. At the same time, enterprise SaaS companies... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUSsy6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f04%2fenterprise-saas-companies-continue-to-navigate-a-complex-economic-environment%2f/RK=2/RS=xgahHDrEYL2KHu.rEZu4Gujr7Tc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Embark Trucks lays off workers, explores liquidation of self-driving truck assets", "date": "March 3, 2023", "description": "Embark Trucks, the autonomous trucking company that went public in 2021 via a merger with a special... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OabpwtkGhUStS6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514203/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f03%2fembark-trucks-lays-off-workers-explores-liquidation-of-self-driving-truck-assets%2f/RK=2/RS=hpBYPChBzCFqh3TGn1fBcKdgbmE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Mediflash is a freelancer marketplace for health professionals", "date": "June 18, 2021", "description": "Meet Mediflash, a new French startup that wants to improve temp staffing in healthcare facilities,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SGRqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f06%2f18%2fmediflash-is-a-freelancer-marketplace-for-health-professionals%2f/RK=2/RS=1E664xnPYX3RNBGTi_XbE2_.C3Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Building back better means hiring more workers skilled through alternative routes", "date": "July 28, 2021", "description": "Rather than recognize the skills I possessed, employers could only see my still-developing English... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SGxqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f07%2f28%2fbuilding-back-better-means-hiring-more-workers-skilled-through-alternative-routes%2f/RK=2/RS=X205iCyg2J30nj4UQQzO5Wr3Lt8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ending The Invisibility Of Homelessness", "date": "December 18, 2014", "description": "The lack of affordable, safe, and supportive housing is a scourge on society. It costs $90K to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SHRqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2014%2f12%2f18%2fending-the-invisibility-of-homelessness%2f/RK=2/RS=KdG5Kex8HXgvPfuCG8PE0.ufmDk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "7 New Educational Startups Founded By Minorities in Tech", "date": "May 6, 2012", "description": "Editor's note: Wayne Sutton is an Entrepreneur, Advisor and Partner of NewMe Accelerator, a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SHxqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2012%2f05%2f06%2f7-new-educational-startups-founded-by-minorities-in-tech%2f/RK=2/RS=Ve6MWiohegjlOU8k3LTBdVje3Tg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Volkswagen says a vendor's security lapse exposed 3.3 million drivers' details", "date": "June 11, 2021", "description": "Volkswagen says more than 3.3 million customers had their information exposed after one of its... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SIRqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f06%2f11%2fvolkswagen-says-a-vendors-security-lapse-exposed-3-3-million-drivers-details%2f/RK=2/RS=l7TZ8umjKRanO1q85MkoN7bL4aA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Uber CEO says service faces temporary shutdown in California over worker reclassification ruling", "date": "August 12, 2020", "description": "Uber could be forced to shut down its ride-hailing app in California for several months if a court... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SIxqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f08%2f12%2fuber-ceo-says-service-faces-temporary-shutdown-in-california-over-worker-reclassification-ruling%2f/RK=2/RS=UwfBE.iPrqc52lJov6.mFptCdVw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Recruitment Platform Intern Avenue To Roll Out Across Europe With Vodafone", "date": "December 5, 2014", "description": "Intern Avenue is a startup which matches college undergraduates/graduates searching for paid... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SJRqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2014%2f12%2f05%2frecruitment-platform-intern-avenue-to-roll-out-across-europe-with-vodafone%2f/RK=2/RS=cBgeoWKpFiIs0VWlhsk.WW9LNlM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ron Conway, Sean Parker Go To Washington (Again)", "date": "March 31, 2015", "description": "A new bipartisan think tank with a focus on creating better opportunities for startups and small... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SJxqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2015%2f03%2f31%2fron-conway-sean-parker-go-to-washington-again%2f/RK=2/RS=1aKp3YIaaH.sVWcYX92WlEz5.mM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Coronavirus, election results, Kobe Bryant and Zoom among Google's top 2020 search trends in US and...", "date": "December 9, 2020", "description": "In the U.S., Election results was the No. 1 top trending search, followed by Coronavirus. In order,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SKRqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f12%2f09%2fcoronavirus-election-results-kobe-bryant-and-zoom-among-googles-top-2020-search-trends-in-u-s-and-world%2f/RK=2/RS=Wy9LqsgjDL21MJJKLq3VJK7MAow-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "White House Announces National Day Of Civic Hacking, Asks Americans To Solve Problems With Govt Data...", "date": "January 22, 2013", "description": "The White House wants you to hack for a better America. Today it announced the National Day Of Civic... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjaWKdpwtkfT8SKxqnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514205/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2013%2f01%2f22%2fnational-day-of-civic-hacking%2f/RK=2/RS=xD2RQAS4.xxIHqqnwPPtgMJjOPg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tesla reports $24.3B revenue in the fourth quarter, beating Street estimates", "date": "January 25, 2023", "description": "Tesla just beat Wall Street revenue estimates for the fourth quarter of 2022. Tesla's stock saw a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRRrenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2ftesla-reports-24-3b-revenue-in-the-fourth-quarter-beating-street-estimates%2f/RK=2/RS=KZrYvmq8VHfs5Rc32nx7eSbHkt4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Analysts cut 2023 tech spending predictions as consumers hold back", "date": "January 18, 2023", "description": "Predicting spending is a tricky business, especially in a period of economic uncertainty. Perhaps... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRSLenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f18%2fanalysts-cut-2023-techs-spending-predictions-as-consumers-hold-back%2f/RK=2/RS=0laNBWneChAq7jhSstJveJ8EaMU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Britishvolt\u2019s bankruptcy is the death knell for the UK\u2019s battery industry", "date": "January 19, 2023", "description": "Britishvolt, a battery manufacturer startup, announced Tuesday that it was declaring bankruptcy,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRSrenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f19%2fbritishvolts-bankruptcy-is-the-death-knell-for-the-uks-battery-industry%2f/RK=2/RS=EjUPTr_ywbS7E9BhmQg3dCBsJRw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Protect me from what I want", "date": "January 21, 2023", "description": "\"BNPL is a form of credit that allows a consumer to split a retail transaction into smaller,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRTLenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f21%2fprotect-me-from-what-i-want%2f/RK=2/RS=40bz2ktSJqUbWFoXLQMPJwZSW0U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Microsoft announces 10,000 job cuts, nearly 5% of its global workforce", "date": "January 18, 2023", "description": "Microsoft today announced details of a much-rumored round of layoffs, confirming in a filing with... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRTrenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f18%2fmicrosoft-announces-10000-job-cuts-nearly-5-of-its-workforce%2f/RK=2/RS=KyRvuBCDXqr7tdce3yRehVQkIQs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "The mirage of dry powder", "date": "January 14, 2023", "description": "A recent guest post on TechCrunch+ wondered whether \"record levels of dry powder [will] trigger a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRULenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f14%2fthe-mirage-of-dry-powder%2f/RK=2/RS=JNb5cCEAWdVEiZUIi53G1Q0MDqM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "7 space tech predictions for 2023", "date": "January 16, 2023", "description": "Multiple players in the industry have recently set their sights on direct-to-mobile connectivity... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRUrenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f16%2f7-space-tech-predictions-for-2023%2f/RK=2/RS=UdMXrYLGHGmZawMheDaxuYMrty0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Climate tech roundup: From solar to CES, this week had something for everyone", "date": "January 15, 2023", "description": "If this week\u2019s announcement is anything to go by, 2023 might be the year the U.S. solar industry... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRVLenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f15%2fclimate-tech-roundup-from-solar-to-ces-this-week-had-something-for-everyone%2f/RK=2/RS=r.6jALn05LNqlVOubps_tKQwMZw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "US solar manufacturing gets boost with $2.5B Georgia deal", "date": "January 11, 2023", "description": "The Inflation Reduction Act has clearly kickstarted investment in U.S. clean energy manufacturing.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRVrenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f11%2fus-solar-manufacturing-gets-boost-with-2-5b-georgia-deal%2f/RK=2/RS=yBa_uMWGqvSiDltv0PC1DCCjcOE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "7 investors discuss why edtech startups must go back to basics to survive", "date": "August 11, 2022", "description": "In the early innings of the pandemic, top companies turned into unicorns seemingly overnight as Zoom... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw6fpwtkr3MRWLenBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514207/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f11%2f7-investors-discuss-why-edtech-startups-must-go-back-to-basics-to-survive%2f/RK=2/RS=jnfSVntVGLVV4hlfJyoNL9dqmC8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Rivian to cut another 6% of its workforce", "date": "February 1, 2023", "description": "Rivian, the buzzy EV automaker that had one of the biggest IPOs in 2021, is cutting 6% of its... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQbJynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f01%2frivian-to-cut-another-6-of-its-workforce%2f/RK=2/RS=77XhnVl.Hw5n_OUafcNQ8EO5KCk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Meet the prolific Russian espionage crew hacking spymasters and lawmakers", "date": "February 8, 2023", "description": "A notorious hacking group with alleged ties to Russian intelligence services has claimed its latest... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQbpynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f08%2fseaborgium-cold-river-hacking%2f/RK=2/RS=DIE8Y6dD2g5p1dN9gcoqF32Ddfg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Google says YouTube Shorts has crossed 50 billion daily views", "date": "February 3, 2023", "description": "All social media companies are in a race to win the short video ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQcJynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f03%2fgoogle-says-youtube-shorts-has-crossed-50-billion-daily-views%2f/RK=2/RS=45mUKPpDtXFLtQkyot9xQR7hPd0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Elon dodges liability, Ford falters and Rivian lays off more workers", "date": "February 6, 2023", "description": "Elon Musk has successfully escaped one of his legal troubles. ICYMI: A jury found Musk was not... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQcpynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f06%2felon-dodges-liability-ford-falters-and-rivian-lays-off-more-workers%2f/RK=2/RS=nuBgmZN0NTmiFFSx78s3RHVhAdU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "SpaceX will attempt a full static fire test of Starship's Super Heavy booster tomorrow", "date": "February 8, 2023", "description": "SpaceX is on the verge of a landmark test of the Starship launch system, president and chief... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQdJynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f08%2fspacex-will-attempt-a-full-static-fire-test-of-starships-super-heavy-booster-tomorrow%2f/RK=2/RS=yDb6LLG402DX602tnlFqK4wOPMM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Drone imagery firm DroneBase rebrands to Zeitview, lands $55M investment", "date": "February 7, 2023", "description": "...by Valor Equity Partners with participation from Union Square Ventures, Upfront Ventures,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQdpynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f07%2fdrone-imagery-firm-dronebase-rebrands-to-zeitview-lands-55m-investment%2f/RK=2/RS=02ZiIQHsYssaxSwwXJ6yp_7Xoew-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Grocery deliverer JOKR doubles down on Brazil as it secures $50M on $1.3B valuation", "date": "February 3, 2023", "description": "After a challenging few months that included closing markets, instant grocery delivery company JOKR... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQeJynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f03%2fjokr-brazil-instant-grocery-delivery%2f/RK=2/RS=8Xn5FM_n7ZB.48Pcu3dI2chfogY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "MrBeast's blindness video puts systemic ableism on display", "date": "February 10, 2023", "description": "Recently, megastar creator MrBeast posted a video to his YouTube in which he spotlights numerous... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQepynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f10%2fmrbeasts-blindness-video-puts-systemic-ableism-on-display%2f/RK=2/RS=MgUu0w_fliBkF50wTdWNzk8rPi0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Capella Space launches defense-focused subsidiary as demand for satellite imagery soars", "date": "January 31, 2023", "description": "Satellite imagery startup Capella Space is establishing a subsidiary aimed at serving U.S.... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQfJynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f31%2fcapella-space-launches-subsidiary-for-satellite-imagery-hungry-government-customers%2f/RK=2/RS=GCahy7PrEo4Cqm8b_FGg0_ayr_s-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Battery darling Our Next Energy lands massive $300M Series B to build gigafactory", "date": "February 1, 2023", "description": "Battery startup Our Next Energy announced this morning that it closed a massive $300 million Series... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9zMahpwtknEUQfpynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514209/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f01%2fbattery-darling-our-next-energy-lands-massive-300m-series-b-to-build-gigafactory%2f/RK=2/RS=Sy63avx9FTPLCMgCrcF0P9ex7jY-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Coinbase is adding another layer to its business through the blockchain space", "date": "February 23, 2023", "description": "This week big news rolled out in the layer-2 blockchain space as Coinbase, the second largest crypto... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERArynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fcoinbase-is-adding-another-layer-to-its-business-through-the-blockchain-space%2f/RK=2/RS=Bl.wB4hPVmEo17NPoDYs58XddPg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Coinbase launches blockchain Base to help developers build dApps on-chain", "date": "February 23, 2023", "description": "Coinbase, the second largest crypto exchange by trading volume, has launched Base, an... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERBLynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fcoinbase-launches-blockchain-base-to-help-developers-build-dapps-on-chain%2f/RK=2/RS=a1h6yTPT1ByfvFhNOrpORWqS74c-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "When do we reach the unicorn death cliff?", "date": "February 24, 2023", "description": "Concerns about high burn rates among tech startups are not new; they did not spring into being... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERBrynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fwhen-do-we-reach-the-unicorn-death-cliff%2f/RK=2/RS=yYAcHyjT8wsrKGWhr5hqEk8ZI7Q-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "YouTube launches a multi-language audio feature for dubbing videos, previously tested by MrBeast", "date": "February 23, 2023", "description": "The Korean-language Netflix series \"Squid Game\" became one of the streaming service's most popular... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERCLynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fyoutube-launches-a-multi-language-audio-feature-for-dubbing-videos-previously-tested-by-mr-beast%2f/RK=2/RS=J7.ybcOn4ITymqZELOvlyLXajaA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Is ocean conservation the next climate tech? 7 investors explain why they\u2019re all in", "date": "February 23, 2023", "description": "For an ecosystem that covers a majority of the planet, the oceans have basically been ignored by... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERCrynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fis-ocean-conservation-the-next-climate-tech-7-investors-explain-why-theyre-all-in%2f/RK=2/RS=LqHsHuvyQjyOACgD2zkVICpLYGQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "5 investors discuss Boston\u2019s resilient tech ecosystem", "date": "February 27, 2023", "description": "Boston has had a thriving tech startup ecosystem for a while, but things can change fast. To find... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERDLynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2f5-investors-discuss-why-bostons-tech-ecosystem-is-as-resilient-as-they-come%2f/RK=2/RS=YQEaFGED8fSn9o6N6G1JUTwTNBc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "This Week in Apps: Meta's paid verifications, Instagram's founders' new app and Spotify's AI DJ", "date": "February 25, 2023", "description": "Welcome back to This Week in Apps, the weekly TechCrunch series that recaps the latest in mobile OS... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERDrynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f25%2fthis-week-in-apps-metas-paid-verifications-instagrams-founders-new-app-and-spotifys-ai-dj%2f/RK=2/RS=7mS2TW290EZsNJx3lTOpczBNvxg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ex-WeWork director raises millions for Den's tiny home plans", "date": "February 21, 2023", "description": "If it wasn\u2019t for WeWork\u2019s failed IPO, Mike Romanowicz probably wouldn\u2019t be building a proptech... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERELynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f21%2fex-wework-director-raises-millions-for-dens-tiny-home-plans%2f/RK=2/RS=x5gLtp_QGBnCuxPKAIa_tO.NSW4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tumblr iOS revenue increased 125% since launching its parody of paid verification", "date": "February 21, 2023", "description": "Tumblr's parody of paid verification has already delivered the social network and blogging platform... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERErynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f21%2ftumblr-ios-revenue-increased-125-since-launching-its-parody-of-paid-verification%2f/RK=2/RS=frsC_l_DLGM85lr0gELd2rRsjCc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "FTC's new Office of Technology will help mop up tech 'oozing with snake oil'", "date": "February 17, 2023", "description": "The FTC is embracing change with the establishment of an Office of Technology (OT) that will help it... ", "url": "https://search.techcrunch.com/click/_ylt=Awr93RKipwtkhEERFLynBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514210/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2fftcs-new-office-of-technology-will-help-mop-up-tech-oozing-with-snake-oil%2f/RK=2/RS=91qL3FQlDJSg9L1U62c9Ohsx550-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Elon takes the stand, Akio Toyoda hands over the CEO keys and layoffs come for Waymo", "date": "January 30, 2023", "description": "Tesla shareholders who traded the company\u2019s stock in the days after CEO Elon Musk\u2019s infamous 2018... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkAREuGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2felon-takes-the-stand-akio-toyoda-hands-over-the-ceo-keys-and-layoffs-come-for-waymo%2f/RK=2/RS=v1XStRjfqp9XLIzQKxr1y8AAYWw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Scythe raises $42 million for its electric robotic mower", "date": "January 24, 2023", "description": "Scythe first hit our radar when it emerged from stealth in 2021 with a $13.8 million Series A. The... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARFOGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f24%2fscythe-raises-42-million-for-its-electric-robotic-mower%2f/RK=2/RS=PhxuISoRlr11mhyBO3N.eKcU5uc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Twitter partners with DoubleVerify and IAS on brand safety initiative amid advertiser exits", "date": "January 25, 2023", "description": "Amid declining ad revenue and advertiser exits, Twitter announced today that it has teamed up with... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARFuGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2ftwitter-partners-with-doubleverify-and-ias-on-brand-safety-initiative-amid-advertiser-exits%2f/RK=2/RS=H8Q77_HrhqmvM9R9B0KkRgnnfrA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A VC\u2019s perspective on deep tech fundraising in Q1 2023", "date": "January 24, 2023", "description": "As interest rates skyrocketed, deep tech deals, which inherently take more capital than other kinds... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARGOGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f24%2fa-vcs-perspective-on-deep-tech-fundraising-in-q1-2023%2f/RK=2/RS=Kqgkobc0AWRhq16AC0iS3ZYHlJ0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "2022 European edtech report: Smaller rounds and fewer deals, but more angel activity", "date": "January 25, 2023", "description": "Governments, public sector organizations and many private companies moved heaven and earth to ensure... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARGuGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2f2022-european-edtech-report-smaller-rounds-and-fewer-deals-but-more-angel-activity%2f/RK=2/RS=v2LAe1VmIOv8DkRTv6e_xk7aqLc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TikTok's 'corecore' is the latest iteration of absurdist meme art", "date": "January 21, 2023", "description": "TikTok goes a little overboard when it comes to categorizing every last aesthetic into its own... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARHOGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f21%2ftiktoks-corecore-is-the-latest-iteration-of-absurdist-meme-art%2f/RK=2/RS=v2MwkcxknFTscoCi7Bo_McJlWoM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With a focus on patients with chronic illness, Nourish hopes to help Americans eat better", "date": "January 20, 2023", "description": "According to the CDC, six in 10 adults in the U.S. have a chronic disease such as diabetes or heart... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARHuGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f20%2fwith-a-focus-on-patients-with-chronic-illness-nourish-hopes-to-help-americans-eat-better%2f/RK=2/RS=lKPPl_SsgI6NFddriD8rv2AYugA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Protect me from what I want", "date": "January 21, 2023", "description": "...midst of rapid growth,\" a September Consumer Financial Protection Bureau report stated. This... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARIOGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f21%2fprotect-me-from-what-i-want%2f/RK=2/RS=zdzXT_U7BgauD.pEKnfYMsu_qIU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "4 investors discuss the next big wave for alternative seafood startups", "date": "January 20, 2023", "description": "In fact, some investors feel that 2023 will be the year when alternative seafood companies and... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARIuGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f20%2f4-investors-alternative-seafood-startups%2f/RK=2/RS=08M5hOHFD1l0HrmEMT7Zf8Xq.oA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "No Meat Factory eats up new capital to build bigger protein production plant in US", "date": "January 12, 2023", "description": "Scalable production of alternative proteins continues to be a big challenge for companies in this... ", "url": "https://search.techcrunch.com/click/_ylt=Awr98OqjpwtkGkARJOGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514211/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f12%2fno-meat-factory-protein-production%2f/RK=2/RS=uqb2qHhYcr.z32VzodqUgWeVEp0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Envisics raises $50M at a $500M valuation for its in-car holographic tech", "date": "March 8, 2023", "description": "...sales. Envisics -- a U.K. startup that designs holographic in-car technology that projects... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR0DCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fenvisics-raises-50m-at-a-500m-valuation-for-its-in-car-holographic-tech%2f/RK=2/RS=mBYpZhBTKzm1S0XjJu33RL5kx6w-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Microsoft makes it easier to integrate quantum and classical computing", "date": "March 8, 2023", "description": "Microsoft estimates that a quantum computer that will be able to help solve some of the world's most... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR0jCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fmicrosoft-makes-it-easier-to-integrate-quantum-and-classical-computing%2f/RK=2/RS=neThioDhdlmTYbo_twWLXoeb6Xk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Wattpad lays off 15% of its staff, blames changing economic environment", "date": "March 8, 2023", "description": "Storytelling platform Wattpad announced Tuesday that ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR1DCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fwattpad-lays-off-15-of-its-staff-blames-changing-economic-environment%2f/RK=2/RS=0rsDm8maNko8tA7RJ0hV3Gl99rg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Wing likens its drone \u2018delivery network\u2019 to rideshare", "date": "March 9, 2023", "description": "...network.\u201d The company compares the idea to rideshare, bucking the sort of back and forth model... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR1jCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fwing-likens-its-drone-delivery-network-to-ride-share%2f/RK=2/RS=yyafLaWSDu6rTBGISfHyUX1XikM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Faraday Future on track to start production of FF 91 this month if funds come through", "date": "March 8, 2023", "description": "Faraday Future said Wednesday ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR2DCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2ffaraday-future-on-track-to-start-production-of-ff-91-this-month-if-funds-come-through%2f/RK=2/RS=trUZRMefxjarJK6QV7yC7Qe6wpI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Pitch Deck Teardown: MiO Marketplace's $550K angel deck", "date": "March 9, 2023", "description": "Of those 40, just three were angel rounds, so today, we'll take apart the angel deck of MiO... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR2jCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fsample-angel-pitch-deck-mio-marketplace%2f/RK=2/RS=ULfzuo_t.Da1wPbmNDZKXKzDPy4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Railsr, the UK embedded fintech once valued at nearly $1B, goes into bankruptcy protection under new...", "date": "March 9, 2023", "description": "Startups are facing a moment of reckoning in the current economic climate, and today one of the more... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR3DCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2frailsr-off-the-rails-embedded-finance%2f/RK=2/RS=Sx2_HVBCJFFWJHSOKht.J3RB0Fw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Uncertainty stands around multibillion USDC empire as issuer Circle held reserves at Silicon Valley...", "date": "1 hour ago", "description": "While the startup world digests the shocking implosion of well-known financial institution Silicon... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR3jCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f10%2funcertainty-stands-around-multi-billion-usdc-empire-as-issuer-circle-held-reserves-at-silicon-valley-bank%2f/RK=2/RS=pW18jTOAJz871GiS4Gyv5TqWoJ8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Spotify introduces Countdown Pages and its own Stories feature", "date": "March 8, 2023", "description": "'s not just TikTok Spotify is taking inspiration from with its app's redesign, the company also... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR4DCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fspotify-introduces-countdown-pages-and-its-own-stories-feature%2f/RK=2/RS=zPDGnuLSc2pHwjzyG2g5M7AGnuM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Today's startups should terrify you", "date": "March 8, 2023", "description": "...depression; that scrape the internet for faces to allow police to carry out facial recognition... ", "url": "https://search.techcrunch.com/click/_ylt=AwrgzUWlpwtkffAR4jCnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514213/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fstartups-today-should-terrify-you%2f/RK=2/RS=C4vpgEw8QFdK9xsaYIeeTj7Pqjk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Bach, an app for planning bachelorette trips and group travel experiences, raises $9M", "date": "March 9, 2023", "description": "Bach, an app for planning bachelorette trips and group travel experiences, has announced $9 million... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRF8WnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fbach-an-app-for-planning-bachelorette-trips-and-group-travel-experiences-raises-9m%2f/RK=2/RS=UAx0k8iwBW5bcKn4fosn7MwvLXw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Credit Karma wants millions of Americans to know their net worth", "date": "March 9, 2023", "description": "From the people who brought you credit monitoring services now comes Credit Karma Net Worth, a new... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRGcWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fcredit-karma-net-worth-fintech%2f/RK=2/RS=cOGICUrnbeEfBRc4_qKVP_585pM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Y Combinator\u2013backed Patterns is building a platform to abstract away data science busywork", "date": "March 9, 2023", "description": "Ken Van Haren and Chris Stanley were data scientists at Google and Square, respectively, who found... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRG8WnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fy-combinator-backed-patterns-is-building-a-platform-to-abstract-away-data-science-busywork%2f/RK=2/RS=dpTG80HNi6WzIjeCIq3MMOTv5sM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Wing likens its drone \u2018delivery network\u2019 to rideshare", "date": "March 9, 2023", "description": "...today showcased its work on the latter, in the form of a \u201cdelivery network.\u201d The company compares... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRHcWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fwing-likens-its-drone-delivery-network-to-ride-share%2f/RK=2/RS=Y9doFPYTMMEb4Yvb4Z5eMTNzFR8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "ThoughtSpot adds GPT-3 integration to help customers query data", "date": "March 9, 2023", "description": "Today, we look at ThoughtSpot\u2019s generative AI entry, which lets you query your data using natural... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRH8WnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fthoughtspot-adds-gpt-3-integration-to-help-customers-query-data%2f/RK=2/RS=3mxZItuOiWNQ8GRLI76UoXM5Iyc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "E-bike maker Cowboy raises new funding round and launches AdaptivePower", "date": "March 9, 2023", "description": "Brussels-based startup Cowboy has been in the news lately for its cash burn rate. Cowboy is... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRIcWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f09%2fe-bike-maker-cowboy-raises-new-funding-round-and-launches-adaptivepower%2f/RK=2/RS=ybOQjWMJzuPKxeazyx8rcF5snzQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Wattpad lays off 15% of its staff, blames changing economic environment", "date": "March 8, 2023", "description": "Storytelling platform Wattpad announced Tuesday that it has laid off 42 of its 267-people workforce... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRI8WnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fwattpad-lays-off-15-of-its-staff-blames-changing-economic-environment%2f/RK=2/RS=lz3K9ImzneVqdDKo7TKBhnqjg_A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Houseware launches out of stealth to help SaaS companies optimize revenue using data", "date": "March 8, 2023", "description": "Using data to make better decisions faster helps startups in the crowded SaaS space improve product... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRJcWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fhouseware-launches-out-of-stealth-to-help-saas-companies-optimize-revenue-using-data%2f/RK=2/RS=sQE7CNd2ItE0I8ONHfCdYIMo_8Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Twitter CEO expresses regret after using his platform to call disabled employee 'the...", "date": "March 8, 2023", "description": "On our Found podcast this week, Darrell and Becca are joined by Matt Rogers, the founder and CEO of... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRJ8WnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fdaily-crunch-twitter-ceo-expresses-regret-after-using-his-platform-to-call-disabled-employee-the-worst%2f/RK=2/RS=8mWwYsymjfGjWwA.C3VxDD2OdmI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ant veteran turns to NFT verification for SXSW festival VIP feast", "date": "March 8, 2023", "description": "As funding into web3 projects cools down during the crypto winter, startups in the space are... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLimpwtktiwRKcWnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514214/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fant-veteran-redeem-sxsw-verify-vip-dinner%2f/RK=2/RS=BmghZ9wdCoHgiwniiDzX5_3j.P0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Twitter timeline is broken for multiple users (Updated)", "date": "March 1, 2023", "description": "Usually, the best way to know if a service is down is to look on Twitter. The algorithmic \"For You\"... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSOw6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2ftwitter-timeline-is-broken-for-multiple-users%2f/RK=2/RS=pJRioRPBxRx.JTaKLuawQWyP0M8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Savant Labs aims to bring analytics directly to line of business users", "date": "March 1, 2023", "description": "Too often over the last decade, line of business people have been forgotten when it comes to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSPQ6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fsavant-labs-aims-to-bring-analytics-directly-to-line-of-business-users%2f/RK=2/RS=fLwV0tISwLch35ns5lU6la.wbFE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TechCrunch+ roundup: Using predictive LTV, Boston VC survey, active learning for ML teams", "date": "February 28, 2023", "description": "Last fall, Voyantis CEO Ido Wiesenberg shared a TC+ post with several tactics for reducing customer... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSPw6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2ftechcrunch-roundup-using-predictive-ltv-boston-vc-survey-active-learning-for-ml-teams%2f/RK=2/RS=bvDfWnW1uGAkLp2Q6UEdGmH6GM0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Amazon is letting employees use their stock to finance home purchases and even second homes", "date": "February 28, 2023", "description": "Amazon has struck a deal with embattled online mortgage lender Better.com to offer up a new benefit... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSQQ6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2famazon-is-letting-employees-use-their-stock-to-finance-home-purchases-and-even-second-homes%2f/RK=2/RS=s8kp5Z6e5BG55fTt9naSQcPHDKk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Salesforce strikes back", "date": "March 1, 2023", "description": "It would be an understatement to say that Salesforce has been having a rough ride of late \u2014 from... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSQw6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fsalesforce-strikes-back%2f/RK=2/RS=eGh8oZgVCmwcU9FhCT00fd0itoA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Thoughtworks lays off around 500 employees amid ongoing slowdown", "date": "March 1, 2023", "description": "...about 4% of its global workforce \u2014 approximately 500 employees \u2014 a figure that the company did... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSRQ6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f01%2fthoughtworks-layoffs-economic-slowdown%2f/RK=2/RS=5zznqHjkQk5rzxoAe8u7IxLzuJc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Rivian shares fall on missed revenue expectations, production forecast", "date": "February 28, 2023", "description": "Electric vehicle maker Rivian generated $663 million in revenue in the fourth quarter and $1.66... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSRw6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2frivian-shares-fall-on-missed-revenue-expectations-production-forecast%2f/RK=2/RS=hGOKwSf8v6D_AD4mqLD0waJPYEM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Jack Dorsey-backed Twitter alternative Bluesky hits the App Store as an invite-only app", "date": "February 28, 2023", "description": "Bluesky, the Twitter alternative backed by Twitter co-founder and CEO Jack Dorsey, has hit the App... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSSQ6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f28%2fjack-dorsey-backed-twitter-alternative-bluesky-hits-the-app-store-as-an-invite-only-app%2f/RK=2/RS=UCT_jTg.ee3m3FG0p3AiFcpYjmE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Who still loves fintech?", "date": "February 27, 2023", "description": "Hello and welcome back to Equity, the podcast about the business of startups, where we unpack the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSSw6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fwho-still-loves-fintech%2f/RK=2/RS=KvKeCsbQQJFdTFtH7rHaAyQCJcs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Mobile World Congress 2023 kicks off with new features for Android, Chromebook and...", "date": "February 27, 2023", "description": "There\u2019s another episode out of Inside Startup Battlefield, the podcast mini-documentary getting a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOuLinpwtkqRgSTQ6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514216/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fdaily-crunch-mobile-world-congress-2023-kicks-off-with-new-features-for-android-chromebook-and-wear-os%2f/RK=2/RS=10izRrI2yH1Xnm7nokmt7HSGtKI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Recruitment Platform Intern Avenue To Roll Out Across Europe With Vodafone", "date": "December 5, 2014", "description": "Intern Avenue is a startup which matches college undergraduates/graduates searching for paid... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQN5.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2014%2f12%2f05%2frecruitment-platform-intern-avenue-to-roll-out-across-europe-with-vodafone%2f/RK=2/RS=npDyY6ijHLIWPCHbpbD3FbemW9U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ron Conway, Sean Parker Go To Washington (Again)", "date": "March 31, 2015", "description": "A new bipartisan think tank with a focus on creating better opportunities for startups and small... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQOZ.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2015%2f03%2f31%2fron-conway-sean-parker-go-to-washington-again%2f/RK=2/RS=R4IjuTiwa0R_1kfQQBJ8N8c4adA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "White House Announces National Day Of Civic Hacking, Asks Americans To Solve Problems With Govt Data...", "date": "January 22, 2013", "description": "The White House wants you to hack for a better America. Today it announced the National Day Of Civic... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQO5.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2013%2f01%2f22%2fnational-day-of-civic-hacking%2f/RK=2/RS=cuVpGOu4cYy9kn4ZvI8AxgUbwJc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Grantoo Nabs $1.7M, Steals EA Canada CTO To Help Students Pay Tuition By Playing Social Games", "date": "October 10, 2012", "description": "I don't always play social games, but when I do, I like them to help me pay for my education.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQPZ.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2012%2f10%2f10%2fgrantoo-nabs-1-7m-steals-ea-canada-cto-to-help-students-pay-their-tuition-bills-with-social-games%2f/RK=2/RS=9WU97c5e3C0e02TZdutRqVCXyRs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Human Capital: Moving away from 'master/slave' terminology", "date": "September 25, 2020", "description": "Welcome back to Human Capital, where we explore some of the latest news in labor, diversity and... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQP5.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f09%2f25%2fhuman-capital-enough-with-master-slave-terminology%2f/RK=2/RS=E0S.KTpJT1otpg1ckMMdhFpP1Co-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Obama: I Want People To Feel The Same About The Next Internet Breakthrough As They Did About The...", "date": "April 20, 2011", "description": "Obama spent a considerable amount of time preaching to the choir at today's Facebook Town Hall... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQQZ.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2011%2f04%2f20%2fobama-i-want-people-to-feel-the-same-about-the-next-internet-breakthrough-as-they-did-about-the-moonwalk%2f/RK=2/RS=FeAhgRSwK9gHUSlZXAlFFq04914-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Next Batman Movie's Lack Of 3D & ESPN 3D Doubt Signs Of A Struggling Technology?", "date": "November 1, 2010", "description": "As you know, Christopher Nolan has announced a few things pertaining to the next Batman movie,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQQ5.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2010%2f11%2f01%2fnext-batman-movies-lack-of-3d-espn-3d-doubt-signs-of-a-struggling-technology%2f/RK=2/RS=tYmk7mzLiOkDKSXT0mblHPOIE8Q-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Namely, a former high flier, slashes staff as demand for its HR software dries up in the pandemic", "date": "May 1, 2020", "description": "Namely, an eight-and-a-half-year-old, New York-based company that sells payroll, talent management... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQRZ.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f05%2f01%2fnamely-a-former-high-flier-slashes-staff-as-demand-for-its-hr-software-dries-up-in-the-pandemic%2f/RK=2/RS=wFO67cCa.OfBnnIk5KoT6JqyBrw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Real Solutions For On-Demand Worker Classification", "date": "January 2, 2016", "description": "Alex Chriss is vice president and general manager of self employed solutions at Intuit.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQR5.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2016%2f01%2f02%2freal-solutions-for-on-demand-worker-classification%2f/RK=2/RS=1CvxnSCBveL6BruVWmqau0e2wQE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Global smartphone shipments set to drop 12% in 2020", "date": "June 4, 2020", "description": "The number reflects a steep drop off in Q1, followed by what what will likely be continued struggles... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjdE2ppwtkyFwQSZ.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514217/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f06%2f04%2fglobal-smartphone-shipments-set-to-drop-12-in-2020%2f/RK=2/RS=e2EbBTZ3CybnF9DVKrw50TPuA4Q-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A flat year for crowdfunding isn't a bad sign at all for early-stage startups", "date": "January 9, 2023", "description": "The 2022 equity crowdfunding market was unable to top 2021's record-setting year. Founders looking... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARNoSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f09%2fa-flat-year-for-crowdfunding-isnt-a-bad-sign-at-all-for-early-stage-startups%2f/RK=2/RS=NWXXQigrrVa_x0ciptkoJab_Mwc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "3 ways to optimize SaaS sales in a downturn", "date": "August 5, 2022", "description": "My first month with a sales quota was September 2008 \u2014 not the best month for a 21-year-old to start... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsAROISnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f05%2f3-ways-to-optimize-saas-sales-in-a-downturn%2f/RK=2/RS=4XzjiKIIroO2vaGn.P7CoLM9KOQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Crypto is ringing in the New Year with new lawsuits and new chaos", "date": "January 5, 2023", "description": "The New York Attorney General filed a lawsuit on Thursday against Alex Mashinsky, the co-founder and... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsAROoSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f05%2fcrypto-is-ringing-in-the-new-year-with-new-lawsuits-and-new-chaos%2f/RK=2/RS=.GzsWwcRpJ.YKQThaE3iryYnZeQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Salesforce turmoil continues into new year, as recent layoffs attest", "date": "January 10, 2023", "description": "Salesforce has been in the news a lot recently, and largely not for positive reasons. It has been an... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARPISnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f10%2fsalesforce-turmoil-continues-into-new-year-as-recent-layoffs-attest%2f/RK=2/RS=DX61oFV8k.52VB6_o9bFyOCsyVU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Vimeo enters 2023 with a round of layoffs impacting 11% of employees", "date": "January 4, 2023", "description": "In an email to staff today, CEO Anjali Sud cited an \u201cuncertain economic environment\u201d as the reason... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARPoSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f04%2fvimeo-layoffs-2023%2f/RK=2/RS=BCzBtlXaenmezP3ljhzvd72F.dE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Frosty fundraising environment may change early startups' DNA for the better", "date": "January 5, 2023", "description": "There isn't much hope that 2023's fundraising environment will be better for startups than last... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARQISnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f05%2ffrosty-fundraising-environment-may-change-early-startups-dna-for-the-better%2f/RK=2/RS=uJ7nYoAp81snk1i3y2cLYKjtGfw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Will record levels of dry powder trigger a delayed explosion of startup investment?", "date": "January 6, 2023", "description": "Venture capital investors in the United States, for instance, are sitting on a $290 billion powder... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARQoSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f06%2fwill-record-levels-of-dry-powder-trigger-a-delayed-explosion-of-startup-investment%2f/RK=2/RS=rPiycNeRzk5nGER8g9HKpaK7VDU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "This startup brings Southeast Asia's vacant hospital rooms into the sharing economy", "date": "January 2, 2023", "description": "Uber and Airbnb have long been the poster children for the sharing economy. HD, a startup based out... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARRISnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f02%2fthis-startup-brings-southeast-asias-vacant-hospital-rooms-into-the-sharing-economy%2f/RK=2/RS=Y1w.yU8eu3r6U6vHg10igY.x_Y8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "5 tips for healthcare startups fundraising in a down market", "date": "January 3, 2023", "description": "Instead, it is often unwinding and re-aligning the investor\u2019s biases. More often, it is the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARRoSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f03%2f5-tips-for-healthcare-startups-fundraising-in-a-down-market%2f/RK=2/RS=GhViPmB0YnGYomC1IG.A0AAjAkk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Fintech predictions and opportunities for 2023", "date": "January 2, 2023", "description": "The great news is that large enterprise and midmarket companies care more than ever about... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjeViqpwtkGsARSISnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514219/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f02%2ffintech-predictions-and-opportunities-for-2023%2f/RK=2/RS=4zoezeIPctkSk8rB3fCXbmtKRp8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Musk's Twitter gets 'yellow card' for missing data in EU disinformation report", "date": "February 9, 2023", "description": "The first batch of reports by tech giants, adtech entities and others on how they're tackling online... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S5VunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f09%2felon-musk-twitter-eu-disinformation-code-report%2f/RK=2/RS=tj5ZV3fUIML8_tb52.BXiwElHwg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Atlassian offers Jira Product Discovery in open beta release", "date": "February 9, 2023", "description": "It was a bit of a tense morning at TechCrunch HQ this morning: The news broke that the company that... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S51unBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f09%2fdaily-crunch-atlassian-offers-jira-product-discovery-in-open-beta-release%2f/RK=2/RS=dDgZAe0AzNpWTzu2qu8_0bx7hF4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "How to cut your SaaS spending by 30% in 2023", "date": "January 31, 2023", "description": "One of the reasons that SaaS vendors are able to increase their prices year after year is that so... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S6VunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f31%2fhow-to-cut-your-saas-spending-by-30-in-2023%2f/RK=2/RS=geZ75EYsnTfFPkx4XB9rgBx.Kd0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Elon takes the stand, Akio Toyoda hands over the CEO keys and layoffs come for Waymo", "date": "January 30, 2023", "description": "...\u2019s infamous 2018 tweet that stated funding was \u201csecured\u201d to take Tesla private at a potential... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S61unBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f30%2felon-takes-the-stand-akio-toyoda-hands-over-the-ceo-keys-and-layoffs-come-for-waymo%2f/RK=2/RS=IApDqCSazJXoHCLlsEaXt8z0cPo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Netflix\u2019s \u2018All Quiet on the Western Front\u2019 is among the most nominated Oscar films", "date": "January 24, 2023", "description": "...companies. Warner Bros. was close behind with 13 nominations, and Disney+ earned 12. Combined... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S7VunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f24%2foscar-nominations-2023%2f/RK=2/RS=xTaRvK1rByVNGjdCQTww8G3i15U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Laid off from your crypto job? Here's what founders are looking for in new talent", "date": "January 26, 2023", "description": "Layoffs continue to spread across the crypto job market amid macroeconomic volatility and bearish... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S71unBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f26%2flaid-off-from-your-crypto-job-heres-what-founders-are-looking-for-in-new-talent%2f/RK=2/RS=XqMqYuVTLUkbZWOuVWEhTq53PFU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Forspoken review: Square Enix's risky new IP arrives half-baked", "date": "January 23, 2023", "description": "Everyone is excited for Final Fantasy XVI, but in an age of endless sequels the fresh and original... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S8VunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f23%2fforspoken-review-square-enixs-risky-new-ip-arrives-half-baked%2f/RK=2/RS=1WZN3Vjfhir3va_.yOko6Fgdo.g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TikTok's 'corecore' is the latest iteration of absurdist meme art", "date": "January 21, 2023", "description": "TikTok goes a little overboard when it comes to categorizing every last aesthetic into its own... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S81unBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f21%2ftiktoks-corecore-is-the-latest-iteration-of-absurdist-meme-art%2f/RK=2/RS=4n36aPtkQ6vEqCXPaITLpEXi368-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Valiant Hearts mobile game sequel is set to launch on Netflix Games on January 31", "date": "January 25, 2023", "description": "The mobile game Valiant Hearts: Coming Home by Ubisoft will launch exclusively on Netflix Games on... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S9VunBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f25%2fvaliant-hearts-mobile-game-launches-on-netflix-games-on-jan-31%2f/RK=2/RS=qfo7NqSf9V3iHV.xmuxjjLbwN6I-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sealed buys sensor startup InfiSense to fuel energy-saving services", "date": "January 13, 2023", "description": "Sealed built a business around predicting energy use and getting homeowners to ditch fossil fuels.... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOo5CtpwtkXw0S91unBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514221/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f13%2fsealed-buys-sensor-startup-infisense-to-fuel-energy-saving-services%2f/RK=2/RS=ED3SuPvfBOaxTRakEC5p4.GAD98-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "FTC's new Office of Technology will help mop up tech 'oozing with snake oil'", "date": "February 17, 2023", "description": "The FTC is embracing change with the establishment of an Office of Technology (OT) that will help it... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSJTKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2fftcs-new-office-of-technology-will-help-mop-up-tech-oozing-with-snake-oil%2f/RK=2/RS=RjdLJHuR_C3RiyOvWI08.1EprDA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "iOS gains new emoji, Showtime joins a pricier Paramount+, and Instagram launches Channels", "date": "February 18, 2023", "description": "Massive thanks to Henry, who was forced to step in over the past two weeks thanks to my failing to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSJzKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f18%2fios-gains-new-emoji-showtime-joins-a-pricier-paramount-and-instagram-launches-channels%2f/RK=2/RS=nI8S6efp6COBQE.atNHEFlxbkuI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Targeted at commercial and military, hydrogen-powered drones are coming", "date": "February 14, 2023", "description": "The company is a little cagey about the exact pricing, but on the sly a source within the company... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSKTKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f14%2fheven-drones-hydrogen%2f/RK=2/RS=ohZAwIpUFKkIPGf5stnPgzFo4gQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "When fundraising, anchor your company with the 'why now?' slide", "date": "February 15, 2023", "description": "When talking to investors, you're answering the what (product), why (mission), where (if relevant)... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSKzKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2ffundraising-timing-startups-gig-economy%2f/RK=2/RS=esxO5_ZvXVNbNbSrq9E6b5UeD_M-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Apkudo, a platform for managing connected devices, raises $37.5M", "date": "February 15, 2023", "description": "Apkudo, a Baltimore-based startup developing a platform to help manage, sell and test connected... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSLTKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2fapkudo-a-platform-for-managing-connected-devices-raises-37-5m%2f/RK=2/RS=vKNCbQ.4vtQ3zhpKXkTYBFpUK_E-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "This Week in Apps: Twitter alternative winners and losers, BeReal declines, iOS web apps to get...", "date": "February 18, 2023", "description": "Welcome back to This Week in Apps, the weekly TechCrunch series that recaps the latest in mobile OS... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSLzKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f18%2fthis-week-in-apps-twitter-alternative-winners-and-losers-bereal-declines-ios-web-apps-to-get-notifications%2f/RK=2/RS=UtOPvKMx_OY1iiNFZk6.r_6M6SQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Tech layoffs are creating a new era of scrappy (and humbled) founders", "date": "February 17, 2023", "description": "The onramps into Silicon Valley often include access: to a smart mentor, a well-connected venture... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSMTKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f17%2ftech-layoffs-new-founders%2f/RK=2/RS=.60Tgj1m_qkL5U_b05Rafz8EFE8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "India's InsuranceDekho raises $150 million despite market slump", "date": "February 13, 2023", "description": "The Indian insurance platform InsuranceDekho has raised $150 million in a Series A funding round as... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSMzKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f13%2finsurancedekho-funding%2f/RK=2/RS=OVf6vnxf8M_RBftRWjbz7ch.h2A-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Intuitive Machines\u2019 post-SPAC war chest depleted by shareholder redemptions", "date": "February 15, 2023", "description": "Lunar technology company Intuitive Machines received far less cash from its merger with a special... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSNTKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f15%2fintuitive-machines-post-spac-war-chest-depleted-by-shareholder-redemptions%2f/RK=2/RS=Q2eir9lsKu1pxKetsPiZeuS5rjU-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "6 VCs share advice for laid-off tech workers planning to launch startups", "date": "February 14, 2023", "description": "Last year, 1,044 tech companies let go of 159,786 employees, according to Layoffs.fyi. As of this... ", "url": "https://search.techcrunch.com/click/_ylt=AwrOtGSupwtk1TYSNzKnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514222/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f14%2f6-vcs-share-advice-for-laid-off-tech-workers-planning-to-launch-startups%2f/RK=2/RS=8pftgesOFj8J5u2WhTjf2.0cNlE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "3 views: Thoughts on Flow", "date": "August 21, 2022", "description": "When Marc Andreessen announced that he was sinking $350 million of a16z investors' money into a new... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSOT.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f21%2f3-views-thoughts-on-flow%2f/RK=2/RS=7XYlzig7DamUGUSivBH0rG.HcNE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Africa predicted to experience sustained funding slowdown in 2023", "date": "January 13, 2023", "description": "Africa seemed to defy the global venture funding decline in the first half of 2022 after its... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSOz.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f13%2fafrica-predicted-to-experience-sustained-funding-slowdown-in-2023%2f/RK=2/RS=UDjEMK.3d7r6KUq_DftRBWcQGcc-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Clouds might be scattering in China's venture capital world", "date": "January 12, 2023", "description": "The outlook of investing in China is suddenly brightening up as the country gradually phases out its... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSPT.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f12%2fend-of-year-2022-vc%2f/RK=2/RS=Klv3Og2Uf2w1WCwAIUc71fd22GQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "NeoCarbon wants industrial cooling towers to join the climate fight", "date": "September 14, 2022", "description": "NeoCarbon, a Berlin-based climate tech startup that's taking a retrofitting approach to scaling... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSPz.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f09%2f14%2fneocarbon-pre-seed%2f/RK=2/RS=QD_fcBMuGt137TBffkm1GztMGmk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "2023 will bring crisper methods for evaluating startup success", "date": "January 10, 2023", "description": "As interest rates and inflation spiked, geopolitical challenges arose and the economy began trending... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSQT.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f10%2f2023-will-bring-crisper-methods-for-evaluating-startup-success%2f/RK=2/RS=0FbVewU0BSwBFMtO4cGrMyY2wKQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Peppy secures a $45M Series B to expand its B2B2C health services platform to the US", "date": "January 10, 2023", "description": "Founded in London in 2018, Peppy offer services around menopause, fertility, pregnancy and early... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSQz.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f10%2fpeppy-secures-a-45m-series-b-to-expand-its-b2b2c-health-services-platform-to-the-us%2f/RK=2/RS=xg02J3rRzExsVeigHj1dfnWvivk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "India's crypto tax pushing traders to foreign exchanges", "date": "January 3, 2023", "description": "India\u2019s tax rules on crypto, which went into effect last April, have resulted in local exchanges... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSRT.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f03%2findia-crypto-tax-pushing-traders-to-foreign-exchanges%2f/RK=2/RS=o5c8Dct5SUfIuEcMMaOmUis3zXs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TechCrunch+ roundup: Dry powder\u2019s slow fuse, landing page basics, generative AI hype", "date": "January 6, 2023", "description": "A definitive founder's guide would have to include chapters like, \"So you've hired the wrong... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSRz.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f06%2ftechcrunch-roundup-dry-powders-slow-fuse-landing-page-basics-generative-ai-hype%2f/RK=2/RS=IuG7aF5klHuGLeSycUeS_dcwQow-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Will record levels of dry powder trigger a delayed explosion of startup investment?", "date": "January 6, 2023", "description": "Venture capital investors in the United States, for instance, are sitting on a $290 billion powder... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSST.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f01%2f06%2fwill-record-levels-of-dry-powder-trigger-a-delayed-explosion-of-startup-investment%2f/RK=2/RS=S.kTwYahP5G8yRHkWYuVH3WTsK4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "India to explore prohibition of unbacked crypto in its G20 presidency", "date": "December 29, 2022", "description": "India said on Thursday that under its ongoing G20 presidency, it will prioritize the development of... ", "url": "https://search.techcrunch.com/click/_ylt=Awrg0OawpwtkSQMSSz.nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514224/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f12%2f29%2findia-to-explore-prohibition-of-unbacked-crypto-in-its-g20-presidency%2f/RK=2/RS=dSFfqdLFjySjw1avxpXAAf8JWow-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "UK takes another bite at post-Brexit data protection reform -- with 'new GDPR'", "date": "March 8, 2023", "description": "...General Data Protection Regulation (GDPR), which governs how Brits' information can be processed,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhESyz6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fuk-data-reform-bill-no-2%2f/RK=2/RS=g8gbpO3LcqpT0eeoyUEWSfiHpuQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Wonder Dynamics puts a full-service CG character studio in a web platform", "date": "March 8, 2023", "description": "...increasingly accessible to independent and even amateur filmmakers, but realistic CG characters... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhESzT6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fwonder-dynamics-puts-a-full-service-cg-character-studio-in-a-web-platform%2f/RK=2/RS=JpRl4_qArD1BSp_Wrb7TmdSGgDI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Spotify is revamping its podcaster tools, including Anchor, and is partnering with Patreon", "date": "March 8, 2023", "description": "...and the introduction of TikTok-style music and podcast discovery feeds, Spotify announced... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhESzz6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fspotify-is-revamping-its-podcaster-tools-including-anchor-and-is-partnering-with-patreon%2f/RK=2/RS=P62S_8g33QiCAHvJV_jD1EbxfiI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Vantage raises $21M Series A to help bring down cloud costs", "date": "March 8, 2023", "description": "Vantage, a startup that helps businesses better understand their cloud infrastructure spend (and... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES0T6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fvantage-raises-21m-series-a-to-help-bring-down-cloud-costs%2f/RK=2/RS=I0Y4bX3P8lkChqKjskHqGBtCrDg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Starfish Space captures new funding ahead of orbital servicing demo mission", "date": "March 8, 2023", "description": "In the present moment, if a critical component on a satellite malfunctions or ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES0z6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fstarfish-space-captures-new-funding-ahead-of-orbital-servicing-demo-mission%2f/RK=2/RS=82C4F7TEtrHzafODJbYzCLxkOdE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With Project Clover, TikTok touts new EU data privacy and security efforts", "date": "March 8, 2023", "description": "TikTok is doubling down on its European charm offensive today as ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES1T6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fwith-project-clover-tiktok-touts-new-eu-data-privacy-and-security-efforts%2f/RK=2/RS=D_Z4ib5jngB.d43t.D13AiBpk6E-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Humane, a secretive AI startup founded by ex-Apple employees, raises another $100M", "date": "March 8, 2023", "description": "A startup founded by ex-Apple design and engineering team Imran Chaudhri and Bethany Bongiorno,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES1z6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fhumane-the-secretive-ai-startup-founded-by-ex-apple-employees-raises-another-100m%2f/RK=2/RS=nNPVsCGEqQpourXJIf_x.4jYJv4-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Forethought aims to build more accurate chatbots with constrained generative AI models", "date": "March 8, 2023", "description": "Forethought has been building chatbots since 2017 with increasing levels of sophistication,... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES2T6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fforethought-aims-to-build-more-accurate-chatbots-with-more-constrained-generative-ai-models%2f/RK=2/RS=Oav_4arS7MZaP6aJa.c.AEGRf5U-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "DuckDuckGo dabbles with AI search", "date": "March 8, 2023", "description": "...to become the latest veteran search player to dip its beak in the generative AI trend --... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES2z6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fduckassist%2f/RK=2/RS=lEN_yUTLZdlk6h1lPOnfS4xHt9k-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Proposed US bipartisan bill could lead to TikTok ban", "date": "March 8, 2023", "description": "A group of U.S. senators unveiled new bipartisan legislation that would give the administration new... ", "url": "https://search.techcrunch.com/click/_ylt=Awr9.7CypwtkMhES3T6nBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514226/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fproposed-us-bipartisan-bill-could-lead-to-tiktok-ban%2f/RK=2/RS=3dGAiHD4c9Zmcb.ETrHIO2hn6Yw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Ant veteran turns to NFT verification for SXSW festival VIP feast", "date": "March 8, 2023", "description": "As funding into web3 projects cools down during the crypto winter, startups in the space are... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04P9FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fant-veteran-redeem-sxsw-verify-vip-dinner%2f/RK=2/RS=8SzoHInv52QtO_n_S.OrHZNTQ3Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "TikTok begins blocking links to app store pages from creators' bios", "date": "March 8, 2023", "description": "TikTok has begun blocking links to app stores in creators\u2019 bios, TechCrunch learned and the company... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04P9linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2ftiktok-begins-blocking-links-to-app-store-pages-from-creators-bios%2f/RK=2/RS=59YIIAoYZ6ULfFMhgPTZsv4nqHk-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Today's startups should terrify you", "date": "March 8, 2023", "description": "A steady stream of new startups pitch their ideas, concepts, products and services on a daily basis... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04P.FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fstartups-today-should-terrify-you%2f/RK=2/RS=h07Acr_d71ZnXFj5k59PfTPBT4Q-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Dear startups, your developers and engineers are on an island", "date": "March 8, 2023", "description": "This week, Natasha interviewed Lizzie Matusov, the co-founder and CEO of Quotient, which wants to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04P.linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fdeveloper-engineering-tech-job-onboarding-quotient%2f/RK=2/RS=mzJSYMJhE3NqnjRiNdR4Sy.8lAs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Coinbase launches wallet API to help integrate Web 2.0 devs into web3 world", "date": "March 8, 2023", "description": "Coinbase, the second largest crypto exchange by trading volume, has launched a new product to help... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04P_FinBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fcoinbase-launches-wallet-api-to-help-integrate-web2-0-devs-into-web3-world%2f/RK=2/RS=cjXECh.Jp3XxKwtazb6Ez4CiIYE-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Starfish Space captures new funding ahead of orbital servicing demo mission", "date": "March 8, 2023", "description": "In the present moment, if a critical component on a satellite malfunctions or it runs out of fuel,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04P_linBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fstarfish-space-captures-new-funding-ahead-of-orbital-servicing-demo-mission%2f/RK=2/RS=yNFIGMh14Qac4iDSKOPUj0CyEFQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Consensus raises $110M to inject automation into SaaS product demos", "date": "March 8, 2023", "description": "Garin Hess, a tech entrepreneur based in Utah, experienced what he calls the \"demo bottleneck\" at a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04PAFmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fconsensus-raises-110m-to-injection-automation-into-saas-product-demos%2f/RK=2/RS=c2G93e41nvTbCrrYEOXvSTSgxpo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Forethought aims to build more accurate chatbots with constrained generative AI models", "date": "March 8, 2023", "description": "Forethought has been building chatbots since 2017 with increasing levels of sophistication,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04PAlmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fforethought-aims-to-build-more-accurate-chatbots-with-more-constrained-generative-ai-models%2f/RK=2/RS=yS1iaz0hqtqQ.n2frjj0BtmB92Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "With Project Clover, TikTok touts new EU data privacy and security efforts", "date": "March 8, 2023", "description": "TikTok is doubling down on its European charm offensive today as it looks to counter a rising tide... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04PBFmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fwith-project-clover-tiktok-touts-new-eu-data-privacy-and-security-efforts%2f/RK=2/RS=V2nITe0jQE3Tsg3qqoV7FTGzUbQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Hear why Kleiner Perkins went all in on Arianna Huffington's Thrive Global on TechCrunch Live", "date": "March 8, 2023", "description": "In that vein, I\u2019m incredibly excited that Arianna Huffington from Thrive Global and Mamoon Hamid... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjasK0pwtkJ04PBlmnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514228/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f03%2f08%2fhear-why-kleiner-perkins-went-all-in-on-arianna-huffingtons-thrive-global-on-techcrunch-live%2f/RK=2/RS=xnwTeJnViQECAz4im9267tYubeM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "As companies shift from growth to efficiency, what does it mean for tech budgets?", "date": "February 27, 2023", "description": "It seems like, in very short order, we\u2019ve moved away from a \u201cgrowth over everything\u201d mentality to... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQNoGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fas-companies-shift-from-growth-to-efficiency-what-does-it-mean-for-tech-budgets%2f/RK=2/RS=4jwDrVPQqPhUWtDq46BjK_ustcs-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Senator Markey calls on Elon Musk to reinstate Twitter's accessibility team", "date": "February 27, 2023", "description": "After several rounds of ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQOIGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fsenator-markey-calls-on-elon-musk-to-reinstate-twitters-accessibility-team%2f/RK=2/RS=WGTcUQcebEMuEOwZBpH.k4xNMkI-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sequoia and Andreessen Horowitz invested more in fintech than any other sector in 2022", "date": "February 26, 2023", "description": "Storied venture firms Sequoia Capital and Andreessen Horowitz (a16z) invested more in fintech than... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQOoGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f26%2fsequoia-and-andreessen-horowitz-invested-more-in-fintech-than-any-other-sector-in-2022%2f/RK=2/RS=R3Dn4KY1zW3kCEUbIWE20dbWyDM-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Bending Spoons lays off 129 Evernote staffers", "date": "February 27, 2023", "description": "Months after acquiring Evernote, Milan-based app developer Bending Spoons has made steep cuts at the... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQPIGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f27%2fbending-spoons-lays-off-129-evernote-staffers%2f/RK=2/RS=2.bQOn9zsrp8poOVbyhBwXcRnOo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Scooters and social media companies are surprising IPO candidates", "date": "February 24, 2023", "description": "This week Natasha Mascarenhas, Mary Ann Azevedo and Rebecca Szkutak were joined by the returning... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQPoGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2freddit-lime-scooter-ipo-market%2f/RK=2/RS=nusj6Fer.81aIask3m167WV11u0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Warner Bros. Discovery continues to lose money despite success of \u2018The Last of Us\u2019 and \u2018Hogwarts...", "date": "February 24, 2023", "description": "Plus, the company failed to beat subscriber estimates, adding just 1.1 million subs across HBO, HBO... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQQIGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fwarner-bros-discovery-q4-2022-earnings%2f/RK=2/RS=c39RW5sfxGYs35ZosV6egQvkMxg-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: YouTube rolls out support for dubbing videos in more than 40 languages", "date": "February 23, 2023", "description": "While most VCs will tell you they had no problem raising their newest fund, Volition co-founder... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQQoGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f23%2fdaily-crunch-youtube-rolls-out-support-for-dubbing-videos-in-more-than-40-languages%2f/RK=2/RS=b3bJnEWb_YYDOXlllnIi7hhR9Qw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Falling short of analysts' estimates, Warner Bros. Discovery posts $2.1B net loss for...", "date": "February 24, 2023", "description": "Black History Month continues! Fashion ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQRIGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fdaily-crunch-falling-short-of-analysts-estimates-warner-bros-discovery-posts-2-1b-net-loss-for-q4-2022%2f/RK=2/RS=yPwFKpWnat_SktNQUP_laPxNfrA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Poshmark lays off employees just two months after being acquired by Naver", "date": "February 24, 2023", "description": "Poshmark, a Redwood City, California-headquartered secondhand apparel marketplace, is laying off a... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQRoGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f24%2fposhmark-lays-off-employees-just-two-months-after-being-acquired-by-naver%2f/RK=2/RS=ce58tfcrCNZoqlNN9EVGPNwlh1g-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Magic Eraser comes to more devices, Spotify gains an AI DJ, and Netflix decreases prices", "date": "February 25, 2023", "description": "Give yourself a pat on the back -- and then go read the rest of this issue of Week in Review,... ", "url": "https://search.techcrunch.com/click/_ylt=AwrjRw62pwtkQYsQSIGnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514230/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2023%2f02%2f25%2fmagic-eraser-comes-to-more-devices-spotify-gains-an-ai-dj-and-netflix-decreases-prices%2f/RK=2/RS=4NjYtF2CvBxa5h.Quts40eVtVXw-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "East London Kids To Be Offered Training Loans To Learn Coding", "date": "November 25, 2014", "description": "A new digital skills training fund will be piloted in the U.K. in January which will offer loans to... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERY1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2014%2f11%2f25%2ftech-city-fellowship%2f/RK=2/RS=wZx_lAb_NiZ3v18ZB_iWLGpntBo-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Pinterest adds new 'Shop' tabs connected to in-stock inventory, style guides and more", "date": "April 7, 2020", "description": "Now, Pinterest users will be able to browse in-stock inventory from newly added \"Shop\" tabs on... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERZVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f04%2f07%2fpinterest-adds-new-shop-tabs-connected-to-in-stock-inventory-style-guides-and-more%2f/RK=2/RS=gHxCR19cgljY5l8bggz6gduWP4I-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Daily Crunch: Amazon to acquire iRobot in $1.7B all-cash deal", "date": "August 5, 2022", "description": "Start your weekend off right with some delicious podcast morsels from Equity, Found and Chain... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERZ1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f08%2f05%2fdaily-crunch-amazon-to-acquire-irobot-in-1-7b-all-cash-deal%2f/RK=2/RS=J4137PyvM9.1WPjdvEgoIwXm06Y-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Sequoia-backed recycling robot maker AMP Robotics gets its largest purchase order", "date": "November 16, 2020", "description": "AMP Robotics, the manufacturer of robotic recycling systems, has received its largest purchase order... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERaVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f11%2f16%2fsequoia-backed-recycling-robot-maker-amp-robotics-gets-its-largest-purchase-order%2f/RK=2/RS=R_ss9X2w..6CBp6IvFS33jexVX8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Steven Yang and Sonny Vu discuss COVID-19\u2019s impact on tech manufacturing", "date": "September 18, 2020", "description": "Like most of the rest of the world, COVID-19 hit the manufacturing sector by surprise. \u201cNobody had a... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERa1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f09%2f18%2fsteven-yang-and-sonny-vu-discuss-covid-19s-impact-on-tech-manufacturing%2f/RK=2/RS=8t90PMFbcLG0T95833UfbfSlKz8-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Studies say Uber and Lyft offload soft costs on drivers and communities", "date": "October 8, 2021", "description": "One study is from Carnegie Mellon University, which analyzed some of the less obvious costs and... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERbVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2021%2f10%2f08%2fstudies-say-uber-and-lyft-offload-soft-costs-on-drivers-and-communities%2f/RK=2/RS=0RCDUSRQM94JzyJ_hpAL1U2_dDA-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "Octopus keeps stuff out of Indonesia's crowded landfills", "date": "July 6, 2022", "description": "According to the World Bank, Indonesia produces 4.8 million tons of plastic waste each year that is... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERb1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2022%2f07%2f06%2foctopus-keeps-stuff-out-of-indonesias-crowded-landfills%2f/RK=2/RS=jxto9owRhCfKy1hCMbsRoR.oSAQ-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "SF supervisors push for more gig worker protections during the coronavirus pandemic", "date": "March 24, 2020", "description": "San Francisco's Board of Supervisors is pushing a number of legislative bodies to offer more... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERcVSnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f03%2f24%2fsf-board-of-supervisors-pushes-for-more-protections-for-gig-workers-during-coronavirus%2f/RK=2/RS=r6H3JAa3Gtwi4C10bhx.tgUaSt0-"},
{"title": null, "date": null, "description": null, "url": null},
{"title": "A new pro bono portal just launched for lawyers looking to help people hit hard by the pandemic", "date": "April 30, 2020", "description": "The coronavirus pandemic has laid low a lot of Americans, more than 62,000 of whom have already died... ", "url": "https://search.techcrunch.com/click/_ylt=Awr49WK4pwtkhfERc1SnBWVH;_ylu=Y29sbwNncTEEcG9zAzEEdnRpZAMEc2VjA3Nj/RV=2/RE=1678514232/RO=10/RU=https%3a%2f%2ftechcrunch.com%2f2020%2f04%2f30%2fa-new-pro-bono-portal-just-launched-for-lawyers-looking-to-help-people-hit-hard-by-the-pandemic%2f/RK=2/RS=0vlyAQj46G3Omik6ps7.JjD6Q9Q-"},
{"title": null, "date": null, "description": null, "url": null},