草庐IT

digital_hub

全部标签

Under the Wave of Digital Transformation, Can Algorithm Optimization Make Car Buying Smarter

Drivenbythewaveofdigitaltransformation,theautomotiveindustryhasbeensteadilychanging,upgrading,andreshapingitsbusiness.Inthisprocess,theemergenceofAIalgorithmshasdramaticallyimprovedtheoperationalefficiencyandvaluebalanceofvariousbusinesslines.Inthisarticle,weinvitedMr.ZhangYang,theheadandseniordirec

Under the Wave of Digital Transformation, Can Algorithm Optimization Make Car Buying Smarter

Drivenbythewaveofdigitaltransformation,theautomotiveindustryhasbeensteadilychanging,upgrading,andreshapingitsbusiness.Inthisprocess,theemergenceofAIalgorithmshasdramaticallyimprovedtheoperationalefficiencyandvaluebalanceofvariousbusinesslines.Inthisarticle,weinvitedMr.ZhangYang,theheadandseniordirec

The Digital Journey of Microsoft AI & IoT Insider Lab and Partners

Digitaltransformationisnotaone-dayprocess.Inthisarticle,weinvitedAngieZhu,GeneralManagerofMicrosoftAI&IoTInsiderLab,torevealthethinkingandlogicbehindthejointeffortsoftechnologygiantsandtrendsettingstartupsinthepost-epidemiceratoseizethefirstopportunityofthedigitalizationwave.Wehaveenteredaneweraofdi

The Digital Journey of Microsoft AI & IoT Insider Lab and Partners

Digitaltransformationisnotaone-dayprocess.Inthisarticle,weinvitedAngieZhu,GeneralManagerofMicrosoftAI&IoTInsiderLab,torevealthethinkingandlogicbehindthejointeffortsoftechnologygiantsandtrendsettingstartupsinthepost-epidemiceratoseizethefirstopportunityofthedigitalizationwave.Wehaveenteredaneweraofdi

Meet Yang Dong from Unity: A Fully Fledged Digital Human Could Be Created with Gaming Engine

InablogpostonApril13,UnityannouncedthatUnity2021LTSisavailabletodownloadanduse,drawingtheattentionofalargenumberofgamedevelopers.Inparallelwiththeriseofthemetaverse,theuseofdigitalhumanssuchas"LiuYexi"and"AYAYI"isalsoincreasingrapidlyinChina,makingitahighlyattractivemarketforinvestors.Atthemoment,th

Meet Yang Dong from Unity: A Fully Fledged Digital Human Could Be Created with Gaming Engine

InablogpostonApril13,UnityannouncedthatUnity2021LTSisavailabletodownloadanduse,drawingtheattentionofalargenumberofgamedevelopers.Inparallelwiththeriseofthemetaverse,theuseofdigitalhumanssuchas"LiuYexi"and"AYAYI"isalsoincreasingrapidlyinChina,makingitahighlyattractivemarketforinvestors.Atthemoment,th

npm install时遇到错误"error:0308010C:digital envelope routines::unsupported"的解决办法

  今天早上打开电脑,更新了日常工作的github仓库,然后就是习惯性地执行了"npminstall",发现报了下面这个错误:Error:error:0308010C:digitalenveloperoutines::unsupported  顺便看了一下错误堆栈,发现是一个Node的内核文件抛出来的错误,我的第一反应这个错误应该是和Node的版本有关(前几天刚刚升级过Node),所以理所当然地降低Node的版本应该可以解决这个问题。或者使用nvm(Windows平台上也可以使用nvm-windows)安装多个不同的Node版本。  除了切换Node的版本来解决这个问题外,其实还可以尝试启用l

npm install时遇到错误"error:0308010C:digital envelope routines::unsupported"的解决办法

  今天早上打开电脑,更新了日常工作的github仓库,然后就是习惯性地执行了"npminstall",发现报了下面这个错误:Error:error:0308010C:digitalenveloperoutines::unsupported  顺便看了一下错误堆栈,发现是一个Node的内核文件抛出来的错误,我的第一反应这个错误应该是和Node的版本有关(前几天刚刚升级过Node),所以理所当然地降低Node的版本应该可以解决这个问题。或者使用nvm(Windows平台上也可以使用nvm-windows)安装多个不同的Node版本。  除了切换Node的版本来解决这个问题外,其实还可以尝试启用l

【ASP.NET Core】修改Blazor.Server的Hub地址后引发的问题

BlazorServer,即运行在服务器上的Blazor应用程序,它的优点是应用程序在首次运行时,客户端不需要下载运行时。但它的代码是在服务器上执行的,然后通过SignalR通信来更新客户端的UI,所以它要求必须建立WebSocket连接。用于Blazor应用的SignalRHub是 ComponentHub,默认的连接地址是/_blazor。多数时候我们不需要修改它,但人是一种喜欢折腾的动物,既然 MapBlazorHub方法的重载也允许我们修改地址,那咱们何不试试。app.MapBlazorHub("/myapp");app.MapFallbackToPage("/_Host");我把Co

【ASP.NET Core】修改Blazor.Server的Hub地址后引发的问题

BlazorServer,即运行在服务器上的Blazor应用程序,它的优点是应用程序在首次运行时,客户端不需要下载运行时。但它的代码是在服务器上执行的,然后通过SignalR通信来更新客户端的UI,所以它要求必须建立WebSocket连接。用于Blazor应用的SignalRHub是 ComponentHub,默认的连接地址是/_blazor。多数时候我们不需要修改它,但人是一种喜欢折腾的动物,既然 MapBlazorHub方法的重载也允许我们修改地址,那咱们何不试试。app.MapBlazorHub("/myapp");app.MapFallbackToPage("/_Host");我把Co