省事儿 只需要两行代码 把下面两行保存文件后缀改成.vbs ,双击试试看吧。 这里的0表示进程启动,可改成1 set WSHshell = wscript.createobject("wscript.shell") WSHshell.run "cmd.exe /c vue ui",0,true 开机 ...
分类:
其他好文 时间:
2021-03-02 12:31:22
阅读次数:
0
CF1491F链接 好不容易自己做出来个 \(2700\) ... 首先我们对题目中的 \(n_1n_2 + s_1s_2 - n_1s_2 - n_2s_1\) 因式分解,得到 \(F = (n_1 - s_1)(n_2 - s_2)\) 也就是说,\(F \neq 0\) 当且仅当 \(n_1 ...
分类:
Web程序 时间:
2021-03-02 12:25:12
阅读次数:
0
Each year some languages die out. Some say this is good because fewer languages would make communication easier and relieve people of the burden of le ...
分类:
其他好文 时间:
2021-03-02 12:23:31
阅读次数:
0
C# 中 PadLeft和PadRight 的用法 C# 中 PadLeft和PadRight 的用法 在 C# 中可以对字符串使用 PadLeft 和 PadRight 进行轻松地补位。 PadLeft(int totalWidth, char paddingChar) //在字符串左边用 pad ...
POJ - 2236Wireless Network 并查集。 每次修理计算机,遍历可以与之相连的计算机并进行合并。时间复杂度 \(O(n\log n)\) 。最多只用修理 \(n\) 次。 每次测试连通性,判断根节点是否相同,时间复杂度 \(O(1)\) 。最多不过 \(3e5\) 次测试。 总时 ...
分类:
Web程序 时间:
2021-03-02 12:06:18
阅读次数:
0
1.方法一:用定时器定时,没跑完定时器,点击按钮无效 <script> var isClick = true; $("button").on("click",function(){ if(isClick) { isClick = false; //事件 console.log('我被点击了'); / ...
分类:
Web程序 时间:
2021-03-02 11:55:14
阅读次数:
0
var str = 'node.js'; var fs = require('fs'); fs.writeFile('./a.txt',str,function(err){ if(err==null){ console.log('恭喜你,写入成功') }else{ console.log(err); ...
分类:
Web程序 时间:
2021-03-02 11:49:45
阅读次数:
0
[Git]基本操作 Git的结构 workspace:工作区 staging area:暂存区/缓存区 local repository:版本库或本地仓库 remote repository:远程仓库 基本命令 参考:https://www.cnblogs.com/convict/p/1079532 ...
分类:
其他好文 时间:
2021-03-02 11:45:58
阅读次数:
0
1.安装Redis 因为使用了Redis储存登陆用户信息,所以需要先安装Redis 下载链接 : https://github.com/tporadowski/redis/releases 下载后启动文件夹中的redis-server.exe即可 2.启动前端项目 教程: https://www.c ...
分类:
其他好文 时间:
2021-03-01 14:16:03
阅读次数:
0
一个页面中多个window.onload = function(){}冲突问题解决思路 一个页面中多个window.onload = function(){}冲突问题解决思路 参考文章: (1)一个页面中多个window.onload = function(){}冲突问题解决思路 (2)https: ...