Plasma 桌面中文显示不全 混合显示问题解决

参考 现象Plasma 桌面可能使用与在 KDE 系统设置面板或 locale.conf 中的语言设置不同 解决修改 ~/.config/plasma-localerc 后重新登录,将 LANG 变量设置为 zh_CN.UTF-8 并将 LC_MESSAGES 变量设置为 en_US.UTF-8: 1234...

Arch Linux 中文字体显示配置

参考 全局修改字体配置,修改 /etc/fonts/local.conf。配置用户字体,修改 $XDG_CONFIG_HOME/fontconfig/fonts.conf。 Android 显示效果的字体参考配置安装字体安装 ttf-roboto noto-fonts noto-fonts-cjk adobe...

unraid 增加Docker磁盘空间

默认20G,所以没用多久,你就会看到类似的提示: 12Docker image disk utilization of 93%Docker utilization of image file /mnt/user/system/docker/docker.img container瘦身1docker system ...

一条命令删除目录下的所有node_modules

https://www.mulianju.com/delete-all-node_modules/ 查询当前目录下所有的node_modules目录和所占空间Linux中的命令:12find . -name "node_modules" -type d -prune | xargs du ...

Manjaro 手动降级 AUR 应用

引用以手动将 virtualbox-ext-oracle 降级到 5.x 为例 手动降级首先找到 virtualbox-ext-oracle 的 git 仓库: git clone 下来后,查看 git log: 12345678910* 424217e - (2 days ago) commit ...

MyBatis分割字符串参数,实现in多个参数的操作

如何传入字符串参数,分割并遍历?如前台传入字符串参数 1String str = "a,b,c,d,e,f"; 现需将此参数作为查询语句的参数 1Select * from news where id in (${id}) 使用该语句查询正常返回结果,但势必产生sql...

Java重复N个字符连成一个字符串

重复N个字符连成一个字符串,比如生成5个连续的a的字符串aaaaa最不用动脑筋的方法就是for循环里面用String/StringBuffer/StringBuilder等把string拼接起来 1234String repeatedString = "";for (int i = 0; i ...

Mybatis Plus自动填充功能无效

https://www.oldman.run/posts/35885c48/ 发现问题修改的时候,发现修改时间字段并没有自动更新。 官网介绍 查阅源码strictFillStrategy方法,如果待更新的字段内容不为null,无法自动填充。 解决问题重写 strictFillStrategy 方法123456...

jib-maven-plugin pushing to registry is timing out

https://github.com/GoogleContainerTools/jib/issues/582 Description of the issue:Our docker-registry is sometimes a little bit slow, so the building-process...

CentOS离线安装MySQL

卸载系统自带mariadb1234567# 查看系统自带的Mariadb[root@iZ2ze3hm3gyjyjz628l7rgZ ~]# rpm -qa|grep mariadbmariadb-libs-5.5.44-2.el7.centos.x86_64# 卸载系统自带的Mariadb[root@iZ2ze3...