quot cfbundleshortversionstring specify native

Unity3D 开发Hololens 2 在VSCode2022上交叉编译时遇到 MSB3774 Could not find SDK "WindowsMobile, Version=10.0.17763.0"

由于把VSCode装到了D盘,所以Windows Kits/10不在c:Program Files(x86)\Windows Kits\下所以需要进行软连接,到C盘目录下(有一种直接剪切的方式不太好,,,之所以装到D盘,就是为了节约C盘空间,增么可以妥协你)去c:Program Files(x86) ......
quot WindowsMobile Hololens Unity3D Version

Jmeter:"An error occurred: Can't connect to X11 window server using 'lacalhost:12.0' as the value of the display variable." 解决办法

做各种不同项目的性能测试,都需要在项目本地压测服务器配置jmeter,需要时还要调出jmeter图形化界面来调试jmeter脚本。 标题中的问题遇过多次,这次做个记录。 1. 启动jmeter报错 在配置好jmeter环境变量的linux系统执行jmeter命令,报错如下: [root@localh ......
quot lacalhost the 39 occurred

default-scheduler running PreBind plugin "VolumeBinding": binding volumes: timed out waiting for the condition

看openebs-localpv-provisioner 和kube-scheduler-minikube 和kube-controller-manager-minikube的报错信息,就发现了问题 volumeClaimTemplates: - metadata: name: proxysql-d ......

由问题“如何将进程A的标准输出重定向为进程B的标准输入"引发的思考

# 由问题“如何将进程A的标准输出重定向为进程B的标准输入"引发的思考 若两个进程都是通过bash的同一条命令来启动,可以简单得使用bash的管道来完成。但当进程B是已经在运行状态的程序(如服务器程序),该怎么实现这个功能呢? 为简化讨论,进程A取cat/echo等带输出的待启动程序,进程B对应的程 ......
进程 标准 问题 quot

blender 使用物理骨骼,受物理影响+不影响主观能动性的"物理妥协骨骼" 插件:wiggle bone / rigid bone

复制需要物理模拟的控制骨,做2层一样的控制骨,在DEF的需要物理模拟的骨骼中加约束,影响:0.5 ![image](https://img2023.cnblogs.com/blog/1403997/202306/1403997-20230611171329032-771067548.png) ## ......
物理 骨骼 主观能动性 能动性 quot

Debian 12 "bookworm" 发布 - 通用操作系统

Debian 12 "bookworm" 发布 - 通用操作系统 基于 Linux kernel 6.1 LTS,支持 APFS 读写 请访问原文链接:,查看最新版。原创作品,转载请保留出处。 作者主页:[sysin.org](https://sysin.org) ![img](https://ww ......
quot bookworm Debian 系统 12

H5中新增的拼写检查属性- spellcheck="true"

这个属性也要浏览器开启功能才奏效: 要在设置中打开拼写检查: ......
quot spellcheck 属性 true

js和native交互 互相调用

必须这样写,如果用vue可以在app.vue里面写,先把WebViewJavascriptBridge弄到window下面 function setupWebViewJavascriptBridge(callback) { if ((window as any).WebViewJavascriptB ......
native

@JSONField(name = "xx") 和 @JsonProperty("xx") 注解

首先两个注解作用一模一样,是把前端传的属性名进行转换 区别就是包不一样,如果你在线上环境发现某一个不好使,可以考虑换一个 import com.alibaba.fastjson.annotation.JSONField;import com.fasterxml.jackson.annotation. ......
quot 注解 JsonProperty JSONField name

遇到chrome_options.add_experimental_option ("debuggerAddress", port_number)调起浏览器报错的情况

1、查看谷歌版本和chromedriver版本是否一致: 手动查找ChromeDriver路径。在终端中输入以下命令: which chromedriver 这将输出ChromeDriver的路径,例如: /usr/local/bin/chromedriver 可以在Chrome浏览器中输入以下网址 ......

报错:[Vue warn]: Error in render: "TypeError: Cannot read properties of undefined (reading 'state')"

1.错误详情 2. 错误分析 百度此错误发现,很多人可能忘记在main.js中引入store.js并挂载在vue实例上,或者state单词写错了 我审查了很多遍代码,依然报错,读取不到state中的数据,后来想到可能是版本的问题此项目是vue2,要使用vuex3才能正常运行,我安装的时候没有指定版本 ......
quot properties TypeError undefined reading

MySql技术之"虚拟表增加索引"

一、虚拟表增加索引 创建虚拟表,并且增加SKU索引:INDEX idx_sku (sku) CREATE TEMPORARY TABLE t_sku_analy_temp ( sku VARCHAR(225) PRIMARY KEY, sell_price DECIMAL(10, 2), profi ......
quot 索引 MySql 技术

windows 10 wsl 环境 docker 无法正常启动 -The system cannot find the file specified

错误信息: error during connect: in the default daemon configuration on Windows, the docker client must be run with elevated privileges to connect: Get "ht ......
specified windows 环境 docker cannot

The user specified as a definer (‘skip-grants user‘@‘skip-grants host‘) does not exist

该问题是由于导出数据库或备份数据库引起的函数所有者发生变化 解决办法 复制源函数创建语句 删除DEFINER 重新创建 ......
skip-grants grants user skip specified

客户端加域错误,错误是: "DNS 名称不存在。"(错误代码 0x0000232B RCODE_NAME_ERROR)解决方法...

客户端加域错误 注意: 此信息主要供网络管理员参考。如果您不是网络的管理员,请通知网络管理员您收到了此信息,记录在文件 C:\WINDOWS\debug\dcdiag.txt 中。 当查询 DNS 以获得服务位置(SRV)资源记录时遇到下列错误,此资源记录用来为域vm-***.guanwei.org ......

if [ "$1""xx" != "xx" ];then current_path=$1 fi汉语

if [ "$1""xx" != "xx" ];then current_path=$1 fi 这段 sh 脚本代码是用来检查当前工作目录的。它的作用是,如果用户传递了一个参数 (比如 "xx"),而且该参数与当前工作目录不同,则将当前工作目录设置为传递的参数 (即 "xx")。 具体来说,代码中的 ......
quot current_path current path xx

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> ......

解决使用yarn安装依赖出现“The engine "node" is incompatible with this module. Expected version "^14.18.0 || ^16.14.0 || >=18.0.0". Got "17.9.0"”的问题

# 1、问题描述 某天在使用`yarn`安装依赖的时候,突然出现如下错误导致安装依赖终止: **The engine "node" is incompatible with this module. Expected version "^14.18.0 || ^16.14.0 || >=18.0.0 ......
quot incompatible Expected version engine

IDEA使用location.href="url"时出现404且访问地址和设置的url不一致的情况

location.href="http://localhost:8080/face/register.html" 解决方法:清缓存,关闭浏览器 ......
quot url location 情况 地址

docker: Error response from daemon: could not select device driver "" with capabilities: [[gpu]].

docker 19之后的版本 1. nano nvidia.sh sudo curl -s -L https://nvidia.github.io/nvidia-container-runtime/gpgkey | \ sudo apt-key add -distribution=$(. /etc/ ......
quot capabilities response docker daemon

Jmeter-接口请求参数写入数据库后显示问号"???"

现象: 接口请求参数写入数据库后显示问号"???" 数据库: 解决: jmeter 默认使用 GBK 编码启动,需要自己更改为 UTF-8。添加编码后如图 ......
quot 问号 接口 参数 数据库

拒绝电池思维我们来聊聊”包装"这件事情

什么是”包装" 说真的,微商大会,传销大会参加的还是太少了 第一个点,大学生思维 大学生啥都没有,一穷二白是吧 其实有一说一,我以前碰见过一些大学生,很会来事儿的,这和大学生不大学生其实没啥关系。说白了,能借力打力就借力打力,没有,那自己就变成那个力 社区社团,协会,不管民间不民间的,反正title ......
思维 电池 事情 quot

Failed to instantiate [java.util.List]: Specified class is an interface

原代码没加@RequestParam,一直给我报这个错,传这个List根本不行 ```java @RequestMapping(value = "/searchPhoneInfos2", method = RequestMethod.GET) public CommonResult searchPh ......
instantiate Specified interface Failed class

Unexpected character '"' (code 34) in DOCTYPE declaration; expected a space between public and system identifiers

1)错误信息 Caused by: javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Failed to create service. at org.apac ......

HTTP Basic Authentication>> 401>> Using the browser’s native login prompt

https://docs.oracle.com/cd/E27515_01/common/tutorials/authn_http_basic.html http://blog.stevensanderson.com/2008/08/25/using-the-browsers-native-login ......
gt Authentication browser native prompt

如何在运行并调试React Native App

1. 进入工程目录,启动:Metro npx react-native start 2. 然后在新的terminal窗口中运行app npx react-native run-ios 第1,2步参考:https://reactnative.dev/docs/environment-setup#run ......
Native React App

VsCode配置Wdk7600开发环境 以及 "自动编译" 和 sources文件简单介绍..

[toc] # VsCode配置Wdk7600开发环境 以及 "自动编译" 和 sources文件简单介绍.. ## 一丶 简介 虽然`Wdk7600`已经过时,但还是有很多项目是使用`Wdk7600`编写的. 而很多老项目配置环境有很多种方式. 如配置在`visual studio 中编写`. 配 ......
quot sources 环境 文件 VsCode

Django修改数据库时出错 django.db.utils.OperationalError: (1091, "Can't DROP 'content'; check that column/key exists")

记录下简单的处理方法: 报错信息: django.db.utils.OperationalError: (1091, "Can't DROP 'content'; check that column/key exists") 可能数据库中的字段结构已经完成了此字段的修改但是在 python mana ......
OperationalError quot 39 content 数据库

Fields in a "Serializable" class should either be transient or serializable

如果某个字段不能被序列化,则需要将其设置为`transient`, 确保泛型参数必须实现序列化,将其限定为T extends Serializable ......

Cause: org.apache.ibatis.builder.BuilderException: Ambiguous collection type for property 'emps'. You must specify 'javaType' or 'resultMap'

Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error pa... ......