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 basic tutorial and quick reference

  • Mathjax与LaTex公式简介 url

  • Hello world!
    1. 使用文本编辑器将如下内容写入文件 latex_test.tex
       \documentclass{article}
       \begin{document}
         Hello world!
       \end{document}
      
    2. Linux系统下使用命令 latex latex_test.tex 将会得到 latex_test.dvi 文件;

      可以通过命令 xdvi latex_test.dvi 查看该文件中的内容。

    3. 使用命令 dvipdf latex_test.dvi 生成 latex_test.pdf 文件。

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+END shift+up, shift+down
    • open a file/directory ctrl+o, ctrl+shift+o

Vim