上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 52 下一页
摘要: Continuous integration (CI) is the practice, in software engineering, of merging all developer working copies to a shared mainline several times a day 阅读全文
posted @ 2016-03-24 15:47 圆旭 阅读(316) 评论(0) 推荐(0)
摘要: vi /etc/inittab 可以看到这样两行: # To set a default target, run:# systemctl set-default TARGET.target 故: sudo systemctl set-default multi-user.target 即可 转自:  阅读全文
posted @ 2016-03-24 14:20 圆旭 阅读(276) 评论(0) 推荐(0)
摘要: Use git rm foo to stage the file for deletion. (This will also delete the file from the file system, if it hadn't been previously deleted. It can, of 阅读全文
posted @ 2016-03-23 11:04 圆旭 阅读(384) 评论(0) 推荐(0)
摘要: 我们先写一个简单的脚本,执行以后再解释各个变量的意义 # touch variable # vi variable 脚本内容如下: #!/bin/sh echo "number:$#"echo "scname:$0"echo "first :$1"echo "second:$2"echo "argu 阅读全文
posted @ 2016-03-22 16:47 圆旭 阅读(171) 评论(0) 推荐(0)
摘要: https://en.wikipedia.org/wiki/List_of_data_structures 阅读全文
posted @ 2016-03-22 14:38 圆旭 阅读(489) 评论(0) 推荐(0)
摘要: https://en.wikipedia.org/wiki/List_of_algorithms#Network_theory 阅读全文
posted @ 2016-03-22 14:37 圆旭 阅读(292) 评论(0) 推荐(0)
摘要: This guide provides tips and resources to help you develop your technical skills (academically and non-academically) through self-paced, hands-on lear 阅读全文
posted @ 2016-03-22 14:21 圆旭 阅读(303) 评论(0) 推荐(0)
摘要: 在Linux中,守护进程有两种方式,一种是svsy方式,一种是xinetd方式(超级守护进程)。 每个守护进程都会有一个脚本,可以理解成工作配置文件,守护进程的脚本需要放在指定位置,独立启动守护进程:放在/etc/init.d/目录下,当然也包括xinet的shell脚本;超级守护进程:按照xine 阅读全文
posted @ 2016-03-22 11:13 圆旭 阅读(373) 评论(0) 推荐(0)
摘要: Celery 是一个简单、灵活且可靠的,处理大量消息的分布式系统,并且提供维护这样一个系统的必需工具。 它是一个专注于实时处理的任务队列,同时也支持任务调度。 Celery (芹菜)是基于Python开发的分布式任务队列。它支持使用任务队列的方式在分布的机器/进程/线程上执行任务调度。 Celery 阅读全文
posted @ 2016-03-21 09:36 圆旭 阅读(197) 评论(0) 推荐(0)
摘要: 注意此时命令行会多一个(ENV),ENV为虚拟环境名称,接下来所有模块都只会安装到该目录中去。 Virtualenv 附带有pip安装工具,因此需要安装的套件可以直接运行: 阅读全文
posted @ 2016-03-18 17:56 圆旭 阅读(218) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 52 下一页