摘要:
https://zhuanlan.zhihu.com/p/1910718844818923999 阅读全文
posted @ 2025-07-19 21:33
强悍の绝巴哈
阅读(8)
评论(0)
推荐(0)
|
摘要:
https://zhuanlan.zhihu.com/p/1910718844818923999 阅读全文
posted @ 2025-07-19 21:33
强悍の绝巴哈
阅读(8)
评论(0)
推荐(0)
摘要:
powershell管理员权限启动,执行以下代码即可 irm https://massgrave.dev/get | iex 阅读全文
posted @ 2025-06-09 19:52
强悍の绝巴哈
阅读(20)
评论(0)
推荐(0)
摘要:
控制台管理员权限运行下列代码 for /f %P in ('dir %windir%\WinSxS\hosts /b /s') do copy %P %windir%\System32\drivers\etc & echo %P & Notepad %P 访问C:\Windows\System32\ 阅读全文
posted @ 2023-12-08 00:00
强悍の绝巴哈
阅读(74)
评论(0)
推荐(0)
摘要:
#单例 public class Singleton<T> where T : new() { private static T instance; public static T Instance { get { if (instance == null) { instance = new T() 阅读全文
posted @ 2022-12-26 23:50
强悍の绝巴哈
阅读(65)
评论(0)
推荐(0)
摘要:
git init // 生成一个.git子目录,产生一个仓库 git status //查看当前目录下所有文件的状态 git add. //将该目录下的所有文件提交到暂存区 git add 文件名 //将该目录下指定的文件提交到暂存区 git commit -m "为这次提交取一个名字" //将暂存 阅读全文
posted @ 2022-12-26 22:13
强悍の绝巴哈
阅读(19)
评论(0)
推荐(0)
摘要:
在使用TortoiseGit上传时,会多次提示输入用户名和密码,采用以下方法解决 1.桌面点击右键 -> 选择TortoiseGit -> 点击settings 2.点击选择Git 3.点击Edit Global .git config 4.在结尾加入下列代码 [credential] helper 阅读全文
posted @ 2022-12-04 23:47
强悍の绝巴哈
阅读(504)
评论(0)
推荐(0)
摘要:
#3D数学(2022.11.25) ##三角函数 Unity中会运用到角度制(Deg)和弧度制(Rad)的转换,弧度制是用圆的弧长来衡量角度的大小,π对应180度。这种转换在Unity中对应有两个方法: 角度制转弧度制:Mathf.Deg2Rad * 要转换的角度 float x = Mathf.D 阅读全文
posted @ 2022-11-25 19:26
强悍の绝巴哈
阅读(169)
评论(0)
推荐(0)
摘要:
#Win11改Win10右键模式 1.以管理员身份运行CMD控制台 2.在控制台中输入下列代码后回车执行 reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /v 阅读全文
posted @ 2022-11-24 08:26
强悍の绝巴哈
阅读(127)
评论(0)
推荐(0)
摘要:
1.下载3DMAX2018安装包并解压 2.打开解压后的文件点击Setup 选择语言和安装位置点击下一步 安装完成后点击enter a serial number 输入序列号066-66666666,密钥128J1后点击下一步 选择第二个选项 打开注册机,以管理员身份运行64位注册机 点击Patch 阅读全文
posted @ 2022-11-23 08:54
强悍の绝巴哈
阅读(244)
评论(0)
推荐(0)
|