随笔分类 -  其它

摘要:参考链接:https://www.runoob.com/regexp/regexp-syntax.html 阅读全文
posted @ 2024-12-31 15:15 PrintY 阅读(5) 评论(0) 推荐(0) 编辑
摘要:Microsoft Visual Studio Community 2022 (64-bit) - Preview Version 17.10.0 Preview 7.0 1、打开文件,资源文件夹默认追踪 2、设置编辑器文字大小 顺便说下 Cascadia Mono 字体太香了,谁用谁知道。 3、调 阅读全文
posted @ 2024-05-10 18:11 PrintY 阅读(11) 评论(0) 推荐(0) 编辑
摘要:最近做一个功能,需要连接:mysql、mssql、oracle,开发语言是nodejs,框架是nestjs框架,orm使用的typeorm,package包括: "oracledb": "^6.4.0" "mssql": "^10.0.2" "mysql2": "^3.9.7" 公司没有mysql及 阅读全文
posted @ 2024-04-28 15:13 PrintY 阅读(2001) 评论(0) 推荐(0) 编辑
摘要:1. 在VS Code中,按下Ctrl + ,,打开设置界面。 2. 在搜索框中输入markdown.copy, 找到Markdown> Copy Files:Destination 3. 新增配置项 key 为 "**/*.md" , value 为 你的目标路径。比如我想将图片放在 assets 阅读全文
posted @ 2024-04-10 10:29 PrintY 阅读(717) 评论(1) 推荐(0) 编辑
摘要:https://github.com/settings/tokens/new 创建成功以后会生成一个token 复制项目代码https地址 然后修改这个地址,改成带token,如: https://ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx@github. 阅读全文
posted @ 2024-04-02 09:56 PrintY 阅读(86) 评论(0) 推荐(0) 编辑
摘要:发布环境 nodejs20.x uni-app vue3 错误描述 [plugin:commonjs--resolver] Package subpath './dist/vuex.esm-bundler.js' is not defined by "exports" in /home/runner 阅读全文
posted @ 2024-03-09 08:31 PrintY 阅读(577) 评论(0) 推荐(0) 编辑
摘要:转自:https://blog.csdn.net/weixin_43992917/article/details/128626184 阅读全文
posted @ 2024-02-26 13:48 PrintY 阅读(170) 评论(0) 推荐(0) 编辑
摘要:DNS解析将域名指向IP地址,是互联网中的一项重要服务。而由于业务场景不同,在设置DNS解析时,需要选择不同的记录类型。网站管理人员需要准确了解每一种DNS记录类型所代表的含义和用途,才能满足不同场景的解析需求。本文中科三方简单介绍下常用的几种DNS记录类型。 1.A记录 A记录是最常见和最常用的一 阅读全文
posted @ 2024-02-18 21:05 PrintY 阅读(295) 评论(0) 推荐(0) 编辑
摘要:feat(新功能): 新增代码文件:新功能相关的代码文件、模块等。 更新测试文件:添加新功能的测试用例。 fix(修复): 修改代码文件:包含有问题代码的文件。 更新测试文件:修复问题的测试用例。 docs(文档): Markdown 文件:更新项目文档、README、帮助文件等。 注释:更新代码中 阅读全文
posted @ 2024-01-24 16:37 PrintY 阅读(1460) 评论(0) 推荐(0) 编辑
摘要:转载自:https://blog.csdn.net/qq_43565087/article/details/124696787 阅读全文
posted @ 2023-11-24 09:48 PrintY 阅读(61) 评论(0) 推荐(0) 编辑
摘要:1、调整左侧缩略图滑块颜色 打开“设置”,然后修改配置JSON文件 在最下面加上这段,其中颜色根据自己喜好修改 "workbench.colorCustomizations": { "scrollbarSlider.activeBackground": "#62fa1b", "scrollbarSl 阅读全文
posted @ 2023-11-23 11:10 PrintY 阅读(115) 评论(0) 推荐(0) 编辑
摘要:1、例如现在要查杀8080端口 netstat -aon|findstr "8080" 可以看到pid是14124 2、查看该pid进程 tasklist|findstr "14124" 3、杀死进程 taskkill -pid 14124 -f 4、其它方式杀死进程 上面找到pid则可以直接通过任 阅读全文
posted @ 2023-11-01 10:15 PrintY 阅读(1171) 评论(0) 推荐(0) 编辑
摘要:阿里云SSL证书免费申请官方文档:免费SSL证书概述 1、访问阿里云控制台 1.1 提交证书申请 访问阿里云SSL证书申请页面:https://yundun.console.aliyun.com/?p=cas#/certExtend/free/cn-hangzhou 在此页面选择“立即购买”,购买成 阅读全文
posted @ 2023-08-29 16:35 PrintY 阅读(92) 评论(0) 推荐(0) 编辑
摘要:1、常用命令 参考: https://www.cnblogs.com/BJQE/p/16510627.html https://zhuanlan.zhihu.com/p/442407879 1. 清除缓存 有时候安装或卸载模块时,出现错误,有可能是缓存未清理的缘故。 npm cache clean 阅读全文
posted @ 2023-08-25 13:53 PrintY 阅读(31) 评论(0) 推荐(0) 编辑
摘要:MD5:加密结果是32位的数字加小写字母组合 16位MD5:加密结果16位数字加小写字母组合 SHA1:加密结果是40位数字加小写字母组合 SHA256:加密结果是64位数字加小写字母组合 SHA384:加密结果是96位数字加小写字母组合 SHA512:加密结果是128位数字加小写字母组合 URL编 阅读全文
posted @ 2023-02-20 09:23 PrintY 阅读(1391) 评论(0) 推荐(0) 编辑
摘要:# Git提交代码 #参考:https://gitee.com/help/articles/4114#article-header0 #进入项目文件夹,初始化一个Git仓库 git init #加入当前目录下所有文件放入临时状态/暂存区(Staging),可以使用如下命令 git add . #查看 阅读全文
posted @ 2022-12-01 16:30 PrintY 阅读(169) 评论(0) 推荐(0) 编辑
摘要:未完待续~ 阅读全文
posted @ 2022-11-22 11:21 PrintY 阅读(134) 评论(0) 推荐(0) 编辑
摘要:https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/ 阅读全文
posted @ 2022-11-08 09:11 PrintY 阅读(4723) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示