Skip to content

Instantly share code, notes, and snippets.

View kashewnuts's full-sized avatar

Kashun YOSHIDA kashewnuts

View GitHub Profile
# 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):

制度

  • 有休…
  • 病休…
  • 育休…
  • 年収(月給、賞与など)…
  • 残業代…
  • 早朝/深夜手当…
  • 休出手当…
  • 住宅補助…
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from itertools import islice
def hamming2():
'''
A text docmenting this function (stripped)
'''
h = 1
" 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/
@kashewnuts
kashewnuts / dein.toml
Created August 29, 2016 13:39
neocomplete & DOS window Error
[[plugins]]
repo = 'Shougo/dein.vim'
@kashewnuts
kashewnuts / csv_split.py
Last active September 6, 2016 09:18
csv_split.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import csv
import sys
import time
'''
CSV形式のファイルでISBN13の末尾に応じてファイル作成
'''
@kashewnuts
kashewnuts / gista-file
Created October 26, 2016 06:48
denite.nvim&memolist.vim error
[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__
@kashewnuts
kashewnuts / clink_git.lua
Last active January 17, 2017 03:09 — forked from sweiss3/git_checkout.lua
A clink script for supporting tab-completion of git branches when using "git checkout", and showing branch name.
@kashewnuts
kashewnuts / github-flow.ja.md
Created June 5, 2017 14:28 — forked from Gab-km/github-flow.ja.md
GitHub Flow (Japanese translation)

GitHub Flow

31 Aug 2011

git-flowの問題点 (Issues with git-flow)

私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。

@kashewnuts
kashewnuts / python-and-pip-command-list.txt
Last active August 9, 2017 15:59
Python & pipコマンド一覧
kashewnuts@kashew-mbp:~$
python
python python2.6-config python3-config python3.5m-config pythonw
python-config python2.7 python3.5 python3.6 pythonw2
python2 python2.7-config python3.5-32 python3.6-config pythonw2.6
python2-config python3 python3.5-config python3.6m pythonw2.7
python2.6 python3-32 python3.5m python3.6m-config
kashewnuts@kashew-mbp:~$
python -V
Python 2.7.10