other
Selenium399
这个作者很懒,什么都没留下…
展开
-
eslint+vscode格式化代码
vscode安装eslint插件全局安装eslintnpm i -g eslinteslint --init #//js项目根目录运行,按照提示选择项目根目录创建三个文件,然后执行npm install.editorconfigroot = true[*]end_of_line = lfinsert_final_newline = true[*.{js,json}]charset = utf-8indent_style = spaceindent_size = 2.原创 2021-11-02 23:48:19 · 310 阅读 · 0 评论 -
vscode搭建远程开发环境
新公司的开发模式是远程开发,将代码环境部署到虚拟机中,然后使用vscode远程连接进行开发,使用下来感觉也挺方便的,特此记录文章目录1. 配置免密登录2.服务器安装vscode-server3. vscode安装插件本机 windows10远程开发机 ubuntu18.041. 配置免密登录windows:执行ssh-keygen,一路按回车,在用户目录下生成.ssh目录ubuntu:同样执行ssh-keygen,一路按回车,在用户目录下生成.ssh目录,然后将window上的id.原创 2021-06-06 15:46:05 · 2476 阅读 · 4 评论 -
fatal: http://1.1.1.4/ac_portal/needauth.html?url=xxxx/info/refs not valid:is this a git repository?
电脑关机前还使用了git,放了5天假,开启后使用git pull,git clone 远程仓库报错:fatal: http://1.1.1.4/ac_portal/needauth.html?url=xxxx/info/refs not valid:is this a git repository?网上看了很多博客,甚至重装了git,都没解决。使用git config --list对比了我...原创 2020-05-06 14:04:07 · 1073 阅读 · 1 评论 -
vscode设置nodejs代码提示
安装typingsnpm install -g typings为typings设置代理(我使用的是公司电脑,需要设置代理,不需要设置代理的可以跳过这步)在项目的根目录下创建.typingsrc文件proxy=代理ip:代理端口安装nodejs的代码提示依赖npm install @types/node注意:之前看别人的博客使用的命令是typings insta...原创 2020-04-02 10:48:30 · 5949 阅读 · 1 评论 -
idea注解爆红解决方法
用idea导入一个项目,明明所有jar包的依赖都下载好了,还是爆红。解决:删除.idea目录File–>Invalidate Caches/Restart原创 2020-04-01 16:48:17 · 6205 阅读 · 15 评论 -
SNMP协议
https://www.cnblogs.com/xdp-gacl/p/4187089.html转载 2020-02-12 17:25:47 · 130 阅读 · 0 评论 -
IDEA Springboot项目开启热部署
1.在pom.xml中导入相关依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional>&l...原创 2019-08-12 16:02:57 · 170 阅读 · 0 评论