1、错误描述 错误关键字: Packetfor query is too large (***> 4194304). You can change this value on theserver by setting the max_allowed_packet' variable 从错误中, 我们 ...
分类:
其他好文 时间:
2020-09-17 23:09:10
阅读次数:
28
通过职位搜索"Python开发",看下搜索的结果: https://www.zhipin.com/job_detail/?query=python开发&city=101020100&industry=&position= 按F12,使用开发者工具查看下html的结构: 先获取所有的class="jo ...
分类:
编程语言 时间:
2020-09-17 22:29:36
阅读次数:
29
1、测试常用配置 Number of Threads (users):模拟虚拟用户的个数 Ramp-up period (seconds) :上线所有Threads所用的时间。 Loop Count:每个Thread(user)请求url个数。(串行请求) 所以: 总请求次数 = Number of ...
分类:
其他好文 时间:
2020-09-17 22:12:01
阅读次数:
36
ABC咕咕咕 D. Polycarp and Div 3 题意:给一个数字串,问最多能选出几个不相交的子串使得它们组成的 $10$ 进制数都是 $3$ 的倍数。 \(|s| \leq 2\times 10^5\) 题解: \(dp_{i,j}\) 表示第 \(i\) 为,数字和 \(\%3\) 为 ...
分类:
其他好文 时间:
2020-09-17 21:27:54
阅读次数:
28
Loaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: mirrors.aliyun.com * c6-media: * extras: ...
分类:
其他好文 时间:
2020-09-17 20:48:20
阅读次数:
33
@media screen and (orientation: portrait) { html{ width : 100vmin; height : 100vmax; } body{ width : 100vmin; height : 100vmax; } #gyroContain{ width ...
分类:
Web程序 时间:
2020-09-17 19:51:58
阅读次数:
61
@media print { .iconClass { background: black !important; -webkit-print-color-adjust: exact; } } ...
分类:
其他好文 时间:
2020-09-17 15:34:51
阅读次数:
50
滚动条样式在不同浏览器不同效果,想要大致的修改浏览器的滚动条在谷歌火狐有css属性支持,而ie不支持 废话不多说,附上代码 /*修改滚动条样式谷歌 start*/ .menu-ver::-webkit-scrollbar { width: 6px; height: 6px; } .menu-ver: ...
分类:
Web程序 时间:
2020-09-17 14:13:55
阅读次数:
40
一、先来看看项目的简单结构 二、新增类库:DemoIOC.IRepository 1.在类库下新建接口:IDemoRepository.cs public interface IDemoRepository { void Query(); } 三、新增类库:DemoIOC.Repository 1. ...
分类:
其他好文 时间:
2020-09-17 14:02:15
阅读次数:
23
@media 基本语法:@media 限制条件 and (判断条件){需要改变的css样式} 例子:@media all and (max-width:375px) and (min-width:750px){ p img }//就是个乱写的例子,只是为了更好的记住具体格式,并且特别提示一下可以带多 ...
分类:
其他好文 时间:
2020-09-17 14:00:05
阅读次数:
24