- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 残業代…
- 早朝/深夜手当…
- 休出手当…
- 住宅補助…
This file contains 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 --- |
This file contains 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 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 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 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 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 -*- | |
import csv | |
import sys | |
import time | |
''' | |
CSV形式のファイルでISBN13の末尾に応じてファイル作成 | |
''' |
This file contains 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
[denite] Traceback (most recent call last): | |
[denite] File "C:\Users\kashew_nuts\.cache\dein\repos\github.com\Shougo\denite.nvim/rplugin/python3\denite\ui\default.py", line 61, in start | |
[denite] self.__denite.gather_candidates(self.__context) | |
[denite] File "C:\Users\kashew_nuts\.cache\dein\repos\github.com\Shougo\denite.nvim/rplugin/python3\denite\denite.py", line 41, in gather_candidates | |
[denite] candidates = source.gather_candidates(source.context) | |
[denite] File "C:/Users/kashew_nuts/.cache/dein/repos/github.com/Shougo/denite.nvim/rplugin/python3/denite/source\file_rec.py", line 61, in gather_candidates | |
[denite] self.__proc = Process(command, context, directory) | |
[denite] File "C:\Users\kashew_nuts\.cache\dein\repos\github.com\Shougo\denite.nvim/rplugin/python3\denite\process.py", line 25, in __init__ | |
[denite] cwd=cwd) | |
[denite] File "C:\Python\35\Lib\subprocess.py", line 947, in __init__ |
This file contains 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
-- [[ | |
-- Git config for clink | |
-- A clink script for supporting tab-completion of git branches when using | |
-- "git checkout", and showing branch name. | |
-- ]] | |
function git_checkout_match_generator(text, first, last) | |
found_matches = false; | |
local line_buffer = rl_state.line_buffer | |
if line_buffer:find("^git checkout ") or |
OlderNewer