2024-05-07
在谷歌浏览器中,可以通过以下步骤切换为高精度模式(获取当前位置信息)
1.打开谷歌浏览器,并输入"chrome://flags"在地址栏中。
2.在搜索框中输入"Core Location Backend或WinRT Geolocation lmplementation"后打开该项、并将其状态改为启用
3.重启浏览器。
2024-04-28
Openwrt日志报错:
No interfaces found for source 222.123.123.33
删除igmpproxy包,有时候会断流
2024-02-04
git 中如果有.DS_Store无法排除:
vi ~/.gitignore_global
# 将.DS_Store加入保存后,执行
git config --global core.excludesfile ~/.gitignore_global
2024-01-31
mac office激活失败:打开App Cleaner & Uninstaller,在 启动程序 中找到com.microsoft.office.licensingV2.helper 打开并再次尝试激活
运行许可证删除工具后再安装激活补丁
2024-01-18
How can I remove those annoying Mac OS X .DS_Store files from a Git repository?
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
2024-01-12
https证书过期是,css无法加载问题
在html增加
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">