Posts
All the articles I've posted.
linux问题汇总
Published: at 01:13 AMUnable to find remote helper for 'https' 是因为/usr/libexec/git-core路径没在 PATH 环境变量中,这导致里面的 git-remote-https, git-remote-http 这些得不到执行。所以git所表现出来的功能不全。 解决方法: 将 /usr/libexec/git-core 纳入 PATH,至少在使用...
简单shell守护脚本——mongodb
Published: at 02:06 AM简单shell守护脚本——mongodb 由于云服务器内存不够,有时候mongodb会崩溃掉,此时我的博客会完全访问不了。写个进程守护脚本让它自动重启。 /bin/sh export RUNDIR=/root/mongodb/bin while true; do server=ps aux grep mongod grep -v grep ...
中国诗词写入mongodb
Published: at 10:38 AM原项目地址:https//github.com/chinese-poetry/chinese-poetry 将其json写入mongodb 代码如下: const fs = require('fs') const path = require('path'); const mongoose = require('mongoose'); const option = { reconnectTries Number.MAXVALU...
Qt 客户端应用程序多开要注意的问题
Published: at 09:24 AMQt 客户端应用程序多开要注意的问题 很多客户端程序同一台电脑只允许开启一个进程,这个是很有必要的。那将一个原本单开的程序改为允许多开要注意些什么呢? 本地配置 如果多个进程读写同一个配置会造成混乱(只读的配置除外),所以要控制同一个目录不允许开两个。 ...
bug修复,浮点型计算
Published: at 06:17 AMbug修复,浮点型计算 注意: 遇到浮点型计算、转型的时候一定要小心!!! 遇到浮点型计算、转型的时候一定要小心!!! 遇到浮点型计算、转型的时候一定要小心!!! 请看一下代码: double a = 5000.11; int b = a 100; double c = a 100; b和c它们的值是...
koa2处理get,post参数的常见方式
Published: at 06:34 AMkoa2处理get,post参数的常见方式 举几个常见的例子 url显示传参 根据文章id获取这篇文章的内容 url:https//www.ningto.com/post/5b8f371ce1d77b114b42306a 路由: app.use(route.get('/post/id', Posts.show)) 处理: module.exports.show = asyn...
Qt connect函数参数Qt ConnectionType的使用场景
Published: at 07:32 AMQt connect函数参数QtConnectionType的使用场景 信号槽作为Qt中的核心特性对于每一个使用Qt框架的人来说一定要掌握,connect函数是用来连接信号和槽的,虽然这个函数有多个重载的方式,但是这里仅介绍QtConnectionType这个参数的含义以及使用场景。 QtConnectio...
Javascript小技巧
Published: at 01:53 AM删除数组尾部元素 一个简单方法就是改变数组的length值 const arr = 1, 2, 3, 4, 5, 6 arr.length = 3 console.log(arr) // 1, 2, 3 arr.length = 0 console.log(arr) // console.log(arr2) // undefiend 使用对象解构(object destructuri...
比较QKeyEvent和shortcut的按键信息
Published: at 09:34 AMQKeyEvent来自于键盘的按键事件,shortcut是快捷方式,这里我用setShortcut函数给button设置了一个快捷方式,现在我想比较QKeyEvent的按键与button的shortcut是否相同。 QKeyEvent主要是通过modifiers和key这两个函数来获取当前的按键,shortcut使用QKeySequence来表示按键...
React session
Published: at 09:17 AM这是我在github上看到的一种实现方式,仅做学习使用,并不是就是最好的解决方案。 首先,服务端要支持这两个请求:/token和/user,/token是根据email和密码获取idtoken,/user是根据之前获取到的idtoken再去获取用户的基本信息,AuthService.js封装了这两个信息的请求和存...