码迷,mamicode.com
首页 > 2018年05月29日 > 全部分享
github帐号申请和使用教程
1、打开github官网进行注册(有可能会少一两张截图),如下图:2、新建项目,如下图:3、创建完成后,简单使用说明,如下图:4、在客户端上执行如下命令,将生产的公钥信息粘贴到github SSH key中,并测试能否连接成功。如下图:[root@PXC01 ~] ssh-keygen -t rsa -C "442102293@
分类:其他好文   时间:2018-05-29 23:37:22    阅读次数:366
Linux20180528 apache结合php 虚拟主机
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
OracleBulkCopy
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
DNS域名解析————主从服务器
在两台Linux虚拟机中搭建DNS主从服务器,
分类:其他好文   时间:2018-05-29 23:36:50    阅读次数:278
codeforces div1 & div2 参与人员分数统计
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
Spring Boot 利用插件构造QueryDSL语句时报错:You need to run build with JDK or have tools.jar on the classpath.If this occur....
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
postfix邮箱服务
在Linux虚拟中搭建postfix邮箱服务,并实现邮件接发!
分类:其他好文   时间:2018-05-29 23:36:25    阅读次数:323
Linux20180528 apache结合php 虚拟主机
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与not in是判断一个东西是否存在另一个东西内: in的用法: name="忍者神龟" "忍者神龟":为字符串 if "忍者" in name: 忍:为字符串里的字符 print("是子字符串") "忍者":为子字符串 (子字符串里的字符必须是连着的) else: "忍龟":则不是子字符串 p ...
分类:其他好文   时间:2018-05-29 23:36:09    阅读次数:288
523. Continuous Subarray Sum
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
Linux正则及用户管理练习
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
程序清单2.1_first.c程序_《C Primer Plus》P15
//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
我个人对于 iOS 开发基于经验的一些总结与规划【4年开发经历】
前言: 18年快过去了一半,半年下来感觉自己还是很菜,突然想起之前和朋友聊天,朋友本身技术实力极强,业界认可度也较高。但是还是认为自己很菜。我认为这很大一部分是对于知识的敬畏心,作为程序员就需要不断的涉猎新知识,学习。而每次涉猎都发现自己的渺小… 其实完全不必畏惧知识的多,我一直认为菜可以接受,但每 ...
分类:移动开发   时间:2018-05-29 23:35:32    阅读次数:360
全面解析Linux 内核 3.10.x - 如何开始
万事开头难 - 如何开始? 人总是对未知的事物充满恐惧!就像航海一样,在面对危难的时候,船员和船长是一样心中充满恐惧的!只是船员始终充满恐惧,而船长却能压抑恐惧并从当前找出突破口! 我没有船长之能,但也算入行两年的老船员,我会追随船长一起寻找突破口!而内核如此庞然大物不知从何入手这真的很正常,那么应 ...
分类:系统相关   时间:2018-05-29 23:35:23    阅读次数:416
python基础之判断用户登录
python基础小练习
分类:编程语言   时间:2018-05-29 23:35:16    阅读次数:383
leetcode 35. Search Insert Position
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
python文件操作
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
1268条   1 2 3 4 5 6 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!