文章链接:修改字段:https://blog.csdn.net/xiejunna/article/details/78580682 错误分析:https://blog.csdn.net/qq_42142258/article/details/82782237 修改字段长度类型:https://www ...
分类:
数据库 时间:
2020-02-21 14:45:59
阅读次数:
84
2020-02-21 关键字:ubuntu编译Android4.4、Android编译依赖库 本篇文章记录一下笔者自行搭建 ubuntu 系统并成功编译 Android 4.4 源码的过程。 笔者这边选择使用虚拟机来开发,因为说实话对于我们这些普通开发者来说,做软件开发还是离不开windows的。 ...
分类:
移动开发 时间:
2020-02-21 12:58:20
阅读次数:
83
将字体复制到TCPDF\tools 目录下 打开CMD窗口定位到TCPDF\tools 目录 执行下面的命令 我们以微软雅黑字体为例 php ./tcpdf_addfont.php -b -t TrueTypeUnicode -f 97 -i msyh.ttf 如果成功CMD会出现下面的代码 >>> ...
分类:
其他好文 时间:
2020-02-20 23:47:56
阅读次数:
118
C语言处理正则表达式常用的函数有regcomp()、regexec()、regfree()和regerror()教程网站: https://www.jb51.net/tools/zhengze.html#introductionC语言中使用正则表达式一般分为三步:编译正则表达式 regcomp()2... ...
分类:
编程语言 时间:
2020-02-19 17:05:30
阅读次数:
88
pox.xml文件中 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency> ...
分类:
编程语言 时间:
2020-02-19 13:04:45
阅读次数:
62
1.正查询和反查 从有外键关联的表中查询没有外键的表 正查询; 反之反查询.比如如下字段: class Author(models.Model): name = models.CharField(max_length=32) age = models.IntegerField() email = m ...
分类:
其他好文 时间:
2020-02-18 20:35:21
阅读次数:
54
在用Rufus3.8制作CentOS8的USB安装盘时,提示Syslinux版本低,要下载"ldlinux.sys"扩展。在下载时出现提示:“Thissystem‘sSSLlibraryistoooldtobeabletoaccessthiswebsite.”经查,原因是系统调用winHTTP下载组件使用的是TLS1.1,要用TLS1.2及以上版本。windows10系
分类:
其他好文 时间:
2020-02-18 18:27:55
阅读次数:
251
环境 python3.5.7 原因 openssl 拒绝短键。 临时办法: 1.修改python ssl.py 源码 不是好办法,暂时用下 DEFAULT_SSL_CIPHER_LIST 增加一个属性 'HIGH:!DH:!aNULL'最后是这样的_DEFAULT_CIPHERS = ( 'ECDH ...
分类:
其他好文 时间:
2020-02-18 18:07:29
阅读次数:
105
冲突,就要 Merge,没有冲突那就不叫 Merge。 写代码过程中,多人协作,难免有冲突,当然,自己也有可能跟自己冲突,不要说你没遇到过,那怎么办呢?git 给我们的解决办法是用 mergetool,如果不特殊安装什么,默认的合并工具是 vimdiff, 打开之后的样子是: 默认是 Vim 配置, ...
分类:
其他好文 时间:
2020-02-18 12:52:49
阅读次数:
60
01:更改yum源 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 02:安装常用工具我软件包 yum install -y tree lrzsz telnet wget b ...
分类:
其他好文 时间:
2020-02-18 09:54:40
阅读次数:
72