Drivenbythewaveofdigitaltransformation,theautomotiveindustryhasbeensteadilychanging,upgrading,andreshapingitsbusiness.Inthisprocess,theemergenceofAIalgorithmshasdramaticallyimprovedtheoperationalefficiencyandvaluebalanceofvariousbusinesslines.Inthisarticle,weinvitedMr.ZhangYang,theheadandseniordirec
Drivenbythewaveofdigitaltransformation,theautomotiveindustryhasbeensteadilychanging,upgrading,andreshapingitsbusiness.Inthisprocess,theemergenceofAIalgorithmshasdramaticallyimprovedtheoperationalefficiencyandvaluebalanceofvariousbusinesslines.Inthisarticle,weinvitedMr.ZhangYang,theheadandseniordirec
Digitaltransformationisnotaone-dayprocess.Inthisarticle,weinvitedAngieZhu,GeneralManagerofMicrosoftAI&IoTInsiderLab,torevealthethinkingandlogicbehindthejointeffortsoftechnologygiantsandtrendsettingstartupsinthepost-epidemiceratoseizethefirstopportunityofthedigitalizationwave.Wehaveenteredaneweraofdi
Digitaltransformationisnotaone-dayprocess.Inthisarticle,weinvitedAngieZhu,GeneralManagerofMicrosoftAI&IoTInsiderLab,torevealthethinkingandlogicbehindthejointeffortsoftechnologygiantsandtrendsettingstartupsinthepost-epidemiceratoseizethefirstopportunityofthedigitalizationwave.Wehaveenteredaneweraofdi
InablogpostonApril13,UnityannouncedthatUnity2021LTSisavailabletodownloadanduse,drawingtheattentionofalargenumberofgamedevelopers.Inparallelwiththeriseofthemetaverse,theuseofdigitalhumanssuchas"LiuYexi"and"AYAYI"isalsoincreasingrapidlyinChina,makingitahighlyattractivemarketforinvestors.Atthemoment,th
InablogpostonApril13,UnityannouncedthatUnity2021LTSisavailabletodownloadanduse,drawingtheattentionofalargenumberofgamedevelopers.Inparallelwiththeriseofthemetaverse,theuseofdigitalhumanssuchas"LiuYexi"and"AYAYI"isalsoincreasingrapidlyinChina,makingitahighlyattractivemarketforinvestors.Atthemoment,th
今天早上打开电脑,更新了日常工作的github仓库,然后就是习惯性地执行了"npminstall",发现报了下面这个错误:Error:error:0308010C:digitalenveloperoutines::unsupported 顺便看了一下错误堆栈,发现是一个Node的内核文件抛出来的错误,我的第一反应这个错误应该是和Node的版本有关(前几天刚刚升级过Node),所以理所当然地降低Node的版本应该可以解决这个问题。或者使用nvm(Windows平台上也可以使用nvm-windows)安装多个不同的Node版本。 除了切换Node的版本来解决这个问题外,其实还可以尝试启用l
今天早上打开电脑,更新了日常工作的github仓库,然后就是习惯性地执行了"npminstall",发现报了下面这个错误:Error:error:0308010C:digitalenveloperoutines::unsupported 顺便看了一下错误堆栈,发现是一个Node的内核文件抛出来的错误,我的第一反应这个错误应该是和Node的版本有关(前几天刚刚升级过Node),所以理所当然地降低Node的版本应该可以解决这个问题。或者使用nvm(Windows平台上也可以使用nvm-windows)安装多个不同的Node版本。 除了切换Node的版本来解决这个问题外,其实还可以尝试启用l
BlazorServer,即运行在服务器上的Blazor应用程序,它的优点是应用程序在首次运行时,客户端不需要下载运行时。但它的代码是在服务器上执行的,然后通过SignalR通信来更新客户端的UI,所以它要求必须建立WebSocket连接。用于Blazor应用的SignalRHub是 ComponentHub,默认的连接地址是/_blazor。多数时候我们不需要修改它,但人是一种喜欢折腾的动物,既然 MapBlazorHub方法的重载也允许我们修改地址,那咱们何不试试。app.MapBlazorHub("/myapp");app.MapFallbackToPage("/_Host");我把Co
BlazorServer,即运行在服务器上的Blazor应用程序,它的优点是应用程序在首次运行时,客户端不需要下载运行时。但它的代码是在服务器上执行的,然后通过SignalR通信来更新客户端的UI,所以它要求必须建立WebSocket连接。用于Blazor应用的SignalRHub是 ComponentHub,默认的连接地址是/_blazor。多数时候我们不需要修改它,但人是一种喜欢折腾的动物,既然 MapBlazorHub方法的重载也允许我们修改地址,那咱们何不试试。app.MapBlazorHub("/myapp");app.MapFallbackToPage("/_Host");我把Co