Day: June 25, 2025
30 posts
PODCAST | An Organized Advocacy Approach to Moving Manufacturing, Quality Forward
David Robinson, Director of External Affairs at Manufacturing Renaissance since 2016, has written legislation, organized advocacy within the…
Simulating a neural operating system with Gemini 2.5 Flash-Lite
A research prototype simulating a neural operating system generates UI in real-time adapting to user interactions with Gemini…
How to Market Telehealth Services to Connect With Digital-First Patients
In 2025, reaching patients means embracing the progress that technology has brought with it. In fact, in 2023,…
Predict Like a Leader Without a Crystal Ball
Remember when “gut feel” was a leadership virtue? Cute. Meanwhile your competitors are spoon-feeding large-language models terabytes of…
Medical Manufacturing Technologies Announces Strategic Acquisition of Comco
Medical Manufacturing Technologies (MMT), a portfolio company of Arcline Investment Management and a leading global provider of automated,…
A New Era of Code Quality: Beyond bugs and into legal license compliance and risk management
In the interconnected world of software, few applications are conjured into existence entirely from scratch. Developers consistently draw…
A framework to help you pick the right product tool
You are a product manager or leader, and you know that some of the tools can help you…
Last Planner System in Construction Projects: Process & Benefits
Construction planning methods have evolved to improve schedule reliability and collaboration on job sites. One of the most…
ABB Expands Large Industrial Robot Portfolio
ABB Robotics is expanding its large robot portfolio with the launch of the IRB 6730S, IRB 6750S and…
ArkUI-X平台差异化
跨平台使用场景是一套ArkTS代码运行在多个终端设备上,如Android、iOS、OpenHarmony(含基于OpenHarmony发行的商业版,如HarmonyOS Next)。当不同平台业务逻辑不同,或使用了不支持跨平台的API,就需要根据平台不同进行一定代码差异化适配。当前仅支持在代码运行态进行差异化,接下来详细介绍场景及如何差异化适配。 使用场景 平台差异化适用于以下两种典型场景: 1.自身业务逻辑不同平台本来就有差异; 2.在OpenHarmony上调用了不支持跨平台的API,这就需要在OpenHarmony上仍然调用对应API,其他平台通过Bridge桥接机制进行差异化处理; 判断平台类型 可以通过let osName: string = deviceInfo.osFullName;获取对应OS名字,该接口已支持跨平台,不同平台上其返回值如下: OpenHarmony上,osName等于OpenHarmony-XXX Android上,osName等于Android XXX iOS上,osName等于iOS XXX 示例如下:…