摘要:
zxing 二维码 https://github.com/zxing/zxing Scan Kit 来自华为的二维码SDK https://github.com/HMS-Core/hms-scan-demo Sweet Alert Dialog 清新文艺,快意灵动的甜心弹框 https://gith 阅读全文
摘要:
现在的网站和应用越来越多,有些网站看看就没有了,这里推荐几个值得收藏的好网站,每天看一看总会有惊喜。 排名不分先后,涵盖多个类别,包括编程类、工具类、导航类、游戏类等。 博客园 随着csdn众所周知的原因,百度都要 -csdn 一下,博客园是很少能坚持这么久只做技术类博客的家园了,希望发展越来越好( 阅读全文
摘要:
open class SingleClickListener(private val intervalMils: Long = 1000): OnClickListener{ private val TAG = this.javaClass.name private var mLastClickTi 阅读全文
摘要:
重点: 不要在PyCharm里直接安装 wkhtmltopdf !!! 从wkhtmltopdf官网下载macOS下的pdg安装包,下载页面:wkhtmltopdf 下载完后安装,通过 which 找到安装路径 import pdfkit config = pdfkit.configuration( 阅读全文
摘要:
yum update报错,原因是CentOS Linux 8在2022年12月31日来到生命周期终点(End of Life,EoL)。即CentOS Linux 8操作系统版本结束了生命周期(EOL),Linux社区已不再维护该操作系统版本。所以原来的CentOS Linux 8的yum源也都失效 阅读全文
摘要:
Python抓取数据时,如果header添加了 accept_encoding = 'gzip, deflate, br' 无论如何转码都会出现 'utf-8' codec can't decode byte 0xxx in position 1: invalid start byte 的错误 只需 阅读全文
摘要:
push时候一直提示这个错误,网上有几个方法,基本都是推荐将git的通信协议由 http/2 改为 http/1.1 http/2 和 http/1.1之间有个区别是“HTTP2 基于 SPDY,专注于性能,最大的一个目标是在用户和网站间只用一个连接” 于是关闭所有github所有页面,关闭所有和g 阅读全文
摘要:
IntelliJ IDEA 启动 springboot 项目时出现提示“Lombok requires enabled annotation processing: Do you want to enable annotation processors?” 解决方案: Preferences -> 阅读全文
摘要:
1,安装扩展 Markdown Preview Enhanced 2,设置 Enable Script Execution 3,设置md文件头部 在md文件头部输入以下内容,注意缩进 (头部文件规则说明前点击这里) html: toc: true toc_depth: 6 toc_float: tr 阅读全文
摘要:
@Column的作用是来标识实体类中属性与数据表中字段的对应关系,其代码定义如下 @Target({ElementType.METHOD, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Column 阅读全文
摘要:
SpringBoot老版本引入单元测试 import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; .... @SpringBootTest @Ru 阅读全文