数据库根据经纬度查询离我最近的数据

sql语句查询经纬度范围 指定一个经纬度,给定一个范围值(单位:千米),查出在经纬度周围这个范围内的数据。 经度:113.914619 纬度:22.50128 范围:2km longitude为数据表经度字段 latitude为数据表纬度字段 SQL在mysql下测试通过,其他数据库可能需要修……

阅读全文

docker容器镜像加速器

1 安装/升级Docker客户端 推荐安装1.10.0以上版本的Docker客户端,参考文档 docker-ce 2 配置镜像加速器 针对Docker客户端版本大于 1.10.0 的用户 您可以通过修改daemon配置文件/etc/docker/daemon.json来使用加速器 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://n3kgoynn.mirror.aliyuncs.com"] } EOF sudo systemctl daemon-reload sudo systemctl restart docker……

阅读全文

electron 增加/修改请求的header信息

const { session } = require('electron') // 给所有请求增加一个header session.defaultSession.webRequest.onBeforeSendHeaders({ urls: ['*'] }, (details, callback) => { details.requestHeaders['Version'] = '20190620' callback({ cancel: false, requestHeaders: details.requestHeaders }) })……

阅读全文

acme.sh dns 手动验证 生成ssl域名证书 泛域名证书

第一步: acme.sh --issue -d cnbattle.com -d "*.cnbattle.com" --dns \ --yes-I-know-dns-manual-mode-enough-go-ahead-please 第二步: 请将TXT记录添加到您的DNS记录中。 每次续订证书时都需要执行此步骤。 使用DNS api模式,此步骤可以自动完成。 第三步: 现在使用--renew命令重试 acme.sh --renew -d cnbattle.com -d "*.cnbattle.com" \ --yes-I-know-dns-manual-mode-enough-go-ahead-please……

阅读全文

微信小程序navigateTo不起作用

遇到过微信小程序wx.navigateTo不起作用的原因: 1.app.json里tabBar里面的list使用的pagePath跟wx.navigateTo路径一样的话不起作用,实现不了跳转; 2.可以使用wx.switchTab和和wx.redirectTo来代替,但是有一定的不……

阅读全文

ArchLinux Manjrao i3wm安装中文输入法

After installation of i3wm complete, it’s time for install Chinese input method for ArchLinux. $ sudo pacman -S fcitx fcitx-im fcitx-ui-light fcitx-libpinyin fcitx-sunpinyin $ sudo pacman -S ttf-dejavu adobe-source-han-sans-otc-fonts $ cat .xinitrc ... export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx" ... $ sudo reboot To verify, run fcitx in terminal, check if there is any warns or errors.Then run fcitx-configtool. If there isn’t input methods under “Input Method” tab,run sudo pacman -S fcitx-cloudpinyin fcitx-sunpinyin fcitx-googlepinyin fcitx-libpinyin. ref:http://leetschau.github.io/blog/2014/10/15/084044/……

阅读全文

最近文章

分类

标签

友情链接

其它