from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC from selen... ...
分类:
编程语言 时间:
2019-11-12 09:17:44
阅读次数:
57
https://chris.beams.io/posts/git-commit/ The seven rules of a great Git commit message Keep in mind: This has all been said before. For example: Summa ...
分类:
其他好文 时间:
2019-11-12 00:43:53
阅读次数:
64
下面介绍Element-ui中Upload组件如何把图片上传的七牛云(免费版本,有流量限制) 一、准备工作 1.去七牛云注册账号,并实名认证,不认证无法创建存储空间 2.了解Element-ui组件 二、创建上传页面(这里直接使用官方的代码片段) 三、上传凭证(Token)如何获得:https:// ...
分类:
Web程序 时间:
2019-11-11 21:25:43
阅读次数:
94
一、Spring的AOP分为以下5种类型通知 ①前置通知(Before):在连接点执行前执行该通知 ②正常返回通知(AfterReturning):在连接点正常执行完后执行该通知,若目标方法执行异常则不会执行该通知 ③异常返回通知(AfterThrowing):在连接点执行抛出异常时执行该通知 ④后 ...
分类:
编程语言 时间:
2019-11-11 21:13:14
阅读次数:
99
1.双向链表和单向链表的区别在于双向链表可以从两端遍历,每个节点保存自己的前去节点和后继节点。 2.实现双向链表 package signle; /** * @Author lizhilong * @create 2019/11/8 17:51 * @desc */ public class Dou ...
分类:
其他好文 时间:
2019-11-11 13:06:15
阅读次数:
65
We like to think that the human mind is special. One sign of our superiority is self-awareness, which is generally seen as the pinnacle of consciousne ...
分类:
其他好文 时间:
2019-11-11 09:55:53
阅读次数:
81
一 自定义计时器 因为游戏中经常用到计时器,比如每1秒发射一枚子弹啊,每2秒怪物AI自动转向啊 每次去new Timer 然后addEventListener(egret.TimerEvent... 之类的太麻烦了。 所以自定义一个计时器 二 决战沙城的自定义计时器 来看看决战沙城的自定义计时器 原 ...
分类:
其他好文 时间:
2019-11-11 09:30:07
阅读次数:
89
与工业界相比:更大的数据规模和模型复杂度的区别 mxnet 爱慕斯奈特 y = nd.array(x) # numpy -> mxnet z = y.asnumpy() # mxnet -> numpy z = nd.zeros_like(x) before = id(z) z[:] = x + y ...
分类:
其他好文 时间:
2019-11-09 19:49:27
阅读次数:
100
<insert id="insert"> <selectKey order="BEFORE" keyProperty="id" resultType="int"> SELECT SEQ_ROLE_PERMISSION.NEXTVAL FROM dual </selectKey> INSERT INT ...
分类:
数据库 时间:
2019-11-07 09:31:30
阅读次数:
93
触发器功能:向user表中插入一条数据,如果表中没用数据,则字段created_by必须为空;表中有数据则created_by必须不为空. 新建储存过程函数; CREATE OR REPLACE FUNCTION public.onaddfirst() RETURNS trigger LANGUAG ...
分类:
数据库 时间:
2019-11-07 09:23:05
阅读次数:
216