GitHub使ってますよね!
一度使い始めると当たり前に使っているのですが、毎回調べてしまうことがSSHの使い方。 コマンドの流れはGitHubの方を参照すればわかるのですが、それぞれの意味やそれに伴いできるファイルが何なのか一度整理してみました。
- SecureShellの略。Secureな通信を行うためのプロトコル。
GitHub使ってますよね!
一度使い始めると当たり前に使っているのですが、毎回調べてしまうことがSSHの使い方。 コマンドの流れはGitHubの方を参照すればわかるのですが、それぞれの意味やそれに伴いできるファイルが何なのか一度整理してみました。
31 Aug 2011
私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。
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 |
# bash history | |
export HISTSIZE=10000 | |
export HISTCONTROL=ignoreboth # ignorespace+ignoredups = ignoreboth | |
export HISTIGNORE="ls:fg*:history*" | |
# peco | |
function peco-repo() { | |
local selected_file=$(ghq list --full-path | peco --query "$LBUFFER") | |
if [ -n "$selected_file" ]; then | |
if [ -t 1 ]; then |
Python 2.7.15rc1 (default, Apr 15 2018, 21:51:34)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> a = [-1, 3, -5, 7, -9]
>>> filter(lambda x: abs(x) > 5, a)
[7, -9]
>>>
# tox completion -*- shell-script -*- | |
_tox() | |
{ | |
local cur prev words cword split | |
_init_completion -s || return | |
case $prev in | |
-h|--help|--version|-n|--num|-i|--index-url|--hashseed|--force-dep) | |
return |
let s:plug_dir = '~/.cache/plugged' | |
call plug#begin(s:plug_dir) " {{{ | |
Plug 'prabirshrestha/async.vim' | |
Plug 'prabirshrestha/vim-lsp' | |
call plug#end() " }}} | |
" --- vim-lsp --- {{{ | |
if executable('pyls') | |
" pip install python-language-server | |
autocmd User lsp_setup call lsp#register_server({ |
ipython==6.5.0 | |
ipython-genutils==0.2.0 | |
ipywidgets==7.4.2 | |
jedi==0.13.0 | |
Jinja2==2.10 | |
jsonschema==2.6.0 | |
jupyter==1.0.0 | |
jupyter-client==5.2.3 | |
jupyter-console==5.2.0 | |
jupyter-core==4.4.0 |
apt install vim-gnome
して入ったもの