macOS Catalina 上将默认 Shell 更改为 Bash
方法一:通过 Terminal 执行
# 将默认命令设为 bash
chsh -s /bin/bash
# 将默认shell更改回Zsh:
chsh -s /bin/zsh
# 查看可以选择的 shell 列表:
cat /etc/shells
# 将默认命令设为 bash
chsh -s /bin/bash
# 将默认shell更改回Zsh:
chsh -s /bin/zsh
# 查看可以选择的 shell 列表:
cat /etc/shells
迁移项目到新电脑上,同样的 Nginx 配置,结果在新电脑上发现了一个问题:
所有的资源文件(js/image/css等)报 403 Forbidden 错误。
因为配置文件一模一样,所以开始以为是 Nginx 版本问题,搜了一下网上没发现这个问题。
于是打开 Nginx 的错误日志,发现:
删除 macOS 下的user以后,清倒废纸篓,提示 “voicetrigger” 在使用中。
处理好后,再开启SIP服务。
.login-container {
background: url(/static/img/001.png) 200px no-repeat,linear-gradient(90deg,
#10ad89 0%, #1ca4be 100%);
}
在做登录页面时,UI给的背景图是分为背景渐变 和背景图片,在一个元素标签上展示,实践过以上写法可以实现。从网上搜索时,搜到的结果是,
1.渐变属性与图片属性中间用逗号隔开;
2.渐变属性要在图片属性之前。
但这种没有出现想要的结果,所以我自己写到一个属性里就可以了,注意图片一定是png格式的。
原文:https://blog.csdn.net/lilyheart1/article/details/107563872
body 标签内添加 data-weui-theme=”light”
即可:
<body data-weui-theme="light">
...
</body>
可以选择 light
或 dark
。
微信公众号发送模板消息,提示
{"errcode":40003,"errmsg":"invalid openid rid:xxxxx
检查了一下,发现发送消息的公众号与实际使用的 微信openid 的公众号不是同一个。
大意了!
换回对应的微信公众号的 openid 即可。
今天在使用一个验证码图片生成方法时,发现生成的 base64 字符串无法展示图片:
今天突然发现应用报错:
MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
这个问题是因为 AccessClient 长期不更新导致的。
闪退的原因:苹果在 macOS 12.3 中将系统中的 python2 运行库移除了,导致 AccessClient 执行时找不到 python。