Skip to content

Instantly share code, notes, and snippets.

@codingPingjun
codingPingjun / vim.md
Last active February 12, 2019 10:16
Vim Command

Vim Cheat Sheet

File Operation

:o file - open file

:w file - save file as

:close - close current pane

Cursor Movement

@codingPingjun
codingPingjun / ipython_remote_acess.md
Last active December 6, 2016 17:17
IPython Notebook Remote Access

Open Notebook on server

ipython notebook --no-browser --port=7007

Set Mapping in client

ssh -N -f -L localhost:5005:localhost:7007 username@ip

Open Remote Notebook in client

http://localhost:5005

Kill Local Port

lsof -i:5005[port num] kill -9 55514[pid]