上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2023-03-08 00:30 进阶的哈姆雷特 阅读(19) 评论(0) 推荐(0) 编辑
摘要: "无法将“nodemon”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。所在位置 行:1 字符: 1" 解决方案: 1.设置node 和 npm 的系统变量 2.设置执行策略 -> set-ExecutionPolicy Re 阅读全文
posted @ 2023-02-20 17:43 进阶的哈姆雷特 阅读(16) 评论(0) 推荐(0) 编辑
摘要: mysql -u root -p; mysql> create database ghost; mysql> show databases; mysql> exit mysql> select user(); // 查看当前登录的用户 mysql> show global variables lik 阅读全文
posted @ 2023-02-19 23:28 进阶的哈姆雷特 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 渲染进程 微队列(最高优先级),如异步请求 交互队列(高优先级),如点击事件 延时队列 (中优先级),如setTimeout // eg. function a() { console.log(1); Promise.resolve().then(() => { console.log(2); }) 阅读全文
posted @ 2022-11-17 23:01 进阶的哈姆雷特 阅读(47) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-10-31 21:48 进阶的哈姆雷特 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #### ubuntu ``` mkdir -p runoob2/test #创建文件 ls -lh tinyproxy.log #查看文件大小 lsof -i:8888 #查看端口占用 pidof tinyproxy #查看端口占用 nohup node app.js & #后台挂起node su 阅读全文
posted @ 2022-09-23 11:41 进阶的哈姆雷特 阅读(9) 评论(0) 推荐(0) 编辑
摘要: service tinyproxy start service tinyproxy restart service tinyproxy stop service tinyproxy status tail -f /var/log/tinyproxy/tinyproxy.log # 循环读取日志 阅读全文
posted @ 2022-09-23 11:10 进阶的哈姆雷特 阅读(101) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-09-22 14:55 进阶的哈姆雷特 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #### 子组件 <template> <div> <el-form :label-position="'left'"> <el-row :gutter="gutter"> <el-col :span="col"> <el-form-item> <el-input v-model="time.day 阅读全文
posted @ 2022-08-26 17:10 进阶的哈姆雷特 阅读(44) 评论(0) 推荐(0) 编辑
摘要: git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080 // 取消代理: git config --global --unset http. 阅读全文
posted @ 2022-08-19 18:31 进阶的哈姆雷特 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页