上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页
  2023年1月11日
摘要: 1:首先下载代码并安装配置 git clone https://github.com/vbenjs/vue-vben-admin.gitcd vue-vben-admin npm i -g pnpm pnpm i 2:编辑 /vite.config.ts 的第56行,找到https改成false(为 阅读全文
posted @ 2023-01-11 19:50 项希盛 阅读(2721) 评论(0) 推荐(1) 编辑
  2022年12月30日
摘要: node.js编写反向代理转发https const crypto = require("crypto"); const md5 = function (str) { const md5 = crypto.createHash('md5'); md5.update(str); return md5. 阅读全文
posted @ 2022-12-30 22:23 项希盛 阅读(411) 评论(0) 推荐(0) 编辑
  2022年12月19日
摘要: 复制下面代码保存成bat然后运行即可 @echo off reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" /f "*.bak" /k>profile-bak.txt for /f "skip=1 de 阅读全文
posted @ 2022-12-19 20:27 项希盛 阅读(32) 评论(0) 推荐(0) 编辑
  2022年12月4日
摘要: Node.JS编写的DNS分发器 const dgram = require('dgram'); //获取本地时间字符串 function getDateStr() { return (new Date()).toLocaleString(); } function checkDomainOne(s 阅读全文
posted @ 2022-12-04 20:38 项希盛 阅读(61) 评论(0) 推荐(0) 编辑
  2022年11月19日
摘要: Node.js通过密钥计算验证码,无需存数据库 const CRC32 = require('crc-32'); function XixiOtp(sKey, iKeeptime = 600) { const oPri = {}; oPri.sKey = sKey; oPri.iKeeptime = 阅读全文
posted @ 2022-11-19 20:03 项希盛 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 通过加密计算出短信验证码,无需缓存验证码 <?php class XixiOtp { private $iKeeptime; // 验证码有效期 private $sKey; // 加密用的密钥 private $p1Len = 1; // 验证码前缀长度(建议1~2) private $p2Len 阅读全文
posted @ 2022-11-19 18:26 项希盛 阅读(88) 评论(0) 推荐(0) 编辑
  2022年10月28日
摘要: 这里采用PowerShell编写脚本请求3322的动态域名接口 $pair = "root:更新密码" $encodedCreds = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($pair)) $b 阅读全文
posted @ 2022-10-28 23:47 项希盛 阅读(587) 评论(0) 推荐(0) 编辑
  2022年9月16日
摘要: 下载地址 简体中文 - Windows 10 企业版 LTSC 2021 文件名: zh-cn_windows_10_enterprise_ltsc_2021_x64_dvd_033b7312.iso SHA-256: C117C5DDBC51F315C739F9321D4907FA50090BA7 阅读全文
posted @ 2022-09-16 13:28 项希盛 阅读(1059) 评论(0) 推荐(0) 编辑
摘要: • 简体中文商业版8月更新版(含教育版、企业版、专业版、专业教育版、专业工作站版)- VLSC64位版本:Windows 11 (business edition), version 21H2 (x64) - DVD (Chinese-Simplified)文件名称: zh-cn_windows_1 阅读全文
posted @ 2022-09-16 12:30 项希盛 阅读(714) 评论(0) 推荐(0) 编辑
摘要: • 简体中文版2022年8月更新版(含标准版、标准桌面体验版、数据中心版、数据中心桌面体验版)- MVS 64位版本:Windows Server 2022 Standard、Windows Server 2022 Standard (Desktop Experience)、Windows Serv 阅读全文
posted @ 2022-09-16 11:32 项希盛 阅读(864) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页