php搭建项目管理系统mantisbt 1、下载下载地址: https://www.mantisbt.org/download.php2、解压缩后上传个人比较喜欢FileZilla(看过他家的bug工具BugZilla的安装,知难而退了)。服务器我用的万网虚拟主机和阿里云RDS数据库,所以文件上传到 ...
分类:
Web程序 时间:
2020-05-23 16:09:59
阅读次数:
108
倒排索引的初衷 倒排索引,它也是索引。索引,初衷都是为了快速检索到你要的数据。 我相信你一定知道mysql的索引,如果对某一个字段加了索引,一般来说查询该字段速度是可以有显著的提升。 每种数据库都有自己要解决的问题(或者说擅长的领域),对应的就有自己的数据结构,而不同的使用场景和数据结构,需要用不同 ...
分类:
其他好文 时间:
2020-05-23 13:04:30
阅读次数:
104
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <style> #container { width: 460px; height: 200px; margin: 50px auto; border: 1px ...
分类:
Web程序 时间:
2020-05-23 00:09:16
阅读次数:
54
夸代扫描,比如说回收短暂代,但是在短暂代当中有一个被一代引用的变量。 这个时候可能会造成了这个变量被回收,程序发生不可与之错误。card table 就是为了预防这种情况的一个数组。 int p = 0; int* card_table= &p;card_table[0] = 1;card_tabl ...
分类:
Web程序 时间:
2020-05-21 19:11:22
阅读次数:
61
hexdump /dev/hidraw0就能看到usbhid设备传输过来的裸流 如:按下Input键 前面的估计是码流头(003ae60),还有按下(0096),松开(0086)等信息,识别按键有效信息是(006b) 006b其实是索引值,会在下表中寻找键值发送给Android,如:6b对应186 ...
分类:
移动开发 时间:
2020-05-21 16:02:10
阅读次数:
70
if (null !=merchLadderRatesRecords && merchLadderRatesRecords.size() !=0 && merchLadderRatesRecords.isEmpty() ){ for (MerchLadderRateRecord merchLadde ...
分类:
其他好文 时间:
2020-05-20 18:37:54
阅读次数:
42
后端数据:使用guzzle获取api数据,(安装扩展包guzzle) use GuzzleHttp\Client; //获取请求远程产品信息需要的参数public function getParams(Request $request){ $code = $request->code; $metho ...
分类:
其他好文 时间:
2020-05-20 12:07:04
阅读次数:
52
题目描述: 提交: class Solution: def arrangeWords(self, text: str) -> str: text = text.lower().split(" ") text.sort(key = lambda x:len(x)) text[0] = text[0][ ...
分类:
其他好文 时间:
2020-05-19 20:15:59
阅读次数:
62
C and C++ allow various types of operators. By now, you should be familiar with the basic binary operators +, -, *, / and the boolean operators <, >, ...
分类:
其他好文 时间:
2020-05-19 12:14:52
阅读次数:
62
Amazon RDS 支持在 MySQL 数据库实例上使用 MariaDB 审核插件。MariaDB 审核插件可记录数据库活动,如用户登录数据库、针对数据库运行查询等。数据库活动记录存储在日志文件中。 注意 目前,仅以下 Amazon RDS MySQL 版本支持 MariaDB 审核插件: 所有 ...
分类:
数据库 时间:
2020-05-15 16:07:14
阅读次数:
252