产生原因: 先说一下Git和SVN的区别吧,有助于更好的理解这个问题。 SVN从服务器上update文件时,如果文件有冲突,SVN会自动帮你merge,很方便; GIT如果本地有文件改动未提交,且该文件和服务器最新版本有冲突,pull更新时会提示错误,无法更新。 就是这个小小的区别,造成了产生"Gi ...
分类:
其他好文 时间:
2020-07-26 01:36:26
阅读次数:
171
Passage 26 Many researchers use the term Artificial Intelligence (AI) to describe the thinking and intelligent behavior demonstrated by machines. Whil ...
分类:
其他好文 时间:
2020-07-26 01:02:29
阅读次数:
75
Creating a GUI the way we just did works okay for very small scripts, but a much more scalable approach is to subclass Tkinter widgets to create compo ...
分类:
其他好文 时间:
2020-07-26 00:40:59
阅读次数:
61
在从某个网页访问数据之前,必须先建立一个数据库连接。 创建一个 DSN-less 数据库连接 连接到某一个数据库的最简单的方法是使用一个 DSN-less 连接。DSN-less 连接可被用于您的站点上的任何微软 Access 数据库。 假设您拥有一个名为 "northwind.mdb" 的数据库位 ...
分类:
数据库 时间:
2020-07-25 23:55:20
阅读次数:
81
1 using System; 2 using System.Net; 3 using System.IO; 4 using System.Text; 5 using System.Text.RegularExpressions; 6 using System.Net.Security; 7 usi ...
分类:
其他好文 时间:
2020-07-25 09:12:50
阅读次数:
65
1.准备一个glusterfs 存储 gluster volume create onevol 192.168.1.99:/storage6/brick02 gluster volume start onevol gluster volume info onevol 看到如下信息,则证明gluste ...
分类:
其他好文 时间:
2020-07-24 22:14:31
阅读次数:
78
mysql CLICK ME 创建数据库 CREATE DATABASE `DatabaseName` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; things CLICK ME title things CLICK ME title th ...
分类:
数据库 时间:
2020-07-24 22:02:23
阅读次数:
163
DQL:数据查询语言(非官方) 关键词:select 格式:select ... from 表名 where 条件 group by 分组字段 having 条件 order by 排序字段 ase|desc 初始化环境: -- 创建商品表 create table products( pid in ...
分类:
其他好文 时间:
2020-07-24 21:16:21
阅读次数:
72
安装Docker过程参考:https://www.cnblogs.com/hackyo/p/9280042.html 1. 创建Ceph专用网络 sudo docker network create --driver bridge --subnet 172.20.0.0/16 ceph-networ ...
分类:
其他好文 时间:
2020-07-24 18:57:18
阅读次数:
210
DDL语言 数据库和数据表的管理 #DDL语言:数据定义语言 /* 用户对数据库和数据表的操作和管理。 */ -- 库的管理 #一、创建数据库 CREATE DATABASE IF NOT EXISTS studb; #如果不存在这个库,再创建 #二、删除数据库 DROP DATABASE stud ...
分类:
编程语言 时间:
2020-07-24 16:32:50
阅读次数:
69