
其他
会飞的咕咕鱼
你想要的 时间都会给你
展开
-
GitHub报错:remote: Support for password authentication was removed on August 13, 2021.
报错如下:remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information..原创 2021-08-16 21:29:53 · 224 阅读 · 2 评论 -
CodeFun-UI 设计稿智能生成前端源代码
现在市场对前端开发工程师的要求越来越高,前端还原设计稿已经是最基本且不可避免的力气活了。在前端领域,想提升,就需要不断的学习。但是学习的时间哪里来呢?提高工作效率是正解,让你的24小时更有意义。CodeFun这个UI 设计稿智能生成前端源代码的工具,为我们提高工作效率,减少力气活节省了很多时间,用这些时间来做更有意义的事岂不是更香嘛。(膜拜解放CodeFun开发团队)使用:1.官网注册登录(https://code.fun/)2. 创建项目3. 上传设计稿目前 PSD .原创 2021-08-12 14:10:47 · 7860 阅读 · 2 评论 -
OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
1. git提交报错:2.解决办法:git --config --unset https.proxy如果是http就是:git --config --unset http.proxy原创 2021-03-06 11:48:09 · 3359 阅读 · 0 评论 -
vue源码运行报错[!] (plugin Rollup Core) Error: Could not load 解决办法
[!] (plugin Rollup Core) Error: Could not load C:\web\vue-2.6.10\vue\src\core\config (imported by C:\web\vue-2.6.10\vue\src\platforms\web\entry-runtime-with-compiler.js): ENOENT: no such file or directory, open 'C:\web\vue-2.6.10\vue\src\core\config'Error:原创 2020-12-31 10:43:36 · 4323 阅读 · 7 评论 -
VMware Workstation pro 14创建虚拟机(CentOS-7)
准备:下载CentOS-7(官方下载地址)不需要的可以移除创建成功原创 2019-08-16 17:59:15 · 230 阅读 · 0 评论 -
vmwareworkstationpro 14 详细安装步骤
1. 下载2.双击VMware-workstation-full-14.1.3-9474260.exe注意: 接下来选择‘是’,电脑会重新启动,记得提前保存下正在操作的文件,不然会丢失的哦3.重启电脑后,双击图标输入许可证密钥“YC592-8VF55-M81AZ-FWW5T-WVRV0”...原创 2019-08-09 18:47:19 · 1427 阅读 · 0 评论 -
常用正则表达式收藏
验证数字:数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数字:^\d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(\.[0-9]{1,2})?$ 带1-2位小数的正数或负数:^(\-)?\d+(\.\d{1,2})$ 正数、负数、和小数:...原创 2019-08-14 10:58:24 · 125 阅读 · 0 评论 -
前端RSA加密 ------- jsencrypt
对于前端很简单1.引入jsencrypt.min.js<script type="text/javascript" src="../assets/js/jsencrypt.min.js"></script>2.比如后端给的公钥为 publicKey = 'XXXXXXXXXXXX'var encrypt = new JSEncrypt();encryp...原创 2019-07-31 17:06:12 · 359 阅读 · 0 评论 -
VScode格式化 vue文件---vetur
1.VScode安装vetur插件2.点击左下角 设置3.Setting 右侧加上 "vetur.format.defaultFormatter.html": "js-beautify-html"然后 shift+alt+F 就可以格式化 vue 文件了...原创 2019-07-19 15:22:19 · 1579 阅读 · 0 评论 -
看到网友的分享-----vscode提高效率的常用插件
vscode-Document This jsdoc注释生成。vscode-eCSStractor 抽取页面的class,生成一个css文档。vscode-CSS Peek class名字定义跳转。(终于拥有dw cc的这个css定义跳转功能)vscode-Live Server http服务器(相当于使用nodejs的ht...转载 2019-07-19 14:41:28 · 290 阅读 · 0 评论