Environment "Ubuntu 16.04 LTS" install selenium You can use pip install selenium, maybe specify the version Download ChromeDriver this "website" downl ...
分类:
系统相关 时间:
2020-04-24 13:16:08
阅读次数:
94
饿汉模式 1 public class Single { 2 3 private static Single instance = new Single(); 4 5 private Single(){ 6 System.out.println("Single: " + System.nanoTim ...
分类:
编程语言 时间:
2020-04-24 00:45:43
阅读次数:
59
threading: # ThreadingMixIn.daemon_threads indicates how threads will behave on an # abrupt shutdown; like quitting the server by the user or restarti ...
分类:
其他好文 时间:
2020-04-22 10:17:57
阅读次数:
66
Creating the baseline script When generating a baseline script, SQL Change Automation will generate a single migration script for all the objects in y ...
分类:
数据库 时间:
2020-04-21 18:23:33
阅读次数:
76
Windows内核分析索引目录:https://www.cnblogs.com/onetrainee/p/11675224.html 线程链表与线程切换 1. 线程等待链表与调度链表 1)在XP操作系统上,其是全局变量 KiWaitListHead - 等待链表 比如:线程调用了Sleep()或者W ...
分类:
编程语言 时间:
2020-04-18 18:54:35
阅读次数:
130
一、前言 这方面的资料很多,重复的写没必要,但是最近一直在学习身份验证和授权相关东东,为了成体系还是写一篇,主要是从概念上理解identity系统。 参考:https://www.cnblogs.com/r01cn/p/5179506.html 二、概述 几乎所有系统都包含用户、角色、权限、登录、注 ...
分类:
Web程序 时间:
2020-04-17 09:45:37
阅读次数:
67
说说你对SPA的理解,他的优缺点分别是什么? SPA(single-page application) 尽在Web页面初始化时加载相应的HTML,JavaScript和CSS。一旦页面加载完成,SPA不会因为用户的操作而进行页面的重新加载或者跳转;取而代之的时利用路由机制实现HTML内容的变化,UI ...
分类:
其他好文 时间:
2020-04-17 00:35:50
阅读次数:
244
1.index.php <style type="text/css"> #container{margin:10px auto;width: 660px; border: 1px solid #999;} .single_item{padding: 20px; border-bottom: 1px ...
分类:
Web程序 时间:
2020-04-16 15:11:42
阅读次数:
91
1、在元类中控制把自定义类的数据属性都变成大写 class Mymeta(type): def __new__(cls, name, bases,attrs): new_attrs = {} print(attrs) # {'__module__': '__main__', '__qualname_ ...
分类:
其他好文 时间:
2020-04-16 00:20:56
阅读次数:
97