Never stop learning.
发布时间:2014-03-25 15:21:23
本文详细讲解了Python里iterable,sequence和iterator的特性及区别。......【阅读全文】
发布时间:2013-11-13 18:14:30
本文详细介绍了Python中iterator的概念及原理,以及怎么自定义一个自己的iterator。......【阅读全文】
发布时间:2013-11-06 15:27:04
本文描述了安装mysql-python时,“'mysql_config' not found”的解决办法......【阅读全文】
发布时间:2013-09-04 13:51:51
本文分享了Python中Names,Bindings和Objects之间的关系。......【阅读全文】
发布时间:2013-08-23 17:02:43
Python打包的艺术是一个专题,我将在这个专题里分享自己对构建、管理和发布Python软件包的理解。这个专题
?将涉及几个Python模块,他们分别是distutils,setuptools,distribute,pip,virtualenv等。......【阅读全文】
发布时间:2013-08-12 10:20:26
Gitolite是一款轻量级的Git服务管理工具。本文详细介绍了如何用Gitolite搭建自己的Git服务器。......【阅读全文】
发布时间:2013-08-06 13:51:26
Git命令之git branchBy Harrison Feng分支(branch)的概念 我们在学习git branch之前,首先要理解分支(branch)的概念。Git 中的分支,其实本质上仅仅是个指向 commit 对象的可变指针。Git 会使用 master 作为分支的默认名字。在若干次提交后,你其实已经有了一个指向最后一次提交对.........【阅读全文】
发布时间:2013-07-31 12:02:24
转载自:http://grokcode.com/792/deploy-with-git-push/Deploy with ‘Git Push’by Jess Johnson in Tips & TutorialsSingle command deploys are awesome. When setting up a testing or production server, I always setup a script to deploy in a single command because it makes life easier and .........【阅读全文】
发布时间:2013-07-30 16:30:45
Become a More Satisfied Programmer. Today.by Jess Johnson in CareerIn the first post in this series, I talked a bit about different indicators of job satisfaction and how you can rank your own job for each of those criteria. In this post I’ll list simple steps anyone can tak.........【阅读全文】
发布时间:2013-07-19 13:51:16
今天我们来学习Git命令中最基本的命令git config。在正式学习这个命令之前,我们先来认识一下Git的三个最重要的配置文件,他们分别是/etc/gitconfig, ${HOME}/.gitconfig, .git/config。这三个配置文件都是Git运行时所需要读取的,但是它们分别作用于不同的范围。 /etc/gitconfig: 系统范围内的配置文.........【阅读全文】
发布时间:2013-04-24 11:01:54
函数的缺省参数值(Default Argument Values)我们在Python里写函数时,常常会给一些参数赋初始值。本文详细讲解了Python中函数的参数的初始值的特殊性。......【阅读全文】
发布时间:2013-04-23 17:24:24
本文详细讲解了List Comprehensions 和 Generator Expressions及其区别。......【阅读全文】
发布时间:2013-04-15 10:34:10
ShellEd is a shell editor plugin for Eclipse which enables syntax highlight, the integration of man page information for content assist/hover help and the ability to run your project's shell scripts without leaving Eclipse.......【阅读全文】
发布时间:2013-04-12 15:45:41
Get the number of CPUscat /proc/cpuinfo | grep -c processorGet the URL of package to be installed from Ubuntusudo apt-get -qq --print-uris install ssh | cut -d\' -f2 # Get the URL of "ssh" packageCheck your system is 32-bit or 64-bi.........【阅读全文】
发布时间:2013-03-11 15:58:58
My team and I received this in our inbox from our architect six months ago when we started a new project:I am very excited every time I start something new. Even after about 20 years of doing software, I feel those butterflies in my&n.........【阅读全文】