码迷,mamicode.com
首页 >  
搜索关键字:release 2    ( 10656个结果
滑块验证码(腾讯)——基于selenium,pillow实现
与网上的其他滑块验证码不同,腾讯的验证码可以直接通过url请求得到,只需要对url进一步分析,提取出验证码原图的地址,并将图片下载即可。 但据我观察,该url似乎是有两种不同类型的地址格式,需要具体分析。这里,选择其中一种进行实验,源码在文章末尾。 def get_img(self): """ 获取 ...
分类:其他好文   时间:2020-03-22 10:23:16    阅读次数:344
线程锁-LOCK
from threading import Thread,Lockimport timea=10b=10lock=Lock()def fun(): # lock.acquire() global a global b a+=1 time.sleep(1) b+=1 # lock.release() ...
分类:编程语言   时间:2020-03-22 01:27:05    阅读次数:73
Linux操作:安装python3
使用EPEL仓库安装 sudo yum install epel-release 用yum安装python 3.6 sudo yum install python36 安装pip yum -y install python-pip 更新pip至最新版本 pip install --upgrade p ...
分类:编程语言   时间:2020-03-21 21:18:39    阅读次数:58
spring-boot-starter-parent和spring-boot-dependencies
如何创建一个SpringBoot项目,SpringBoot的依赖引入都是基于starter的,通常创建一个SpringBoot项目都是通过继承关系指定pom文件中的 。 org.springframework.boot spring boot starter parent 2.2.5.RELEASE ...
分类:编程语言   时间:2020-03-21 20:52:28    阅读次数:211
CentOS7 安装 MySQL 5.7(yum) - IT书 - itbook.com
原创来源:IT书 - itbook.com 安装并启动 wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm yum localinstall mysql57-community-release-el7-8. ...
分类:数据库   时间:2020-03-21 16:31:34    阅读次数:74
文件上传transferTo一行代码的bug
本次的项目环境为 Running with Spring Boot v1.5.10.RELEASE, Spring v4.3.14.RELEASE, 服务器环境为CentOS7.0. transferTo 我们在上传文件的时候会用到transferTo 这个方法, transferTo 是 pack ...
分类:Web程序   时间:2020-03-21 12:58:55    阅读次数:99
Linux uname
此命令用于打印当前系统相关信息(内核版本号、硬件架构、主机名称和操作系统类型等)。 语法 uname(选项) 选项 -a或--all:显示全部的信息; -m或--machine:显示电脑类型; -n或-nodename:显示在网络上的主机名称; -r或--release:显示操作系统的发行编号; - ...
分类:系统相关   时间:2020-03-20 18:33:18    阅读次数:83
阿里云linux安装Consul启动
不同于Eureka , Consul使用Go语言开发,所以,使用Consul,我们需要先安装软件。 在Linux中,首先执行如下命令下载Consul wget https://releases.hashicorp.com/consul/1.6.2/consul_1.6.2_1inux_amd64.z ...
分类:系统相关   时间:2020-03-20 17:09:39    阅读次数:312
Spring Boot中实现logback多环境日志配置
参考: https://www.cnblogs.com/EasonJim/p/7801549.html https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-custom-l ...
分类:编程语言   时间:2020-03-20 13:13:42    阅读次数:85
Git 工作流规范参考
目录 "引子" "介绍" "什么是成功的 Git 工作流" "Git 工作流" "GitHub 工作流" "GitLab 工作流" "规范参考" "环境划分" "分支策略" "修复 bug 策略" "其它情况处理" "另外一种思路" "规范参考简化" "规范参考增强" "参考资料" 引子 本以为使用 ...
分类:其他好文   时间:2020-03-20 12:49:01    阅读次数:47
10656条   上一页 1 ... 80 81 82 83 84 ... 1066 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!