自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 收藏
  • 关注

原创 IERG 5320 Assignment2 Reference

Digital forensicsAssignment2咱这个课程号+课程名称,懂得都懂,要不是本科没学网安相关课程,一窍不通,我也不至于到处找答案唉。There is no exact answer here, just for reference.Problem 1Problem 1: One morning, one staff working at IT department of a company noticed a strange laptop which connected fro

2021-12-20 16:49:30 347 2

原创 【MySQL部署】SpringBoot+JPA项目在Ubuntu部署出错:java.sql.SQLException: Access denied for user ‘root‘@‘localhost

java.sql.SQLException: Access denied for user 'root'@'localhost问题描述问题原因解决方法方法一方法二方法三问题分析问题描述使用java -jar命令运行jar包后,报错:2021-12-11 16:31:54.630 ERROR 17672 --- [ main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Exception during pool

2021-12-11 17:09:29 967

转载 git push fatal: unable to access : OpenSSL SSL

错误原因前两天push的时候突然遇到这个问题,细究原因可能是在谷歌上通过VPN登录了一次github(以前都是走的国内线路登录的)出现此问题后无论用不用VPN,git账号怎样登录,在master分支上都无法push了。错误表现这个错误会报两种错xuefeng@DESKTOP MINGW64 /d/XXX (master)$ git pushfatal: unable to access 'https://github.com/XXX/XXX.git/': OpenSSL SSL_read: C

2021-03-03 13:36:18 3640 9

原创 [leetcode] 135 分发糖果

