tools
mac tools
keyboard shotcuts
- open terminal
command + T - switching between terminals
control + Tab - switching between applications
command + Tab
learning list
-
C++
http://www.learncpp.com/
-
tensorflow slim/sonnet
latex
- latex for ubuntu https://help.ubuntu.com/community/LaTeX
-
markdown latex
-
Mathjax与LaTex公式简介 url
Hello world!- 使用文本编辑器将如下内容写入文件 latex_test.tex 中
\documentclass{article} \begin{document} Hello world! \end{document} -
Linux系统下使用命令
latex latex_test.tex将会得到 latex_test.dvi 文件;可以通过命令
xdvi latex_test.dvi查看该文件中的内容。 - 使用命令
dvipdf latex_test.dvi生成 latex_test.pdf 文件。
- 使用文本编辑器将如下内容写入文件 latex_test.tex 中
Atom
- Atom Flight Manual
- Getting Started
- shortcut keys
- run python script
ctrl+shift+b - delete line, duplicate line
ctrl+shift+k,ctrl+shift+d - move begining/end of line
shift+HOME,shift+END - select lines
shift+HOME,shift+ENDshift+up,shift+down - open a file/directory
ctrl+o,ctrl+shift+o
- run python script
Vim
-
mac vim+tmux copy & paste first, my vim is the system vim, and the following 2 steps will allow you to copy & pasta between vim step1:
brew install reattach-to-user-namespacestep2: paste the following lines to~/.tmux.conf(if do not have, create one) -
Vim YouCompleteMe
-
vim colorscheme
-
一个可用的 vim 配色方案
-
differences between vim-gnome & vim-gtk
-
Install vim from github

-
vim 跨终端复制粘贴
vim --version(查看是否有+xterm_clipboard, 如果没有则不可以运用系统剪切板进行跨终端复制粘贴)sudo apt-get install vim-gtkvim --version(此时出现+xterm_clipboard,必须适用vim 而不是vi进行文本编辑)vim paste