安装环境pip install selenium,提示 Could not find a version that satisfies the requirement selenium (from versions: ) No matching distribution found for sele ...
分类:
Web程序 时间:
2016-11-18 22:47:03
阅读次数:
2186
1、get方式 发送页 <form id="form1" runat="server"> <div> <a href="WebForm2.aspx?name=5">调转到Form2</a> <asp:Button ID="button2" Text="跳转页面" runat="server" onc ...
分类:
Web程序 时间:
2016-11-18 21:49:53
阅读次数:
197
2 days passed, and I finally find it done with samba server.. with utube to set up a samba server: 1. install samba; 2. add /etc/samba/smb.conf to the ...
分类:
其他好文 时间:
2016-11-18 21:36:10
阅读次数:
136
Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. 求二维平面上n个点中,最多共线的点数。 1、比较直观的方法是,三层循环,以任意两点划线,判断第三个点 ...
分类:
其他好文 时间:
2016-11-18 17:51:55
阅读次数:
203
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times. You may assume that the ...
分类:
其他好文 时间:
2016-11-18 12:02:01
阅读次数:
131
Substring Given a set of pattern strings, and a text, you have to find, if any of the pattern is a substring of the text. If any of the pattern string ...
分类:
其他好文 时间:
2016-11-18 11:55:22
阅读次数:
205
可以递归查找目录下的文件,通过遍历硬盘来查找 用.来表示当前目录,用/来表示系统根目录 命令选项: -name 按照文件名查找文件。 -perm 按照文件权限来查找文件。 -prune 使用这一选项可以使find命令不在当前指定的目录中查找,如果同时使用-depth选项,那么-prune将被find ...
分类:
系统相关 时间:
2016-11-18 09:45:15
阅读次数:
164
错误点如上 ↑ 解决方法适用条件: 以下2项配置正确。 extension = php_pdo.dll extension = php_pdo_mysql.dll 错误原因: 在: DVWA\dvwa\includes\dvwaPage.inc.php DVMA 默认的配置: $_DVWA[ 'de ...
分类:
Web程序 时间:
2016-11-18 07:16:41
阅读次数:
920
1、布尔类型 字符串 常用的操作方法 .count() .find() .join() .encode() .decode()#这个是bytes类型才有的 .endswith('.txt')#字符串是否以xx结尾 startswith('A')#字符串是否以xx开头 .isdigit() .stri ...
分类:
编程语言 时间:
2016-11-18 06:35:05
阅读次数:
226