Redis 安装 当前ubuntu虚拟机中已经安装好了redis,以下步骤可以跳过 以后自己安装过程如下:redis下载链接:x 指的是版本号 http://download.redis.io/releases/redis-x.x.x.tar.gz step1:下载 wget http://down ...
分类:
其他好文 时间:
2021-01-04 11:04:03
阅读次数:
0
1.get jetson_nano_ipAddress in local area network 1)router get jetson nano wlan/eth ipAddress ifconfig 2)jetson nano or PC , AP/network cable get PC w ...
分类:
其他好文 时间:
2021-01-01 12:16:05
阅读次数:
0
整数域上的二分 模板样式 bool check(int x) {/* ... */} // 检查x是否满足某种性质 // 区间[l, r]被划分成[l, mid]和[mid + 1, r]时使用: int bsearch_1(int l, int r) { while (l < r) { int m ...
分类:
其他好文 时间:
2021-01-01 12:14:33
阅读次数:
0
SELECT * FROM `user` LIMIT 4,-1; 使用limit分页的时候,出现一个错误,官方说的是将这个bug修复了,这个以前是可以使用的 ...
分类:
数据库 时间:
2021-01-01 12:00:42
阅读次数:
0
西湖挑战杯WEB赛后总结 一、easyjson 这是题目一打开的模样,像极了爱情,我感觉我好像又可以了。 wp1: xff设置ip 获取目录 filename=index.php可过check 关键代码转unicode,然后进行getshell(具体见博客GETshell大法) {"\u0063\u ...
分类:
其他好文 时间:
2021-01-01 11:58:51
阅读次数:
0
题目大意: 给定正整数序列 \(A\),求一个平均数最大的,长度不小于 \(L\) 的(连续的)子段。 正文: 二分平均值,如果原序列减去所二分的值,那么就能找到其中的单调性:若平均值过大,最大的长度不小于 \(L\) 的子段和是负数;过小则会很大。 那么根据这个为 key 二分,就能得到答案。但注 ...
分类:
其他好文 时间:
2020-12-31 11:46:49
阅读次数:
0
错误提示: Add-Migration : The term 'Add-Migration' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli ...
分类:
Web程序 时间:
2020-12-30 11:32:15
阅读次数:
0
项目启动提示语法错误[42000][1064] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to u ...
分类:
数据库 时间:
2020-12-29 12:06:59
阅读次数:
0
今日重点: 一、jQuery 属性操作 jQuery 常用属性操作有三种:prop() / attr() / data() ; 1、元素固有属性值 prop() (1)获取属性语法 prop("属性") (2)设置属性语法 prop("属性","属性值") 注意:prop() 除了普通属性操作,更适 ...
分类:
Web程序 时间:
2020-12-28 11:59:47
阅读次数:
0
已经完成的: 多项式乘法 多项式乘法逆 多项式$\ln$ 多项式$\exp$ 多项式开根($a_0$为二次剩余) 多项式快速幂($a_0$可以不为1) 多项式三角函数(\(\sin,\cos\)) 多项式除法、取模 分治$FFT$ 还未完成的 任意模数$NTT$(\(MTT\)) 多项式多点求值 多 ...
分类:
其他好文 时间:
2020-12-28 11:13:59
阅读次数:
0