最近在开发是遇到一个很诡异的问题,IE下页面在加载完成后部分元素会出现抖动问题,而chrome和firefox均没有出现。最开始怀疑的是某些元素css添加了:hover相关设置,发现整个页面都没有,最后发现是字体问题 body{ font-size:14px; font-family:Microso ...
分类:
其他好文 时间:
2020-04-11 18:58:35
阅读次数:
206
一、前言: 阅读此文之前请先阅读: [ddt01篇]十年测试老鸟帮您解析:ddt数据驱动入门基础应用:https://www.cnblogs.com/csmashang/p/12679448.html ? 二、ddt数据驱动框架结合txt文件实现数据驱动 test_demo.py代码如下: impo ...
分类:
数据库 时间:
2020-04-11 14:32:43
阅读次数:
122
F. Independent Set 题意: all the vertices in the original graph that are incident on at least one edge in the subgraph.这句话不太理解 edge-induced subgraph(诱导子 ...
分类:
其他好文 时间:
2020-04-10 21:16:00
阅读次数:
92
Mac reference https://blog.csdn.net/qq_32590631/article/details/80509741 reference https://blog.csdn.net/kl28978113/article/details/91047633 不用下载字体 ...
分类:
其他好文 时间:
2020-04-09 12:55:36
阅读次数:
64
class Solution { public int[] twoSum(int[] nums, int target) { int[] result = new int[2]; for(int i = 0;i<nums.length;i++){ for(int j= i+1; j<nums.len ...
分类:
其他好文 时间:
2020-04-06 17:14:23
阅读次数:
76
在执行shell脚本时提示这样的错误主要是由于shell脚本文件是dos格式,即每一行结尾以\r\n来标识,而unix格式的文件行尾则以\n来标识。 查看脚本文件是dos格式还是unix格式的几种办法。(1)cat -A filename 从显示结果可以判断,dos格式的文件行尾为^M$,unix格 ...
分类:
其他好文 时间:
2020-04-05 20:51:34
阅读次数:
68
代码: 1 # -*- coding: utf-8 -*- 2 import numpy as np 3 import matplotlib.pyplot as plt 4 import matplotlib as mpl 5 mpl.rcParams['font.sans-serif'] = [' ...
分类:
编程语言 时间:
2020-04-05 20:47:36
阅读次数:
93
(1)代码层面的优化 v-if 和 v-show 区分使用场景 computed 和 watch 区分使用场景 v-for 遍历必须为 item 添加 key,且避免同时使用 v-if 图片资源懒加载 路由懒加载 当打包构建项目时,JavaScript包会变的非常打,影响页面加载。如果我们能把不同路 ...
分类:
其他好文 时间:
2020-04-04 11:43:56
阅读次数:
111
这个机子相对简单一点,但是也是从中发现了自己不少问题 技能一: nmap 扫描发现了21,22 ,80三个端口,并且ftp服务允许匿名登录,在pub目录下面有writeable权限,这就好办了。我以为这会是一个很好的切入口,没想到结果是在匿名登录后所有除了pwd以外的命令都会导致ftp的连接断开。b ...
分类:
其他好文 时间:
2020-04-03 10:35:21
阅读次数:
92
问题描述: 实现时间复杂度O(N)的斐波那契解法。 算法实现: public static int fibonacci(int n) { if(n < 1) { return 0; } if(n == 1 || n == 2) { return 1; } int pre = 1; int res = ...
分类:
其他好文 时间:
2020-04-02 19:35:44
阅读次数:
80