题目代码解法一int candy(vector<int>& ratings) { vector<int> left(ratings.size()); left[0] = 1; for (int i = 1; i < ratings.size(); i++) { if (ratings[i - 1] < ratings[i]) left[i] = left[i - 1] + 1; else left[i

2020-12-26 00:05:04 100

原创 [Git] error: The following untracked working tree files would be overwritten by checkout

问题git 换分支时总是有一个文件报错如下图,stash, checkout放弃更改都不管用。报错内容:error: The following untracked working tree files would be overwritten by checkout原因git在解冲突时产生了一些暂存数据解决方法在项目中找到文件位置,点击上方文件路径,输入cmd打开此处控制台。2. 输入语句,清除这些文件git clean -d -fx...

2020-12-24 00:33:15 1339 2

原创 Git分支常用语句 [备忘用]

只提交某文件夹的代码//提交Assets文件夹下的改动git add ./Assetsmerge 全盘接受//全盘接受本地git merge --strategy-option ours//全盘接受远程git merge --strategy-option theirs把其它分支的部分文件拉过来当前在branch A先pull一下确认branch A上是最新的然后我需要把branch B的文件夹Assets 拉到branch A上。git checkout branchB ./

2020-12-23 16:16:50 119

原创 [Unity] 串口读取数据错误 IOException: 拒绝访问。

错误内容IOException: 拒绝访问。 System.IO.Ports.WinSerialStream.ReportIOError (System.String optional_arg) (at <14e3453b740b4bd690e8d4e5a013a715>:0) System.IO.Ports.WinSerialStream…ctor (System.String port_name, System.Int32 baud_rate, System.Int32 data_bit

2020-08-26 12:37:31 4217

原创 [HoloLens+Unity]在HoloLens绘制矩形框

问题想在Hololens中实现绘制矩形框的功能,但是使用GUI,以及GL画图后不生效(可能是我使用方法有误),后来在MRTK的官方文档中看到的画图的实例。(还是得好好看文档和官方示例)解决方案使用微软官方的虚拟现实开发工具MRTK中的示例包,下载链接如下。https://connect.unity.com/p/mrtkzhong-wen-wen-dang-yi-kai-shi-shi-yong-mrtk.除了按照说明安装fundation包之外,把下面这个Examples包也下载并且导入项目然后

2020-08-17 15:00:31 356

原创 [Hololens]PC通过Wifi连接Hololens需要用户名和密码

问题描述通过浏览器访问连接同一wifi的hololens的时候,由于hololens被别人登录过,所以会有一个连接时需要的用户名和密码。忘掉的话就没法到home界面了。解决方法在Micro store里面下载应用:Microsoft Hololens这个应用然后添加设备->输入设备IP地址->这里也会让你输入用户名密码,在这里就可以重置这玩意了,点击resetPC点击重置后,hololens中会出现Device Portal PIN的匹配码,填入PC相应位置。然后输入新的用户

2020-08-13 20:11:58 3720

原创 [Hololens+Unity]UnityEngine.XR.WSA.WebCam报错

错误信息:Assets \ MixedRealityToolkit.LightingTools \ CameraCapture \ CameraCaptureUWP.cs(10,26):错误CS0234:类型或名称空间名称’WebCam’在名称空间’UnityEngine.XR.WSA’中不存在(您是否缺少程序集引用?)错误原因将WebCam移到了另一个名称空间,它现在在UnityEngine.Windows.WebCam下。修改方式改为using UnityEngine.Windows.We

2020-08-12 13:49:04 908

原创 Android: permission denied for window type 2038

[Android Bug]Android: permission denied for window type 2038 using网上很多解决方法说要根据SDK的版本调整LayoutParams.type。解决方法类似于:int LAYOUT_FLAG;if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { LAYOUT_FLAG = WindowManager.LayoutParams.TYPE_APPLICATION_OVER

2020-07-24 20:53:40 11190 5

原创 java.lang.UnsatisfiedLinkError: org.opencv.highgui.Highgui.imread_0(Ljava/lang/String;I)J

ava.lang.UnsatisfiedLinkError: org.opencv.highgui.Highgui.imread_0(Ljava/lang/String;I)错误解决方法总结添加System.loadLibrary(Core.NATIVE_LIBRARY_NAME); 参考博客安装opencv,并且将opencv/java/…目录中的dll文件复制到安装java的目录ja...

2020-04-15 01:36:37 891 1

原创 com.mysql.cj.jdbc.Driver爆红

今天新建了一个springboot+jpa的项目,配置数据库的时候怎么引包,甚至重启项目com.mysql.cj.jdbc.Driver都爆红结果刷新了一下maven好了然后恢复正常

2020-03-03 15:33:07 3657 5

原创 XMPP接收message出错:remote-server-not-found

XMPP接收message出错报错内容<message xmlns="jabber:client" to="haha@desktop-gc3tg37.mshome.net/2uo3jeh1sq" from="haha@172.18.6.33" type="error"><error code="404" type="cancel"><remote-server...

2020-02-29 14:54:44 627

原创 element-ui 使用时警告:did you register the component correctly?

警告:did you register the component correctly? For recursive components, make sure to provide the “name” option.问题原因没有在全局注册element-ui解决方法在main.js中引入:import ElementUI from 'element-ui'import 'elem...

2020-02-28 17:07:54 21320

原创 配置openfire server的数据库出现:A connection to the database could not be made.

配置openfire server的数据库出现:A connection to the database could not be made.View the error message by opening the “\logs\error.log” log file, then go back to fix the problem.问题查看日志可知:The last packet sen...

2020-02-28 10:46:41 969

原创 springboot项目 maven依赖无法install

maven依赖无法install问题:新建了一个springboot项目,发现好几个包死活下载不下来,vpn连不连都没有用,如图:解决方法遇见Maven无法下载依赖包,很可能是因为maven默认远程仓库地址的问题。所以要把远程仓库地址换一下。推荐使用阿里云的远程仓库。根据以下目录找到setting.xml2. 如果文件夹中没有,去安装maven的文件夹里找到,复制到第一步的目录3...

2020-02-21 18:10:33 1467

原创 npm install rollbackFailedOptional: verb npm-session 解决办法

npm install rollbackFailedOptional: verb npm-session 解决办法输入 npm install -g typescript 后就一直卡在这里。应该是网络问题。梯子挂或不挂都没什么用。这时使用淘宝镜像cnmp可以解决问题然后把用到npm的地方换成cnpm就可cnpm的安装不再赘述~...

2020-02-20 00:20:19 1923

原创 关于使用网页做托福TPO在chrome上没有声音,找不到autoplay-policy

使用网页做托福TPO在chrome上没有声音,找不到autoplay-policyChrome66及以下:Chrome76及以上参考Chrome66及以下:Chrome76及以上这里改为允许即可参考https://blog.csdn.net/a639735331/article/details/81457144https://ask.csdn.net/questions/77256...

2020-02-01 19:35:56 3453

原创 XR: OpenVR Error! OpenVR failed initialization with error code VRInitError_Init_PathRegistryNotFound

XR: OpenVR Error! OpenVR failed initialization with error code VRInitError_Init_PathRegistryNotFound问题描述当我在Unity中运行场景时,出现以下错误:'VR:OpenVR错误!OpenVR初始化失败,错误代码为VRInitError_Init_PathRegistryNotFound:“找不到...

2020-01-27 21:17:37 12619 17

翻译 【AR/MR】360proto: Making Interactive Virtual Reality &Augmented Reality Prototypes from Paper

【AR/MR】360proto: Making Interactive Virtual Reality &Augmented Reality Prototypes from Paper 论文阅读笔记概要介绍相关工作概要通过纸来构建AR/VR原型。开发了三种物理数字原型工具套件360Proto相机可以通过手机拍照捕捉纸质模型,然后再手机上或者Google Cardboard上看到3...

2020-01-27 20:46:12 382

原创 [unity] build项目报错:Currently selected scripting backend (.NET)is not installed

[Unity] Currently selected scripting backend .NET is notinstalledUnity build项目报错,没有安装 .NET问题概况Unity 附加模块visual studio 的 各种.NET插件Unity build项目报错,没有安装 .NET问题概况在build使用在Hololens上的项目时,遇到这么一个配置环节:把设置里面...

2019-11-10 15:39:10 4523

原创 【unity】error: Could not establish a connection with the Unity Package Manager local server process

Unity报错:Could not establish a connection with the Unity Package Manager local server process报错:报错内容报错:试了很多种方法,最后用谷歌在某个论坛搜到是unity hub搞的鬼。由于hub对2018版本不支持,所以打不开。报错内容Could not establish a connection ...

2019-11-07 15:06:35 7682 6

原创 [Angular] [formControl] 多个formControl的消息传递

[Angular] [formControl] 多个formControl的消息传递明确需求实现明确需求业务场景: 在根据某些条件搜索产品时,需要有两个输入框输入单价的范围。当输入有效时,搜索按钮处于可点击状态。实现思路:使用一个FormGroup包裹两个FormControl分别接收单价的最低值与最高值。功能点:双边检查:当两个输入框输入均为空时,判定为有效,此时搜索将会显示全量数据...

2019-08-25 17:47:47 468

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除