晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

2024年10月12日

摘要: 文章介绍了两种解决Chrome浏览器HSTS问题的方法:一是通过`chrome://net-internals/#hsts`删除特定域名的安全策略;二是禁用`chrome://flags/#https-upgrades`来避免自动升级到HTTPS。 第一个解决方案第一种解决方案就是地址栏中输入【ch 阅读全文

posted @ 2024-10-12 20:49 shenyixin 阅读(1) 评论(0) 推荐(0) 编辑

2024年9月9日

摘要: 在使用Go语言开发应用程序时,有个非常方便的地方就是编译得到的可执行文件可以不依赖任何动态链接库、并且不需要任何运行环境即可运行,这一点Java就没那么方便了。 不过在Windows上编译得到的exe文件,默认是不带图标和任何属性信息的,那么怎么才能让我们编译得到的可执行文件带上图标和属性信息呢? 阅读全文

posted @ 2024-09-09 21:16 shenyixin 阅读(204) 评论(0) 推荐(0) 编辑

2024年8月8日

摘要: pom文件添加上这段 <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>false</appendAssemblyId> <descr 阅读全文

posted @ 2024-08-08 14:27 shenyixin 阅读(69) 评论(0) 推荐(0) 编辑

2024年7月25日

摘要: 前言最近https到期了,想着手动更新一下https证书,结果发现证书现在的有效期只有90天,于是想找到一个自动更新证书的工具,发现了acme.sh,但是网上的文章质量参差不齐,可能需要多篇文章结合来操作,一步步试错。我这里结合了腾讯云的相关文档和一些其他的博文,保证一次性操作成功。 安装acme. 阅读全文

posted @ 2024-07-25 17:55 shenyixin 阅读(381) 评论(0) 推荐(0) 编辑

2024年3月16日

摘要: 使用远程桌面办公的时候,有时候远程电脑没有掉网,但远程桌面因为一些问题始终起不来,这时候我们通常希望能够在连不上远程桌面的情况下重启远程电脑。 首先 cmd 命令 shutdown -m 是有重启/关闭远程电脑的功能的,但是它要求你现在组策略里设置好权限,单单靠这个是不行的。 这个时候需要先用 ne 阅读全文

posted @ 2024-03-16 00:44 shenyixin 阅读(622) 评论(0) 推荐(1) 编辑

2024年1月25日

摘要: 总算是跑起来了,看看效果吧 这是我的SQL 表里面插入数据 刷新下就可以看到已经查询出来了 canal报错nosuchmethod …bytebuffer 解决方法:更新jdk版本与es一致 cancal报错 config dir not found 替换classpath中间封号两边的值 cana 阅读全文

posted @ 2024-01-25 10:30 shenyixin 阅读(371) 评论(0) 推荐(0) 编辑

2024年1月18日

摘要: <div class="n-blog__content p-relative" th:utext="${item.content}" > 阅读全文

posted @ 2024-01-18 19:38 shenyixin 阅读(52) 评论(0) 推荐(0) 编辑

2023年12月27日

摘要: server { listen 80; server_name example.com; # HTTP重定向到HTTPS rewrite ^(.*)$ https://$host$1 permanent; } 阅读全文

posted @ 2023-12-27 14:02 shenyixin 阅读(5) 评论(0) 推荐(0) 编辑

2023年12月23日

摘要: //复制到剪切板 function copyToClipboard(text) { var input = document.createElement('input'); input.setAttribute('readonly', 'readonly'); input.setAttribute( 阅读全文

posted @ 2023-12-23 21:41 shenyixin 阅读(196) 评论(0) 推荐(0) 编辑

2023年12月4日

摘要: 1、从某个commit拉取分支 git checkout -b <new branch name> <commit_id> 例:git checkout -b test_branch 1f0a24f01e5 2、推送到远程 git push -u origin 分支名 例:git push -u o 阅读全文

posted @ 2023-12-04 11:41 shenyixin 阅读(798) 评论(0) 推荐(0) 编辑