(Create a symlink pytest for py.test)
pytest [options] [file_or_dir] [file_or_dir] ...
Help:
def get_hiragana(): | |
"""Returns a dictionary of hiragana and their romaji.""" | |
import textwrap | |
data = u""" | |
a i u e o | |
∅ あ い う え お | |
k か き く け こ | |
s さ し す せ そ | |
t た ち つ て と | |
n な に ぬ ね の |
1. Install rst2pdf | |
- use your package manager (or) | |
- pip install rst2pdf (or) | |
- easy_install rst2pdf | |
2. Add rst2pdf to the list of extensions in conf.py | |
extensions = ['rst2pdf.pdfbuilder'] |
Source Control is a way for developers to manage their source code. All code in a company of any size should be under source control. However, the choice of the source control protocol used determines the level of freedom/control available to developers and source code managers.
Native filesystems offer some minor form of version control, but advanced systems offer much greater control over the versions and how they can be retrieved.
Even legacy systems have always been developed using some form of source control, be it CVS, Mercurial or Git.
set number | |
syntax enable | |
filetype plugin indent on | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab |
# set the control characters to Control-A | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# Change split window keys. | |
bind | split-window -h | |
bind - split-window -v | |
unbind '"' |
# -- coding: utf-8 -- | |
from win32api import * | |
from win32gui import * | |
import win32con | |
import sys, os | |
import struct | |
import time | |
class WindowsBalloonTip: |