1、打开github官网进行注册(有可能会少一两张截图),如下图:2、新建项目,如下图:3、创建完成后,简单使用说明,如下图:4、在客户端上执行如下命令,将生产的公钥信息粘贴到github SSH key中,并测试能否连接成功。如下图:[root@PXC01 ~] ssh-keygen -t rsa -C "442102293@
分类:
其他好文 时间:
2018-05-29 23:37:22
阅读次数:
366
5月28日任务11.14/11.15 Apache和PHP结合11.16/11.17 Apache默认虚拟主机1. 首先看一下:这是个警告,虽然并非错误但是可以取消掉。办法就是去定义好 servername vim /usr/local/apache2/conf/httpd.conf,将servername前面的#去掉即可 2. 增加一行配置 Require all
分类:
Web程序 时间:
2018-05-29 23:37:14
阅读次数:
345
using Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data... ...
分类:
数据库 时间:
2018-05-29 23:37:03
阅读次数:
370
Analysis helps to see the nature of things. Excel: https://pan.baidu.com/s/18OpAffMcWedeIpmxOPs9BA#list/path=%2F ...
分类:
其他好文 时间:
2018-05-29 23:36:42
阅读次数:
460
You need to run build with JDK or have tools.jar on the classpath.If this occures during eclipse build make sure you run eclipse under JDK as well (co ...
分类:
编程语言 时间:
2018-05-29 23:36:31
阅读次数:
777
在Linux虚拟中搭建postfix邮箱服务,并实现邮件接发!
分类:
其他好文 时间:
2018-05-29 23:36:25
阅读次数:
323
5月28日任务11.14/11.15 Apache和PHP结合11.16/11.17 Apache默认虚拟主机1. 首先看一下:这是个警告,虽然并非错误但是可以取消掉。办法就是去定义好 servername vim /usr/local/apache2/conf/httpd.conf,将servername前面的#去掉即可 2. 增加一行配置 Require all
分类:
Web程序 时间:
2018-05-29 23:36:18
阅读次数:
360
in与not in是判断一个东西是否存在另一个东西内: in的用法: name="忍者神龟" "忍者神龟":为字符串 if "忍者" in name: 忍:为字符串里的字符 print("是子字符串") "忍者":为子字符串 (子字符串里的字符必须是连着的) else: "忍龟":则不是子字符串 p ...
分类:
其他好文 时间:
2018-05-29 23:36:09
阅读次数:
288
class Solution { public: bool checkSubarraySum(vector& nums, int k) { unordered_map m; // 从头元素开始的sum,取模为key的index。 m[0] = -1; int _sum = 0; for (int i... ...
分类:
其他好文 时间:
2018-05-29 23:35:55
阅读次数:
273
1、who | cut -d" " -f1 | sort -u????2、lastlog | grep "\<tty"?????lastlog | grep -v "[**]"? ?3、cut -d: -f7 /etc/pa
分类:
系统相关 时间:
2018-05-29 23:35:48
阅读次数:
356
//first.cpp:定义控制台应用程序的入口点。///*时间:2018年05月29日22:49:40代码:程序清单2.1_first.c程序_《CPrimerPlus》_P15目的:进一步了解printf()函数,定义变量与赋值及(\n)含义*/#include"stdafx.h"int_tmain(intargc,_TCHAR*argv[])/*一个简单的C程序*/{intnum;/*定义一
分类:
其他好文 时间:
2018-05-29 23:35:39
阅读次数:
405
前言: 18年快过去了一半,半年下来感觉自己还是很菜,突然想起之前和朋友聊天,朋友本身技术实力极强,业界认可度也较高。但是还是认为自己很菜。我认为这很大一部分是对于知识的敬畏心,作为程序员就需要不断的涉猎新知识,学习。而每次涉猎都发现自己的渺小… 其实完全不必畏惧知识的多,我一直认为菜可以接受,但每 ...
分类:
移动开发 时间:
2018-05-29 23:35:32
阅读次数:
360
万事开头难 - 如何开始? 人总是对未知的事物充满恐惧!就像航海一样,在面对危难的时候,船员和船长是一样心中充满恐惧的!只是船员始终充满恐惧,而船长却能压抑恐惧并从当前找出突破口! 我没有船长之能,但也算入行两年的老船员,我会追随船长一起寻找突破口!而内核如此庞然大物不知从何入手这真的很正常,那么应 ...
分类:
系统相关 时间:
2018-05-29 23:35:23
阅读次数:
416
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or ...
分类:
其他好文 时间:
2018-05-29 23:35:05
阅读次数:
277
fiel1.txt def read_file(): with open('fiel1.txt', 'r', encoding='utf-8') as f: print(' readline') f.readline() # 读一行 t1 = f.tell() # 记录当前光标位置为下一行开头 pr ...
分类:
编程语言 时间:
2018-05-29 23:34:56
阅读次数:
288