1、在Windows中安装完git后,需要进行一下配置:$ git config --global user.name "zhangliang"$ git config --global user.email "1424@qq.com"2、用下列命令可检查上述设置是否成功:$ git config ... ...
分类:
其他好文 时间:
2017-08-14 23:33:07
阅读次数:
217
Line charts are often used to plot temporal data, like a stock price over time. In this lesson we’ll see how to use D3 APIs to create our own simplifi ...
分类:
其他好文 时间:
2017-08-14 21:28:31
阅读次数:
366
Linux下C语言处理正则表达式——regex.h 具体函数介绍 编译正则表达式函数 其中preg用于保存编译后的正则表达式,regex是我们写的正则表达式。cflags标志位后面再说。 先说说regex_t结构体: 对于这个结构体而言,我们只要记住,它是编译后的正则表达式,后面的匹配是用编译后的正 ...
分类:
编程语言 时间:
2017-08-14 21:25:18
阅读次数:
351
DOM 定义了访问和操作HTML文档的标准方法 访问(查找标签) 直接查找 document.getElementById(“idname”) document.getElementsByTagName(“tagname”) document.getElementsByName(“name”) do ...
分类:
编程语言 时间:
2017-08-14 20:09:57
阅读次数:
170
//创建管理用户 public string CreateUser(string sys_username, string sys_passwd) { try { DirectoryEntry AD = new DirectoryEntry("WinNT://" + Environment.Mach ...
分类:
其他好文 时间:
2017-08-14 20:06:28
阅读次数:
187
题目原文: Design an algorithm to perform an inorder traversal of a binary search tree using only a constant amount of extra space. 1 public void traverse( ...
分类:
其他好文 时间:
2017-08-14 19:00:13
阅读次数:
202
// // CCProgressView.h // Demo // // Created by leao on 2017/8/7. // Copyright © 2017年 zaodao. All rights reserved. // #import typedef NS_ENUM(NSInteg... ...
分类:
移动开发 时间:
2017-08-14 17:30:19
阅读次数:
222
题目原文: Given a binary tree where each 𝙽𝚘𝚍𝚎 contains a key, determine whether it is a binary search tree. Use extra space proportional to the height ...
分类:
其他好文 时间:
2017-08-14 17:23:14
阅读次数:
159
sprinboot整合mybatis, 有2种方式, 第一种完全使用注解的方式, 还有一种就是使用xml文件的方式 项目使用gradle + idea, 数据源使用druid, 多使用groovy编写 环境配置 1, 依赖 2, user-schame.sql 在springboot的配置文件中, ...
分类:
编程语言 时间:
2017-08-14 16:34:45
阅读次数:
227
USE[DEL_DATA]GO/******Object:StoredProcedure[dbo].[U_P_STOCK2NEED_EXPEND2]ScriptDate:08/14/201710:40:30******/SETANSI_NULLSONGOSETQUOTED_IDENTIFIERONGO--======================================--Fuction:按业务订单号查订单执行状态--wangtp--2017.8.11--预测未完..
分类:
其他好文 时间:
2017-08-14 15:20:43
阅读次数:
169