- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 残業代…
- 早朝/深夜手当…
- 休出手当…
- 住宅補助…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[plugins]] | |
repo = 'Shougo/dein.vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Note: Skip initialization for vim-tiny or vim-small. | |
if 0 | endif | |
if &compatible | |
set nocompatible " Be iMproved | |
endif | |
" Required: | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
from itertools import islice | |
def hamming2(): | |
''' | |
A text docmenting this function (stripped) | |
''' | |
h = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sys.path確認 | |
> python | |
Python 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] on win32 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import sys;print sys.path | |
['', 'C:\\WINDOWS\\SYSTEM32\\python27.zip', 'C:\\Python\\27\\DLLs', 'C:\\Python\\27\\lib', 'C:\\Python\\27\\lib\\plat-win', 'C:\\Python\\27\\lib\\lib-tk', 'C:\\Python\\27', 'C:\\Python\\27\\lib\\site-packages', 'C:\\Python\\27\\lib\\site-packages\\win32', 'C:\\Python\\27\\lib\\site-packages\\win32\\lib', 'C:\\Python\\27\\lib\\site-packages\\Pythonwin'] | |
# 実行時エラー内容 | |
> rst2html.py --version | |
Traceback (most recent call last): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" --- Init --- | |
set encoding=utf-8 " Sets the character encoding used inside Vim | |
scriptencoding utf-8 " Specify encoding used in the script | |
autocmd! | |
" --- Essential --- | |
unlet! skip_defaults_vim | |
source $VIMRUNTIME/defaults.vim | |
try | colorscheme molokai | catch | colorscheme desert | endtry | |
let g:loaded_matchparen = 1 | |
" --- Indent&Tab --- |
NewerOlder