我的Git配置文件

发布时间 2024年07月14日 分类: misc

我的Git配置文件,里面定义了一些常用的alias,方便使用。

[user]
        name = Daniel Dai
        email = daniel@danieldai.com
[alias]
        s = status
        br = branch
        co = checkout
        cm = commit
        oldest-ancestor = !bash -c 'diff --old-line-format= --new-line-format= <(git rev-list --first-parent \"${1:-master}\") <(git rev-list --first-parent \"${2 …

阅读全文

How to split string in Python?

发布时间 2016年06月30日 分类: Python

Split string with identical separator

path = '45.63.130.248:15+221.160.226.9:329+101.240.154.40:1197'

nodes = path.split('+')

print nodes
['45.63.130.248:15', '221.160.226.9:329', '101.240.154.40:1197']
path = '45.63.130.248:15*+221.160.226 …

阅读全文

Python Modules, Packages and Import

发布时间 2016年01月16日 分类: Python

Modules in Python are simply Python files with the .py extension, which implement a set of functions. Modules are imported from other modules using the import command.

To import a module, we use the import command. Check out the full list of built-in modules in the Python standard library here …


阅读全文