摘要: #include <iostream> using namespace std; int main() { int x = 10; // 定义一个整型变量 x,值为 10 int* p; // 定义一个指针变量 p,可以存放 int 类型的地址,*表示这是一个指针变量 p = &x; // 把 x 阅读全文
posted @ 2025-10-10 14:34 ucdos2023 阅读(7) 评论(0) 推荐(0)
摘要: import { useUserInfo } from '/@/stores/userInfo'; let currentUserInfo = useUserInfo().userInfos; console.log('currentUserInfo ', currentUserInfo); 阅读全文
posted @ 2025-06-06 13:16 ucdos2023 阅读(13) 评论(0) 推荐(0)
摘要: 写了一个获取公网IP脚本 SCHTASKS /CREATE /SC MINUTE /MO 10 /TN "GetPublicIP" /TR "powershell -ExecutionPolicy Bypass -File E:\bat\getip.ps1" /F # FTP 配置 $ftpServ 阅读全文
posted @ 2025-03-11 22:29 ucdos2023 阅读(62) 评论(0) 推荐(0)
摘要: 用SSH连接上iDRAC ,再执行以下命令:racadm set idrac.webserver.HostHeaderCheck 0racadm racreset 阅读全文
posted @ 2025-03-11 20:51 ucdos2023 阅读(38) 评论(0) 推荐(0)
摘要: 下载工具:https://gitcode.com/open-source-toolkit/03dd4/blob/main/ipmitool%20v1.8.18%20for%20windows.rar 把风扇降到30% ipmitool -I lanplus -H 192.168.2.100 -U r 阅读全文
posted @ 2025-03-08 01:10 ucdos2023 阅读(26) 评论(0) 推荐(0)
摘要: 腾讯客服-小程序专区 (qq.com) 阅读全文
posted @ 2025-03-03 11:09 ucdos2023 阅读(16) 评论(0) 推荐(0)
摘要: 当改动过小程序的服务器域名,或改动过的一些代码时,appSecret 有可能会失效 阅读全文
posted @ 2025-03-01 11:01 ucdos2023 阅读(33) 评论(0) 推荐(0)
摘要: var bl = await _coreCmsOrderServices.UpdateAsync(p => new CoreCmsOrder() { mark = oldModel.mark }, p => p.orderId == oldModel.orderId); var _db= _unit 阅读全文
posted @ 2025-01-13 14:46 ucdos2023 阅读(13) 评论(0) 推荐(0)
摘要: --创建链接服务器 EXEC sp_addlinkedserver @server='MP3',--被访问的服务器别名 @srvproduct='', @provider='SQLOLEDB', @datasrc='124.223.225.0,1433'--数据源 GO --创建登录名和密码 EXE 阅读全文
posted @ 2024-12-27 18:07 ucdos2023 阅读(15) 评论(0) 推荐(0)
摘要: USE [xxx]; GO ;WITH cteCols AS ( SELECT c.name AS ColumnName FROM sys.columns c INNER JOIN sys.tables t ON c.object_id = t.object_id INNER JOIN sys.sc 阅读全文
posted @ 2024-12-27 10:34 ucdos2023 阅读(11) 评论(0) 推荐(0)