Chinaunix首页 | 论坛 | 博客
  • 博客访问: 440938
  • 博文数量: 26
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1101
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-04 22:28
个人简介

Never stop learning.

文章分类

全部博文(26)

文章存档

2014年(2)

2013年(24)

发布时间:2014-03-25 15:21:23

本文详细讲解了Python里iterable,sequence和iterator的特性及区别。......【阅读全文】

阅读(6987) | 评论(0) | 转发(0)

发布时间:2014-03-12 17:07:49

本文详细介绍了Python里range和xrange的区别。......【阅读全文】

阅读(11148) | 评论(1) | 转发(1)

发布时间:2013-12-13 16:41:34

本文简要介绍了Python Packaging的过去,现在和将来!......【阅读全文】

阅读(13213) | 评论(0) | 转发(1)

发布时间:2013-11-19 23:22:48

本文详细解析了Python里的Generators。......【阅读全文】

阅读(5298) | 评论(0) | 转发(0)

发布时间:2013-11-13 18:14:30

本文详细介绍了Python中iterator的概念及原理,以及怎么自定义一个自己的iterator。......【阅读全文】

阅读(6960) | 评论(0) | 转发(3)

发布时间:2013-11-06 15:27:04

本文描述了安装mysql-python时,“'mysql_config' not found”的解决办法......【阅读全文】

阅读(14852) | 评论(0) | 转发(0)

发布时间:2013-09-12 09:03:17

本文分享了Python中对象复制和比较的内涵。......【阅读全文】

阅读(5691) | 评论(0) | 转发(1)

发布时间:2013-09-11 08:28:53

本文分享了Python对象的可变性(mutability)。......【阅读全文】

阅读(7215) | 评论(0) | 转发(1)

发布时间:2013-09-04 13:51:51

本文分享了Python中Names,Bindings和Objects之间的关系。......【阅读全文】

阅读(5345) | 评论(1) | 转发(0)

发布时间:2013-08-23 17:02:43

Python打包的艺术是一个专题,我将在这个专题里分享自己对构建、管理和发布Python软件包的理解。这个专题
?将涉及几个Python模块,他们分别是distutils,setuptools,distribute,pip,virtualenv等。......【阅读全文】

阅读(8438) | 评论(4) | 转发(6)

发布时间:2013-08-15 10:14:16

本文将介绍如何在Ubuntu上从源码安装Python解释器。......【阅读全文】

阅读(13848) | 评论(5) | 转发(0)

发布时间:2013-08-12 10:20:26

Gitolite是一款轻量级的Git服务管理工具。本文详细介绍了如何用Gitolite搭建自己的Git服务器。......【阅读全文】

阅读(20495) | 评论(5) | 转发(0)

发布时间:2013-08-06 13:51:26

Git命令之git branchBy Harrison Feng分支(branch)的概念 我们在学习git branch之前,首先要理解分支(branch)的概念。Git 中的分支,其实本质上仅仅是个指向 commit 对象的可变指针。Git 会使用 master 作为分支的默认名字。在若干次提交后,你其实已经有了一个指向最后一次提交对.........【阅读全文】

阅读(7798) | 评论(3) | 转发(1)

发布时间:2013-08-01 16:17:09

本文介绍了如何在Ubuntu上配置拨号连接。......【阅读全文】

阅读(4748) | 评论(0) | 转发(0)

发布时间: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 .........【阅读全文】

阅读(3824) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(3732) | 评论(0) | 转发(0)

发布时间:2013-07-30 15:58:45

本文详细讲解了Python中的对象的概念。......【阅读全文】

阅读(5705) | 评论(2) | 转发(1)

发布时间:2013-07-22 14:07:59

作为一名SEDT,我的世界里,不光是有代码,还有,葡萄和鱼,,,, 红提,它们已经熟了,等着我来摘 “这儿的葡萄儿好甜喔~~,甜到心窝窝儿” (我们家老大的原话) 红提,确实很红,红的都发黑,这个可以有 摘完红提,该钓鱼了,开杆就钓了一条大鱼,目测有3斤半!!! 把它放到网里吧,显然刚才钓它起来时,.........【阅读全文】

阅读(3438) | 评论(0) | 转发(0)

发布时间:2013-07-19 13:51:16

今天我们来学习Git命令中最基本的命令git config。在正式学习这个命令之前,我们先来认识一下Git的三个最重要的配置文件,他们分别是/etc/gitconfig, ${HOME}/.gitconfig, .git/config。这三个配置文件都是Git运行时所需要读取的,但是它们分别作用于不同的范围。 /etc/gitconfig: 系统范围内的配置文.........【阅读全文】

阅读(6535) | 评论(0) | 转发(0)

发布时间:2013-04-24 11:01:54

函数的缺省参数值(Default Argument Values)我们在Python里写函数时,常常会给一些参数赋初始值。本文详细讲解了Python中函数的参数的初始值的特殊性。......【阅读全文】

阅读(8211) | 评论(0) | 转发(1)

发布时间:2013-04-23 17:24:24

本文详细讲解了List Comprehensions 和 Generator Expressions及其区别。......【阅读全文】

阅读(5473) | 评论(0) | 转发(0)

发布时间: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.......【阅读全文】

阅读(3713) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(2952) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(2994) | 评论(0) | 转发(0)

发布时间:2013-03-11 09:32:02

本文详细讲解了如何在Ubuntu上安装Oracle JDK......【阅读全文】

阅读(3518) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

swenker2015-05-19 23:23

怎么这么长时间都没有更新了?

回复  |  举报
留言热议
请登录后留言。

登录 注册