该文被密码保护。 阅读全文
posted @ 2021-04-15 11:20 zipon 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 3、 package main import ( "fmt" ) func max(x int, y int) int { if x < y { return y } return x } // 窗口滑动 解决子串问题 // 获取最长非重复子串 示例: "acdfeabac" > "acdfe" f 阅读全文
posted @ 2020-05-23 11:06 zipon 阅读(184) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-09-17 09:45 zipon 阅读(3) 评论(0) 推荐(0) 编辑
摘要: linux学习网站:https://linuxtools-rst.readthedocs.io/zh_CN/latest/base/index.html 27、ssh免密登录 ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.235.22 复制公钥到要ssh 阅读全文
posted @ 2017-09-14 14:49 zipon 阅读(392) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-12-20 09:47 zipon 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 1、先注释掉连接debugserver socket代码,启动 2、启动debugserver 3、去除注释,热部署自动重启,则能重连 阅读全文
posted @ 2023-09-11 16:39 zipon 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Fatal error compiling: 错误: 无效的目标发行版:17 除了网上的配置问题,还因为JAVA_HOME一定要指向目标jdk 阅读全文
posted @ 2023-08-29 16:57 zipon 阅读(279) 评论(0) 推荐(0) 编辑
摘要: # 依赖centos环境 FROM centos:7 #安装vim、git和nvm环境 RUN yum install -y wget \ && mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak \ 阅读全文
posted @ 2023-03-03 15:01 zipon 阅读(55) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-03-02 16:08 zipon 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1、el-checkbox点击不刷新,但是有变动 解决方案: vue只能监控到初始的key,后续新增的key监控不到 要么1、使用this.$set(对象,key,val)赋值 要么2、初始化的时候加上该key 阅读全文
posted @ 2023-03-01 17:08 zipon 阅读(11) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-01 19:30 zipon 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-01-31 13:58 zipon 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 插件结构: 如图所示目录,通过chrome://extentions加载unpack的文件夹即可 manifest.json相关配置:https://developer.chrome.com/docs/extensions/mv2/manifest/ 问题: 1、content-script.js可 阅读全文
posted @ 2022-04-24 18:03 zipon 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 需求: 页签页面,存于keep-alive中,切换或者跳转回来时,需要刷新页面。两种方式 方案一: 使用watch,但watch会缓存,开多少个页签,再跳转回来,就会重复执行,除非在deactivated时,进行销毁 销毁watch this.unwatch = this.$watch('xx',f 阅读全文
posted @ 2022-02-23 16:19 zipon 阅读(393) 评论(0) 推荐(0) 编辑
摘要: <div> <div class="circle"></div> <div class='wrap'> <div class='ribbon'> <span>测试1</span> </div> </div> </div> <style> .circle { width:100px; height:5 阅读全文
posted @ 2022-01-28 11:43 zipon 阅读(671) 评论(0) 推荐(0) 编辑