列出配置信息:git config -l配置名字:git config --global '用户名'配置邮箱:git config --global email删除配置:git config --unset user.name local 项目级global 当前用户级system 系统级 添加文件 ...
分类:
其他好文 时间:
2020-03-15 11:20:20
阅读次数:
63
如何在python中构建发布自己的模块呢? 首先新建一个文件夹,如x99,里面放入__init__.py,setup.py,x99.py三个模块, 其中init空着,setup.py里面写入: from distutils.core import setup setup( name='nineXni ...
分类:
编程语言 时间:
2020-03-15 09:31:51
阅读次数:
55
一、表的定义及数据类型 表是存储数据的最基本单位,是一个二维结构,由行和列组成;每一列具有相同的数据类型,列名是唯一的,每一行的数据保证唯一性。 表的数据类型主要有数字型NUMBER,字符型VARCHAR2/CHAR,和日期型DATE;还有存储大对象类型BLOB,CLOB。 二、表的操作(创建表,修 ...
分类:
数据库 时间:
2020-03-14 22:14:35
阅读次数:
93
1、安装git git --version brew install git 2、在目录中创建新仓库 mkdir test cd test git init git config --global user.name "用户名" git config --global user.email "用户邮 ...
分类:
其他好文 时间:
2020-03-14 16:52:24
阅读次数:
50
import smtplib from smtplib import SMTP_SSL from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.header impo ...
分类:
编程语言 时间:
2020-03-14 00:43:58
阅读次数:
81
昨天在弄腾讯企业邮发送邮件后台,中间遇到了一个问题,就是在本地服务器可以正常发送邮件,但是布署到阿里云服务器就不行,于是在网上找了大半天解决方法,前后修修改改也花费了几个小时,直到快下班了才弄出来,所以在这里列出写个博客,记录一下自己的问题,顺带也贴上自己写的工具类代码,希望能帮助到更多开发者。 阿 ...
分类:
编程语言 时间:
2020-03-12 19:18:37
阅读次数:
111
需要均衡的图像 将下面的图像进行直方图均衡 1 3 9 9 8 2 1 3 7 3 3 6 0 6 4 6 8 2 0 5 2 9 2 6 0 均衡化计算过程 使用python进行直方图均衡化: ...
分类:
编程语言 时间:
2020-03-12 17:10:29
阅读次数:
202
HTML5 输入类型 HTML5 增加了多个新的输入类型: color date datetime datetime-local email month number range search tel time url week 输入类型:number <input type="number"> 用 ...
分类:
Web程序 时间:
2020-03-12 14:24:28
阅读次数:
72
转自:https://www.cnblogs.com/wbl001/p/11495110.html (文档较长,请大家耐心阅读,很有帮助) git拉取远程代码 1 git clone https://xxx.git git拉取远程指定分支下代码(-b 分支名称) 1 git clone -b v2. ...
分类:
Web程序 时间:
2020-03-12 09:56:16
阅读次数:
73
1.git 配置git config --global user.name “用户名” git config --global user.email “邮箱” 2.建立git仓库 在你的项目文件夹下执行git命令 git init 3. 将项目文件添加到仓库中 git add . 4. 将add的文 ...
分类:
Web程序 时间:
2020-03-11 15:04:52
阅读次数:
93