Skip to content

Instantly share code, notes, and snippets.

View kashewnuts's full-sized avatar

Kashun YOSHIDA kashewnuts

View GitHub Profile
@kashewnuts
kashewnuts / dein.toml
Created August 29, 2016 13:39
neocomplete & DOS window Error
[[plugins]]
repo = 'Shougo/dein.vim'
" 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/
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from itertools import islice
def hamming2():
'''
A text docmenting this function (stripped)
'''
h = 1

制度

  • 有休…
  • 病休…
  • 育休…
  • 年収(月給、賞与など)…
  • 残業代…
  • 早朝/深夜手当…
  • 休出手当…
  • 住宅補助…
# 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):
@kashewnuts
kashewnuts / vimrc
Last active March 23, 2020 16:27
minimal vimrc
" --- 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 ---